From de978bd1157b9f458d17a19072cf8be074c36dec Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sebastian=20Dr=C3=B6ge?= Date: Thu, 7 Feb 2019 09:49:07 +0200 Subject: [PATCH] Update gtk feature flags The minimum supported version of GTK is now 3.14 so we don't have to opt-in for 3.8/3.10 APIs anymore. --- examples/Cargo.toml | 2 +- tutorials/Cargo.toml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/examples/Cargo.toml b/examples/Cargo.toml index c6a5e10b2..0d655f868 100644 --- a/examples/Cargo.toml +++ b/examples/Cargo.toml @@ -16,7 +16,7 @@ gstreamer-editing-services = { path = "../gstreamer-editing-services", optional gstreamer-rtsp = { path = "../gstreamer-rtsp", optional = true } gstreamer-rtsp-server = { path = "../gstreamer-rtsp-server", optional = true } gstreamer-rtsp-server-sys = { git = "https://gitlab.freedesktop.org/gstreamer/gstreamer-rs-sys", features = ["v1_8"], optional = true } -gtk = { git = "https://github.com/gtk-rs/gtk", features = ["v3_6"], optional = true } +gtk = { git = "https://github.com/gtk-rs/gtk", optional = true } gdk = { git = "https://github.com/gtk-rs/gdk", optional = true } gio = { git = "https://github.com/gtk-rs/gio", optional = true } futures-preview = { version = "0.2", optional = true } diff --git a/tutorials/Cargo.toml b/tutorials/Cargo.toml index ccd88d86f..df74f0ec1 100644 --- a/tutorials/Cargo.toml +++ b/tutorials/Cargo.toml @@ -6,7 +6,7 @@ authors = ["Sebastian Dröge "] [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 } +gtk = { git = "https://github.com/gtk-rs/gtk", optional = true } gstreamer = { path = "../gstreamer" } gstreamer-audio = { path = "../gstreamer-audio" } gstreamer-video = { path = "../gstreamer-video" }