16 lines
513 B
TOML
16 lines
513 B
TOML
[package]
|
|
name = "simple-osd-mpris"
|
|
version = "0.1.0"
|
|
authors = ["Alexander Bantyev <balsoft@balsoft.ru>"]
|
|
edition = "2018"
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[features]
|
|
default = [ "display_on_volume_changes" ]
|
|
display_on_volume_changes = ["libpulse-binding"]
|
|
|
|
[dependencies]
|
|
simple-osd-common = { version = "0.1", path = "../common" }
|
|
mpris = { git = "https://github.com/Mange/mpris-rs" }
|
|
libpulse-binding = { version = "2.16.2", optional = true } |