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

21 lines
607 B
TOML
Raw Normal View History

[package]
name = "gst-plugin-tutorial"
2018-09-09 23:02:31 +00:00
version = "0.4.0"
authors = ["Sebastian Dröge <sebastian@centricular.com>"]
repository = "https://gitlab.freedesktop.org/gstreamer/gst-plugins-rs"
license = "MIT/Apache-2.0"
[dependencies]
glib = { version = "0.7", features = ["subclassing"] }
gstreamer = { version = "0.13", features = ["subclassing"] }
gstreamer-base = { version = "0.13", features = ["subclassing"] }
gstreamer-video = { version = "0.13" }
gstreamer-audio = { version = "0.13" }
2018-06-01 09:02:18 +00:00
byte-slice-cast = "0.2"
2018-02-21 12:36:37 +00:00
num-traits = "0.2"
[lib]
name = "gstrstutorial"
crate-type = ["cdylib"]
path = "src/lib.rs"