mirror of
https://github.com/actix/actix-extras.git
synced 2024-11-23 23:51:06 +01:00
Minimize futures-*
dependencies
This commit is contained in:
parent
51f5c326ee
commit
9a8275b455
@ -1,5 +1,9 @@
|
|||||||
# Changes
|
# Changes
|
||||||
|
|
||||||
|
## [0.3.0-alpha.1] - 2020-03-11
|
||||||
|
|
||||||
|
* Minimize `futures-*` dependencies
|
||||||
|
|
||||||
## [0.2.0] - 2019-12-20
|
## [0.2.0] - 2019-12-20
|
||||||
|
|
||||||
* Release
|
* Release
|
||||||
|
@ -19,7 +19,7 @@ path = "src/lib.rs"
|
|||||||
actix-web = "2.0.0"
|
actix-web = "2.0.0"
|
||||||
actix-service = "1.0.1"
|
actix-service = "1.0.1"
|
||||||
derive_more = "0.99.2"
|
derive_more = "0.99.2"
|
||||||
futures = "0.3.1"
|
futures-util = { version = "0.3.4", default-features = false }
|
||||||
|
|
||||||
[dev-dependencies]
|
[dev-dependencies]
|
||||||
actix-rt = "1.0.0"
|
actix-rt = "1.0.0"
|
||||||
|
@ -52,7 +52,7 @@ use actix_web::http::header::{self, HeaderName, HeaderValue};
|
|||||||
use actix_web::http::{self, Error as HttpError, Method, StatusCode, Uri};
|
use actix_web::http::{self, Error as HttpError, Method, StatusCode, Uri};
|
||||||
use actix_web::HttpResponse;
|
use actix_web::HttpResponse;
|
||||||
use derive_more::Display;
|
use derive_more::Display;
|
||||||
use futures::future::{ok, Either, FutureExt, LocalBoxFuture, Ready};
|
use futures_util::future::{ok, Either, FutureExt, LocalBoxFuture, Ready};
|
||||||
|
|
||||||
/// A set of errors that can occur during processing CORS
|
/// A set of errors that can occur during processing CORS
|
||||||
#[derive(Debug, Display)]
|
#[derive(Debug, Display)]
|
||||||
|
Loading…
Reference in New Issue
Block a user