-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
18 lines (16 loc) · 768 Bytes
/
Cargo.toml
File metadata and controls
18 lines (16 loc) · 768 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
[package]
name = "binvec"
version = "1.20.8"
edition = "2024"
[dependencies]
iced = { version = "0.14.0", features = ["svg", "image", "tokio"] } # Iced for GUI
rfd = "0.17.0" # For file dialogs
image = "0.25" # Image lib, here used for binarizing and scaling images
vtracer = { git = "https://github.com/RouHim/vtracer" } # Generates vector images from raster images
visioncortex = "0.8" # Helper library for vtracer
self_update = { version = "0.42.0", features = ["rustls"], default-features = false } # For updating the app
[profile.release]
panic = "abort" # Strip expensive panic clean-up logic
codegen-units = 1 # Compile crates one after another so the compiler can optimize better
lto = true # Enables link to optimizations
strip = true # Strip debug symbols