From b6cf9217d83780d8110e81bc450cbc6e141cb1c8 Mon Sep 17 00:00:00 2001 From: Mingwei Samuel Date: Wed, 30 Jun 2021 14:15:17 -0700 Subject: [PATCH] Add native-tls and rustls-tls features forwarded to reqwest --- Cargo.toml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Cargo.toml b/Cargo.toml index 39a03a3..bca8eb8 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -21,6 +21,8 @@ features = [ "nightly" ] [features] nightly = [ "parking_lot/nightly" ] +native-tls = [ "reqwest/native-tls" ] +rustls-tls = [ "reqwest/rustls-tls" ] [dependencies] lazy_static = "1.4"