From c8411b7911ae90ad01de174fc5a0ed601d7f340e Mon Sep 17 00:00:00 2001 From: Christoph Herzog Date: Sun, 25 Feb 2024 12:00:23 +0100 Subject: [PATCH] fix(ci): Prevent need for ssl and crypto libs by using rustls-tls --- tests/integration/cli/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/integration/cli/Cargo.toml b/tests/integration/cli/Cargo.toml index ea0857771fb..ccf7a0ca6c6 100644 --- a/tests/integration/cli/Cargo.toml +++ b/tests/integration/cli/Cargo.toml @@ -16,7 +16,7 @@ md5 = "0.7.0" hex = "0.4.3" pretty_assertions = "1.3.0" object = "0.30.0" -reqwest = { version = "0.11.14", features = ["json", "blocking"] } +reqwest = { version = "0.11.14", default-features = false, features = ["json", "blocking", "rustls-tls"] } tokio = { version = "1", features = [ "rt", "rt-multi-thread", "macros" ] } assert_cmd = "2.0.8" predicates = "2.1.5"