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

github.com/sdroege/gst-plugin-rs.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThibault Saunier <tsaunier@igalia.com>2022-10-20 13:35:51 +0300
committerThibault Saunier <tsaunier@igalia.com>2022-10-20 14:32:31 +0300
commit25bda89ac8c6ecb7d0e1a1dba834cdf1189119a2 (patch)
treeef8664ba1af098c960b184a71f75eee9d138d7cb
parent4942a916a8afb159d652620b05a2c6fd825bea49 (diff)
webrtc: Update an unify rust-version and edition
So it all matches the rest of the plugins
-rw-r--r--net/webrtc/Cargo.toml2
-rw-r--r--net/webrtc/protocol/Cargo.toml3
2 files changed, 3 insertions, 2 deletions
diff --git a/net/webrtc/Cargo.toml b/net/webrtc/Cargo.toml
index 6467fea1..753bd3b8 100644
--- a/net/webrtc/Cargo.toml
+++ b/net/webrtc/Cargo.toml
@@ -6,7 +6,7 @@ authors = ["Mathieu Duponchelle <mathieu@centricular.com>", "Thibault Saunier <t
license = "MPL-2.0"
description = "High level GStreamer WebRTC elements and simple signaling server"
repository = "https://gitlab.freedesktop.org/gstreamer/gst-plugins-rs"
-rust-version = "1.57"
+rust-version = "1.63"
[dependencies]
gst = { git="https://gitlab.freedesktop.org/gstreamer/gstreamer-rs", package = "gstreamer", features = ["v1_20", "serde"] }
diff --git a/net/webrtc/protocol/Cargo.toml b/net/webrtc/protocol/Cargo.toml
index e4905711..e20fe44f 100644
--- a/net/webrtc/protocol/Cargo.toml
+++ b/net/webrtc/protocol/Cargo.toml
@@ -1,11 +1,12 @@
[package]
name="webrtcsink-protocol"
version = "0.1.0"
-edition = "2018"
+edition = "2021"
authors = ["Mathieu Duponchelle <mathieu@centricular.com>"]
license = "MPL-2.0"
description = "GStreamer WebRTC sink default protocol"
repository = "https://gitlab.freedesktop.org/gstreamer/gst-plugins-rs"
+rust-version = "1.63"
[dependencies]
serde = { version = "1", features = ["derive"] }