music/music_mgr/Cargo.toml

21 lines
647 B
TOML
Raw Normal View History

2024-04-07 22:07:56 +00:00
[package]
name = "music_mgr"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
2024-04-12 21:02:42 +00:00
anstyle = "1.0.6"
2024-04-08 00:03:35 +00:00
anyhow = "1.0.81"
2024-04-07 22:07:56 +00:00
camino = "1.1.6"
clap = { version = "4.5.4", features = ["derive"] }
env_logger = "0.11.3"
2024-04-08 00:03:35 +00:00
lazy_static = "1.4.0"
2024-04-12 21:02:42 +00:00
libc = "0.2.153"
2024-04-07 22:07:56 +00:00
log = "0.4.21"
serde = { version = "1.0.197", features = ["derive"] }
serde_json = "1.0.115"
2024-04-08 00:03:35 +00:00
tokio = { version = "1.37.0", features = ["macros", "rt-multi-thread", "process", "sync"] }
2024-04-12 21:02:42 +00:00
windows = { version = "0.56.0", features = ["Win32_Foundation", "Win32_Storage_FileSystem", "Win32_System_Console"] }