Skip to content
This repository has been archived by the owner on Oct 24, 2022. It is now read-only.

Commit

Permalink
Update clap and uuid to latest version
Browse files Browse the repository at this point in the history
  • Loading branch information
thiblahute authored and MathieuDuponchelle committed Oct 18, 2022
1 parent 284ca6e commit 020c7e2
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 52 deletions.
58 changes: 11 additions & 47 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions plugins/Cargo.toml
Expand Up @@ -35,8 +35,8 @@ human_bytes = "0.3.1"
tracing = { version = "0.1", features = ["log"] }
tracing-subscriber = { version = "0.3", features = ["registry", "env-filter"] }
tracing-log = "0.1"
uuid = { version = "0.8", features = ["v4"] }
clap = { version = "3.0.0-rc.1", features = ["derive"] }
uuid = { version = "1", features = ["v4"] }
clap = { version = "4", features = ["derive"] }

[lib]
name = "webrtcsink"
Expand Down
6 changes: 3 additions & 3 deletions signalling/Cargo.toml
Expand Up @@ -10,16 +10,16 @@ repository = "https://github.com/centricular/webrtcsink/"
[dependencies]
anyhow = "1"
async-std = { version = "1", features = ["unstable", "attributes"] }
async-native-tls = "0.3"
async-native-tls = "0.4"
async-tungstenite = { version = "0.17", features = ["async-std-runtime", "async-native-tls"] }
serde = { version = "1", features = ["derive"] }
serde_json = "1"
clap = { version = "3", features = ["derive"] }
clap = { version = "4", features = ["derive"] }
tracing = { version = "0.1", features = ["log"] }
tracing-subscriber = { version = "0.3", features = ["registry", "env-filter"] }
tracing-log = "0.1"
futures = "0.3"
uuid = { version = "0.8", features = ["v4"] }
uuid = { version = "1", features = ["v4"] }
thiserror = "1"
test-log = { version = "0.2", features = ["trace"], default-features = false }
pin-project-lite = "0.2"
Expand Down

0 comments on commit 020c7e2

Please sign in to comment.