gst-plugins-rs/tutorial/Cargo.toml

27 lines
985 B
TOML
Raw Normal View History

[package]
name = "gst-plugin-tutorial"
2019-07-07 10:20:15 +00:00
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 = { git = "https://github.com/gtk-rs/gtk-rs" }
2020-11-22 16:44:28 +00:00
gst = { package = "gstreamer", git = "https://gitlab.freedesktop.org/gstreamer/gstreamer-rs" }
gst-base = { package = "gstreamer-base", git = "https://gitlab.freedesktop.org/gstreamer/gstreamer-rs" }
gst-video = { package = "gstreamer-video", git = "https://gitlab.freedesktop.org/gstreamer/gstreamer-rs" }
gst-audio = { package = "gstreamer-audio", git = "https://gitlab.freedesktop.org/gstreamer/gstreamer-rs" }
byte-slice-cast = "1.0"
2018-02-21 12:36:37 +00:00
num-traits = "0.2"
2020-01-26 08:37:05 +00:00
once_cell = "1.0"
[lib]
name = "gstrstutorial"
crate-type = ["cdylib", "rlib", "staticlib"]
path = "src/lib.rs"
[build-dependencies]
gst-plugin-version-helper = { path="../version-helper" }