From 7182b85b41b35f656136c96383f17241ea2cc7cc Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sebastian=20Dr=C3=B6ge?= Date: Fri, 10 Jul 2020 11:59:37 +0300 Subject: [PATCH] Update dependency versions from git to releases --- audio/audiofx/Cargo.toml | 14 +++++++------- audio/claxon/Cargo.toml | 10 +++++----- audio/csound/Cargo.toml | 12 ++++++------ audio/lewton/Cargo.toml | 10 +++++----- generic/file/Cargo.toml | 8 ++++---- generic/sodium/Cargo.toml | 12 ++++++------ generic/threadshare/Cargo.toml | 24 ++++++++++++------------ net/reqwest/Cargo.toml | 8 ++++---- net/rusoto/Cargo.toml | 8 ++++---- text/wrap/Cargo.toml | 8 ++++---- tutorial/Cargo.toml | 10 +++++----- utils/fallbackswitch/Cargo.toml | 26 +++++++++++++------------- utils/togglerecord/Cargo.toml | 14 +++++++------- version-helper/Cargo.toml | 2 +- video/cdg/Cargo.toml | 12 ++++++------ video/closedcaption/Cargo.toml | 20 ++++++++++---------- video/dav1d/Cargo.toml | 10 +++++----- video/flavors/Cargo.toml | 8 ++++---- video/gif/Cargo.toml | 10 +++++----- video/rav1e/Cargo.toml | 10 +++++----- video/rspng/Cargo.toml | 10 +++++----- 21 files changed, 123 insertions(+), 123 deletions(-) diff --git a/audio/audiofx/Cargo.toml b/audio/audiofx/Cargo.toml index f7a49088..8f027086 100644 --- a/audio/audiofx/Cargo.toml +++ b/audio/audiofx/Cargo.toml @@ -8,10 +8,10 @@ description = "Rust AudioFx Plugin" edition = "2018" [dependencies] -glib = { git = "https://github.com/gtk-rs/glib" } -gstreamer = { git = "https://gitlab.freedesktop.org/gstreamer/gstreamer-rs" } -gstreamer-base = { git = "https://gitlab.freedesktop.org/gstreamer/gstreamer-rs" } -gstreamer-audio = { git = "https://gitlab.freedesktop.org/gstreamer/gstreamer-rs" } +glib = { version = "0.10" } +gstreamer = { version = "0.16" } +gstreamer-base = { version = "0.16" } +gstreamer-audio = { version = "0.16" } byte-slice-cast = "0.3" num-traits = "0.2" lazy_static = "1.0" @@ -23,8 +23,8 @@ crate-type = ["cdylib", "rlib"] path = "src/lib.rs" [dev-dependencies] -gstreamer-check = { git = "https://gitlab.freedesktop.org/gstreamer/gstreamer-rs" } -gstreamer-app = { git = "https://gitlab.freedesktop.org/gstreamer/gstreamer-rs" } +gstreamer-check = { version = "0.16" } +gstreamer-app = { version = "0.16" } [build-dependencies] -gst-plugin-version-helper = { path="../../version-helper" } +gst-plugin-version-helper = { path="../../version-helper", version = "0.2" } diff --git a/audio/claxon/Cargo.toml b/audio/claxon/Cargo.toml index c0443785..e210cacd 100644 --- a/audio/claxon/Cargo.toml +++ b/audio/claxon/Cargo.toml @@ -8,10 +8,10 @@ description = "Claxon FLAC Decoder Plugin" edition = "2018" [dependencies] -glib = { git = "https://github.com/gtk-rs/glib" } -gstreamer = { git = "https://gitlab.freedesktop.org/gstreamer/gstreamer-rs" } -gstreamer-audio = { git = "https://gitlab.freedesktop.org/gstreamer/gstreamer-rs" } -gstreamer-check = { git = "https://gitlab.freedesktop.org/gstreamer/gstreamer-rs" } +glib = { version = "0.10" } +gstreamer = { version = "0.16" } +gstreamer-audio = { version = "0.16" } +gstreamer-check = { version = "0.16" } claxon = { version = "0.4" } byte-slice-cast = "~0.3.4" atomic_refcell = "0.1" @@ -22,4 +22,4 @@ crate-type = ["cdylib", "rlib"] path = "src/lib.rs" [build-dependencies] -gst-plugin-version-helper = { path="../../version-helper" } +gst-plugin-version-helper = { path="../../version-helper", version = "0.2" } diff --git a/audio/csound/Cargo.toml b/audio/csound/Cargo.toml index 933a4472..21120fac 100644 --- a/audio/csound/Cargo.toml +++ b/audio/csound/Cargo.toml @@ -8,11 +8,11 @@ edition = "2018" description = "An Audio filter plugin based on Csound" [dependencies] -glib = { git = "https://github.com/gtk-rs/glib" } -gst = { package = "gstreamer", git = "https://gitlab.freedesktop.org/gstreamer/gstreamer-rs" } -gst_base = { package = "gstreamer-base", git = "https://gitlab.freedesktop.org/gstreamer/gstreamer-rs" } -gst_audio = { package = "gstreamer-audio", git = "https://gitlab.freedesktop.org/gstreamer/gstreamer-rs" } -gst_check = { package = "gstreamer-check", git = "https://gitlab.freedesktop.org/gstreamer/gstreamer-rs" } +glib = { version = "0.10" } +gst = { package = "gstreamer", version = "0.16" } +gst_base = { package = "gstreamer-base", version = "0.16" } +gst_audio = { package = "gstreamer-audio", version = "0.16" } +gst_check = { package = "gstreamer-check", version = "0.16" } csound = "0.1.8" once_cell = "1.0" byte-slice-cast = "0.3" @@ -27,4 +27,4 @@ name = "csound-effect" path = "examples/effect_example.rs" [build-dependencies] -gst-plugin-version-helper = { path = "../../version-helper" } +gst-plugin-version-helper = { path = "../../version-helper", version = "0.2" } diff --git a/audio/lewton/Cargo.toml b/audio/lewton/Cargo.toml index 5c085911..a43b6ef8 100644 --- a/audio/lewton/Cargo.toml +++ b/audio/lewton/Cargo.toml @@ -8,10 +8,10 @@ description = "lewton Vorbis Decoder Plugin" edition = "2018" [dependencies] -glib = { git = "https://github.com/gtk-rs/glib" } -gstreamer = { git = "https://gitlab.freedesktop.org/gstreamer/gstreamer-rs" } -gstreamer-audio = { git = "https://gitlab.freedesktop.org/gstreamer/gstreamer-rs" } -gstreamer-check = { git = "https://gitlab.freedesktop.org/gstreamer/gstreamer-rs" } +glib = { version = "0.10" } +gstreamer = { version = "0.16" } +gstreamer-audio = { version = "0.16" } +gstreamer-check = { version = "0.16" } lewton = { version = "0.10", default-features = false } byte-slice-cast = "0.3" atomic_refcell = "0.1" @@ -23,4 +23,4 @@ crate-type = ["cdylib", "rlib"] path = "src/lib.rs" [build-dependencies] -gst-plugin-version-helper = { path="../../version-helper" } +gst-plugin-version-helper = { path="../../version-helper", version = "0.2" } diff --git a/generic/file/Cargo.toml b/generic/file/Cargo.toml index d811ba52..9a34e586 100644 --- a/generic/file/Cargo.toml +++ b/generic/file/Cargo.toml @@ -8,9 +8,9 @@ description = "Rust File Plugin" [dependencies] url = "2" -glib = { git = "https://github.com/gtk-rs/glib" } -gstreamer = { git = "https://gitlab.freedesktop.org/gstreamer/gstreamer-rs" } -gstreamer-base = { git = "https://gitlab.freedesktop.org/gstreamer/gstreamer-rs" } +glib = { version = "0.10" } +gstreamer = { version = "0.16" } +gstreamer-base = { version = "0.16" } lazy_static = "1.0" [lib] @@ -19,4 +19,4 @@ crate-type = ["cdylib", "rlib"] path = "src/lib.rs" [build-dependencies] -gst-plugin-version-helper = { path="../../version-helper" } +gst-plugin-version-helper = { path="../../version-helper", version = "0.2" } diff --git a/generic/sodium/Cargo.toml b/generic/sodium/Cargo.toml index 1ddb0b49..7e7f07e1 100644 --- a/generic/sodium/Cargo.toml +++ b/generic/sodium/Cargo.toml @@ -8,9 +8,9 @@ license = "MIT" edition = "2018" [dependencies] -glib = { git = "https://github.com/gtk-rs/glib" } -gst = { git = "https://gitlab.freedesktop.org/gstreamer/gstreamer-rs", features = ["v1_14"], package="gstreamer" } -gst-base = { git = "https://gitlab.freedesktop.org/gstreamer/gstreamer-rs", features = ["v1_14"], package = "gstreamer-base" } +glib = { version = "0.10" } +gst = { version = "0.16", features = ["v1_14"], package="gstreamer" } +gst-base = { version = "0.16", features = ["v1_14"], package = "gstreamer-base" } sodiumoxide = "0.2.1" lazy_static = "1.3.0" hex = "0.4" @@ -26,11 +26,11 @@ pretty_assertions = "0.6" rand = "0.7" [dev-dependencies.gst-check] -git = "https://gitlab.freedesktop.org/gstreamer/gstreamer-rs" +version = "0.16" package="gstreamer-check" [dev-dependencies.gst-app] -git = "https://gitlab.freedesktop.org/gstreamer/gstreamer-rs" +version = "0.16" package="gstreamer-app" [lib] @@ -54,4 +54,4 @@ path = "examples/decrypt_example.rs" required-features = ["serde", "serde_json", "clap"] [build-dependencies] -gst-plugin-version-helper = { path="../../version-helper" } +gst-plugin-version-helper = { path="../../version-helper", version = "0.2" } diff --git a/generic/threadshare/Cargo.toml b/generic/threadshare/Cargo.toml index 260380d8..113cd135 100644 --- a/generic/threadshare/Cargo.toml +++ b/generic/threadshare/Cargo.toml @@ -9,17 +9,17 @@ edition = "2018" [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" } -glib = { git = "https://github.com/gtk-rs/glib" } -gio = { git = "https://github.com/gtk-rs/gio" } -gst = { package = "gstreamer", git = "https://gitlab.freedesktop.org/gstreamer/gstreamer-rs", features=["v1_10"] } -gst-app = { package = "gstreamer-app", git = "https://gitlab.freedesktop.org/gstreamer/gstreamer-rs" } -gst-check = { package = "gstreamer-check", git = "https://gitlab.freedesktop.org/gstreamer/gstreamer-rs" } -gst-net = { package = "gstreamer-net", git = "https://gitlab.freedesktop.org/gstreamer/gstreamer-rs" } -gst-rtp = { package = "gstreamer-rtp", git = "https://gitlab.freedesktop.org/gstreamer/gstreamer-rs" } -gstreamer-sys = { git = "https://gitlab.freedesktop.org/gstreamer/gstreamer-rs-sys" } +glib-sys = { version = "0.10" } +gobject-sys = { version = "0.10" } +gio-sys = { version = "0.10" } +glib = { version = "0.10" } +gio = { version = "0.9" } +gst = { package = "gstreamer", version = "0.16", features=["v1_10"] } +gst-app = { package = "gstreamer-app", version = "0.16" } +gst-check = { package = "gstreamer-check", version = "0.16" } +gst-net = { package = "gstreamer-net", version = "0.16" } +gst-rtp = { package = "gstreamer-rtp", version = "0.16" } +gstreamer-sys = { version = "0.9" } pin-project = "0.4" once_cell = "1" tokio = { git = "https://github.com/fengalin/tokio", tag = "tokio-0.2.13-throttling", features = ["io-util", "macros", "rt-core", "sync", "stream", "time", "tcp", "udp", "rt-util"] } @@ -52,6 +52,6 @@ name = "tcpclientsrc-benchmark-sender" path = "examples/tcpclientsrc_benchmark_sender.rs" [build-dependencies] -gst-plugin-version-helper = { path="../../version-helper" } +gst-plugin-version-helper = { path="../../version-helper", version = "0.2" } cc = "1.0.38" pkg-config = "0.3.15" diff --git a/net/reqwest/Cargo.toml b/net/reqwest/Cargo.toml index 5cd0ffc5..c6586da5 100644 --- a/net/reqwest/Cargo.toml +++ b/net/reqwest/Cargo.toml @@ -9,13 +9,13 @@ edition = "2018" [dependencies] url = "2.1" -glib = { git = "https://github.com/gtk-rs/glib" } +glib = { version = "0.10" } reqwest = { version = "0.10", features = ["cookies", "gzip"] } futures = "0.3" hyperx = "1.0" mime = "0.3" -gstreamer = { git = "https://gitlab.freedesktop.org/gstreamer/gstreamer-rs", features = ["v1_10"] } -gstreamer-base = { git = "https://gitlab.freedesktop.org/gstreamer/gstreamer-rs" } +gstreamer = { version = "0.16", features = ["v1_10"] } +gstreamer-base = { version = "0.16" } tokio = { version = "0.2", features = ["time", "rt-threaded"] } lazy_static = "1.0" @@ -28,4 +28,4 @@ crate-type = ["cdylib", "rlib"] path = "src/lib.rs" [build-dependencies] -gst-plugin-version-helper = { path="../../version-helper" } +gst-plugin-version-helper = { path="../../version-helper", version = "0.2" } diff --git a/net/rusoto/Cargo.toml b/net/rusoto/Cargo.toml index 4f962ee1..402e9a5c 100644 --- a/net/rusoto/Cargo.toml +++ b/net/rusoto/Cargo.toml @@ -12,9 +12,9 @@ edition = "2018" [dependencies] bytes = "0.5" futures = "0.3" -glib = { git = "https://github.com/gtk-rs/glib" } -gstreamer = { git = "https://gitlab.freedesktop.org/gstreamer/gstreamer-rs", features = ["v1_12"] } -gstreamer-base = { git = "https://gitlab.freedesktop.org/gstreamer/gstreamer-rs", features = ["v1_12"] } +glib = { version = "0.10" } +gstreamer = { version = "0.16", features = ["v1_12"] } +gstreamer-base = { version = "0.16", features = ["v1_12"] } rusoto_core = "0.44" rusoto_s3 = "0.44" rusoto_credential = "0.44" @@ -38,4 +38,4 @@ crate-type = ["cdylib", "rlib"] path = "src/lib.rs" [build-dependencies] -gst-plugin-version-helper = { path="../../version-helper" } +gst-plugin-version-helper = { path="../../version-helper", version = "0.2" } diff --git a/text/wrap/Cargo.toml b/text/wrap/Cargo.toml index e14a0180..fb537d2c 100644 --- a/text/wrap/Cargo.toml +++ b/text/wrap/Cargo.toml @@ -8,13 +8,13 @@ description = "Rust Text Wrap Plugin" repository = "https://gitlab.freedesktop.org/gstreamer/gst-plugins-rs" [dependencies] -glib = { git = "https://github.com/gtk-rs/glib" } +glib = { version = "0.10" } once_cell = "1.0" textwrap = { version = "0.12", features = ["hyphenation"] } hyphenation = "0.8" [dependencies.gst] -git = "https://gitlab.freedesktop.org/gstreamer/gstreamer-rs" +version = "0.16" features = ["v1_12"] package="gstreamer" @@ -24,8 +24,8 @@ crate-type = ["cdylib", "rlib"] path = "src/lib.rs" [build-dependencies] -gst-plugin-version-helper = { path="../../version-helper" } +gst-plugin-version-helper = { path="../../version-helper", version = "0.2" } [dev-dependencies.gst-check] -git = "https://gitlab.freedesktop.org/gstreamer/gstreamer-rs" +version = "0.16" package="gstreamer-check" diff --git a/tutorial/Cargo.toml b/tutorial/Cargo.toml index e48d5eee..f823dc37 100644 --- a/tutorial/Cargo.toml +++ b/tutorial/Cargo.toml @@ -8,11 +8,11 @@ edition = "2018" description = "Rust Tutorial Plugin" [dependencies] -glib = { git = "https://github.com/gtk-rs/glib" } -gstreamer = { git = "https://gitlab.freedesktop.org/gstreamer/gstreamer-rs" } -gstreamer-base = { git = "https://gitlab.freedesktop.org/gstreamer/gstreamer-rs" } -gstreamer-video = { git = "https://gitlab.freedesktop.org/gstreamer/gstreamer-rs" } -gstreamer-audio = { git = "https://gitlab.freedesktop.org/gstreamer/gstreamer-rs" } +glib = { version = "0.10" } +gstreamer = { version = "0.16" } +gstreamer-base = { version = "0.16" } +gstreamer-video = { version = "0.16" } +gstreamer-audio = { version = "0.16" } byte-slice-cast = "0.3" num-traits = "0.2" once_cell = "1.0" diff --git a/utils/fallbackswitch/Cargo.toml b/utils/fallbackswitch/Cargo.toml index dc781050..fe343af2 100644 --- a/utils/fallbackswitch/Cargo.toml +++ b/utils/fallbackswitch/Cargo.toml @@ -9,21 +9,21 @@ description = "Fallback Switcher Plugin" [dependencies] libc = { version = "0.2", optional = true } -glib = { git = "https://github.com/gtk-rs/glib" } -glib-sys = { git = "https://github.com/gtk-rs/sys", optional = true } -gobject-sys = { git = "https://github.com/gtk-rs/sys", optional = true } -gst = { package = "gstreamer", git = "https://gitlab.freedesktop.org/gstreamer/gstreamer-rs", features = ["v1_14"] } -gst-base = { package = "gstreamer-base", git = "https://gitlab.freedesktop.org/gstreamer/gstreamer-rs", features = ["v1_16"] } -gst-sys = { package = "gstreamer-sys", git = "https://gitlab.freedesktop.org/gstreamer/gstreamer-rs-sys", optional = true } -gst-audio = { package = "gstreamer-audio", git = "https://gitlab.freedesktop.org/gstreamer/gstreamer-rs", features = ["v1_14"] } -gst-video = { package = "gstreamer-video", git = "https://gitlab.freedesktop.org/gstreamer/gstreamer-rs", features = ["v1_14"] } -gtk = { git = "https://github.com/gtk-rs/gtk", optional = true } -gio = { git = "https://github.com/gtk-rs/gio", optional = true } +glib = { version = "0.10" } +glib-sys = { version = "0.10", optional = true } +gobject-sys = { version = "0.10", optional = true } +gst = { package = "gstreamer", version = "0.16", features = ["v1_14"] } +gst-base = { package = "gstreamer-base", version = "0.16", features = ["v1_16"] } +gst-sys = { package = "gstreamer-sys", version = "0.9", optional = true } +gst-audio = { package = "gstreamer-audio", version = "0.16", features = ["v1_14"] } +gst-video = { package = "gstreamer-video", version = "0.16", features = ["v1_14"] } +gtk = { version = "0.9", optional = true } +gio = { version = "0.9", optional = true } once_cell = "1.0" [dev-dependencies] -gst-app = { package = "gstreamer-app", git = "https://gitlab.freedesktop.org/gstreamer/gstreamer-rs", features = ["v1_14"]} -gst-check = { package = "gstreamer-check", git = "https://gitlab.freedesktop.org/gstreamer/gstreamer-rs", features = ["v1_14"]} +gst-app = { package = "gstreamer-app", version = "0.16", features = ["v1_14"]} +gst-check = { package = "gstreamer-check", version = "0.16", features = ["v1_14"]} [lib] name = "gstfallbackswitch" @@ -36,7 +36,7 @@ path = "examples/gtk_fallbackswitch.rs" required-features = ["gtk", "gio"] [build-dependencies] -gst-plugin-version-helper = { path="../../version-helper" } +gst-plugin-version-helper = { path="../../version-helper", version = "0.2" } cc = "1.0" pkg-config = "0.3" diff --git a/utils/togglerecord/Cargo.toml b/utils/togglerecord/Cargo.toml index 4ab67775..0058445e 100644 --- a/utils/togglerecord/Cargo.toml +++ b/utils/togglerecord/Cargo.toml @@ -8,12 +8,12 @@ repository = "https://gitlab.freedesktop.org/gstreamer/gst-plugins-rs" edition = "2018" [dependencies] -glib = { git = "https://github.com/gtk-rs/glib" } -gstreamer = { git = "https://gitlab.freedesktop.org/gstreamer/gstreamer-rs" } -gstreamer-audio = { git = "https://gitlab.freedesktop.org/gstreamer/gstreamer-rs" } -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.10" } +gstreamer = { version = "0.16" } +gstreamer-audio = { version = "0.16" } +gstreamer-video = { version = "0.16" } +gtk = { version = "0.9", optional = true } +gio = { version = "0.9", optional = true } parking_lot = "0.11" lazy_static = "1.0" @@ -31,4 +31,4 @@ path = "examples/gtk_recording.rs" required-features = ["gtk", "gio"] [build-dependencies] -gst-plugin-version-helper = { path="../../version-helper" } +gst-plugin-version-helper = { path="../../version-helper", version = "0.2" } diff --git a/version-helper/Cargo.toml b/version-helper/Cargo.toml index 43531653..f2614756 100644 --- a/version-helper/Cargo.toml +++ b/version-helper/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "gst-plugin-version-helper" -version = "0.6.0" +version = "0.2.0" authors = ["Sajeer Ahamed ", "Sebastian Dröge "] categories = ["development-tools"] diff --git a/video/cdg/Cargo.toml b/video/cdg/Cargo.toml index b7d1c40a..06d79c14 100644 --- a/video/cdg/Cargo.toml +++ b/video/cdg/Cargo.toml @@ -8,11 +8,11 @@ description = "CDG Plugin" edition = "2018" [dependencies] -glib = { git = "https://github.com/gtk-rs/glib" } -gstreamer = { git = "https://gitlab.freedesktop.org/gstreamer/gstreamer-rs", features = ["v1_12"] } -gstreamer-base = { git = "https://gitlab.freedesktop.org/gstreamer/gstreamer-rs", features = ["v1_12"] } -gstreamer-video = { git = "https://gitlab.freedesktop.org/gstreamer/gstreamer-rs", features = ["v1_12"] } -gstreamer-app = { git = "https://gitlab.freedesktop.org/gstreamer/gstreamer-rs" } +glib = { version = "0.10" } +gstreamer = { version = "0.16", features = ["v1_12"] } +gstreamer-base = { version = "0.16", features = ["v1_12"] } +gstreamer-video = { version = "0.16", features = ["v1_12"] } +gstreamer-app = { version = "0.16" } cdg = "0.1" cdg_renderer = "0.5" image = "0.23" @@ -25,4 +25,4 @@ crate-type = ["cdylib", "rlib"] path = "src/lib.rs" [build-dependencies] -gst-plugin-version-helper = { path="../../version-helper" } +gst-plugin-version-helper = { path="../../version-helper", version = "0.2" } diff --git a/video/closedcaption/Cargo.toml b/video/closedcaption/Cargo.toml index edb76f39..296506a2 100644 --- a/video/closedcaption/Cargo.toml +++ b/video/closedcaption/Cargo.toml @@ -8,30 +8,30 @@ description = "Rust Closed Caption Plugin" repository = "https://gitlab.freedesktop.org/gstreamer/gst-plugins-rs" [dependencies] -glib = { git = "https://github.com/gtk-rs/glib" } +glib = { version = "0.10" } combine = "4.0" either = "1" uuid = { version = "0.8", features = ["v4"] } chrono = "0.4" lazy_static = "1.2" atomic_refcell = "0.1" -cairo-rs = { git = "https://github.com/gtk-rs/cairo", features=["use_glib"] } -cairo-sys-rs = { git = "https://github.com/gtk-rs/cairo" } -pango = { git = "https://github.com/gtk-rs/pango" } -pangocairo = { git = "https://github.com/gtk-rs/pangocairo" } +cairo-rs = { version = "0.9", features=["use_glib"] } +cairo-sys-rs = { version = "0.10" } +pango = { version = "0.9" } +pangocairo = { version = "0.10" } [dependencies.gst] -git = "https://gitlab.freedesktop.org/gstreamer/gstreamer-rs" +version = "0.16" features = ["v1_16"] package="gstreamer" [dependencies.gst-base] -git = "https://gitlab.freedesktop.org/gstreamer/gstreamer-rs" +version = "0.16" features = ["v1_16"] package="gstreamer-base" [dependencies.gst-video] -git = "https://gitlab.freedesktop.org/gstreamer/gstreamer-rs" +version = "0.16" features = ["v1_16"] package="gstreamer-video" @@ -40,7 +40,7 @@ pretty_assertions = "0.6" rand = { version = "0.7", features = ["small_rng"] } [dev-dependencies.gst-check] -git = "https://gitlab.freedesktop.org/gstreamer/gstreamer-rs" +version = "0.16" package="gstreamer-check" [lib] @@ -49,5 +49,5 @@ crate-type = ["cdylib", "rlib"] path = "src/lib.rs" [build-dependencies] -gst-plugin-version-helper = { path="../../version-helper" } +gst-plugin-version-helper = { path="../../version-helper", version = "0.2" } cc = "1.0" diff --git a/video/dav1d/Cargo.toml b/video/dav1d/Cargo.toml index ed148d71..b3922e41 100644 --- a/video/dav1d/Cargo.toml +++ b/video/dav1d/Cargo.toml @@ -9,10 +9,10 @@ description = "Dav1d Plugin" [dependencies] dav1d = "0.5" -glib = { git = "https://github.com/gtk-rs/glib" } -gstreamer = { git = "https://gitlab.freedesktop.org/gstreamer/gstreamer-rs" } -gstreamer-base = { git = "https://gitlab.freedesktop.org/gstreamer/gstreamer-rs" } -gstreamer-video = { git = "https://gitlab.freedesktop.org/gstreamer/gstreamer-rs" } +glib = { version = "0.10" } +gstreamer = { version = "0.16" } +gstreamer-base = { version = "0.16" } +gstreamer-video = { version = "0.16" } lazy_static = "1.0" [lib] @@ -21,7 +21,7 @@ crate-type = ["cdylib", "rlib"] path = "src/lib.rs" [build-dependencies] -gst-plugin-version-helper = { path = "../../version-helper" } +gst-plugin-version-helper = { path = "../../version-helper", version = "0.2" } [features] build = ["dav1d/build"] diff --git a/video/flavors/Cargo.toml b/video/flavors/Cargo.toml index 721c8ec7..b1b719b4 100644 --- a/video/flavors/Cargo.toml +++ b/video/flavors/Cargo.toml @@ -8,9 +8,9 @@ edition = "2018" description = "Rust FLV Plugin" [dependencies] -glib = { git = "https://github.com/gtk-rs/glib" } -gstreamer = { git = "https://gitlab.freedesktop.org/gstreamer/gstreamer-rs" } -gstreamer-base = { git = "https://gitlab.freedesktop.org/gstreamer/gstreamer-rs" } +glib = { version = "0.10" } +gstreamer = { version = "0.16" } +gstreamer-base = { version = "0.16" } num-rational = { version = "0.3", default-features = false, features = [] } nom = "5" flavors = { git = "https://github.com/rust-av/flavors" } @@ -25,4 +25,4 @@ crate-type = ["cdylib", "rlib"] path = "src/lib.rs" [build-dependencies] -gst-plugin-version-helper = { path="../../version-helper" } +gst-plugin-version-helper = { path="../../version-helper", version = "0.2" } diff --git a/video/gif/Cargo.toml b/video/gif/Cargo.toml index fea5cfe9..4a2a54f4 100644 --- a/video/gif/Cargo.toml +++ b/video/gif/Cargo.toml @@ -7,10 +7,10 @@ license = "MIT/Apache-2.0" edition = "2018" [dependencies] -glib = { git = "https://github.com/gtk-rs/glib" } -gstreamer = { git = "https://gitlab.freedesktop.org/gstreamer/gstreamer-rs" } -gstreamer-video = { git = "https://gitlab.freedesktop.org/gstreamer/gstreamer-rs" } -gstreamer-check = { git = "https://gitlab.freedesktop.org/gstreamer/gstreamer-rs" } +glib = { version = "0.10" } +gstreamer = { version = "0.16" } +gstreamer-video = { version = "0.16" } +gstreamer-check = { version = "0.16" } gif = "0.10" atomic_refcell = "0.1" once_cell = "1" @@ -25,4 +25,4 @@ name = "testvideosrc2gif" path = "examples/testvideosrc2gif.rs" [build-dependencies] -gst-plugin-version-helper = { path="../../version-helper" } +gst-plugin-version-helper = { path="../../version-helper", version = "0.2" } diff --git a/video/rav1e/Cargo.toml b/video/rav1e/Cargo.toml index f15a59e5..f1caa622 100644 --- a/video/rav1e/Cargo.toml +++ b/video/rav1e/Cargo.toml @@ -8,10 +8,10 @@ description = "rav1e AV1 Encoder Plugin" edition = "2018" [dependencies] -glib = { git = "https://github.com/gtk-rs/glib" } -gstreamer = { git = "https://gitlab.freedesktop.org/gstreamer/gstreamer-rs" } -gstreamer-video = { git = "https://gitlab.freedesktop.org/gstreamer/gstreamer-rs" } -gstreamer-check = { git = "https://gitlab.freedesktop.org/gstreamer/gstreamer-rs" } +glib = { version = "0.10" } +gstreamer = { version = "0.16" } +gstreamer-video = { version = "0.16" } +gstreamer-check = { version = "0.16" } rav1e = { version = "0.3", default-features = false } atomic_refcell = "0.1" lazy_static = "1.0" @@ -22,4 +22,4 @@ crate-type = ["cdylib", "rlib"] path = "src/lib.rs" [build-dependencies] -gst-plugin-version-helper = { path="../../version-helper" } +gst-plugin-version-helper = { path="../../version-helper", version = "0.2" } diff --git a/video/rspng/Cargo.toml b/video/rspng/Cargo.toml index 0e2409a6..8f69a393 100644 --- a/video/rspng/Cargo.toml +++ b/video/rspng/Cargo.toml @@ -8,10 +8,10 @@ edition = "2018" description = "An PNG encoder/decoder written in pure Rust" [dependencies] -glib = { git = "https://github.com/gtk-rs/glib" } -gst = { package = "gstreamer", git = "https://gitlab.freedesktop.org/gstreamer/gstreamer-rs" } -gst_video = { package = "gstreamer-video", git = "https://gitlab.freedesktop.org/gstreamer/gstreamer-rs" } -gst_check = { package = "gstreamer-check", git = "https://gitlab.freedesktop.org/gstreamer/gstreamer-rs" } +glib = { version = "0.10" } +gst = { package = "gstreamer", version = "0.16" } +gst_video = { package = "gstreamer-video", version = "0.16" } +gst_check = { package = "gstreamer-check", version = "0.16" } png = "0.16.3" once_cell = "1" parking_lot = "0.11" @@ -23,4 +23,4 @@ crate-type = ["cdylib", "rlib"] path = "src/lib.rs" [build-dependencies] -gst-plugin-version-helper = { path="../../version-helper" } +gst-plugin-version-helper = { path="../../version-helper", version = "0.2" }