Skip to content

Commit d10edfc

Browse files
author
yngrtc
committed
upgrade deps
1 parent 2577a6f commit d10edfc

File tree

2 files changed

+25
-25
lines changed

2 files changed

+25
-25
lines changed

Cargo.toml

Lines changed: 24 additions & 24 deletions
Original file line numberDiff line numberDiff line change
@@ -12,19 +12,19 @@ keywords = ["networking", "protocols"]
1212
categories = ["network-programming", "asynchronous"]
1313

1414
[dependencies]
15-
retty = "0.24.0"
16-
bytes = "1.5.0"
17-
log = "0.4.20"
18-
base64 = "0.21.5"
19-
serde = "1.0.193"
20-
serde_json = { version = "1.0.111", features = [] }
21-
rand = "0.8.5"
22-
rcgen = { version = "0.11", features = ["pem", "x509-parser"] }
23-
ring = "0.17.7"
24-
sha2 = "0.10.8"
25-
rustls = "0.21.7"
15+
retty = "0.24"
16+
bytes = "1.5"
17+
log = "0.4"
18+
base64 = "0.22"
19+
serde = "1"
20+
serde_json = { version = "1", features = [] }
21+
rand = "0.8"
22+
rcgen = { version = "0.12", features = ["pem", "x509-parser"] }
23+
ring = "0.17"
24+
sha2 = "0.10"
25+
rustls = "0.21"
2626
url = { version = "2", features = [] }
27-
hex = { version = "0.4.3", features = [] }
27+
hex = { version = "0.4", features = [] }
2828

2929
# RTC protocols
3030
shared = { path = "rtc/shared" }
@@ -41,23 +41,23 @@ data = { path = "rtc/data" }
4141
# common
4242
chrono = "0.4"
4343
env_logger = "0.11"
44-
clap = { version = "4.4.12", features = ["derive"] }
45-
anyhow = "1.0.78"
46-
rouille = { version = "3.6.2", features = ["ssl"] }
47-
systemstat = "0.2.2"
44+
clap = { version = "4.5", features = ["derive"] }
45+
anyhow = "1"
46+
rouille = { version = "3.6", features = ["ssl"] }
47+
systemstat = "0.2"
4848

4949
# sync_chat
5050
wg = "0.7"
51-
crossbeam-channel = "0.5.11"
52-
ctrlc = "3.4.2"
51+
crossbeam-channel = "0.5"
52+
ctrlc = "3.4"
5353

5454
# async_chat
55-
futures = "0.3.30"
56-
smol = "2.0.0"
57-
async-broadcast = "0.6.0"
58-
waitgroup = "0.1.2"
59-
core_affinity = "0.8.1"
60-
num_cpus = "1.16.0"
55+
futures = "0.3"
56+
smol = "2"
57+
async-broadcast = "0.7"
58+
waitgroup = "0.1"
59+
core_affinity = "0.8"
60+
num_cpus = "1.16"
6161
tokio = { version = "1.36", features = ["full"] }
6262
tokio-util = "0.7"
6363

0 commit comments

Comments
 (0)