Skip to content

Commit 3db1408

Browse files
author
yngrtc
committed
upgrade deps to latest version to fix [maybe insecure]
1 parent 9c0570a commit 3db1408

File tree

15 files changed

+30
-32
lines changed

15 files changed

+30
-32
lines changed

data/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,12 +13,12 @@ repository = "https://github.com/webrtc-rs/data"
1313
util = { version = "0.7", path = "../util", package = "webrtc-util", default-features = false, features = ["conn", "marshal"] }
1414
sctp = { version = "0.8", path = "../sctp", package = "webrtc-sctp" }
1515

16-
tokio = { version = "1", features = ["full"] }
16+
tokio = { version = "1.32.0", features = ["full"] }
1717
bytes = "1"
1818
log = "0.4"
1919
thiserror = "1"
2020

2121
[dev-dependencies]
2222
tokio-test = "0.4" # must match the min version of the `tokio` crate above
2323
env_logger = "0.10"
24-
chrono = "0.4"
24+
chrono = "0.4.28"

dtls/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ aes = "0.8"
2626
cbc = { version = "0.1", features = [ "block-padding", "alloc"] }
2727
aes-gcm = "0.10"
2828
ccm = "0.5"
29-
tokio = { version = "1", features = ["full"] }
29+
tokio = { version = "1.32.0", features = ["full"] }
3030
async-trait = "0.1"
3131
x25519-dalek = { version = "2", features = ["static_secrets"] }
3232
x509-parser = "0.15"
@@ -44,7 +44,7 @@ pem = { version = "3", optional = true }
4444
[dev-dependencies]
4545
tokio-test = "0.4"
4646
env_logger = "0.10"
47-
chrono = "0.4"
47+
chrono = "0.4.28"
4848
clap = "3"
4949
hub = {path = "examples/hub"}
5050

dtls/examples/hub/Cargo.toml

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

12-
tokio = { version = "1", features = ["full"] }
12+
tokio = { version = "1.32.0", features = ["full"] }
1313
rcgen = { version = "0.11", features = ["pem", "x509-parser"] }
1414
rustls = "0.21"
1515
rustls-pemfile = "1"

examples/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,14 +15,14 @@ repository = "https://github.com/webrtc-rs/examples"
1515
[dev-dependencies]
1616
webrtc = { path = "../webrtc" }
1717

18-
tokio = { version = "1", features = ["full"] }
18+
tokio = { version = "1.32.0", features = ["full"] }
1919
env_logger = "0.10"
2020
clap = "3"
21-
hyper = { version = "0.14", features = ["full"] }
21+
hyper = { version = "0.14.27", features = ["full"] }
2222
signal = { path = "examples/signal" }
2323
tokio-util = { version = "0.7", features = ["codec"] }
2424
anyhow = "1"
25-
chrono = "0.4"
25+
chrono = "0.4.28"
2626
log = "0.4"
2727
serde = { version = "1", features = ["derive"] }
2828
serde_json = "1"

examples/examples/signal/Cargo.toml

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,11 +3,9 @@ name = "signal"
33
version = "0.1.0"
44
edition = "2021"
55

6-
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
7-
86
[dependencies]
9-
tokio = { version = "1", features = ["full"] }
7+
tokio = { version = "1.32.0", features = ["full"] }
108
anyhow = "1"
119
base64 = "0.21"
1210
lazy_static = "1"
13-
hyper = { version = "0.14", features = ["full"] }
11+
hyper = { version = "0.14.27", features = ["full"] }

ice/Cargo.toml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -23,20 +23,20 @@ rand = "0.8"
2323
serde = { version = "1", features = ["derive"] }
2424
serde_json = "1"
2525
thiserror = "1"
26-
tokio = { version = "1", features = ["full"] }
26+
tokio = { version = "1.32.0", features = ["full"] }
2727
url = "2"
2828
uuid = { version = "1", features = ["v4"] }
2929
waitgroup = "0.1"
3030

3131
[dev-dependencies]
3232
tokio-test = "0.4"
33-
regex = "1"
33+
regex = "1.9.5"
3434
env_logger = "0.10"
35-
chrono = "0.4"
35+
chrono = "0.4.28"
3636
ipnet = "2"
3737
clap = "3"
3838
lazy_static = "1"
39-
hyper = { version = "0.14", features = ["full"] }
39+
hyper = { version = "0.14.27", features = ["full"] }
4040
sha1 = "0.10"
4141

4242
[[example]]

interceptor/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ rtp = { version = "0.8", path = "../rtp" }
1515
rtcp = { version = "0.9", path = "../rtcp" }
1616
srtp = { version = "0.10", path = "../srtp", package = "webrtc-srtp" }
1717

18-
tokio = { version = "1", features = ["sync", "time"] }
18+
tokio = { version = "1.32.0", features = ["sync", "time"] }
1919
async-trait = "0.1"
2020
bytes = "1"
2121
thiserror = "1"
@@ -25,4 +25,4 @@ log = "0.4"
2525

2626
[dev-dependencies]
2727
tokio-test = "0.4"
28-
chrono = "0.4"
28+
chrono = "0.4.28"

mdns/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,14 +16,14 @@ reuse_port = []
1616
[dependencies]
1717
util = { version = "0.7", path = "../util", package = "webrtc-util", default-features = false, features = ["ifaces"] }
1818

19-
tokio = { version = "1", features = ["full"] }
19+
tokio = { version = "1.32.0", features = ["full"] }
2020
socket2 = { version = "0.5", features = ["all"] }
2121
log = "0.4"
2222
thiserror = "1"
2323

2424
[dev-dependencies]
2525
env_logger = "0.10"
26-
chrono = "0.4"
26+
chrono = "0.4.28"
2727
clap = "3"
2828

2929
[[example]]

rtp/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ thiserror = "1"
1818
serde = { version = "1", features = ["derive"] }
1919

2020
[dev-dependencies]
21-
chrono = "0.4"
21+
chrono = "0.4.28"
2222
criterion = "0.5"
2323

2424
[[bench]]

sctp/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ repository = "https://github.com/webrtc-rs/sctp"
1313
util = { version = "0.7", path = "../util", package = "webrtc-util", default-features = false, features = ["conn"] }
1414

1515
arc-swap = "1"
16-
tokio = { version = "1", features = ["full"] }
16+
tokio = { version = "1.32.0", features = ["full"] }
1717
bytes = "1"
1818
rand = "0.8"
1919
crc = "3"
@@ -25,7 +25,7 @@ thiserror = "1"
2525
tokio-test = "0.4"
2626
lazy_static = "1"
2727
env_logger = "0.10"
28-
chrono = "0.4"
28+
chrono = "0.4.28"
2929
clap = "3"
3030

3131
[[example]]

0 commit comments

Comments
 (0)