From 3fc38be5c4acbe04bf9ab6f3b64d06107a5cb918 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fran=C3=A7ois=20Laignel?= Date: Sun, 14 Apr 2024 16:50:33 +0200 Subject: [PATCH] webrtc: add missing tokio feature for precise sync examples Clippy caught the missing feature `signal` which is used by the WebRTC precise synchronization examples. When running `cargo` `check`, `build` or `clippy` without `no-default-dependencies`, this feature was already present due to dependents crates. Part-of: --- net/webrtc/Cargo.toml | 1 + 1 file changed, 1 insertion(+) diff --git a/net/webrtc/Cargo.toml b/net/webrtc/Cargo.toml index a37cf15b..42a7c5aa 100644 --- a/net/webrtc/Cargo.toml +++ b/net/webrtc/Cargo.toml @@ -62,6 +62,7 @@ crossbeam-channel = { version = "0.5", optional = true } [dev-dependencies] gst-plugin-rtp = { path = "../rtp" } +tokio = { version = "1", features = ["signal"] } tracing = { version = "0.1", features = ["log"] } tracing-subscriber = { version = "0.3", features = ["registry", "env-filter"] } tracing-log = "0.2"