-
Notifications
You must be signed in to change notification settings - Fork 1
/
Cargo.toml
41 lines (35 loc) · 1.23 KB
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
[package]
name = "pixelbox"
version = "0.1.0"
authors = ["Joseph Catrambone <[email protected]>"]
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
anyhow = "~1.0" # For convenient Result types. Can switch to Enums with inner-error captures later on.
crossbeam = "~0.8"
eframe = "~0.24" # Gives us egui, epi and web+native backends
egui_extras = "~0.24"
glob = "~0.3"
image = "~0.24"
kamadak-exif = "~0.5"
lazy_static = "~1.4"
open = "~5.0"
parking_lot = "~0.12"
qoi = "~0.4"
rayon = "~1.8"
rfd = "~0.12"
rusqlite = { version="~0.29", features=["bundled", "time", "functions", "serde_json"] } # bundled uses bundled version for Windows. blob feature might be needed for io.
serde = { version = "~1.0", features = ["derive"], optional = true }
serde_json = "~1.0"
tract-onnx = "~0.20"
[dev-dependencies]
criterion = "~0.5" # To run benchmarks. When the nightly bits are merged, we can remove this.
[features]
default = []
#cuda = ["candle/cuda", "candle-nn/cuda", "candle-transformers/cuda"]
#cudnn = ["candle/cudnn"]
#[[bench]]
#name = "image_hashes"
#harness = false
[profile.dev.package."*"]
opt-level = 3 # Non-crate packages should be built with high optimization.