pnmixer-rust/Cargo.toml

84 lines
1.5 KiB
TOML
Raw Permalink Normal View History

2017-06-26 07:08:37 +00:00
[package]
2017-09-01 22:54:32 +00:00
authors = ["Julian Ospald <hasufell@posteo.de>"]
2017-09-01 23:39:27 +00:00
categories = [ "multimedia::audio" ]
description = "Volume mixer for the system tray"
documentation = "https://hasufell.github.io/pnmixer-rust/pnmixerlib/"
homepage = "https://github.com/hasufell/pnmixer-rust"
keywords = [ "alsa", "gtk", "mixer" ]
license = "GPL-3.0"
2017-06-26 07:08:37 +00:00
name = "pnmixer-rs"
2017-09-01 23:39:27 +00:00
readme = "README.md"
repository = "https://github.com/hasufell/pnmixer-rust"
2017-09-01 23:24:20 +00:00
version = "0.1.2"
[[bin]]
2017-09-01 22:54:32 +00:00
doc = false
name = "pnmixer-rs"
path = "src/bin.rs"
2017-06-26 07:08:37 +00:00
[dependencies]
2018-01-25 21:40:13 +00:00
alsa = "0.2.0"
2017-09-28 14:39:38 +00:00
alsa-sys = "0.1.1"
error-chain = "0.11.0"
ffi = "0.0.2"
2018-01-25 21:40:13 +00:00
flexi_logger = "0.6.11"
gdk-pixbuf = "0.3.0"
gdk-pixbuf-sys = "0.5.0"
gdk-sys = "0.5.0"
getopts = "0.2.17"
gio = "0.3.0"
glib = "0.4.1"
glib-sys = "0.5.0"
gobject-sys = "0.5.0"
gtk-sys = "0.5.0"
lazy_static = "1.0.0"
libc = "0.2.36"
libnotify = { version = "1.0.2", optional = true }
log = "0.4.1"
png = "0.11.0"
serde = "1.0.27"
serde_derive = "1.0.27"
2017-09-28 14:39:38 +00:00
toml = "0.4.5"
w_result = "0.1.2"
2018-01-25 21:40:13 +00:00
which = "1.0.3"
2017-09-28 14:39:38 +00:00
xdg = "2.1.0"
2017-06-26 07:08:37 +00:00
[dependencies.gdk]
2017-09-01 22:54:32 +00:00
features = [
"v3_10",
"v3_12",
"v3_22",
]
2018-01-25 21:40:13 +00:00
version = "0.7.0"
2017-06-26 07:08:37 +00:00
2017-09-01 22:54:32 +00:00
[dependencies.gtk]
features = [
"v3_10",
"v3_12",
"v3_22",
]
2018-01-25 21:40:13 +00:00
version = "0.3.0"
2017-06-26 07:08:37 +00:00
2017-09-01 22:54:32 +00:00
[dependencies.x11]
features = [
"xlib",
"xtst",
]
2018-01-25 21:40:13 +00:00
version = "2.17.2"
2017-06-26 07:08:37 +00:00
[features]
notify = ["libnotify"]
2017-09-01 22:54:32 +00:00
[lib]
doc = true
name = "pnmixerlib"
path = "src/lib.rs"
[profile.dev]
codegen-units = 1
debug = true
debug-assertions = false
lto = false
opt-level = 0
panic = "unwind"
rpath = false