canary-rs/apps/music-player/Cargo.toml

22 lines
575 B
TOML
Raw Normal View History

2022-09-24 18:54:55 +00:00
[package]
name = "canary-music-player"
version = "0.1.0"
edition = "2021"
license = "AGPL-3.0-or-later"
2022-09-24 18:54:55 +00:00
[[bin]]
name = "canary-music-player"
path = "src/main.rs"
required-features = ["bin"]
2022-09-24 18:54:55 +00:00
[dependencies]
canary-magpie = { path = "../magpie", optional = true, features = ["async"] }
2022-11-20 05:57:33 +00:00
futures-util = { version = "0.3", optional = true }
serde = { version = "1", features = ["derive"] }
serde_json = "1"
2022-11-20 04:42:16 +00:00
smol = { version = "1.2", optional = true }
zbus = { version = "3.5", optional = true }
[features]
2022-11-20 05:57:33 +00:00
bin = ["dep:canary-magpie", "dep:futures-util", "dep:smol", "dep:zbus"]