gst-plugins-rs/Cargo.toml

25 lines
464 B
TOML
Raw Normal View History

2016-05-13 13:35:48 +00:00
[package]
name = "rsplugin"
version = "0.1.0"
authors = ["Sebastian Dröge <sebastian@centricular.com>"]
build = "build.rs"
2016-05-15 15:54:09 +00:00
repository = "https://github.com/sdroege/rsplugin"
license = "LGPL-2.1+"
2016-05-13 13:35:48 +00:00
[dependencies]
2016-05-13 15:02:19 +00:00
libc = "0.2"
2016-05-14 09:34:50 +00:00
url = "1.1"
bitflags = "0.7"
reqwest = "0.2"
nom = "2.0"
2016-12-04 18:24:44 +00:00
flavors = {git = "https://github.com/sdroege/flavors.git"}
2016-05-13 13:35:48 +00:00
[build-dependencies]
gcc = "0.3"
pkg-config = "0.3"
[lib]
name = "rsplugin"
2016-08-22 20:03:45 +00:00
crate-type = ["cdylib"]
2016-05-13 13:35:48 +00:00
path = "src/lib.rs"