From a87cc4c3a3db52e1ce746b197a5a993c12b5aca6 Mon Sep 17 00:00:00 2001 From: Marijn Suijten Date: Sat, 28 Nov 2020 11:05:51 +0100 Subject: [PATCH] cargo: Update ffi crate paths to direct "./sys" subdirectory --- gstreamer-app/Cargo.toml | 2 +- gstreamer-audio/Cargo.toml | 2 +- gstreamer-base/Cargo.toml | 2 +- gstreamer-check/Cargo.toml | 2 +- gstreamer-controller/Cargo.toml | 2 +- gstreamer-editing-services/Cargo.toml | 2 +- gstreamer-gl/Cargo.toml | 2 +- gstreamer-net/Cargo.toml | 2 +- gstreamer-pbutils/Cargo.toml | 2 +- gstreamer-player/Cargo.toml | 2 +- gstreamer-rtp/Cargo.toml | 2 +- gstreamer-rtsp-server/Cargo.toml | 2 +- gstreamer-rtsp/Cargo.toml | 2 +- gstreamer-sdp/Cargo.toml | 2 +- gstreamer-video/Cargo.toml | 2 +- gstreamer-webrtc/Cargo.toml | 2 +- gstreamer/Cargo.toml | 2 +- 17 files changed, 17 insertions(+), 17 deletions(-) diff --git a/gstreamer-app/Cargo.toml b/gstreamer-app/Cargo.toml index ad373d3c7..ef493da3d 100644 --- a/gstreamer-app/Cargo.toml +++ b/gstreamer-app/Cargo.toml @@ -18,7 +18,7 @@ futures-core = "0.3" futures-sink = "0.3" bitflags = "1.0" libc = "0.2" -ffi = { package = "gstreamer-app-sys", path = "../gstreamer-app/sys", features = ["v1_8"] } +ffi = { package = "gstreamer-app-sys", path = "sys", features = ["v1_8"] } glib = { git = "https://github.com/gtk-rs/gtk-rs" } gst = { package = "gstreamer", path = "../gstreamer" } gst-base = { package = "gstreamer-base", path = "../gstreamer-base" } diff --git a/gstreamer-audio/Cargo.toml b/gstreamer-audio/Cargo.toml index 2a9f164ce..ef1206604 100644 --- a/gstreamer-audio/Cargo.toml +++ b/gstreamer-audio/Cargo.toml @@ -16,7 +16,7 @@ edition = "2018" [dependencies] libc = "0.2" bitflags = "1.0" -ffi = { package = "gstreamer-audio-sys", path = "../gstreamer-audio/sys", features = ["v1_8"] } +ffi = { package = "gstreamer-audio-sys", path = "sys", features = ["v1_8"] } glib = { git = "https://github.com/gtk-rs/gtk-rs" } gst = { package = "gstreamer", path = "../gstreamer" } gst-base = { package = "gstreamer-base", path = "../gstreamer-base" } diff --git a/gstreamer-base/Cargo.toml b/gstreamer-base/Cargo.toml index 5df355334..da511bd55 100644 --- a/gstreamer-base/Cargo.toml +++ b/gstreamer-base/Cargo.toml @@ -16,7 +16,7 @@ edition = "2018" [dependencies] libc = "0.2" bitflags = "1.0" -ffi = { package = "gstreamer-base-sys", path = "../gstreamer-base/sys", features = ["v1_8"] } +ffi = { package = "gstreamer-base-sys", path = "sys", features = ["v1_8"] } glib = { git = "https://github.com/gtk-rs/gtk-rs" } gst = { package = "gstreamer", path = "../gstreamer" } diff --git a/gstreamer-check/Cargo.toml b/gstreamer-check/Cargo.toml index 5cd6a5b36..cb1280440 100644 --- a/gstreamer-check/Cargo.toml +++ b/gstreamer-check/Cargo.toml @@ -15,7 +15,7 @@ edition = "2018" [dependencies] bitflags = "1.0" -ffi = { package = "gstreamer-check-sys", path = "../gstreamer-check/sys", features = ["v1_8"] } +ffi = { package = "gstreamer-check-sys", path = "sys", features = ["v1_8"] } glib = { git = "https://github.com/gtk-rs/gtk-rs" } gst = { package = "gstreamer", path = "../gstreamer" } diff --git a/gstreamer-controller/Cargo.toml b/gstreamer-controller/Cargo.toml index 12ff1d9cd..2f668438d 100644 --- a/gstreamer-controller/Cargo.toml +++ b/gstreamer-controller/Cargo.toml @@ -16,7 +16,7 @@ edition = "2018" [dependencies] bitflags = "1.0" once_cell = "1.0" -ffi = { package = "gstreamer-controller-sys", path = "../gstreamer-controller/sys", features = ["v1_8"] } +ffi = { package = "gstreamer-controller-sys", path = "sys", features = ["v1_8"] } glib = { git = "https://github.com/gtk-rs/gtk-rs" } gst = { package = "gstreamer", path = "../gstreamer" } diff --git a/gstreamer-editing-services/Cargo.toml b/gstreamer-editing-services/Cargo.toml index 6154b4982..fba856500 100644 --- a/gstreamer-editing-services/Cargo.toml +++ b/gstreamer-editing-services/Cargo.toml @@ -16,7 +16,7 @@ edition = "2018" [dependencies] libc = "0.2" bitflags = "1.0" -ffi = { package = "gstreamer-editing-services-sys", path = "../gstreamer-editing-services/sys", features = ["v1_8"]} +ffi = { package = "gstreamer-editing-services-sys", path = "sys", features = ["v1_8"]} glib = { git = "https://github.com/gtk-rs/gtk-rs" } gio = { git = "https://github.com/gtk-rs/gtk-rs" } gst = { package = "gstreamer", path = "../gstreamer" } diff --git a/gstreamer-gl/Cargo.toml b/gstreamer-gl/Cargo.toml index 77b33e0b4..3b5dab853 100644 --- a/gstreamer-gl/Cargo.toml +++ b/gstreamer-gl/Cargo.toml @@ -19,7 +19,7 @@ bitflags = "1.0" byteorder = "1" libc = "0.2" once_cell = "1.0" -ffi = { package = "gstreamer-gl-sys", path = "../gstreamer-gl/sys" } +ffi = { package = "gstreamer-gl-sys", path = "sys" } glib = { git = "https://github.com/gtk-rs/gtk-rs" } gst = { package = "gstreamer", path = "../gstreamer", features = ["v1_14"] } gst-base = { package = "gstreamer-base", path = "../gstreamer-base", features = ["v1_14"] } diff --git a/gstreamer-net/Cargo.toml b/gstreamer-net/Cargo.toml index 060cf88d9..760d15ba6 100644 --- a/gstreamer-net/Cargo.toml +++ b/gstreamer-net/Cargo.toml @@ -14,7 +14,7 @@ build = "build.rs" edition = "2018" [dependencies] -ffi = { package = "gstreamer-net-sys", path = "../gstreamer-net/sys", features = ["v1_8"] } +ffi = { package = "gstreamer-net-sys", path = "sys", features = ["v1_8"] } glib = { git = "https://github.com/gtk-rs/gtk-rs" } gst = { package = "gstreamer", path = "../gstreamer" } gio = { git = "https://github.com/gtk-rs/gtk-rs" } diff --git a/gstreamer-pbutils/Cargo.toml b/gstreamer-pbutils/Cargo.toml index 9b66f6049..ccfface63 100644 --- a/gstreamer-pbutils/Cargo.toml +++ b/gstreamer-pbutils/Cargo.toml @@ -16,7 +16,7 @@ edition = "2018" [dependencies] bitflags = "1.0" libc = "0.2" -ffi = { package = "gstreamer-pbutils-sys", path = "../gstreamer-pbutils/sys", features = ["v1_8"] } +ffi = { package = "gstreamer-pbutils-sys", path = "sys", features = ["v1_8"] } glib = { git = "https://github.com/gtk-rs/gtk-rs" } gst = { package = "gstreamer", path = "../gstreamer" } thiserror = "1.0" diff --git a/gstreamer-player/Cargo.toml b/gstreamer-player/Cargo.toml index a7fa64fb3..0d16f1d2e 100644 --- a/gstreamer-player/Cargo.toml +++ b/gstreamer-player/Cargo.toml @@ -16,7 +16,7 @@ edition = "2018" [dependencies] bitflags = "1.0" libc = "0.2" -ffi = { package = "gstreamer-player-sys", path = "../gstreamer-player/sys" } +ffi = { package = "gstreamer-player-sys", path = "sys" } glib = { git = "https://github.com/gtk-rs/gtk-rs" } gst = { package = "gstreamer", path = "../gstreamer", features = ["v1_12"] } gst-video = { package = "gstreamer-video", path = "../gstreamer-video", features = ["v1_12"] } diff --git a/gstreamer-rtp/Cargo.toml b/gstreamer-rtp/Cargo.toml index b4f022850..0eccf5bfb 100644 --- a/gstreamer-rtp/Cargo.toml +++ b/gstreamer-rtp/Cargo.toml @@ -16,7 +16,7 @@ edition = "2018" [dependencies] bitflags = "1.0" once_cell = "1.0" -ffi = { package = "gstreamer-rtp-sys", path = "../gstreamer-rtp/sys", features = ["v1_8"] } +ffi = { package = "gstreamer-rtp-sys", path = "sys", features = ["v1_8"] } glib = { git = "https://github.com/gtk-rs/gtk-rs" } gst = { package = "gstreamer", path = "../gstreamer" } diff --git a/gstreamer-rtsp-server/Cargo.toml b/gstreamer-rtsp-server/Cargo.toml index 7dda24071..5847a21b4 100644 --- a/gstreamer-rtsp-server/Cargo.toml +++ b/gstreamer-rtsp-server/Cargo.toml @@ -17,7 +17,7 @@ edition = "2018" bitflags = "1.0" libc = "0.2" once_cell = "1.0" -ffi = { package = "gstreamer-rtsp-server-sys", path = "../gstreamer-rtsp-server/sys", features = ["v1_8"] } +ffi = { package = "gstreamer-rtsp-server-sys", path = "sys", features = ["v1_8"] } glib = { git = "https://github.com/gtk-rs/gtk-rs" } gio = { git = "https://github.com/gtk-rs/gtk-rs" } gst = { package = "gstreamer", path = "../gstreamer" } diff --git a/gstreamer-rtsp/Cargo.toml b/gstreamer-rtsp/Cargo.toml index 0c4d76ed0..576e8da89 100644 --- a/gstreamer-rtsp/Cargo.toml +++ b/gstreamer-rtsp/Cargo.toml @@ -16,7 +16,7 @@ edition = "2018" [dependencies] bitflags = "1.0" libc = "0.2" -ffi = { package = "gstreamer-rtsp-sys", path = "../gstreamer-rtsp/sys", features = ["v1_8"] } +ffi = { package = "gstreamer-rtsp-sys", path = "sys", features = ["v1_8"] } glib = { git = "https://github.com/gtk-rs/gtk-rs" } gst = { package = "gstreamer", path = "../gstreamer" } gst-sdp = { package = "gstreamer-sdp", path = "../gstreamer-sdp" } diff --git a/gstreamer-sdp/Cargo.toml b/gstreamer-sdp/Cargo.toml index c0efabbf1..a88391c1e 100644 --- a/gstreamer-sdp/Cargo.toml +++ b/gstreamer-sdp/Cargo.toml @@ -14,7 +14,7 @@ build = "build.rs" edition = "2018" [dependencies] -ffi = { package = "gstreamer-sdp-sys", path = "../gstreamer-sdp/sys", features = ["v1_8"] } +ffi = { package = "gstreamer-sdp-sys", path = "sys", features = ["v1_8"] } glib = { git = "https://github.com/gtk-rs/gtk-rs" } gst = { package = "gstreamer", path = "../gstreamer" } diff --git a/gstreamer-video/Cargo.toml b/gstreamer-video/Cargo.toml index ac737ca5f..8f9afdc6f 100644 --- a/gstreamer-video/Cargo.toml +++ b/gstreamer-video/Cargo.toml @@ -17,7 +17,7 @@ edition = "2018" bitflags = "1.0" libc = "0.2" cfg-if = "1.0" -ffi = { package = "gstreamer-video-sys", path = "../gstreamer-video/sys", features = ["v1_8"] } +ffi = { package = "gstreamer-video-sys", path = "sys", features = ["v1_8"] } glib = { git = "https://github.com/gtk-rs/gtk-rs" } gst = { package = "gstreamer", path = "../gstreamer" } gst-base = { package = "gstreamer-base", path = "../gstreamer-base" } diff --git a/gstreamer-webrtc/Cargo.toml b/gstreamer-webrtc/Cargo.toml index d87d14ee4..d381ba88d 100644 --- a/gstreamer-webrtc/Cargo.toml +++ b/gstreamer-webrtc/Cargo.toml @@ -15,7 +15,7 @@ edition = "2018" [dependencies] libc = "0.2" -ffi = { package = "gstreamer-webrtc-sys", path = "../gstreamer-webrtc/sys" } +ffi = { package = "gstreamer-webrtc-sys", path = "sys" } glib = { git = "https://github.com/gtk-rs/gtk-rs" } gst = { package = "gstreamer", path = "../gstreamer", features = ["v1_14"] } gst-sdp = { package = "gstreamer-sdp", path = "../gstreamer-sdp", features = ["v1_14"] } diff --git a/gstreamer/Cargo.toml b/gstreamer/Cargo.toml index 93258ec46..7b8736a28 100644 --- a/gstreamer/Cargo.toml +++ b/gstreamer/Cargo.toml @@ -17,7 +17,7 @@ edition = "2018" bitflags = "1.0" cfg-if = "1.0" libc = "0.2" -ffi = { package = "gstreamer-sys", path = "../gstreamer/sys", features = ["v1_8"] } +ffi = { package = "gstreamer-sys", path = "sys", features = ["v1_8"] } glib = { git = "https://github.com/gtk-rs/gtk-rs" } num-rational = { version = "0.3", default-features = false, features = [] } once_cell = "1.0"