Skip to content

Commit 774f9bf

Browse files
committed
Merge remote-tracking branch 'paxonsa/main' into dependencies
2 parents e164205 + 05048c1 commit 774f9bf

File tree

1 file changed

+12
-8
lines changed

1 file changed

+12
-8
lines changed

Cargo.toml

Lines changed: 12 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -10,22 +10,26 @@ license = "MIT"
1010
edition = "2018"
1111

1212
[dependencies]
13-
byteorder = "1.3"
14-
if-addrs = "0.7"
15-
hostname = "0.3"
13+
byteorder = "1.5.0"
14+
if-addrs = "0.10.2"
15+
hostname = "0.3.1"
1616
log = "0.4"
17-
multimap = "0.8"
17+
multimap = "0.9"
1818
rand = "0.8"
1919
futures-util = "0.3"
2020
thiserror = "1.0"
21-
tokio = { version = "1.0", features = ["sync","net","rt"] }
22-
socket2 = { version = "0.4", features = ["all"] }
21+
tokio = { version = "1.0", features = ["sync", "net", "rt"] }
22+
socket2 = { version = "0.5", features = ["all"] }
2323

2424
[target.'cfg(windows)'.dependencies]
2525
winapi = { version = "0.3", features = ["netioapi"] }
2626

2727
[target.'cfg(not(windows))'.dependencies]
28-
nix = "0.23"
28+
nix = { version = "0.27", features = ["net"] }
2929

3030
[dev-dependencies]
31-
env_logger = { version = "0.8", default-features = false, features = ["termcolor","humantime","atty"] }
31+
env_logger = { version = "0.10", default-features = false, features = [
32+
"color",
33+
"humantime",
34+
"auto-color",
35+
] }

0 commit comments

Comments
 (0)