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/text
diff options
context:
space:
mode:
authorJordan Petridis <jordan@centricular.com>2022-08-24 22:33:49 +0300
committerSebastian Dröge <sebastian@centricular.com>2022-09-05 11:47:12 +0300
commit602c2588dcf51b980d12c6cd897ecbd5ff2bd67e (patch)
tree3ca73bbe596f51c84d5369c3b5e736375597a3d7 /text
parent1a401864856022be9103253e7374bde51aa1a226 (diff)
text/json: hard depend on ser_de feature of gst crate
It's a hard dep instead a feature that can be disabled. It was working with default features, but it was failing to build with --no-default-features
Diffstat (limited to 'text')
-rw-r--r--text/json/Cargo.toml4
1 files changed, 2 insertions, 2 deletions
diff --git a/text/json/Cargo.toml b/text/json/Cargo.toml
index e0f0202c3..40cd84e74 100644
--- a/text/json/Cargo.toml
+++ b/text/json/Cargo.toml
@@ -16,6 +16,7 @@ serde_json = { version = "1.0", features = ["raw_value"] }
[dependencies.gst]
git = "https://gitlab.freedesktop.org/gstreamer/gstreamer-rs"
package="gstreamer"
+features=["ser_de"]
[lib]
name = "gstrsjson"
@@ -30,8 +31,7 @@ git = "https://gitlab.freedesktop.org/gstreamer/gstreamer-rs"
package="gstreamer-check"
[features]
-default = ["gst/ser_de"]
-static = ["default"]
+static = []
capi = []
doc = ["gst/v1_18"]