Skip to content

Commit 6f08b61

Browse files
committed
Fix server::async fmt by rustfmt
1 parent be4af03 commit 6f08b61

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/server/async.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,16 @@
11
//! The asynchronous implementation of a websocket server.
22
use bytes::BytesMut;
3+
use futures;
34
use futures::{Future, Stream};
45
use server::upgrade::async::{IntoWs, Upgrade};
56
use server::InvalidConnection;
67
use server::{NoTlsAcceptor, WsServer};
8+
use std;
79
use std::io;
810
use std::net::SocketAddr;
911
use std::net::ToSocketAddrs;
1012
pub use tokio_reactor::Handle;
1113
use tokio_tcp::{TcpListener, TcpStream};
12-
use std;
13-
use futures;
1414

1515
#[cfg(any(feature = "async-ssl"))]
1616
use native_tls::TlsAcceptor;

0 commit comments

Comments
 (0)