Skip to content

Commit 0e72c40

Browse files
committed
update some dependencies and remove some useless dependencies
1 parent cad2132 commit 0e72c40

File tree

12 files changed

+12
-21
lines changed

12 files changed

+12
-21
lines changed

constraints/Cargo.toml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,6 @@ rust-version = "1.60.0"
1414

1515
[dependencies]
1616
indexmap = "1.9.1"
17-
log = "0.4.17"
1817
serde = { version = "1.0.137", features = ["derive"], optional = true }
1918
ordered-float = { version = "3.0.0", default-features = false }
2019

dtls/Cargo.toml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -37,10 +37,9 @@ tokio = { version = "1.19", features = ["full"] }
3737
async-trait = "0.1.56"
3838
x25519-dalek = "2.0.0-pre.1"
3939
signature = "1.2.2"
40-
oid-registry = "0.6.0"
41-
x509-parser = "0.13.2"
40+
x509-parser = "0.14.0"
4241
der-parser = "8.1"
43-
rcgen = "0.9.2"
42+
rcgen = "0.10.0"
4443
ring = "0.16.19"
4544
webpki = "0.21.4"
4645
rustls = { version = "0.19.0", features = ["dangerous_configuration"]}

dtls/examples/hub/Cargo.toml

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,6 @@ util = { path = "../../../util", package = "webrtc-util", default-features = fal
1010
dtls = { package = "webrtc-dtls", path = "../../" }
1111

1212
tokio = { version = "1", features = ["full"] }
13-
x509-parser = "0.13"
14-
rcgen = { version = "0.9", features = ["pem", "x509-parser"] }
15-
ring = "0.16"
13+
rcgen = { version = "0.10", features = ["pem", "x509-parser"] }
1614
rustls = "0.19"
17-
log = "0.4.16"
1815
thiserror = "1"

examples/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ env_logger = "0.9"
2323
clap = "3.0"
2424
hyper = { version = "0.14", features = ["full"] }
2525
signal = { path = "examples/signal" }
26-
tokio-util = { version="0.6", features = ["codec"] }
26+
tokio-util = { version = "0.7", features = ["codec"] }
2727
anyhow = "1.0"
2828
chrono = "0.4.23"
2929
log = "0.4.16"

media/Cargo.toml

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -13,18 +13,15 @@ rust-version = "1.60.0"
1313
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
1414

1515
[dependencies]
16-
util = { version = "0.7.0", path = "../util", package = "webrtc-util", default-features = false, features = ["marshal"] }
1716
rtp = { version = "0.6.7", path = "../rtp" }
1817

1918
byteorder = "1"
2019
bytes = "1"
21-
displaydoc = "0.2.3"
2220
thiserror = "1.0"
2321
rand = "0.8.5"
24-
derive_builder = "0.11.2"
2522

2623
[dev-dependencies]
27-
criterion = { version = "0.3.5", features = ["html_reports"] }
24+
criterion = { version = "0.4.0", features = ["html_reports"] }
2825
nearly_eq = "0.2.4"
2926

3027
[[bench]]

rtp/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ serde = { version = "1.0.102", features = ["derive"] }
2121

2222
[dev-dependencies]
2323
chrono = "0.4.23"
24-
criterion = "0.3.5"
24+
criterion = "0.4.0"
2525
tokio = { version = "1.19", features = ["full"] }
2626
tokio-test = "0.4.0" # must match the min version of the `tokio` crate above
2727

sdp/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ thiserror = "~1.0.10"
1717
substring = "1.4"
1818

1919
[dev-dependencies]
20-
criterion = "0.3.5"
20+
criterion = "0.4.0"
2121

2222
[[bench]]
2323
name = "bench"

srtp/Cargo.toml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,6 @@ ctr = "0.8.0"
2828
aes = "0.7.5"
2929
subtle = "2.4"
3030
tokio = { version = "1.19", features = ["full"] }
31-
async-trait = "0.1.56"
3231
log = "0.4.16"
3332
aead = { version = "0.4.3", features = ["std"] }
3433
aes-gcm = { version = "0.10.1", features = ["std"] }

stun/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ thiserror = "1.0"
3131
[dev-dependencies]
3232
tokio-test = "0.4.0" # must match the min version of the `tokio` crate above
3333
clap = "3.2.6"
34-
criterion = "0.3.5"
34+
criterion = "0.4.0"
3535

3636

3737
[[bench]]

turn/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ env_logger = "0.9.0"
3232
chrono = "0.4.23"
3333
hex = "0.4.3"
3434
clap = "3.2.6"
35-
criterion = "0.3.5"
35+
criterion = "0.4.0"
3636

3737
[features]
3838
metrics = []

0 commit comments

Comments
 (0)