2023-02-03 15:12:23 +00:00
|
|
|
[package]
|
|
|
|
name = "cmus-notify"
|
2023-04-23 03:25:49 +00:00
|
|
|
version = "0.0.2"
|
2023-02-03 15:12:23 +00:00
|
|
|
edition = "2021"
|
2023-02-24 00:40:31 +00:00
|
|
|
authors = ["Anas Elgarhy <anas.elgarhy.dev@gmail.com>"]
|
|
|
|
description = "A simple notification daemon for cmus"
|
|
|
|
repository = "https://github.com/anas-elgarhy/cmus-notify"
|
|
|
|
license = "MIT"
|
|
|
|
keywords = [
|
|
|
|
"cmus",
|
|
|
|
"notify",
|
|
|
|
"notification",
|
|
|
|
"notification-cmus",
|
|
|
|
"notify-cmus",
|
|
|
|
]
|
|
|
|
categories = [
|
|
|
|
"command-line-utilities",
|
|
|
|
"multimedia"
|
|
|
|
]
|
|
|
|
exclude = [
|
|
|
|
"docs/*",
|
|
|
|
"tests/*",
|
|
|
|
"justfile",
|
|
|
|
]
|
|
|
|
include = [
|
|
|
|
"Cargo.toml",
|
|
|
|
"src/**/*",
|
|
|
|
"README.md",
|
|
|
|
"LICENSE",
|
|
|
|
]
|
2023-02-03 15:12:23 +00:00
|
|
|
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
|
|
|
|
[dependencies]
|
2023-04-11 10:27:20 +00:00
|
|
|
serde = "1.0.160"
|
2023-04-13 17:04:04 +00:00
|
|
|
id3 = "1.7.0"
|
2023-02-03 15:12:23 +00:00
|
|
|
lrc = { version = "0.1.7", optional = true }
|
2023-03-11 12:04:39 +00:00
|
|
|
notify-rust = { version = "4.8.0", features = ["images"] }
|
2023-03-31 21:46:18 +00:00
|
|
|
image = "0.24.6"
|
2023-04-21 16:51:34 +00:00
|
|
|
regex = "1.8.1"
|
2023-03-11 12:08:27 +00:00
|
|
|
typed-builder = "0.14.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-03-18 02:05:47 +00:00
|
|
|
thiserror = "1.0.40"
|
2023-02-21 02:41:12 +00:00
|
|
|
parse-display = "0.8.0"
|
2023-02-23 22:56:06 +00:00
|
|
|
clap-markdown = { version = "0.1.3", optional = true }
|
2023-02-03 15:12:23 +00:00
|
|
|
|
|
|
|
[dependencies.clap]
|
2023-04-28 00:37:26 +00:00
|
|
|
version = "4.2.5"
|
2023-02-03 15:12:23 +00:00
|
|
|
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-23 22:56:06 +00:00
|
|
|
docs = ["clap-markdown"]
|
2023-02-03 15:12:23 +00:00
|
|
|
|
2023-02-08 18:07:56 +00:00
|
|
|
[dev-dependencies]
|
|
|
|
test-context = "0.1.4"
|