diff --git a/rust/pact_consumer/Cargo.toml b/rust/pact_consumer/Cargo.toml index affae480..6b0c5141 100644 --- a/rust/pact_consumer/Cargo.toml +++ b/rust/pact_consumer/Cargo.toml @@ -44,7 +44,7 @@ yansi = { version = "1.0.1", optional = true } [dev-dependencies] env_logger = "0.11.8" expectest = "0.12.0" -reqwest = { version = "0.13.1", default-features = false, features = ["rustls", "blocking", "json"] } +reqwest = { version = "0.13.1", default-features = false, features = ["rustls-no-provider", "blocking", "json"] } serde = { version = "1.0.228", features = ["derive"] } rand = "0.8.5" tempfile = "3.24.0" diff --git a/rust/pact_ffi/Cargo.toml b/rust/pact_ffi/Cargo.toml index 138f310d..e49da0e3 100644 --- a/rust/pact_ffi/Cargo.toml +++ b/rust/pact_ffi/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "pact_ffi" -version = "0.5.6" +version = "0.5.5" authors = ["Ronald Holshausen ", "Matt Fellows ", "Andrew Lilley Brinker ", "Caleb Stepanian "] edition = "2021" description = "Pact interface for foreign languages." @@ -57,7 +57,7 @@ expectest = "0.12.0" hamcrest2 = "0.3.0" pretty_assertions = "1.4.1" quickcheck = "1.0.3" -reqwest = { version = "0.13.1", default-features = false, features = ["rustls", "blocking", "json", "multipart"] } +reqwest = { version = "0.13.1", default-features = false, features = ["rustls-no-provider", "blocking", "json", "multipart"] } rstest = "0.26.1" rustls = { version = "0.23", features = ["ring"] } test-log = "0.2.19" diff --git a/rust/pact_verifier/Cargo.toml b/rust/pact_verifier/Cargo.toml index 39608b4c..0799896d 100644 --- a/rust/pact_verifier/Cargo.toml +++ b/rust/pact_verifier/Cargo.toml @@ -41,7 +41,7 @@ pact-plugin-driver = { version = "~1.1.0", optional = true, default-features = f uuid = { version = "1.0", features = ["v4"], optional = true } regex = "1.12.3" httpdate = "1.0" -reqwest = { version = "0.13", default-features = false, features = ["rustls", "blocking", "json", "query"] } +reqwest = { version = "0.13", default-features = false, features = ["rustls-no-provider", "blocking", "json", "query"] } serde = "1.0.228" serde_json = "1.0.149" serde_with = { version = "3.16.1", features = ["json"] }