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:
authorRuben Gonzalez <rgonzalez@fluendo.com>2021-07-20 22:49:24 +0300
committerRuben Gonzalez <rgonzalez@fluendo.com>2021-07-20 22:49:24 +0300
commit54d8c5f6a91bc2c428d577727d26a823cb126fb8 (patch)
treec531726cffcfc14da689fcaed07c505e60e61311 /video/webp
parent5397f4bfaff7dc3482c81b0e2de18a5315be0eb4 (diff)
Delete minimum GStremer required version for some plugins
Tested building the pluging with cargo-c and running gst-inspect-1.0 in a Ubuntu Xenial 18.04 LTS. It contains GStreamer 1.8.3.
Diffstat (limited to 'video/webp')
-rw-r--r--video/webp/Cargo.toml6
1 files changed, 2 insertions, 4 deletions
diff --git a/video/webp/Cargo.toml b/video/webp/Cargo.toml
index 3e2056e70..b1dff47a0 100644
--- a/video/webp/Cargo.toml
+++ b/video/webp/Cargo.toml
@@ -13,12 +13,10 @@ libwebp-sys2 = { version = "0.1.2", features = ["demux", "0_5"] }
[dependencies.gst]
git = "https://gitlab.freedesktop.org/gstreamer/gstreamer-rs"
-features = ["v1_16"]
package="gstreamer"
[dependencies.gst-video]
git = "https://gitlab.freedesktop.org/gstreamer/gstreamer-rs"
-features = ["v1_16"]
package="gstreamer-video"
[dev-dependencies]
@@ -37,8 +35,8 @@ path = "src/lib.rs"
gst-plugin-version-helper = { path="../../version-helper" }
[features]
-# We already use 1.16 which is new enough for static build
-static = []
+# GStreamer 1.14 is required for static linking
+static = ["gst/v1_14"]
[package.metadata.capi]
min_version = "0.8.0"