Skip to content

Commit

Permalink
upgrade dependnecies to latest versions
Browse files Browse the repository at this point in the history
  • Loading branch information
paxsonsa committed Jan 1, 2024
1 parent 72a1ece commit a2839a6
Showing 1 changed file with 12 additions and 8 deletions.
20 changes: 12 additions & 8 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,22 +10,26 @@ license = "MIT"
edition = "2018"

[dependencies]
byteorder = "1.3"
if-addrs = "0.7"
hostname = "0.3"
byteorder = "1.5.0"
if-addrs = "0.10.2"
hostname = "0.3.1"
log = "0.4"
multimap = "0.8"
multimap = "0.9"
rand = "0.8"
futures-util = "0.3"
thiserror = "1.0"
tokio = { version = "1.0", features = ["sync","net","rt"] }
socket2 = { version = "0.4", features = ["all"] }
tokio = { version = "1.0", features = ["sync", "net", "rt"] }
socket2 = { version = "0.5", features = ["all"] }

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

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

[dev-dependencies]
env_logger = { version = "0.8", default-features = false, features = ["termcolor","humantime","atty"] }
env_logger = { version = "0.10", default-features = false, features = [
"color",
"humantime",
"auto-color",
] }

0 comments on commit a2839a6

Please sign in to comment.