forked from mirrors/gstreamer-rs
e804ef4d76
Too many dependencies switched and we can't really keep everything at an older version. Commented out for now until stable becomes 1.32.
21 lines
707 B
TOML
21 lines
707 B
TOML
[package]
|
|
name = "tutorials"
|
|
version = "0.12.0"
|
|
authors = ["Sebastian Dröge <sebastian@centricular.com>"]
|
|
|
|
[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", features = ["v3_10"], optional = true }
|
|
gstreamer = { path = "../gstreamer" }
|
|
gstreamer-audio = { path = "../gstreamer-audio" }
|
|
gstreamer-video = { path = "../gstreamer-video" }
|
|
gstreamer-app = { path = "../gstreamer-app" }
|
|
gstreamer-pbutils = { path = "../gstreamer-pbutils" }
|
|
byte-slice-cast = "0.2"
|
|
failure = "0.1.0"
|
|
|
|
[features]
|
|
tutorial5 = ["gtk", "gdk"]
|
|
tutorial5-x11 = ["tutorial5"]
|
|
tutorial5-quartz = ["tutorial5"]
|