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

22 lines
493 B
TOML
Raw Normal View History

[package]
name = "gst-plugin-tutorial"
2018-05-09 09:27:25 +00:00
version = "0.2.1"
authors = ["Sebastian Dröge <sebastian@centricular.com>"]
repository = "https://github.com/sdroege/gst-plugin-rs"
license = "MIT/Apache-2.0"
[dependencies]
gst-plugin = { version = "0.2", path="../gst-plugin" }
glib = "0.5"
gstreamer = "0.11"
gstreamer-base = "0.11"
gstreamer-video = "0.11"
gstreamer-audio = "0.11"
byte-slice-cast = "0.1"
2018-02-21 12:36:37 +00:00
num-traits = "0.2"
[lib]
name = "gstrstutorial"
crate-type = ["cdylib"]
path = "src/lib.rs"