gst-plugins-rs/gst-plugin-tutorial/Cargo.toml

22 lines
480 B
TOML

[package]
name = "gst-plugin-tutorial"
version = "0.1.0"
authors = ["Sebastian Dröge <sebastian@centricular.com>"]
repository = "https://github.com/sdroege/gst-plugin-rs"
license = "MIT/Apache-2.0"
[dependencies]
gst-plugin = { path="../gst-plugin" }
glib = "0.4"
gstreamer = "0.10"
gstreamer-base = "0.10.2"
gstreamer-video = "0.10.1"
gstreamer-audio = "0.10"
byte-slice-cast = "0.1"
num-traits = "0.1"
[lib]
name = "gstrstutorial"
crate-type = ["cdylib"]
path = "src/lib.rs"