From 877f2c0b9ea9cd4f6328cc23c632e06282f43a2f Mon Sep 17 00:00:00 2001 From: stefan-mysten <135084671+stefan-mysten@users.noreply.github.com> Date: Thu, 19 Dec 2024 09:33:37 -0800 Subject: [PATCH] sui-graphql-client: use rustls instead of openssl for reqwest (#80) --- crates/sui-graphql-client/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crates/sui-graphql-client/Cargo.toml b/crates/sui-graphql-client/Cargo.toml index 1104c5254..fd410b478 100644 --- a/crates/sui-graphql-client/Cargo.toml +++ b/crates/sui-graphql-client/Cargo.toml @@ -17,7 +17,7 @@ bcs = "0.1.4" chrono = "0.4.26" cynic = "3.7.3" futures = "0.3.29" -reqwest = { version = "0.12", features = ["json"] } +reqwest = { version = "0.12", default-features = false, features = ["rustls-tls", "json"] } serde = { version = "1.0.144" } serde_json = {version = "1.0.95"} sui-types = { package = "sui-sdk-types", path = "../sui-sdk-types", features = ["serde"] }