From f35603a020899615553a0a1b9bd5005883478ad9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sebastian=20Dr=C3=B6ge?= Date: Thu, 10 Aug 2023 16:57:11 +0300 Subject: [PATCH] webrtc: Add versions to gst_plugin_webrtc_protocol dependency --- net/webrtc/Cargo.toml | 2 +- net/webrtc/signalling/Cargo.toml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/net/webrtc/Cargo.toml b/net/webrtc/Cargo.toml index 2934f88f..3c215d95 100644 --- a/net/webrtc/Cargo.toml +++ b/net/webrtc/Cargo.toml @@ -29,7 +29,7 @@ async-tungstenite = { version = "0.23", features = ["tokio-runtime", "tokio-nati serde = { version = "1", features = ["derive"] } serde_json = "1" fastrand = "2.0" -gst_plugin_webrtc_protocol = { path="protocol", package = "gst-plugin-webrtc-signalling-protocol" } +gst_plugin_webrtc_protocol = { path="protocol", package = "gst-plugin-webrtc-signalling-protocol", version = "0.11" } human_bytes = "0.4" url = "2" diff --git a/net/webrtc/signalling/Cargo.toml b/net/webrtc/signalling/Cargo.toml index dcb68a71..8e07a76b 100644 --- a/net/webrtc/signalling/Cargo.toml +++ b/net/webrtc/signalling/Cargo.toml @@ -24,7 +24,7 @@ uuid = { version = "1", features = ["v4"] } thiserror = "1" test-log = { version = "0.2", features = ["trace"], default-features = false } pin-project-lite = "0.2" -gst_plugin_webrtc_protocol = { path="../protocol", package = "gst-plugin-webrtc-signalling-protocol" } +gst_plugin_webrtc_protocol = { path="../protocol", package = "gst-plugin-webrtc-signalling-protocol", version = "0.11" } [[bin]] name = "gst-webrtc-signalling-server"