1
0
mirror of https://github.com/fafhrd91/actix-net synced 2025-06-28 15:40:36 +02:00

fix dependencies

This commit is contained in:
Nikolay Kim
2019-12-02 11:49:42 +06:00
parent a08b1eba87
commit f55f96bc77
3 changed files with 3 additions and 3 deletions

View File

@ -2,13 +2,12 @@
use std::sync::mpsc;
use std::{net, thread};
use actix_rt::System;
use actix_rt::{net::TcpStream, System};
use actix_server::{Server, ServerBuilder, ServiceFactory};
pub use actix_server_config::{Io, ServerConfig};
use net2::TcpBuilder;
use tokio_net::driver::Handle;
use tokio_net::tcp::TcpStream;
#[cfg(not(test))] // Work around for rust-lang/rust#62127
pub use actix_macros::test;