From 06fb47d197028b3a0993446d24efba189efae1c7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sebastian=20Dr=C3=B6ge?= Date: Tue, 16 Jul 2024 18:59:19 +0300 Subject: [PATCH] webrtc: Add version 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 375524f68..a1559f10a 100644 --- a/net/webrtc/Cargo.toml +++ b/net/webrtc/Cargo.toml @@ -32,7 +32,7 @@ async-tungstenite = { version = "0.26", 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.13" } human_bytes = "0.4" once_cell.workspace = true rand = "0.8" diff --git a/net/webrtc/signalling/Cargo.toml b/net/webrtc/signalling/Cargo.toml index 1836d31da..b2afa3a79 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.13" } [[bin]] name = "gst-webrtc-signalling-server"