From 2b49b398f85f123b65daf74a54abd474478f1db0 Mon Sep 17 00:00:00 2001 From: Ronald Holshausen Date: Mon, 24 Jun 2024 15:02:45 +1000 Subject: [PATCH] chore(FFI): Remove default TLS features --- rust/pact_ffi/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rust/pact_ffi/Cargo.toml b/rust/pact_ffi/Cargo.toml index 67edcae1..cf95227f 100644 --- a/rust/pact_ffi/Cargo.toml +++ b/rust/pact_ffi/Cargo.toml @@ -40,7 +40,7 @@ rand = "0.8.5" rand_regex = "0.15.1" regex = "1.10.2" regex-syntax = "0.6.29" -rustls = { version = "0.23.10", features = ["ring"] } +rustls = { version = "0.23.10", default-features = false, features = ["ring"] } rustls-pemfile = "2.1.2" serde = { version = "1.0.193", features = ["derive"] } serde_json = "1.0.108"