We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 90b23a9 commit 754a1fbCopy full SHA for 754a1fb
2 files changed
tokio/Cargo.toml
@@ -92,7 +92,7 @@ pin-project-lite = "0.2.11"
92
93
# Everything else is optional...
94
bytes = { version = "1.0.0", optional = true }
95
-mio = { version = "0.8.9", optional = true, default-features = false }
+mio = { version = "1.0.1", optional = true, default-features = false }
96
parking_lot = { version = "0.12.0", optional = true }
97
98
[target.'cfg(not(target_family = "wasm"))'.dependencies]
tokio/src/net/unix/socketaddr.rs
@@ -2,7 +2,7 @@ use std::fmt;
2
use std::path::Path;
3
4
/// An address associated with a Tokio Unix socket.
5
-pub struct SocketAddr(pub(super) mio::net::SocketAddr);
+pub struct SocketAddr(pub(super) std::os::unix::net::SocketAddr);
6
7
impl SocketAddr {
8
/// Returns `true` if the address is unnamed.
0 commit comments