Add version requirement to the sys dependency of each crate too

This commit is contained in:
Sebastian Dröge 2022-10-22 20:43:45 +03:00
parent 82c60a0a93
commit 83d5efbeb4
24 changed files with 24 additions and 24 deletions

View file

@ -16,7 +16,7 @@ rust-version = "1.63"
[dependencies]
libc = "0.2"
bitflags = "1.0"
ffi = { package = "gstreamer-allocators-sys", path = "sys" }
ffi = { package = "gstreamer-allocators-sys", version = "0.19", path = "sys" }
glib = { git = "https://github.com/gtk-rs/gtk-rs-core", branch = "0.16", version = "0.16" }
gst = { package = "gstreamer", version = "0.19", path = "../gstreamer" }
once_cell = "1.0"

View file

@ -18,7 +18,7 @@ futures-core = "0.3"
futures-sink = "0.3"
bitflags = "1.0"
libc = "0.2"
ffi = { package = "gstreamer-app-sys", path = "sys" }
ffi = { package = "gstreamer-app-sys", version = "0.19", path = "sys" }
glib = { git = "https://github.com/gtk-rs/gtk-rs-core", branch = "0.16", version = "0.16" }
gst = { package = "gstreamer", version = "0.19", path = "../gstreamer" }
gst-base = { package = "gstreamer-base", version = "0.19", path = "../gstreamer-base" }

View file

@ -17,7 +17,7 @@ rust-version = "1.63"
libc = "0.2"
cfg-if = "1.0"
bitflags = "1.0"
ffi = { package = "gstreamer-audio-sys", path = "sys" }
ffi = { package = "gstreamer-audio-sys", version = "0.19", path = "sys" }
glib = { git = "https://github.com/gtk-rs/gtk-rs-core", branch = "0.16", version = "0.16" }
gst = { package = "gstreamer", version = "0.19", path = "../gstreamer" }
gst-base = { package = "gstreamer-base", version = "0.19", path = "../gstreamer-base" }

View file

@ -17,7 +17,7 @@ rust-version = "1.63"
cfg-if = "1.0"
libc = "0.2"
bitflags = "1.0"
ffi = { package = "gstreamer-base-sys", path = "sys" }
ffi = { package = "gstreamer-base-sys", version = "0.19", path = "sys" }
glib = { git = "https://github.com/gtk-rs/gtk-rs-core", branch = "0.16", version = "0.16" }
gst = { package = "gstreamer", version = "0.19", path = "../gstreamer" }
atomic_refcell = "0.1"

View file

@ -15,7 +15,7 @@ rust-version = "1.63"
[dependencies]
bitflags = "1.0"
ffi = { package = "gstreamer-check-sys", path = "sys" }
ffi = { package = "gstreamer-check-sys", version = "0.19", path = "sys" }
glib = { git = "https://github.com/gtk-rs/gtk-rs-core", branch = "0.16", version = "0.16" }
gst = { package = "gstreamer", version = "0.19", path = "../gstreamer" }

View file

@ -16,7 +16,7 @@ rust-version = "1.63"
[dependencies]
bitflags = "1.0"
once_cell = "1.0"
ffi = { package = "gstreamer-controller-sys", path = "sys" }
ffi = { package = "gstreamer-controller-sys", version = "0.19", path = "sys" }
glib = { git = "https://github.com/gtk-rs/gtk-rs-core", branch = "0.16", version = "0.16" }
gst = { package = "gstreamer", version = "0.19", path = "../gstreamer" }

View file

@ -16,7 +16,7 @@ rust-version = "1.63"
[dependencies]
libc = "0.2"
bitflags = "1.0"
ffi = { package = "gstreamer-editing-services-sys", path = "sys"}
ffi = { package = "gstreamer-editing-services-sys", version = "0.19", path = "sys"}
glib = { git = "https://github.com/gtk-rs/gtk-rs-core", branch = "0.16", version = "0.16" }
gio = { git = "https://github.com/gtk-rs/gtk-rs-core", branch = "0.16", version = "0.16" }
gst = { package = "gstreamer", version = "0.19", path = "../gstreamer" }

View file

@ -21,7 +21,7 @@ bitflags = "1.0"
byteorder = "1"
libc = "0.2"
once_cell = "1.0"
ffi = { package = "gstreamer-gl-sys", path = "sys" }
ffi = { package = "gstreamer-gl-sys", version = "0.19", path = "sys" }
glib = { git = "https://github.com/gtk-rs/gtk-rs-core", branch = "0.16", version = "0.16" }
gst = { package = "gstreamer", version = "0.19", path = "../gstreamer" }
gst-base = { package = "gstreamer-base", version = "0.19", path = "../gstreamer-base" }

View file

@ -18,7 +18,7 @@ rust-version = "1.63"
[dependencies]
libc = "0.2"
ffi = { package = "gstreamer-gl-egl-sys", path = "sys" }
ffi = { package = "gstreamer-gl-egl-sys", version = "0.19", path = "sys" }
glib = { git = "https://github.com/gtk-rs/gtk-rs-core", branch = "0.16", version = "0.16" }
gst = { package = "gstreamer", version = "0.19", path = "../../gstreamer" }

View file

@ -18,7 +18,7 @@ rust-version = "1.63"
[dependencies]
libc = "0.2"
ffi = { package = "gstreamer-gl-wayland-sys", path = "sys" }
ffi = { package = "gstreamer-gl-wayland-sys", version = "0.19", path = "sys" }
glib = { git = "https://github.com/gtk-rs/gtk-rs-core", branch = "0.16", version = "0.16" }
gst = { package = "gstreamer", version = "0.19", path = "../../gstreamer" }

View file

@ -18,7 +18,7 @@ rust-version = "1.63"
[dependencies]
libc = "0.2"
ffi = { package = "gstreamer-gl-x11-sys", path = "sys" }
ffi = { package = "gstreamer-gl-x11-sys", version = "0.19", path = "sys" }
glib = { git = "https://github.com/gtk-rs/gtk-rs-core", branch = "0.16", version = "0.16" }
gst = { package = "gstreamer", version = "0.19", path = "../../gstreamer" }

View file

@ -14,7 +14,7 @@ edition = "2021"
rust-version = "1.63"
[dependencies]
ffi = { package = "gstreamer-mpegts-sys", path = "sys" }
ffi = { package = "gstreamer-mpegts-sys", version = "0.19", path = "sys" }
glib = { git = "https://github.com/gtk-rs/gtk-rs-core", branch = "0.16", version = "0.16" }
gst = { package = "gstreamer", version = "0.19", path = "../gstreamer" }

View file

@ -14,7 +14,7 @@ edition = "2021"
rust-version = "1.63"
[dependencies]
ffi = { package = "gstreamer-net-sys", path = "sys" }
ffi = { package = "gstreamer-net-sys", version = "0.19", path = "sys" }
glib = { git = "https://github.com/gtk-rs/gtk-rs-core", branch = "0.16", version = "0.16" }
gst = { package = "gstreamer", version = "0.19", path = "../gstreamer" }
gio = { git = "https://github.com/gtk-rs/gtk-rs-core", branch = "0.16", version = "0.16" }

View file

@ -16,7 +16,7 @@ rust-version = "1.63"
[dependencies]
bitflags = "1.0"
libc = "0.2"
ffi = { package = "gstreamer-pbutils-sys", path = "sys" }
ffi = { package = "gstreamer-pbutils-sys", version = "0.19", path = "sys" }
glib = { git = "https://github.com/gtk-rs/gtk-rs-core", branch = "0.16", version = "0.16" }
gst = { package = "gstreamer", version = "0.19", path = "../gstreamer" }
gst-video = { package = "gstreamer-video", version = "0.19", path = "../gstreamer-video" }

View file

@ -16,7 +16,7 @@ rust-version = "1.63"
[dependencies]
bitflags = "1.0"
libc = "0.2"
ffi = { package = "gstreamer-play-sys", path = "sys" }
ffi = { package = "gstreamer-play-sys", version = "0.19", path = "sys" }
glib = { git = "https://github.com/gtk-rs/gtk-rs-core", branch = "0.16", version = "0.16" }
gst = { package = "gstreamer", version = "0.19", path = "../gstreamer", features = ["v1_20"] }
gst-video = { package = "gstreamer-video", version = "0.19", path = "../gstreamer-video", features = ["v1_20"] }

View file

@ -16,7 +16,7 @@ rust-version = "1.63"
[dependencies]
bitflags = "1.0"
libc = "0.2"
ffi = { package = "gstreamer-player-sys", path = "sys" }
ffi = { package = "gstreamer-player-sys", version = "0.19", path = "sys" }
glib = { git = "https://github.com/gtk-rs/gtk-rs-core", branch = "0.16", version = "0.16" }
gst = { package = "gstreamer", version = "0.19", path = "../gstreamer" }
gst-video = { package = "gstreamer-video", version = "0.19", path = "../gstreamer-video" }

View file

@ -17,7 +17,7 @@ rust-version = "1.63"
bitflags = "1.0"
once_cell = "1.0"
libc = "0.2"
ffi = { package = "gstreamer-rtp-sys", path = "sys" }
ffi = { package = "gstreamer-rtp-sys", version = "0.19", path = "sys" }
glib = { git = "https://github.com/gtk-rs/gtk-rs-core", branch = "0.16", version = "0.16" }
gst = { package = "gstreamer", version = "0.19", path = "../gstreamer" }
serde = { version = "1.0", optional = true }

View file

@ -17,7 +17,7 @@ rust-version = "1.63"
bitflags = "1.0"
libc = "0.2"
once_cell = "1.0"
ffi = { package = "gstreamer-rtsp-server-sys", path = "sys" }
ffi = { package = "gstreamer-rtsp-server-sys", version = "0.19", path = "sys" }
glib = { git = "https://github.com/gtk-rs/gtk-rs-core", branch = "0.16", version = "0.16" }
gio = { git = "https://github.com/gtk-rs/gtk-rs-core", branch = "0.16", version = "0.16" }
gst = { package = "gstreamer", version = "0.19", path = "../gstreamer" }

View file

@ -16,7 +16,7 @@ rust-version = "1.63"
[dependencies]
bitflags = "1.0"
libc = "0.2"
ffi = { package = "gstreamer-rtsp-sys", path = "sys" }
ffi = { package = "gstreamer-rtsp-sys", version = "0.19", path = "sys" }
glib = { git = "https://github.com/gtk-rs/gtk-rs-core", branch = "0.16", version = "0.16" }
gst = { package = "gstreamer", version = "0.19", path = "../gstreamer" }
gst-sdp = { package = "gstreamer-sdp", version = "0.19", path = "../gstreamer-sdp" }

View file

@ -14,7 +14,7 @@ edition = "2021"
rust-version = "1.63"
[dependencies]
ffi = { package = "gstreamer-sdp-sys", path = "sys" }
ffi = { package = "gstreamer-sdp-sys", version = "0.19", path = "sys" }
glib = { git = "https://github.com/gtk-rs/gtk-rs-core", branch = "0.16", version = "0.16" }
gst = { package = "gstreamer", version = "0.19", path = "../gstreamer" }

View file

@ -15,7 +15,7 @@ rust-version = "1.63"
[dependencies]
libc = "0.2"
ffi = { package = "gstreamer-validate-sys", path = "sys" }
ffi = { package = "gstreamer-validate-sys", version = "0.19", path = "sys" }
glib = { git = "https://github.com/gtk-rs/gtk-rs-core", branch = "0.16", version = "0.16" }
gst = { package = "gstreamer", version = "0.19", path = "../gstreamer", features = ["v1_22"] }
bitflags = "1.0"

View file

@ -17,7 +17,7 @@ rust-version = "1.63"
bitflags = "1.0"
libc = "0.2"
cfg-if = "1.0"
ffi = { package = "gstreamer-video-sys", path = "sys" }
ffi = { package = "gstreamer-video-sys", version = "0.19", path = "sys" }
glib = { git = "https://github.com/gtk-rs/gtk-rs-core", branch = "0.16", version = "0.16" }
gst = { package = "gstreamer", version = "0.19", path = "../gstreamer" }
gst-base = { package = "gstreamer-base", version = "0.19", path = "../gstreamer-base" }

View file

@ -15,7 +15,7 @@ rust-version = "1.63"
[dependencies]
libc = "0.2"
ffi = { package = "gstreamer-webrtc-sys", path = "sys" }
ffi = { package = "gstreamer-webrtc-sys", version = "0.19", path = "sys" }
glib = { git = "https://github.com/gtk-rs/gtk-rs-core", branch = "0.16", version = "0.16" }
gst = { package = "gstreamer", version = "0.19", path = "../gstreamer" }
gst-sdp = { package = "gstreamer-sdp", version = "0.19", path = "../gstreamer-sdp" }

View file

@ -17,7 +17,7 @@ rust-version = "1.63"
bitflags = "1.0"
cfg-if = "1.0"
libc = "0.2"
ffi = { package = "gstreamer-sys", path = "sys" }
ffi = { package = "gstreamer-sys", version = "0.19", path = "sys" }
glib = { git = "https://github.com/gtk-rs/gtk-rs-core", branch = "0.16", version = "0.16" }
num-integer = { version = "0.1", default-features = false, features = [] }
num-rational = { version = "0.4", default-features = false, features = [] }