mirror of
https://github.com/actix/actix-web.git
synced 2025-04-04 17:19:35 +00:00
Update tokio to 0.2 removing tokio-net
This commit is contained in:
parent
735bde4957
commit
a1670b0544
2 changed files with 2 additions and 2 deletions
|
@ -84,7 +84,7 @@ slab = "0.4"
|
|||
serde_urlencoded = "0.6.1"
|
||||
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 }
|
||||
|
||||
# for secure cookie
|
||||
|
|
|
@ -9,7 +9,7 @@ use actix_connect::{
|
|||
use actix_service::{apply_fn, Service};
|
||||
use actix_utils::timeout::{TimeoutError, TimeoutService};
|
||||
use http::Uri;
|
||||
use tokio_net::tcp::TcpStream;
|
||||
use tokio::net::TcpStream;
|
||||
|
||||
use super::connection::Connection;
|
||||
use super::error::ConnectError;
|
||||
|
|
Loading…
Reference in a new issue