diff --git a/Cargo.lock b/Cargo.lock index efaf1d8ed..82e820c8d 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -7476,8 +7476,9 @@ checksum = "ea2f10b9bb0928dfb1b42b65e1f9e36f7f54dbdf08457afefb38afcdec4fa2bb" [[package]] name = "ws_stream_wasm" -version = "0.7.4" -source = "git+https://github.com/tlsnotary/ws_stream_wasm?rev=2ed12aad9f0236e5321f577672f309920b2aef51#2ed12aad9f0236e5321f577672f309920b2aef51" +version = "0.7.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "6c173014acad22e83f16403ee360115b38846fe754e735c5d9d3803fe70c6abc" dependencies = [ "async_io_stream", "futures", @@ -7486,7 +7487,7 @@ dependencies = [ "pharos", "rustc_version 0.4.1", "send_wrapper", - "thiserror 1.0.69", + "thiserror 2.0.12", "wasm-bindgen", "wasm-bindgen-futures", "web-sys", diff --git a/Cargo.toml b/Cargo.toml index e11ed1998..0f6c79897 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -163,6 +163,5 @@ web-spawn = { version = "0.2" } web-time = { version = "0.2" } webpki-roots = { version = "1.0" } webpki-root-certs = { version = "1.0" } -# Use the patched ws_stream_wasm to fix the issue https://github.com/najamelan/ws_stream_wasm/issues/12#issuecomment-1711902958 -ws_stream_wasm = { git = "https://github.com/tlsnotary/ws_stream_wasm", rev = "2ed12aad9f0236e5321f577672f309920b2aef51" } +ws_stream_wasm = { version = "0.7.5" } zeroize = { version = "1.8" } diff --git a/crates/wasm/Cargo.toml b/crates/wasm/Cargo.toml index 2b09a1900..d3c879850 100644 --- a/crates/wasm/Cargo.toml +++ b/crates/wasm/Cargo.toml @@ -46,8 +46,7 @@ tsify-next = { version = "0.5", default-features = false, features = ["js"] } wasm-bindgen = { version = "0.2" } wasm-bindgen-futures = { version = "0.4" } web-spawn = { workspace = true } -# Use the patched ws_stream_wasm to fix the issue https://github.com/najamelan/ws_stream_wasm/issues/12#issuecomment-1711902958 -ws_stream_wasm = { git = "https://github.com/tlsnotary/ws_stream_wasm", rev = "2ed12aad9f0236e5321f577672f309920b2aef51" } +ws_stream_wasm = { workspace = true } [target.'cfg(target_arch = "wasm32")'.dependencies] getrandom = { version = "0.2", features = ["js"] }