diff --git a/Cargo.lock b/Cargo.lock index 96890a5b29b03c..a70c1d387dbf2d 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -3665,6 +3665,7 @@ dependencies = [ "hyper 1.6.0", "hyper-util", "rustls 0.23.31", + "rustls-native-certs", "rustls-pki-types", "tokio", "tokio-rustls 0.26.2", @@ -6010,6 +6011,7 @@ dependencies = [ "pin-project-lite", "quinn", "rustls 0.23.31", + "rustls-native-certs", "rustls-pki-types", "serde", "serde_json", diff --git a/cli/Cargo.toml b/cli/Cargo.toml index 62ed5652e04a90..0a9b483c646d3a 100644 --- a/cli/Cargo.toml +++ b/cli/Cargo.toml @@ -32,7 +32,7 @@ humantime = { workspace = true } log = { workspace = true } num-traits = { workspace = true } pretty-hex = { workspace = true } -reqwest = { workspace = true, features = ["blocking", "brotli", "deflate", "gzip", "rustls-tls", "json"] } +reqwest = { workspace = true, features = ["blocking", "brotli", "deflate", "gzip", "rustls-tls", "rustls-tls-native-roots", "json"] } semver = { workspace = true } serde = { workspace = true } serde_derive = { workspace = true } diff --git a/platform-tools-sdk/cargo-build-sbf/Cargo.toml b/platform-tools-sdk/cargo-build-sbf/Cargo.toml index 4ddf34224cf75a..11811a7c14d3a7 100644 --- a/platform-tools-sdk/cargo-build-sbf/Cargo.toml +++ b/platform-tools-sdk/cargo-build-sbf/Cargo.toml @@ -23,7 +23,7 @@ clap = { version = "3.1.5", features = ["cargo", "env"] } itertools = { workspace = true } log = { workspace = true, features = ["std"] } regex = { workspace = true } -reqwest = { workspace = true, features = ["blocking", "rustls-tls"] } +reqwest = { workspace = true, features = ["blocking", "rustls-tls", "rustls-tls-native-roots" ] } semver = { workspace = true } solana-file-download = "=3.0.0" solana-keypair = "=3.0.1"