From 25ed4ba4ebc2dc716edd0a885c58374c5470037c Mon Sep 17 00:00:00 2001 From: Rob Ede Date: Mon, 29 Nov 2021 20:08:40 +0000 Subject: [PATCH] remove default features --- actix-tls/CHANGES.md | 1 + actix-tls/Cargo.toml | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) 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 = []