1
0
Fork 0
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:
Martell Malone 2019-11-26 18:35:48 -08:00
parent 735bde4957
commit a1670b0544
2 changed files with 2 additions and 2 deletions

View file

@ -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

View file

@ -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;