Skip to content

Commit

Permalink
chore: update mio dependency to v1 (#577)
Browse files Browse the repository at this point in the history
  • Loading branch information
robjtede authored Jun 20, 2024
1 parent 64fa2f8 commit 0030800
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion actix-server/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ actix-utils = "3"

futures-core = { version = "0.3.17", default-features = false, features = ["alloc"] }
futures-util = { version = "0.3.17", default-features = false, features = ["alloc"] }
mio = { version = "0.8", features = ["os-poll", "net"] }
mio = { version = "1", features = ["os-poll", "net"] }
socket2 = "0.5"
tokio = { version = "1.23.1", features = ["sync"] }
tracing = { version = "0.1.30", default-features = false, features = ["log"] }
Expand Down
2 changes: 1 addition & 1 deletion actix-server/src/socket.rs
Original file line number Diff line number Diff line change
Expand Up @@ -126,7 +126,7 @@ pub(crate) enum SocketAddr {
Unknown,
Tcp(StdSocketAddr),
#[cfg(unix)]
Uds(mio::net::SocketAddr),
Uds(std::os::unix::net::SocketAddr),
}

impl fmt::Display for SocketAddr {
Expand Down

0 comments on commit 0030800

Please sign in to comment.