remove resolver feature

This commit is contained in:
Maksym Vorobiov 2020-02-25 22:27:38 +02:00
parent cde22e4218
commit edff66dc32
2 changed files with 2 additions and 3 deletions

View File

@ -41,7 +41,6 @@ secure-cookies = ["ring"]
# support for actix Actor messages
actix = ["actix"]
resolver = ["actix/resolver"]
[dependencies]
actix-service = "1.0.1"
@ -51,7 +50,7 @@ actix-utils = "1.0.3"
actix-rt = "1.0.0"
actix-threadpool = "0.3.1"
actix-tls = { version = "1.0.0", optional = true }
actix = { version = "0.10.0-alpha.1", default_features = false, optional = true }
actix = { version = "0.10.0-alpha.1", optional = true }
base64 = "0.11"
bitflags = "1.2"

View File

@ -955,7 +955,7 @@ impl ResponseError for fail_ure::Error {}
/// `InternalServerError` for `actix::MailboxError`
impl ResponseError for actix::MailboxError {}
#[cfg(all(feature = "actix", feature = "resolver"))]
#[cfg(feature = "actix")]
/// `InternalServerError` for `actix::ResolverError`
impl ResponseError for actix::actors::resolver::ResolverError {}