Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.freedesktop.org/gstreamer/gst-plugins-rs.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSebastian Dröge <sebastian@centricular.com>2021-08-11 20:51:36 +0300
committerSebastian Dröge <sebastian@centricular.com>2021-08-11 20:51:36 +0300
commit848b2963905c8c7de1d1efdf587886210c164e28 (patch)
tree169ac8321cd465aa229f7518b16a85b2994c55b5
parent120f4ab84bf1ae7d70c64ebe9e8cfb72ac6f7a91 (diff)
Add capi feature to all plugin crates
This fixes the build with cargo-c 0.9.2.
-rw-r--r--audio/audiofx/Cargo.toml1
-rw-r--r--audio/claxon/Cargo.toml1
-rw-r--r--audio/csound/Cargo.toml1
-rw-r--r--audio/lewton/Cargo.toml1
-rw-r--r--generic/file/Cargo.toml1
-rw-r--r--generic/sodium/Cargo.toml1
-rw-r--r--generic/threadshare/Cargo.toml1
-rw-r--r--net/reqwest/Cargo.toml1
-rw-r--r--net/rusoto/Cargo.toml1
-rw-r--r--text/json/Cargo.toml1
-rw-r--r--text/regex/Cargo.toml1
-rw-r--r--text/wrap/Cargo.toml1
-rw-r--r--utils/fallbackswitch/Cargo.toml1
-rw-r--r--utils/togglerecord/Cargo.toml1
-rw-r--r--video/cdg/Cargo.toml1
-rw-r--r--video/closedcaption/Cargo.toml1
-rw-r--r--video/dav1d/Cargo.toml1
-rw-r--r--video/flavors/Cargo.toml1
-rw-r--r--video/gif/Cargo.toml1
-rw-r--r--video/hsv/Cargo.toml3
-rw-r--r--video/rav1e/Cargo.toml1
-rw-r--r--video/rspng/Cargo.toml1
-rw-r--r--video/webp/Cargo.toml1
23 files changed, 24 insertions, 1 deletions
diff --git a/audio/audiofx/Cargo.toml b/audio/audiofx/Cargo.toml
index 09045d53f..d86935602 100644
--- a/audio/audiofx/Cargo.toml
+++ b/audio/audiofx/Cargo.toml
@@ -33,6 +33,7 @@ gst-plugin-version-helper = { path="../../version-helper" }
[features]
static = []
+capi = []
[package.metadata.capi]
min_version = "0.8.0"
diff --git a/audio/claxon/Cargo.toml b/audio/claxon/Cargo.toml
index 6c9a9bffa..5597bc0a9 100644
--- a/audio/claxon/Cargo.toml
+++ b/audio/claxon/Cargo.toml
@@ -29,6 +29,7 @@ gst-plugin-version-helper = { path="../../version-helper" }
[features]
# GStreamer 1.14 is required for static linking
static = ["gst/v1_14"]
+capi = []
[package.metadata.capi]
min_version = "0.8.0"
diff --git a/audio/csound/Cargo.toml b/audio/csound/Cargo.toml
index 516aba9fa..6d2d9e6cc 100644
--- a/audio/csound/Cargo.toml
+++ b/audio/csound/Cargo.toml
@@ -33,6 +33,7 @@ gst-plugin-version-helper = { path = "../../version-helper" }
[features]
# GStreamer 1.14 is required for static linking
static = ["gst/v1_14"]
+capi = []
[package.metadata.capi]
min_version = "0.8.0"
diff --git a/audio/lewton/Cargo.toml b/audio/lewton/Cargo.toml
index 8b9257fb4..d31b25f14 100644
--- a/audio/lewton/Cargo.toml
+++ b/audio/lewton/Cargo.toml
@@ -29,6 +29,7 @@ gst-plugin-version-helper = { path="../../version-helper" }
[features]
# GStreamer 1.14 is required for static linking
static = ["gst/v1_14"]
+capi = []
[package.metadata.capi]
min_version = "0.8.0"
diff --git a/generic/file/Cargo.toml b/generic/file/Cargo.toml
index 095966b73..c6371f9d6 100644
--- a/generic/file/Cargo.toml
+++ b/generic/file/Cargo.toml
@@ -24,6 +24,7 @@ gst-plugin-version-helper = { path="../../version-helper" }
[features]
# GStreamer 1.14 is required for static linking
static = ["gst/v1_14"]
+capi = []
[package.metadata.capi]
min_version = "0.8.0"
diff --git a/generic/sodium/Cargo.toml b/generic/sodium/Cargo.toml
index 3beeb4737..9d8620f28 100644
--- a/generic/sodium/Cargo.toml
+++ b/generic/sodium/Cargo.toml
@@ -58,6 +58,7 @@ gst-plugin-version-helper = { path="../../version-helper" }
[features]
# GStreamer 1.14 is required for static linking
static = ["gst/v1_14"]
+capi = []
[package.metadata.capi]
min_version = "0.8.0"
diff --git a/generic/threadshare/Cargo.toml b/generic/threadshare/Cargo.toml
index 160beffb5..24885eaf3 100644
--- a/generic/threadshare/Cargo.toml
+++ b/generic/threadshare/Cargo.toml
@@ -52,6 +52,7 @@ pkg-config = "0.3.15"
[features]
# GStreamer 1.14 is required for static linking
static = ["gst/v1_14"]
+capi = []
[package.metadata.capi]
min_version = "0.8.0"
diff --git a/net/reqwest/Cargo.toml b/net/reqwest/Cargo.toml
index 1d0e1a626..b57cffecc 100644
--- a/net/reqwest/Cargo.toml
+++ b/net/reqwest/Cargo.toml
@@ -33,6 +33,7 @@ gst-plugin-version-helper = { path="../../version-helper" }
[features]
# GStreamer 1.14 is required for static linking
static = ["gst/v1_14"]
+capi = []
[package.metadata.capi]
min_version = "0.8.0"
diff --git a/net/rusoto/Cargo.toml b/net/rusoto/Cargo.toml
index bfe6c6164..60722e899 100644
--- a/net/rusoto/Cargo.toml
+++ b/net/rusoto/Cargo.toml
@@ -42,6 +42,7 @@ gst-plugin-version-helper = { path="../../version-helper" }
[features]
# GStreamer 1.14 is required for static linking
static = ["gst/v1_14"]
+capi = []
[package.metadata.capi]
min_version = "0.8.0"
diff --git a/text/json/Cargo.toml b/text/json/Cargo.toml
index 81ea3b582..8107327b6 100644
--- a/text/json/Cargo.toml
+++ b/text/json/Cargo.toml
@@ -32,6 +32,7 @@ package="gstreamer-check"
default = ["gst/ser_de"]
# GStreamer 1.14 is required for static linking
static = ["default", "gst/v1_14"]
+capi = []
[package.metadata.capi]
min_version = "0.7.0"
diff --git a/text/regex/Cargo.toml b/text/regex/Cargo.toml
index b743f57f5..66c82ab5d 100644
--- a/text/regex/Cargo.toml
+++ b/text/regex/Cargo.toml
@@ -31,6 +31,7 @@ package="gstreamer-check"
[features]
# GStreamer 1.14 is required for static linking
static = ["gst/v1_14"]
+capi = []
[package.metadata.capi]
min_version = "0.8.0"
diff --git a/text/wrap/Cargo.toml b/text/wrap/Cargo.toml
index ef3e0bbb3..303f4a850 100644
--- a/text/wrap/Cargo.toml
+++ b/text/wrap/Cargo.toml
@@ -31,6 +31,7 @@ package="gstreamer-check"
[features]
# GStreamer 1.14 is required for static linking
static = ["gst/v1_14"]
+capi = []
[package.metadata.capi]
min_version = "0.8.0"
diff --git a/utils/fallbackswitch/Cargo.toml b/utils/fallbackswitch/Cargo.toml
index 98a1560f8..575e45f4f 100644
--- a/utils/fallbackswitch/Cargo.toml
+++ b/utils/fallbackswitch/Cargo.toml
@@ -42,6 +42,7 @@ v1_18 = ["gst-base/v1_18"]
v1_20 = ["v1_18", "gst/v1_20"]
# We already use 1.14 which is new enough for static build
static = []
+capi = []
[package.metadata.capi]
min_version = "0.8.0"
diff --git a/utils/togglerecord/Cargo.toml b/utils/togglerecord/Cargo.toml
index d14ce85f3..caddfee09 100644
--- a/utils/togglerecord/Cargo.toml
+++ b/utils/togglerecord/Cargo.toml
@@ -35,6 +35,7 @@ gst-plugin-version-helper = { path="../../version-helper" }
[features]
# GStreamer 1.14 is required for static linking
static = ["gst/v1_14"]
+capi = []
[package.metadata.capi]
min_version = "0.8.0"
diff --git a/video/cdg/Cargo.toml b/video/cdg/Cargo.toml
index 0c7566bc4..887d8ec9c 100644
--- a/video/cdg/Cargo.toml
+++ b/video/cdg/Cargo.toml
@@ -31,6 +31,7 @@ gst-plugin-version-helper = { path="../../version-helper" }
[features]
# GStreamer 1.14 is required for static linking
static = ["gst/v1_14"]
+capi = []
[package.metadata.capi]
min_version = "0.8.0"
diff --git a/video/closedcaption/Cargo.toml b/video/closedcaption/Cargo.toml
index 0f55b70b1..f57130805 100644
--- a/video/closedcaption/Cargo.toml
+++ b/video/closedcaption/Cargo.toml
@@ -57,6 +57,7 @@ cc = "1.0"
[features]
# We already use 1.16 which is new enough for static build
static = []
+capi = []
[package.metadata.capi]
min_version = "0.8.0"
diff --git a/video/dav1d/Cargo.toml b/video/dav1d/Cargo.toml
index 2d51c5577..2af310761 100644
--- a/video/dav1d/Cargo.toml
+++ b/video/dav1d/Cargo.toml
@@ -25,6 +25,7 @@ gst-plugin-version-helper = { path = "../../version-helper" }
[features]
# GStreamer 1.14 is required for static linking
static = ["gst/v1_14"]
+capi = []
[package.metadata.capi]
min_version = "0.8.0"
diff --git a/video/flavors/Cargo.toml b/video/flavors/Cargo.toml
index 5ad920615..342db5535 100644
--- a/video/flavors/Cargo.toml
+++ b/video/flavors/Cargo.toml
@@ -29,6 +29,7 @@ gst-plugin-version-helper = { path="../../version-helper" }
[features]
# GStreamer 1.14 is required for static linking
static = ["gst/v1_14"]
+capi = []
[package.metadata.capi]
min_version = "0.8.0"
diff --git a/video/gif/Cargo.toml b/video/gif/Cargo.toml
index f66ddec88..1daa86f48 100644
--- a/video/gif/Cargo.toml
+++ b/video/gif/Cargo.toml
@@ -32,6 +32,7 @@ gst-plugin-version-helper = { path="../../version-helper" }
[features]
# GStreamer 1.14 is required for static linking
static = ["gst/v1_14"]
+capi = []
[package.metadata.capi]
min_version = "0.8.0"
diff --git a/video/hsv/Cargo.toml b/video/hsv/Cargo.toml
index 14a1f6e00..892532d7f 100644
--- a/video/hsv/Cargo.toml
+++ b/video/hsv/Cargo.toml
@@ -31,6 +31,7 @@ gst-plugin-version-helper = { path="../../version-helper" }
[features]
# GStreamer 1.14 is required for static linking
static = ["gst/v1_14"]
+capi = []
[package.metadata.capi]
min_version = "0.8.0"
@@ -43,4 +44,4 @@ install_subdir = "gstreamer-1.0"
versioning = false
[package.metadata.capi.pkg_config]
-requires_private = "gstreamer-1.0, gstreamer-base-1.0, gstreamer-video-1.0, gstreamer-audio-1.0, gobject-2.0, glib-2.0, gmodule-2.0" \ No newline at end of file
+requires_private = "gstreamer-1.0, gstreamer-base-1.0, gstreamer-video-1.0, gstreamer-audio-1.0, gobject-2.0, glib-2.0, gmodule-2.0"
diff --git a/video/rav1e/Cargo.toml b/video/rav1e/Cargo.toml
index d3887e64c..f6cd71212 100644
--- a/video/rav1e/Cargo.toml
+++ b/video/rav1e/Cargo.toml
@@ -27,6 +27,7 @@ gst-plugin-version-helper = { path="../../version-helper" }
[features]
# GStreamer 1.14 is required for static linking
static = ["gst/v1_14"]
+capi = []
[package.metadata.capi]
min_version = "0.8.0"
diff --git a/video/rspng/Cargo.toml b/video/rspng/Cargo.toml
index 4859dd838..978cd7c56 100644
--- a/video/rspng/Cargo.toml
+++ b/video/rspng/Cargo.toml
@@ -29,6 +29,7 @@ gst-plugin-version-helper = { path="../../version-helper" }
[features]
# GStreamer 1.14 is required for static linking
static = ["gst/v1_14"]
+capi = []
[package.metadata.capi]
min_version = "0.8.0"
diff --git a/video/webp/Cargo.toml b/video/webp/Cargo.toml
index b1dff47a0..725735b83 100644
--- a/video/webp/Cargo.toml
+++ b/video/webp/Cargo.toml
@@ -37,6 +37,7 @@ gst-plugin-version-helper = { path="../../version-helper" }
[features]
# GStreamer 1.14 is required for static linking
static = ["gst/v1_14"]
+capi = []
[package.metadata.capi]
min_version = "0.8.0"