gst-plugins-rs/Cargo.toml
Sebastian Dröge 9e53c0a926 Simplify state handling
This is not too nice now as we have None values to unwrap, but the code
is at least less convoluted.
2016-12-23 17:36:14 +02:00

25 lines
461 B
TOML

[package]
name = "rsplugin"
version = "0.1.0"
authors = ["Sebastian Dröge <sebastian@centricular.com>"]
build = "build.rs"
repository = "https://github.com/sdroege/rsplugin"
license = "LGPL-2.1+"
[dependencies]
libc = "0.2"
url = "1.1"
bitflags = "0.7"
reqwest = "0.2"
nom = "2.0"
flavors = {git = "https://github.com/Geal/flavors.git"}
[build-dependencies]
gcc = "0.3"
pkg-config = "0.3"
[lib]
name = "rsplugin"
crate-type = ["cdylib"]
path = "src/lib.rs"