cmus-notify/Cargo.toml

34 lines
701 B
TOML
Raw Normal View History

2023-02-03 15:12:23 +00:00
[package]
name = "cmus-notify"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
serde = "1.0.152"
id3 = "1.6.0"
2023-02-03 15:12:23 +00:00
lrc = { version = "0.1.7", optional = true }
notify-rust = { version = "4.7.0", features = ["images"] }
regex = "1.7.1"
temp-file = "0.1.7"
2023-02-04 20:12:09 +00:00
typed-builder = "0.12.0"
2023-02-03 15:12:23 +00:00
[dependencies.clap]
version = "4.1.4"
features = ["wrap_help", "cargo", "usage", "derive", "suggestions", "color"]
2023-02-12 23:58:34 +00:00
[dependencies.confy]
version = "0.5.1"
default-features = false
features = ["yaml_conf"]
2023-02-03 15:12:23 +00:00
[features]
2023-02-03 17:00:03 +00:00
lyrics = ["lrc"]
2023-02-03 15:12:23 +00:00
2023-02-03 17:00:03 +00:00
default = ["lyrics"]
[dev-dependencies]
2023-02-13 18:10:39 +00:00
cargo-expand = "1.0.40"
test-context = "0.1.4"