mirror of
https://github.com/actix/actix-web.git
synced 2025-01-02 13:28:44 +00:00
upgrade actix-service dependency
This commit is contained in:
parent
1c60992723
commit
b1001b80b7
2 changed files with 2 additions and 2 deletions
|
@ -37,7 +37,7 @@ session = ["cookie/secure"]
|
|||
ssl = ["openssl", "actix-connector/ssl"]
|
||||
|
||||
[dependencies]
|
||||
actix-service = "0.1.1"
|
||||
actix-service = "0.1.3"
|
||||
actix-codec = "0.1.0"
|
||||
actix-connector = "0.1.0"
|
||||
actix-rt = "0.1.0"
|
||||
|
|
|
@ -3,7 +3,7 @@ use std::{fmt, io};
|
|||
|
||||
use actix_codec::{AsyncRead, AsyncWrite};
|
||||
use actix_connector::{Resolver, TcpConnector};
|
||||
use actix_service::Service;
|
||||
use actix_service::{Service, ServiceExt};
|
||||
use actix_utils::timeout::{TimeoutError, TimeoutService};
|
||||
use futures::future::Either;
|
||||
use futures::Poll;
|
||||
|
|
Loading…
Reference in a new issue