diff --git a/examples/Cargo.toml b/examples/Cargo.toml index 640496198..e10d1bbe3 100644 --- a/examples/Cargo.toml +++ b/examples/Cargo.toml @@ -4,15 +4,15 @@ version = "0.9.0" authors = ["Sebastian Dröge "] [dependencies] -glib = { version = "0.3", git = "https://github.com/gtk-rs/glib" } +glib = { git = "https://github.com/gtk-rs/glib" } gstreamer = { path = "../gstreamer" } gstreamer-app = { path = "../gstreamer-app" } gstreamer-audio = { path = "../gstreamer-audio" } gstreamer-video = { path = "../gstreamer-video" } gstreamer-player = { path = "../gstreamer-player", optional = true } -gtk = { version = "0.2", git = "https://github.com/gtk-rs/gtk", features = ["v3_6"], optional = true } -gdk = { version = "0.6", git = "https://github.com/gtk-rs/gdk", optional = true } -gio = { version = "0.2", git = "https://github.com/gtk-rs/gio", optional = true } +gtk = { git = "https://github.com/gtk-rs/gtk", features = ["v3_6"], optional = true } +gdk = { git = "https://github.com/gtk-rs/gdk", optional = true } +gio = { git = "https://github.com/gtk-rs/gio", optional = true } futures = { version = "0.1", optional = true } tokio-core = { version = "0.1", optional = true } send-cell = "0.1" diff --git a/tutorials/Cargo.toml b/tutorials/Cargo.toml index 520c5521e..d3b523a1f 100644 --- a/tutorials/Cargo.toml +++ b/tutorials/Cargo.toml @@ -4,9 +4,9 @@ version = "0.9.0" authors = ["Sebastian Dröge "] [dependencies] -glib = { version = "0.3", git = "https://github.com/gtk-rs/glib" } -gdk = { version = "0.6", git = "https://github.com/gtk-rs/gdk", optional = true } -gtk = { version = "0.2", git = "https://github.com/gtk-rs/gtk", features = ["v3_10"], optional = true } +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" }