webrtc: Minor cleanup

This commit is contained in:
Sebastian Dröge 2022-10-20 12:55:25 +03:00
parent 71ed04d89b
commit c0bf05d4bb
3 changed files with 9 additions and 8 deletions

View file

@ -27,7 +27,7 @@ async-tungstenite = { version = "0.17", features = ["async-std-runtime", "async-
serde = "1" serde = "1"
serde_json = "1" serde_json = "1"
fastrand = "1.0" fastrand = "1.0"
gst_plugin_webrtc_protocol = { version = "0.1", path="protocol", package = "gst-plugin-webrtc-signalling-protocol" } gst_plugin_webrtc_protocol = { version = "0.9", path="protocol", package = "gst-plugin-webrtc-signalling-protocol" }
human_bytes = "0.3.1" human_bytes = "0.3.1"
[dev-dependencies] [dev-dependencies]
@ -43,7 +43,7 @@ crate-type = ["cdylib", "rlib"]
path = "src/lib.rs" path = "src/lib.rs"
[build-dependencies] [build-dependencies]
gst-plugin-version-helper = "0.7" gst-plugin-version-helper = { path = "../../version-helper" }
[features] [features]
static = [] static = []

View file

@ -1,6 +1,6 @@
[package] [package]
name="gst-plugin-webrtc-signalling-protocol" name = "gst-plugin-webrtc-signalling-protocol"
version = "0.1.0" version = "0.9.0"
edition = "2021" edition = "2021"
authors = ["Mathieu Duponchelle <mathieu@centricular.com>"] authors = ["Mathieu Duponchelle <mathieu@centricular.com>"]
license = "MPL-2.0" license = "MPL-2.0"

View file

@ -1,11 +1,12 @@
[package] [package]
name="gst-plugin-webrtc-signalling" name = "gst-plugin-webrtc-signalling"
version = "0.1.0" version = "0.9.0"
edition = "2018" edition = "2021"
authors = ["Mathieu Duponchelle <mathieu@centricular.com>"] authors = ["Mathieu Duponchelle <mathieu@centricular.com>"]
license = "MPL-2.0" license = "MPL-2.0"
description = "GStreamer WebRTC sink signalling server" description = "GStreamer WebRTC sink signalling server"
repository = "https://gitlab.freedesktop.org/gstreamer/gst-plugins-rs" repository = "https://gitlab.freedesktop.org/gstreamer/gst-plugins-rs"
rust-version = "1.63"
[dependencies] [dependencies]
anyhow = "1" anyhow = "1"
@ -23,4 +24,4 @@ uuid = { version = "1", features = ["v4"] }
thiserror = "1" thiserror = "1"
test-log = { version = "0.2", features = ["trace"], default-features = false } test-log = { version = "0.2", features = ["trace"], default-features = false }
pin-project-lite = "0.2" pin-project-lite = "0.2"
gst_plugin_webrtc_protocol = { version = "0.1", path="../protocol", package = "gst-plugin-webrtc-signalling-protocol" } gst_plugin_webrtc_protocol = { version = "0.9", path="../protocol", package = "gst-plugin-webrtc-signalling-protocol" }