| 1 |
[package] |
| 2 |
name = "audiofiles-app" |
| 3 |
version = "0.5.0" |
| 4 |
edition.workspace = true |
| 5 |
|
| 6 |
[dependencies] |
| 7 |
audiofiles-core = { workspace = true } |
| 8 |
audiofiles-browser = { workspace = true } |
| 9 |
audiofiles-sync = { workspace = true } |
| 10 |
eframe = { workspace = true } |
| 11 |
cpal = { workspace = true } |
| 12 |
parking_lot = { workspace = true } |
| 13 |
dirs = { workspace = true } |
| 14 |
tracing = { workspace = true } |
| 15 |
thiserror = { workspace = true } |
| 16 |
tracing-subscriber = { workspace = true } |
| 17 |
tray-icon = { workspace = true } |
| 18 |
tokio = { workspace = true } |
| 19 |
reqwest = { workspace = true } |
| 20 |
semver = { workspace = true } |
| 21 |
serde = { workspace = true } |
| 22 |
serde_json = { workspace = true } |
| 23 |
open = { workspace = true } |
| 24 |
uuid = { workspace = true } |
| 25 |
chrono = { workspace = true } |
| 26 |
midir = { workspace = true } |
| 27 |
rfd = { workspace = true } |
| 28 |
toml = { workspace = true } |
| 29 |
|
| 30 |
[dev-dependencies] |
| 31 |
tempfile = "3" |
| 32 |
|
| 33 |
[target.'cfg(target_os = "linux")'.dependencies] |
| 34 |
eframe = { version = "0.34", default-features = false, features = ["default_fonts", "glow", "x11", "wayland"] } |
| 35 |
gtk = "0.18" |
| 36 |
|