From 8014b387c4d8011f2ba5eac07ae7a8eb4e0b9e73 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sebastian=20Dr=C3=B6ge?= Date: Sun, 26 Nov 2017 18:32:14 +0200 Subject: [PATCH] Don't list versions for the glib/gtk/gio GIT repositories --- examples/Cargo.toml | 8 ++++---- tutorials/Cargo.toml | 6 +++--- 2 files changed, 7 insertions(+), 7 deletions(-) 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" }