pnmixer-rust/Cargo.toml

84 řádky
1.5 KiB
TOML
Surový Normální zobrazení Historie

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]
2017-09-28 14:39:38 +00:00
alsa = "0.1.10"
alsa-sys = "0.1.1"
error-chain = "0.11.0"
ffi = "0.0.2"
flexi_logger = "0.6.8"
gdk-pixbuf = "0.2.0"
gdk-pixbuf-sys = "0.4.0"
gdk-sys = "0.4.0"
2017-09-29 15:24:33 +00:00
getopts = "0.2.15"
2017-09-28 14:39:38 +00:00
gio = "0.2.0"
glib = "0.3.1"
glib-sys = "0.4.0"
gobject-sys = "0.4.0"
gtk-sys = "0.4.0"
lazy_static = "0.2.8"
libc = "0.2.31"
2017-09-01 23:24:20 +00:00
libnotify = { version = "^1.0.2", optional = true }
2017-09-28 14:39:38 +00:00
log = "0.3.8"
png = "0.10.0"
serde = "1.0.15"
serde_derive = "1.0.15"
toml = "0.4.5"
w_result = "0.1.2"
which = "1.0.2"
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",
]
2017-09-28 14:39:38 +00:00
version = "0.6.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",
]
2017-09-28 14:39:38 +00:00
version = "0.2.0"
2017-06-26 07:08:37 +00:00
2017-09-01 22:54:32 +00:00
[dependencies.x11]
features = [
"xlib",
"xtst",
]
2017-09-28 14:39:38 +00:00
version = "2.15.0"
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