gst-plugins-rs/tutorial/Cargo.toml
2020-07-10 12:50:48 +03:00

27 lines
683 B
TOML

[package]
name = "gst-plugin-tutorial"
version = "0.6.0"
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.10" }
gstreamer = { version = "0.16" }
gstreamer-base = { version = "0.16" }
gstreamer-video = { version = "0.16" }
gstreamer-audio = { version = "0.16" }
byte-slice-cast = "0.3"
num-traits = "0.2"
once_cell = "1.0"
[lib]
name = "gstrstutorial"
crate-type = ["cdylib", "rlib"]
path = "src/lib.rs"
[build-dependencies]
gst-plugin-version-helper = { path="../version-helper" }