mirror of
https://gitlab.freedesktop.org/gstreamer/gst-plugins-rs.git
synced 2024-10-31 22:58:51 +00:00
22 lines
838 B
TOML
22 lines
838 B
TOML
[package]
|
|
name = "gst-plugin-tutorial"
|
|
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]
|
|
gobject-subclass = { git = "https://github.com/gtk-rs/gobject-subclass" }
|
|
gst-plugin = { path="../gst-plugin" }
|
|
glib = { git = "https://github.com/gtk-rs/glib" }
|
|
gstreamer = { git = "https://gitlab.freedesktop.org/gstreamer/gstreamer-rs" }
|
|
gstreamer-base = { git = "https://gitlab.freedesktop.org/gstreamer/gstreamer-rs" }
|
|
gstreamer-video = { git = "https://gitlab.freedesktop.org/gstreamer/gstreamer-rs" }
|
|
gstreamer-audio = { git = "https://gitlab.freedesktop.org/gstreamer/gstreamer-rs" }
|
|
byte-slice-cast = "0.2"
|
|
num-traits = "0.2"
|
|
|
|
[lib]
|
|
name = "gstrstutorial"
|
|
crate-type = ["cdylib"]
|
|
path = "src/lib.rs"
|