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
path: root/net
diff options
context:
space:
mode:
authorRuben Gonzalez <rgonzalez@fluendo.com>2021-07-20 22:49:24 +0300
committerSebastian Dröge <sebastian@centricular.com>2021-08-05 15:51:45 +0300
commit232f0eef96eb29c815b6976d04c825ec14614c59 (patch)
tree33a63a5b4bda65e0cc6987cd8bfb78d4e783b13b /net
parent1372ffe0e173cf7dca6b029cae9bfb76f6953e70 (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 'net')
-rw-r--r--net/reqwest/Cargo.toml2
-rw-r--r--net/rusoto/Cargo.toml4
2 files changed, 3 insertions, 3 deletions
diff --git a/net/reqwest/Cargo.toml b/net/reqwest/Cargo.toml
index 2a8ca4164..cba860a4b 100644
--- a/net/reqwest/Cargo.toml
+++ b/net/reqwest/Cargo.toml
@@ -13,7 +13,7 @@ reqwest = { version = "0.11", features = ["cookies", "gzip"] }
futures = "0.3"
hyperx = "1.0"
mime = "0.3"
-gst = { package = "gstreamer", version = "0.17", features = ["v1_10"] }
+gst = { package = "gstreamer", version = "0.17" }
gst-base = { package = "gstreamer-base", version = "0.17" }
tokio = { version = "1.0", default-features = false, features = ["time", "rt-multi-thread"] }
once_cell = "1.0"
diff --git a/net/rusoto/Cargo.toml b/net/rusoto/Cargo.toml
index 777daec40..6d05d6b52 100644
--- a/net/rusoto/Cargo.toml
+++ b/net/rusoto/Cargo.toml
@@ -12,8 +12,8 @@ edition = "2018"
[dependencies]
bytes = "1.0"
futures = "0.3"
-gst = { package = "gstreamer", version = "0.17", features = ["v1_12"] }
-gst-base = { package = "gstreamer-base", version = "0.17", features = ["v1_12"] }
+gst = { package = "gstreamer", version = "0.17" }
+gst-base = { package = "gstreamer-base", version = "0.17" }
rusoto_core = "0.46"
rusoto_s3 = "0.46"
rusoto_credential = "0.46"