1
0
Derivar 0
pnmixer-rust/Cargo.toml

83 linhas
1.5 KiB
TOML
Em bruto Vista normal Histórico

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-01 22:54:32 +00:00
alsa = "^0.1.10"
2017-06-26 07:08:37 +00:00
alsa-sys = "^0.1.1"
2017-09-01 22:54:32 +00:00
error-chain = "^0.10.0"
2017-06-26 07:08:37 +00:00
ffi = "^0.0.2"
2017-09-01 22:54:32 +00:00
flexi_logger = "^0.6.8"
gdk-pixbuf = "^0.2.0"
gdk-pixbuf-sys = "^0.4.0"
gdk-sys = "^0.4.0"
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.30"
2017-09-01 23:24:20 +00:00
libnotify = { version = "^1.0.2", optional = true }
2017-06-26 07:08:37 +00:00
log = "^0.3.8"
png = "^0.9.0"
2017-09-01 22:54:32 +00:00
serde = "^1.0.11"
serde_derive = "^1.0.11"
toml = "^0.4.5"
w_result = "^0.1.2"
2017-09-01 22:54:32 +00:00
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",
]
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",
]
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",
]
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