diff --git a/Cargo.lock b/Cargo.lock index 61a965a379..f8f813bd77 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -6790,10 +6790,13 @@ dependencies = [ "httparse", "log 0.4.14", "rand 0.8.3", + "rustls", "sha-1 0.9.6", "thiserror", "url 2.2.2", "utf-8", + "webpki", + "webpki-roots", ] [[package]] diff --git a/client/Cargo.toml b/client/Cargo.toml index 4b3148faaa..6aec45fe6b 100644 --- a/client/Cargo.toml +++ b/client/Cargo.toml @@ -33,7 +33,7 @@ solana-version = { path = "../version", version = "=1.8.0" } solana-vote-program = { path = "../programs/vote", version = "=1.8.0" } thiserror = "1.0" tokio = { version = "1", features = ["full"] } -tungstenite = "0.15.0" +tungstenite = { version = "0.15.0", features = ["rustls-tls-webpki-roots"] } url = "2.2.2" [dev-dependencies] diff --git a/programs/bpf/Cargo.lock b/programs/bpf/Cargo.lock index c81c211248..3ecb5bbfb9 100644 --- a/programs/bpf/Cargo.lock +++ b/programs/bpf/Cargo.lock @@ -3885,10 +3885,13 @@ dependencies = [ "httparse", "log", "rand 0.8.2", + "rustls", "sha-1", "thiserror", "url", "utf-8", + "webpki", + "webpki-roots", ] [[package]]