pnmixer-rust/Cargo.toml

38 lines
1.3 KiB
TOML
Raw Normal View History

2017-06-26 07:08:37 +00:00
[package]
name = "pnmixer"
version = "0.1.0"
authors = ["Julian Ospald <hasufell@posteo.de>"]
[dependencies]
2017-06-27 13:56:33 +00:00
alsa = "^0.1.8"
2017-06-28 23:35:30 +00:00
alsa-sys = "^0.1.1"
2017-06-27 13:56:33 +00:00
libc = "^0.2.23"
2017-06-26 21:52:21 +00:00
gdk-sys = { git = "https://github.com/gtk-rs/sys" }
gtk-sys = { git = "https://github.com/gtk-rs/sys" }
glib = { git = "https://github.com/gtk-rs/glib.git" }
2017-06-28 15:53:19 +00:00
glib-sys = { git = "https://github.com/gtk-rs/sys" }
2017-06-27 13:56:33 +00:00
ffi = "^0.0.2"
2017-06-26 21:52:21 +00:00
flexi_logger = "^0.5.1"
2017-06-27 13:56:33 +00:00
log = "^0.3.8"
error-chain = "^0.10.0"
2017-06-26 07:08:37 +00:00
[dependencies.gtk]
2017-06-26 21:52:21 +00:00
git = "https://github.com/gtk-rs/gtk.git"
features = [ "v3_10", "v3_12", "v3_22" ]
[dependencies.gdk]
git = "https://github.com/gtk-rs/gdk.git"
features = [ "v3_10", "v3_12", "v3_22" ]
2017-06-29 13:50:24 +00:00
[profile.dev]
opt-level = 2 # controls the `--opt-level` the compiler builds with
debug = true # controls whether the compiler passes `-C debuginfo`
# a value of `true` is equivalent to `2`
rpath = false # controls whether the compiler passes `-C rpath`
lto = false # controls `-C lto` for binaries and staticlibs
debug-assertions = true # controls whether debug assertions are enabled
codegen-units = 1 # controls whether the compiler passes `-C codegen-units`
# `codegen-units` is ignored when `lto = true`
panic = 'unwind' # panic strategy (`-C panic=...`), can also be 'abort'