diff --git a/Cargo.lock b/Cargo.lock index 3c10b442e..07f582ace 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2546,7 +2546,7 @@ dependencies = [ "entropy-shared", "futures", "getrandom 0.2.15", - "gloo-net", + "gloo-net 0.6.0", "hex", "hpke-rs", "hpke-rs-crypto", @@ -3898,6 +3898,25 @@ dependencies = [ "web-sys", ] +[[package]] +name = "gloo-net" +version = "0.6.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "c06f627b1a58ca3d42b45d6104bf1e1a03799df472df00988b6ba21accc10580" +dependencies = [ + "futures-channel", + "futures-core", + "futures-sink", + "gloo-utils", + "http 1.1.0", + "js-sys", + "pin-project", + "thiserror", + "wasm-bindgen", + "wasm-bindgen-futures", + "web-sys", +] + [[package]] name = "gloo-timers" version = "0.2.6" @@ -4803,7 +4822,7 @@ checksum = "92f254f56af1ae84815b9b1325094743dcf05b92abb5e94da2e81a35cff0cada" dependencies = [ "futures-channel", "futures-util", - "gloo-net", + "gloo-net 0.5.0", "http 0.2.12", "jsonrpsee-core 0.22.4", "pin-project", diff --git a/crates/protocol/Cargo.toml b/crates/protocol/Cargo.toml index c15544516..16fa15fa8 100644 --- a/crates/protocol/Cargo.toml +++ b/crates/protocol/Cargo.toml @@ -38,7 +38,7 @@ axum ={ version="0.7.5", features=["ws"], optional=true } tokio-tungstenite={ version="0.23.1", optional=true } # Used only with the `wasm` feature -gloo-net ={ version="0.5.0", default-features=false, features=["websocket"], optional=true } +gloo-net ={ version="0.6.0", default-features=false, features=["websocket"], optional=true } wasm-bindgen-futures={ version="0.4.42", optional=true } wasm-bindgen ={ version="0.2.92", optional=true } wasm-bindgen-derive ={ version="0.3", optional=true }