Skip to content

Commit cc58441

Browse files
committed
fix: remove ring spec and bump gcloud version
1 parent 4817fc3 commit cc58441

File tree

3 files changed

+1
-6
lines changed

3 files changed

+1
-6
lines changed

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -115,7 +115,7 @@ futures-executor = "0.3"
115115
futures-utils-wasm = "0.1"
116116
wasmtimer = "0.4.0"
117117

118-
gcloud-sdk = "0.27"
118+
gcloud-sdk = "0.27.4"
119119
hyper = { version = "1.2", default-features = false }
120120
hyper-util = "0.1"
121121
hyper-tls = "0.6.0"

crates/transport-ws/Cargo.toml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,8 +36,6 @@ tracing.workspace = true
3636
http = "1.1"
3737
tokio = { workspace = true, features = ["sync", "rt", "time"] }
3838
tokio-tungstenite = { workspace = true, features = ["rustls-tls-webpki-roots"] }
39-
# choose ring as the default TLS backend
40-
rustls = { workspace = true, features = ["ring"] }
4139

4240
# WASM only
4341
[target.'cfg(target_family = "wasm")'.dependencies]

crates/transport-ws/src/lib.rs

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,9 +16,6 @@ mod native;
1616
#[cfg(not(target_family = "wasm"))]
1717
pub use native::{WebSocketConfig, WsConnect};
1818

19-
#[cfg(not(target_family = "wasm"))]
20-
use rustls as _;
21-
2219
#[cfg(target_family = "wasm")]
2320
mod wasm;
2421
#[cfg(target_family = "wasm")]

0 commit comments

Comments
 (0)