From 4dbad20942205734347a5f0f2ecd5f19bcf469e1 Mon Sep 17 00:00:00 2001 From: Jess Frazelle Date: Wed, 6 Jul 2022 14:59:50 -0700 Subject: [PATCH] turn off tls support (#93) Signed-off-by: Jess Frazelle --- progenitor-client/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/progenitor-client/Cargo.toml b/progenitor-client/Cargo.toml index 816a5b5..9996acd 100644 --- a/progenitor-client/Cargo.toml +++ b/progenitor-client/Cargo.toml @@ -10,6 +10,6 @@ description = "An OpenAPI client generator - client support" bytes = "1.1.0" futures-core = "0.3.21" percent-encoding = "2.1" -reqwest = { version = "0.11", features = ["json", "stream"] } +reqwest = { version = "0.11", default-features = false, features = ["json", "stream"] } serde = "1.0" serde_json = "1.0"