From 982b5d6ef9e20c3eed1a8eb88325bc7cfbbd474f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sebastian=20Dr=C3=B6ge?= Date: Thu, 10 Aug 2023 16:55:08 +0300 Subject: [PATCH] Add version to the gst-plugin-version-helper dependency --- audio/audiofx/Cargo.toml | 2 +- audio/claxon/Cargo.toml | 2 +- audio/csound/Cargo.toml | 2 +- audio/lewton/Cargo.toml | 2 +- audio/spotify/Cargo.toml | 2 +- generic/file/Cargo.toml | 2 +- generic/sodium/Cargo.toml | 2 +- generic/threadshare/Cargo.toml | 2 +- mux/flavors/Cargo.toml | 2 +- mux/fmp4/Cargo.toml | 2 +- mux/mp4/Cargo.toml | 2 +- net/aws/Cargo.toml | 2 +- net/hlssink3/Cargo.toml | 2 +- net/ndi/Cargo.toml | 2 +- net/onvif/Cargo.toml | 2 +- net/raptorq/Cargo.toml | 2 +- net/reqwest/Cargo.toml | 2 +- net/rtp/Cargo.toml | 2 +- net/webrtc/Cargo.toml | 2 +- net/webrtchttp/Cargo.toml | 2 +- text/ahead/Cargo.toml | 2 +- text/json/Cargo.toml | 2 +- text/regex/Cargo.toml | 2 +- text/wrap/Cargo.toml | 2 +- tutorial/Cargo.toml | 2 +- utils/fallbackswitch/Cargo.toml | 2 +- utils/livesync/Cargo.toml | 2 +- utils/togglerecord/Cargo.toml | 2 +- utils/tracers/Cargo.toml | 2 +- utils/uriplaylistbin/Cargo.toml | 2 +- version-helper/Cargo.toml | 4 ++-- video/cdg/Cargo.toml | 2 +- video/closedcaption/Cargo.toml | 2 +- video/dav1d/Cargo.toml | 2 +- video/ffv1/Cargo.toml | 2 +- video/gif/Cargo.toml | 2 +- video/gtk4/Cargo.toml | 2 +- video/hsv/Cargo.toml | 2 +- video/png/Cargo.toml | 2 +- video/rav1e/Cargo.toml | 2 +- video/videofx/Cargo.toml | 2 +- video/webp/Cargo.toml | 2 +- 42 files changed, 43 insertions(+), 43 deletions(-) diff --git a/audio/audiofx/Cargo.toml b/audio/audiofx/Cargo.toml index 52ab82ad..86aa64b9 100644 --- a/audio/audiofx/Cargo.toml +++ b/audio/audiofx/Cargo.toml @@ -32,7 +32,7 @@ gst-check = { package = "gstreamer-check", git = "https://gitlab.freedesktop.org gst-app = { package = "gstreamer-app", git = "https://gitlab.freedesktop.org/gstreamer/gstreamer-rs", branch = "0.21", version = "0.21" } [build-dependencies] -gst-plugin-version-helper = { path="../../version-helper" } +gst-plugin-version-helper = { path="../../version-helper", version = "0.7" } [features] static = [] diff --git a/audio/claxon/Cargo.toml b/audio/claxon/Cargo.toml index aca5741c..523f9934 100644 --- a/audio/claxon/Cargo.toml +++ b/audio/claxon/Cargo.toml @@ -25,7 +25,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.7" } [features] static = [] diff --git a/audio/csound/Cargo.toml b/audio/csound/Cargo.toml index bbc01014..8ab90350 100644 --- a/audio/csound/Cargo.toml +++ b/audio/csound/Cargo.toml @@ -28,7 +28,7 @@ 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.7" } [features] static = [] diff --git a/audio/lewton/Cargo.toml b/audio/lewton/Cargo.toml index da65b350..d4421cf3 100644 --- a/audio/lewton/Cargo.toml +++ b/audio/lewton/Cargo.toml @@ -24,7 +24,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.7" } [features] static = [] diff --git a/audio/spotify/Cargo.toml b/audio/spotify/Cargo.toml index 03745843..15180e80 100644 --- a/audio/spotify/Cargo.toml +++ b/audio/spotify/Cargo.toml @@ -23,7 +23,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.7" } [features] static = [] diff --git a/generic/file/Cargo.toml b/generic/file/Cargo.toml index de93721b..1562fe16 100644 --- a/generic/file/Cargo.toml +++ b/generic/file/Cargo.toml @@ -19,7 +19,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.7" } [features] static = [] diff --git a/generic/sodium/Cargo.toml b/generic/sodium/Cargo.toml index e6703065..7f95cf2d 100644 --- a/generic/sodium/Cargo.toml +++ b/generic/sodium/Cargo.toml @@ -58,7 +58,7 @@ 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.7" } [features] static = [] diff --git a/generic/threadshare/Cargo.toml b/generic/threadshare/Cargo.toml index 894c0dac..e5bb49f3 100644 --- a/generic/threadshare/Cargo.toml +++ b/generic/threadshare/Cargo.toml @@ -59,7 +59,7 @@ name = "ts-standalone" path = "examples/standalone/main.rs" [build-dependencies] -gst-plugin-version-helper = { path="../../version-helper" } +gst-plugin-version-helper = { path="../../version-helper", version = "0.7" } cc = "1.0.38" pkg-config = "0.3.15" diff --git a/mux/flavors/Cargo.toml b/mux/flavors/Cargo.toml index 76eba4a3..caadd917 100644 --- a/mux/flavors/Cargo.toml +++ b/mux/flavors/Cargo.toml @@ -25,7 +25,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.7" } [features] static = [] diff --git a/mux/fmp4/Cargo.toml b/mux/fmp4/Cargo.toml index 9b5530c3..c6f0718d 100644 --- a/mux/fmp4/Cargo.toml +++ b/mux/fmp4/Cargo.toml @@ -32,7 +32,7 @@ quick-xml = { version = "0.30", features = ["serialize"] } serde = "1" [build-dependencies] -gst-plugin-version-helper = { path="../../version-helper" } +gst-plugin-version-helper = { path="../../version-helper", version = "0.7" } [features] default = [] diff --git a/mux/mp4/Cargo.toml b/mux/mp4/Cargo.toml index e7986f5d..d79c12db 100644 --- a/mux/mp4/Cargo.toml +++ b/mux/mp4/Cargo.toml @@ -26,7 +26,7 @@ tempfile = "3" url = "2" [build-dependencies] -gst-plugin-version-helper = { path="../../version-helper" } +gst-plugin-version-helper = { path="../../version-helper", version = "0.7" } [features] default = [] diff --git a/net/aws/Cargo.toml b/net/aws/Cargo.toml index 82bcc23c..46fa86d3 100644 --- a/net/aws/Cargo.toml +++ b/net/aws/Cargo.toml @@ -49,7 +49,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.7" } [features] static = [] diff --git a/net/hlssink3/Cargo.toml b/net/hlssink3/Cargo.toml index 6396fbe8..80e5aa03 100644 --- a/net/hlssink3/Cargo.toml +++ b/net/hlssink3/Cargo.toml @@ -22,7 +22,7 @@ gst-audio = { package = "gstreamer-audio", git = "https://gitlab.freedesktop.org gst-check = { package = "gstreamer-check", git = "https://gitlab.freedesktop.org/gstreamer/gstreamer-rs", branch = "0.21", version = "0.21" } [build-dependencies] -gst-plugin-version-helper = { path = "../../version-helper" } +gst-plugin-version-helper = { path = "../../version-helper", version = "0.7" } [lib] name = "gsthlssink3" diff --git a/net/ndi/Cargo.toml b/net/ndi/Cargo.toml index 5353d21c..c6a26865 100644 --- a/net/ndi/Cargo.toml +++ b/net/ndi/Cargo.toml @@ -20,7 +20,7 @@ atomic_refcell = "0.1" libloading = "0.8" [build-dependencies] -gst-plugin-version-helper = { path = "../../version-helper" } +gst-plugin-version-helper = { path = "../../version-helper", version = "0.7" } [features] default = ["interlaced-fields", "sink"] diff --git a/net/onvif/Cargo.toml b/net/onvif/Cargo.toml index 0fdfab88..403be796 100644 --- a/net/onvif/Cargo.toml +++ b/net/onvif/Cargo.toml @@ -26,7 +26,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.7" } [features] static = [] diff --git a/net/raptorq/Cargo.toml b/net/raptorq/Cargo.toml index 7f1fddce..7092aee0 100644 --- a/net/raptorq/Cargo.toml +++ b/net/raptorq/Cargo.toml @@ -24,7 +24,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.7" } [features] static = [] diff --git a/net/reqwest/Cargo.toml b/net/reqwest/Cargo.toml index 9247032f..c94c7df3 100644 --- a/net/reqwest/Cargo.toml +++ b/net/reqwest/Cargo.toml @@ -28,7 +28,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.7" } [features] static = [] diff --git a/net/rtp/Cargo.toml b/net/rtp/Cargo.toml index 176821bd..78b7d57c 100644 --- a/net/rtp/Cargo.toml +++ b/net/rtp/Cargo.toml @@ -18,7 +18,7 @@ chrono = { version = "0.4", default-features = false } gst-check = { package = "gstreamer-check", git = "https://gitlab.freedesktop.org/gstreamer/gstreamer-rs", branch = "0.21", version = "0.21", features = ["v1_20"] } [build-dependencies] -gst-plugin-version-helper = { path = "../../version-helper" } +gst-plugin-version-helper = { path = "../../version-helper", version = "0.7" } [lib] name = "gstrsrtp" diff --git a/net/webrtc/Cargo.toml b/net/webrtc/Cargo.toml index af7b3ae0..2934f88f 100644 --- a/net/webrtc/Cargo.toml +++ b/net/webrtc/Cargo.toml @@ -66,7 +66,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.7" } [features] static = [] diff --git a/net/webrtchttp/Cargo.toml b/net/webrtchttp/Cargo.toml index 7ad55ce9..3eb7fe96 100644 --- a/net/webrtchttp/Cargo.toml +++ b/net/webrtchttp/Cargo.toml @@ -27,7 +27,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.7" } [features] static = [] diff --git a/text/ahead/Cargo.toml b/text/ahead/Cargo.toml index b870f4ac..fbe56c67 100644 --- a/text/ahead/Cargo.toml +++ b/text/ahead/Cargo.toml @@ -17,7 +17,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.7" } [features] static = [] diff --git a/text/json/Cargo.toml b/text/json/Cargo.toml index d35b8236..ee2aa458 100644 --- a/text/json/Cargo.toml +++ b/text/json/Cargo.toml @@ -25,7 +25,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.7" } [dev-dependencies.gst-check] git = "https://gitlab.freedesktop.org/gstreamer/gstreamer-rs" diff --git a/text/regex/Cargo.toml b/text/regex/Cargo.toml index e8a8dfcd..86fb65e4 100644 --- a/text/regex/Cargo.toml +++ b/text/regex/Cargo.toml @@ -23,7 +23,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.7" } [dev-dependencies.gst-check] git = "https://gitlab.freedesktop.org/gstreamer/gstreamer-rs" diff --git a/text/wrap/Cargo.toml b/text/wrap/Cargo.toml index d06996b0..e25b6289 100644 --- a/text/wrap/Cargo.toml +++ b/text/wrap/Cargo.toml @@ -24,7 +24,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.7" } [dev-dependencies.gst-check] git = "https://gitlab.freedesktop.org/gstreamer/gstreamer-rs" diff --git a/tutorial/Cargo.toml b/tutorial/Cargo.toml index a64de80b..98903f97 100644 --- a/tutorial/Cargo.toml +++ b/tutorial/Cargo.toml @@ -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.7" } diff --git a/utils/fallbackswitch/Cargo.toml b/utils/fallbackswitch/Cargo.toml index 16fcdbe7..237b7548 100644 --- a/utils/fallbackswitch/Cargo.toml +++ b/utils/fallbackswitch/Cargo.toml @@ -34,7 +34,7 @@ required-features = ["gtk", "gio", "gst-plugin-gtk4"] [build-dependencies] -gst-plugin-version-helper = { path="../../version-helper" } +gst-plugin-version-helper = { path="../../version-helper", version = "0.7" } [features] default = ["v1_20"] diff --git a/utils/livesync/Cargo.toml b/utils/livesync/Cargo.toml index e128f54f..8d1c1e78 100644 --- a/utils/livesync/Cargo.toml +++ b/utils/livesync/Cargo.toml @@ -36,7 +36,7 @@ name = "livesync" path = "tests/livesync.rs" [build-dependencies] -gst-plugin-version-helper = { path="../../version-helper" } +gst-plugin-version-helper = { path="../../version-helper", version = "0.7" } [features] static = [] diff --git a/utils/togglerecord/Cargo.toml b/utils/togglerecord/Cargo.toml index a47ded58..55255b41 100644 --- a/utils/togglerecord/Cargo.toml +++ b/utils/togglerecord/Cargo.toml @@ -32,7 +32,7 @@ path = "examples/gtk_recording.rs" required-features = ["gtk", "gio", "gst-plugin-gtk4"] [build-dependencies] -gst-plugin-version-helper = { path="../../version-helper" } +gst-plugin-version-helper = { path="../../version-helper", version = "0.7" } [features] static = [] diff --git a/utils/tracers/Cargo.toml b/utils/tracers/Cargo.toml index 4f9b3ab5..bfc12e9a 100644 --- a/utils/tracers/Cargo.toml +++ b/utils/tracers/Cargo.toml @@ -22,7 +22,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.7" } [features] static = [] diff --git a/utils/uriplaylistbin/Cargo.toml b/utils/uriplaylistbin/Cargo.toml index 0a538603..6a77c440 100644 --- a/utils/uriplaylistbin/Cargo.toml +++ b/utils/uriplaylistbin/Cargo.toml @@ -30,7 +30,7 @@ path = "examples/playlist.rs" required-features = ["clap"] [build-dependencies] -gst-plugin-version-helper = { path="../../version-helper" } +gst-plugin-version-helper = { path="../../version-helper", version = "0.7" } [features] static = [] diff --git a/version-helper/Cargo.toml b/version-helper/Cargo.toml index 97ba7f8d..0871d444 100644 --- a/version-helper/Cargo.toml +++ b/version-helper/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "gst-plugin-version-helper" -version = "0.11.0" +version = "0.7.5" authors = ["Sajeer Ahamed ", "Sebastian Dröge "] categories = ["development-tools"] @@ -10,7 +10,7 @@ license = "MIT" homepage = "https://gstreamer.freedesktop.org" keywords = ["gstreamer", "multimedia", "cargo"] edition = "2021" -rust-version = "1.70" +rust-version = "1.64" [dependencies] chrono = { version = "0.4.23", default-features = false, features = ["std", "clock"] } diff --git a/video/cdg/Cargo.toml b/video/cdg/Cargo.toml index e89ebe01..a19e980e 100644 --- a/video/cdg/Cargo.toml +++ b/video/cdg/Cargo.toml @@ -26,7 +26,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.7" } [features] static = [] diff --git a/video/closedcaption/Cargo.toml b/video/closedcaption/Cargo.toml index b831b09e..b17512ba 100644 --- a/video/closedcaption/Cargo.toml +++ b/video/closedcaption/Cargo.toml @@ -60,7 +60,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.7" } cc = "1.0" [features] diff --git a/video/dav1d/Cargo.toml b/video/dav1d/Cargo.toml index f44243c1..d9b6ccd0 100644 --- a/video/dav1d/Cargo.toml +++ b/video/dav1d/Cargo.toml @@ -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.7" } [features] static = [] diff --git a/video/ffv1/Cargo.toml b/video/ffv1/Cargo.toml index 0bd91bd4..7a9e3df6 100644 --- a/video/ffv1/Cargo.toml +++ b/video/ffv1/Cargo.toml @@ -22,7 +22,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.7" } [features] static = [] diff --git a/video/gif/Cargo.toml b/video/gif/Cargo.toml index 67e55e3d..e2f07b3b 100644 --- a/video/gif/Cargo.toml +++ b/video/gif/Cargo.toml @@ -28,7 +28,7 @@ name = "testvideosrc2gif" path = "examples/testvideosrc2gif.rs" [build-dependencies] -gst-plugin-version-helper = { path="../../version-helper" } +gst-plugin-version-helper = { path="../../version-helper", version = "0.7" } [features] static = [] diff --git a/video/gtk4/Cargo.toml b/video/gtk4/Cargo.toml index 02041693..a291e561 100644 --- a/video/gtk4/Cargo.toml +++ b/video/gtk4/Cargo.toml @@ -39,7 +39,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.7" } [features] default = [] diff --git a/video/hsv/Cargo.toml b/video/hsv/Cargo.toml index 3d6a864a..ce8cc8b1 100644 --- a/video/hsv/Cargo.toml +++ b/video/hsv/Cargo.toml @@ -25,7 +25,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.7" } [features] static = [] diff --git a/video/png/Cargo.toml b/video/png/Cargo.toml index 4f3a8b28..e10cf4e8 100644 --- a/video/png/Cargo.toml +++ b/video/png/Cargo.toml @@ -24,7 +24,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.7" } [features] static = [] diff --git a/video/rav1e/Cargo.toml b/video/rav1e/Cargo.toml index 1f8b8bcd..55d29cd0 100644 --- a/video/rav1e/Cargo.toml +++ b/video/rav1e/Cargo.toml @@ -23,7 +23,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.7" } [features] default = ["hdr"] diff --git a/video/videofx/Cargo.toml b/video/videofx/Cargo.toml index f9aebd8a..bf41ab0f 100644 --- a/video/videofx/Cargo.toml +++ b/video/videofx/Cargo.toml @@ -51,7 +51,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.7" } [features] static = [] diff --git a/video/webp/Cargo.toml b/video/webp/Cargo.toml index dd5e6ec8..9bb4c1e4 100644 --- a/video/webp/Cargo.toml +++ b/video/webp/Cargo.toml @@ -38,7 +38,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.7" } [features] static = []