-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
35 lines (31 loc) · 877 Bytes
/
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
[package]
name = "audio-thumbnailer"
version = "0.2.3"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
clap = { version = "4.5.4", features = ["derive"] }
csscolorparser = { version = "0.6.2", features = ["rgb","named-colors"] }
dirs = { version = "5.0.1", optional = true }
image = "0.25.1"
plotters = "0.3.5"
rustfft = { version = "6.2.0", optional = true }
serde = "1.0.204"
serde_derive = { version = "1.0.204" }
symphonia = { version = "0.5.4", features = ["all"] }
symphonia-core = "0.5.4"
thiserror = "1.0.62"
toml = { version = "0.8.14", optional = true }
[features]
default = []
config_file = ["toml","dirs"]
colored_waveform = ["rustfft"]
3d_wavetables = []
[profile.release]
codegen-units = 1
opt-level = 3
debug = false
incremental = false
lto = true
panic = "abort"
strip = true