mirror of
https://gitlab.freedesktop.org/gstreamer/gst-plugins-rs.git
synced 2025-01-03 15:58:42 +00:00
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: <https://gitlab.freedesktop.org/gstreamer/gst-plugins-rs/-/merge_requests/1541>
This commit is contained in:
parent
168af88eda
commit
3fc38be5c4
1 changed files with 1 additions and 0 deletions
|
@ -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"
|
||||
|
|
Loading…
Reference in a new issue