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

23 lines
533 B
TOML

[package]
name = "gst-plugin-tutorial"
version = "0.3.0"
authors = ["Sebastian Dröge <sebastian@centricular.com>"]
repository = "https://gitlab.freedesktop.org/gstreamer/gst-plugins-rs"
license = "MIT/Apache-2.0"
[dependencies]
gobject-subclass = "0.2"
gst-plugin = { version = "0.3", path="../gst-plugin" }
glib = "0.6"
gstreamer = "0.12"
gstreamer-base = "0.12"
gstreamer-video = "0.12"
gstreamer-audio = "0.12"
byte-slice-cast = "0.2"
num-traits = "0.2"
[lib]
name = "gstrstutorial"
crate-type = ["cdylib"]
path = "src/lib.rs"