| 1 |
[package] |
| 2 |
name = "audiofiles-core" |
| 3 |
version = "0.5.0" |
| 4 |
edition.workspace = true |
| 5 |
|
| 6 |
[features] |
| 7 |
default = ["analysis"] |
| 8 |
analysis = ["dep:bs1770", "dep:realfft"] |
| 9 |
|
| 10 |
[dependencies] |
| 11 |
rusqlite = { workspace = true } |
| 12 |
thiserror = { workspace = true } |
| 13 |
sha2 = { workspace = true } |
| 14 |
symphonia = { workspace = true } |
| 15 |
stratum-dsp = { workspace = true } |
| 16 |
serde = { workspace = true } |
| 17 |
serde_json = { workspace = true } |
| 18 |
bs1770 = { workspace = true, optional = true } |
| 19 |
realfft = { workspace = true, optional = true } |
| 20 |
rubato = { workspace = true } |
| 21 |
dirs = { workspace = true } |
| 22 |
hound = { workspace = true } |
| 23 |
tracing = { workspace = true } |
| 24 |
rayon = { workspace = true } |
| 25 |
tagtree = { workspace = true } |
| 26 |
|
| 27 |
[dev-dependencies] |
| 28 |
tempfile = "3.25.0" |
| 29 |
|