From 47e22c7c008444ad0c75b8c132a01a9ae7d614d0 Mon Sep 17 00:00:00 2001 From: trivernis Date: Sun, 25 Jul 2021 10:46:06 +0200 Subject: [PATCH] Add rustls feature behind a feature flag Signed-off-by: trivernis --- Cargo.toml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index afd8a4e..24c8b47 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "hydrus-api" -version = "0.3.2" +version = "0.3.3" authors = ["trivernis "] edition = "2018" license = "Apache-2.0" @@ -24,3 +24,6 @@ lazy_static = "1.4.0" [dev-dependencies.tokio] version = "1.8.0" features = ["macros", "rt-multi-thread"] + +[features] +rustls = ["reqwest/rustls"] \ No newline at end of file