diff --git a/actix-tls/CHANGES.md b/actix-tls/CHANGES.md index 64d02ff0..f6bc7d13 100644 --- a/actix-tls/CHANGES.md +++ b/actix-tls/CHANGES.md @@ -1,6 +1,7 @@ # Changes ## Unreleased - 2021-xx-xx +* There are now no default features. [#422] * Implement `Default` for `connect::Resolver`. [#422] * Derive `Debug` for `connect::Connection`. [#422] * Remove redundant `connect::Connection::from_parts` method. [#422] diff --git a/actix-tls/Cargo.toml b/actix-tls/Cargo.toml index a878dcdc..29feff73 100755 --- a/actix-tls/Cargo.toml +++ b/actix-tls/Cargo.toml @@ -21,7 +21,7 @@ name = "actix_tls" path = "src/lib.rs" [features] -default = ["accept", "connect", "uri", "rustls", "openssl", "native-tls"] +default = [] # enable acceptor services accept = []