From bf6bdab80c01ee54c20407d2accaa131c89fd44f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sebastian=20Dr=C3=B6ge?= Date: Mon, 24 Oct 2022 19:50:24 +0300 Subject: [PATCH] webrtc: Remove version requirement from internal crate dependencies --- 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 e5f4dc65..850aee52 100644 --- a/net/webrtc/Cargo.toml +++ b/net/webrtc/Cargo.toml @@ -26,7 +26,7 @@ async-tungstenite = { version = "0.18", features = ["async-std-runtime", "async- serde = "1" serde_json = "1" fastrand = "1.0" -gst_plugin_webrtc_protocol = { version = "0.9", path="protocol", package = "gst-plugin-webrtc-signalling-protocol" } +gst_plugin_webrtc_protocol = { path="protocol", package = "gst-plugin-webrtc-signalling-protocol" } human_bytes = "0.3.1" [dev-dependencies] diff --git a/net/webrtc/signalling/Cargo.toml b/net/webrtc/signalling/Cargo.toml index 261a494a..69ba904a 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 = { version = "0.9", path="../protocol", package = "gst-plugin-webrtc-signalling-protocol" } +gst_plugin_webrtc_protocol = { path="../protocol", package = "gst-plugin-webrtc-signalling-protocol" } [[bin]] name = "gst-webrtc-signalling-server"