gst-plugins-rs/gst-plugin-tutorial/Cargo.toml
2019-07-07 12:13:56 +03:00

26 lines
751 B
TOML

[package]
name = "gst-plugin-tutorial"
version = "0.5.2"
authors = ["Sebastian Dröge <sebastian@centricular.com>"]
repository = "https://gitlab.freedesktop.org/gstreamer/gst-plugins-rs"
license = "MIT/Apache-2.0"
edition = "2018"
description = "Rust Tutorial Plugin"
[dependencies]
glib = { version = "0.8", features = ["subclassing"] }
gstreamer = { version = "0.14", features = ["subclassing"] }
gstreamer-base = { version = "0.14", features = ["subclassing"] }
gstreamer-video = { version = "0.14" }
gstreamer-audio = { version = "0.14" }
byte-slice-cast = "0.3"
num-traits = "0.2"
[lib]
name = "gstrstutorial"
crate-type = ["cdylib"]
path = "src/lib.rs"
[build-dependencies]
gst-plugin-version-helper = { path="../gst-plugin-version-helper" }