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]
|
2023-02-12 23:11:55 +00:00
|
|
|
serde = "1.0.152"
|
2023-02-12 18:39:10 +00:00
|
|
|
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"] }
|
2023-02-17 06:09:52 +00:00
|
|
|
image = "0.24.5"
|
2023-02-08 20:15:21 +00:00
|
|
|
regex = "1.7.1"
|
2023-02-04 20:12:09 +00:00
|
|
|
typed-builder = "0.12.0"
|
2023-02-14 22:56:57 +00:00
|
|
|
log = { version = "0.4.17", optional = true }
|
|
|
|
pretty_env_logger = { version = "0.4.0", optional = true }
|
2023-02-14 23:39:07 +00:00
|
|
|
thiserror = "1.0.38"
|
2023-02-21 02:41:12 +00:00
|
|
|
parse-display = "0.8.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
|
2023-02-23 09:29:23 +00:00
|
|
|
features = ["toml_conf"]
|
2023-02-12 23:58:34 +00:00
|
|
|
|
2023-02-03 15:12:23 +00:00
|
|
|
[features]
|
2023-02-03 17:00:03 +00:00
|
|
|
lyrics = ["lrc"]
|
2023-02-14 22:56:57 +00:00
|
|
|
debug = ["log", "pretty_env_logger"]
|
2023-02-03 15:12:23 +00:00
|
|
|
|
2023-02-08 18:07:56 +00:00
|
|
|
[dev-dependencies]
|
|
|
|
test-context = "0.1.4"
|
2023-02-23 11:53:44 +00:00
|
|
|
# clap-markdown = "0.1.3"
|