mirror of https://github.com/fafhrd91/actix-web
remove resolver feature
This commit is contained in:
parent
cde22e4218
commit
edff66dc32
|
@ -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"
|
||||
|
|
|
@ -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 {}
|
||||
|
||||
|
|
Loading…
Reference in New Issue