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 aed158f commit 1fa2000Copy full SHA for 1fa2000
net/src/socket/server/mod.rs
@@ -44,7 +44,8 @@ pub mod error;
44
///
45
pub mod data;
46
47
-use async_std::{io::ReadExt, net::{TcpListener, TcpStream}};
+use tokio::io::AsyncReadExt;
48
+use tokio::net::{TcpListener, TcpStream};
49
use std::net::{Ipv4Addr, SocketAddr};
50
51
use error::ServerSocketError;
0 commit comments