Skip to content

Commit

Permalink
don't use deprecated mio features
Browse files Browse the repository at this point in the history
Signed-off-by: Marc-Antoine Perennou <Marc-Antoine@Perennou.com>
  • Loading branch information
Keruspe authored and FlorentinDUBOIS committed Jul 13, 2022
1 parent 730d901 commit 57b07a4
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion bin/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ name = "sozu"

[dependencies]
anyhow = "1.0.42"
mio = { version = "^0.7", features = [ "os-poll", "uds" ] }
mio = { version = "^0.7", features = [ "os-poll", "net" ] }
serde = "~1.0.2"
serde_json = "~1.0.1"
serde_derive = "~1.0.2"
Expand Down
2 changes: 1 addition & 1 deletion command/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ hex = "^0.4"
log = "^0.4"
pem = "^1.0"
nix = "^0.23"
mio = { version = "^0.7", features = [ "os-poll", "tcp", "uds" ] }
mio = { version = "^0.7", features = [ "os-poll", "net" ] }
libc = "^0.2"
pool = "^0.1"
time = "^0.3"
Expand Down
2 changes: 1 addition & 1 deletion lib/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ url = "^2.1"
log = "^0.4"
net2 = "^0.2"
time = "^0.3"
mio = { version = "^0.7", features = [ "os-poll", "os-ext", "tcp", "udp" ] }
mio = { version = "^0.7", features = [ "os-poll", "os-ext", "net" ] }
libc = "^0.2"
slab = "^0.4.0"
sha2 = "^0.9"
Expand Down

0 comments on commit 57b07a4

Please sign in to comment.