From b6aaddc0ddb6fe5d1f116199cb67428beb6b23a4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sebastian=20Dr=C3=B6ge?= Date: Fri, 22 Feb 2019 13:16:22 +0200 Subject: [PATCH] Update versions of everything and use releases instead of GIT --- gst-plugin-audiofx/Cargo.toml | 8 ++++---- gst-plugin-closedcaption/Cargo.toml | 10 +++++----- gst-plugin-file/Cargo.toml | 8 ++++---- gst-plugin-flv/Cargo.toml | 6 +++--- gst-plugin-http/Cargo.toml | 6 +++--- gst-plugin-threadshare/Cargo.toml | 18 +++++++++--------- gst-plugin-togglerecord/Cargo.toml | 10 +++++----- gst-plugin-tutorial/Cargo.toml | 10 +++++----- 8 files changed, 38 insertions(+), 38 deletions(-) diff --git a/gst-plugin-audiofx/Cargo.toml b/gst-plugin-audiofx/Cargo.toml index 94c324b4..2f48d1a7 100644 --- a/gst-plugin-audiofx/Cargo.toml +++ b/gst-plugin-audiofx/Cargo.toml @@ -6,10 +6,10 @@ repository = "https://gitlab.freedesktop.org/gstreamer/gst-plugins-rs" license = "MIT/Apache-2.0" [dependencies] -glib = { git = "https://github.com/gtk-rs/glib" } -gstreamer = { git = "https://gitlab.freedesktop.org/gstreamer/gstreamer-rs", features = ["subclassing"] } -gstreamer-base = { git = "https://gitlab.freedesktop.org/gstreamer/gstreamer-rs", features = ["subclassing"] } -gstreamer-audio = { git = "https://gitlab.freedesktop.org/gstreamer/gstreamer-rs" } +glib = { version = "0.7" } +gstreamer = { version = "0.13", features = ["subclassing"] } +gstreamer-base = { version = "0.13", features = ["subclassing"] } +gstreamer-audio = { version = "0.13" } byte-slice-cast = "0.2" num-traits = "0.2" diff --git a/gst-plugin-closedcaption/Cargo.toml b/gst-plugin-closedcaption/Cargo.toml index 50f99dce..4ab0f9e6 100644 --- a/gst-plugin-closedcaption/Cargo.toml +++ b/gst-plugin-closedcaption/Cargo.toml @@ -6,7 +6,7 @@ license = "LGPL-2.1+" edition = "2018" [dependencies] -glib = { git = "https://github.com/gtk-rs/glib", features = ["subclassing"] } +glib = { version = "0.7", features = ["subclassing"] } combine = "3.6" either = "1" uuid = { version = "0.7", features = ["v4"] } @@ -14,17 +14,17 @@ chrono = "0.4" lazy_static = "1.2" [dependencies.gst] -git = "https://gitlab.freedesktop.org/gstreamer/gstreamer-rs" +version = "0.13" features = ["subclassing", "v1_12"] package="gstreamer" [dependencies.gst-base] -git = "https://gitlab.freedesktop.org/gstreamer/gstreamer-rs" +version = "0.13" features = ["subclassing", "v1_12"] package="gstreamer-base" [dependencies.gst-video] -git = "https://gitlab.freedesktop.org/gstreamer/gstreamer-rs" +version = "0.13" features = ["v1_12"] package="gstreamer-video" @@ -33,7 +33,7 @@ pretty_assertions = "0.6" rand = "0.6" [dev-dependencies.gst-check] -git = "https://gitlab.freedesktop.org/gstreamer/gstreamer-rs" +version = "0.13" package="gstreamer-check" [lib] diff --git a/gst-plugin-file/Cargo.toml b/gst-plugin-file/Cargo.toml index f57c333d..0774a2a5 100644 --- a/gst-plugin-file/Cargo.toml +++ b/gst-plugin-file/Cargo.toml @@ -7,11 +7,11 @@ license = "MIT/Apache-2.0" [dependencies] url = "1.1" -glib = { git = "https://github.com/gtk-rs/glib" } -gstreamer = { git = "https://gitlab.freedesktop.org/gstreamer/gstreamer-rs", features = ["subclassing"] } -gstreamer-base = { git = "https://gitlab.freedesktop.org/gstreamer/gstreamer-rs", features = ["subclassing"] } +glib = { version = "0.7", features = ["subclassing"] } +gstreamer = { version = "0.13", features = ["subclassing"] } +gstreamer-base = { version = "0.13", features = ["subclassing"] } [lib] name = "gstrsfile" crate-type = ["cdylib"] -path = "src/lib.rs" \ No newline at end of file +path = "src/lib.rs" diff --git a/gst-plugin-flv/Cargo.toml b/gst-plugin-flv/Cargo.toml index 3b0b042a..f29f2105 100644 --- a/gst-plugin-flv/Cargo.toml +++ b/gst-plugin-flv/Cargo.toml @@ -8,9 +8,9 @@ edition = "2018" [dependencies] url = "1.1" -glib = { git = "https://github.com/gtk-rs/glib" } -gstreamer = { git = "https://gitlab.freedesktop.org/gstreamer/gstreamer-rs", features = ["subclassing"] } -gstreamer-base = { git = "https://gitlab.freedesktop.org/gstreamer/gstreamer-rs" } +glib = { version = "0.7", features = ["subclassing"] } +gstreamer = { version = "0.13", features = ["subclassing"] } +gstreamer-base = { version = "0.13" } num-rational = { version = "0.2", default-features = false, features = [] } nom = "4.0" flavors = {git = "https://github.com/rust-av/flavors.git"} diff --git a/gst-plugin-http/Cargo.toml b/gst-plugin-http/Cargo.toml index c6de98e2..dd87361a 100644 --- a/gst-plugin-http/Cargo.toml +++ b/gst-plugin-http/Cargo.toml @@ -7,11 +7,11 @@ license = "MIT/Apache-2.0" [dependencies] url = "1.1" -glib = { git = "https://github.com/gtk-rs/glib" } +glib = { version = "0.7", features = ["subclassing"] } reqwest = "0.9" hyperx = "0.14" -gstreamer = { git = "https://gitlab.freedesktop.org/gstreamer/gstreamer-rs", features = ["subclassing"] } -gstreamer-base = { git = "https://gitlab.freedesktop.org/gstreamer/gstreamer-rs", features = ["subclassing"] } +gstreamer = { version = "0.13", features = ["subclassing"] } +gstreamer-base = { version = "0.13", features = ["subclassing"] } [lib] name = "gstrshttp" diff --git a/gst-plugin-threadshare/Cargo.toml b/gst-plugin-threadshare/Cargo.toml index 68da879d..53b36dc8 100644 --- a/gst-plugin-threadshare/Cargo.toml +++ b/gst-plugin-threadshare/Cargo.toml @@ -6,15 +6,15 @@ license = "LGPL-2.1+" [dependencies] libc = "0.2" -glib-sys = { git = "https://github.com/gtk-rs/sys" } -gobject-sys = { git = "https://github.com/gtk-rs/sys" } -gio-sys = { git = "https://github.com/gtk-rs/sys" } -gstreamer-sys = { git = "https://gitlab.freedesktop.org/gstreamer/gstreamer-rs-sys" } -glib = { git = "https://github.com/gtk-rs/glib", features = ["subclassing"] } -gio = { git = "https://github.com/gtk-rs/gio" } -gstreamer = { git = "https://gitlab.freedesktop.org/gstreamer/gstreamer-rs", features = ["subclassing"] } -gstreamer-app = { git = "https://gitlab.freedesktop.org/gstreamer/gstreamer-rs" } -gstreamer-check = { git = "https://gitlab.freedesktop.org/gstreamer/gstreamer-rs" } +glib-sys = { version = "0.8" } +gobject-sys = { version = "0.8" } +gio-sys = { version = "0.8" } +gstreamer-sys = { version = "0.7" } +glib = { version = "0.7", features = ["subclassing"] } +gio = { version = "0.6" } +gstreamer = { version = "0.13", features = ["subclassing"] } +gstreamer-app = { version = "0.13" } +gstreamer-check = { version = "0.13" } tokio = "0.1" tokio-reactor = "0.1" tokio-executor = "0.1" diff --git a/gst-plugin-togglerecord/Cargo.toml b/gst-plugin-togglerecord/Cargo.toml index 652fa5a5..ce076981 100644 --- a/gst-plugin-togglerecord/Cargo.toml +++ b/gst-plugin-togglerecord/Cargo.toml @@ -5,11 +5,11 @@ authors = ["Sebastian Dröge "] license = "LGPL-2.1+" [dependencies] -glib = { git = "https://github.com/gtk-rs/glib", features = ["subclassing"] } -gstreamer = { git = "https://gitlab.freedesktop.org/gstreamer/gstreamer-rs", features = ["subclassing"] } -gstreamer-video = { git = "https://gitlab.freedesktop.org/gstreamer/gstreamer-rs" } -gtk = { git = "https://github.com/gtk-rs/gtk", optional = true } -gio = { git = "https://github.com/gtk-rs/gio", optional = true } +glib = { version = "0.7", features = ["subclassing"] } +gstreamer = { version = "0.13", features = ["subclassing"] } +gstreamer-video = { version = "0.13" } +gtk = { version = "0.6", optional = true } +gio = { version = "0.6", optional = true } parking_lot = "0.7" [dev-dependencies] diff --git a/gst-plugin-tutorial/Cargo.toml b/gst-plugin-tutorial/Cargo.toml index 57b4e5b8..363c2a15 100644 --- a/gst-plugin-tutorial/Cargo.toml +++ b/gst-plugin-tutorial/Cargo.toml @@ -6,11 +6,11 @@ repository = "https://gitlab.freedesktop.org/gstreamer/gst-plugins-rs" license = "MIT/Apache-2.0" [dependencies] -glib = { git = "https://github.com/gtk-rs/glib", features = ["subclassing"] } -gstreamer = { git = "https://gitlab.freedesktop.org/gstreamer/gstreamer-rs", features = ["subclassing"] } -gstreamer-base = { git = "https://gitlab.freedesktop.org/gstreamer/gstreamer-rs", features = ["subclassing"] } -gstreamer-video = { git = "https://gitlab.freedesktop.org/gstreamer/gstreamer-rs" } -gstreamer-audio = { git = "https://gitlab.freedesktop.org/gstreamer/gstreamer-rs" } +glib = { version = "0.7", features = ["subclassing"] } +gstreamer = { version = "0.13", features = ["subclassing"] } +gstreamer-base = { version = "0.13", features = ["subclassing"] } +gstreamer-video = { version = "0.13" } +gstreamer-audio = { version = "0.13" } byte-slice-cast = "0.2" num-traits = "0.2"