muss/mps-player/Cargo.toml

31 lines
752 B
TOML
Raw Normal View History

[package]
name = "mps-player"
2022-02-02 20:59:20 +00:00
version = "0.5.0"
edition = "2021"
2022-02-02 21:08:10 +00:00
license = "LGPL-2.1-only OR GPL-3.0-only"
readme = "README.md"
[dependencies]
rodio = { version = "^0.15", features = ["symphonia"]}
m3u8-rs = { version = "^3.0.0" }
# local
2022-02-02 20:59:20 +00:00
mps-interpreter = { path = "../mps-interpreter", version = "0.5.0" }
[target.'cfg(target_os = "linux")'.dependencies]
#dbus = { version = "^0.9" }
mpris-player = { version = "^0.6.1", path = "../mpris-player", optional = true }
[features]
default = ["os-controls"]
os-controls = []
# I wish this worked...
#[target.'cfg(not(target_os = "linux"))'.features]
#default = ["os-controls"]
#os-controls = []
#[target.'cfg(target_os = "linux")'.features]
#default = ["os-controls"]
#os-controls = ["mpris-player"]