gstreamer-rs/tutorials/Cargo.toml

24 lines
822 B
TOML
Raw Normal View History

[package]
name = "tutorials"
2020-07-06 12:22:55 +00:00
version = "0.17.0"
license = "MIT"
authors = ["Sebastian Dröge <sebastian@centricular.com>"]
2020-10-10 08:00:48 +00:00
edition = "2018"
[dependencies]
glib = { git = "https://github.com/gtk-rs/glib" }
gdk = { git = "https://github.com/gtk-rs/gdk", optional = true }
gtk = { git = "https://github.com/gtk-rs/gtk", optional = true }
2020-10-10 08:00:48 +00:00
gst = { package = "gstreamer", path = "../gstreamer" }
gst-audio = { package = "gstreamer-audio", path = "../gstreamer-audio" }
gst-video = { package = "gstreamer-video", path = "../gstreamer-video" }
gst-app = { package = "gstreamer-app", path = "../gstreamer-app" }
gst-pbutils = { package = "gstreamer-pbutils", path = "../gstreamer-pbutils" }
2019-05-24 11:26:49 +00:00
byte-slice-cast = "0.3"
2020-10-10 07:52:15 +00:00
anyhow = "1"
[features]
tutorial5 = ["gtk", "gdk"]
tutorial5-x11 = ["tutorial5"]
tutorial5-quartz = ["tutorial5"]