mirror of https://github.com/fafhrd91/actix-web
Update tokio to 0.2 removing tokio-net
This commit is contained in:
parent
735bde4957
commit
a1670b0544
|
@ -84,7 +84,7 @@ slab = "0.4"
|
||||||
serde_urlencoded = "0.6.1"
|
serde_urlencoded = "0.6.1"
|
||||||
time = "0.1.42"
|
time = "0.1.42"
|
||||||
|
|
||||||
tokio-net = "=0.2.0-alpha.6"
|
tokio = { version = "0.2", features = ["net"] }
|
||||||
trust-dns-resolver = { version="0.18.0-alpha.1", default-features = false }
|
trust-dns-resolver = { version="0.18.0-alpha.1", default-features = false }
|
||||||
|
|
||||||
# for secure cookie
|
# for secure cookie
|
||||||
|
|
|
@ -9,7 +9,7 @@ use actix_connect::{
|
||||||
use actix_service::{apply_fn, Service};
|
use actix_service::{apply_fn, Service};
|
||||||
use actix_utils::timeout::{TimeoutError, TimeoutService};
|
use actix_utils::timeout::{TimeoutError, TimeoutService};
|
||||||
use http::Uri;
|
use http::Uri;
|
||||||
use tokio_net::tcp::TcpStream;
|
use tokio::net::TcpStream;
|
||||||
|
|
||||||
use super::connection::Connection;
|
use super::connection::Connection;
|
||||||
use super::error::ConnectError;
|
use super::error::ConnectError;
|
||||||
|
|
Loading…
Reference in New Issue