diff --git a/Cargo.lock b/Cargo.lock index fb14f55..f44f28c 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2517,6 +2517,10 @@ name = "futures-timer" version = "3.0.3" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "f288b0a4f20f9a56b5d1da57e2227c661b7b16168e2f72365f57b63326e29b24" +dependencies = [ + "gloo-timers", + "send_wrapper 0.4.0", +] [[package]] name = "futures-util" @@ -2644,6 +2648,18 @@ version = "0.3.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "d2fabcfbdc87f4758337ca535fb41a6d701b65693ce38287d856d1674551ec9b" +[[package]] +name = "gloo-timers" +version = "0.2.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "9b995a66bb87bebce9a0f4a95aed01daca4872c050bfcb21653361c03bc35e5c" +dependencies = [ + "futures-channel", + "futures-core", + "js-sys", + "wasm-bindgen", +] + [[package]] name = "group" version = "0.13.0" @@ -3733,9 +3749,9 @@ dependencies = [ [[package]] name = "libp2p-relay-manager" -version = "0.2.2" +version = "0.2.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e8ce24a6522b4b58c82d72cf9f364732f354d8daaecdd359329aa6a84708428d" +checksum = "8c4e8bf9f64f9a4d83897410a0fb2da086c02b12f37c736ae116c5968c7e9758" dependencies = [ "anyhow", "futures", @@ -5708,6 +5724,12 @@ dependencies = [ "pest", ] +[[package]] +name = "send_wrapper" +version = "0.4.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f638d531eccd6e23b980caf34876660d38e265409d8e99b397ab71eb3612fad0" + [[package]] name = "send_wrapper" version = "0.6.0" @@ -7332,7 +7354,7 @@ dependencies = [ "log", "pharos", "rustc_version 0.4.0", - "send_wrapper", + "send_wrapper 0.6.0", "thiserror", "wasm-bindgen", "wasm-bindgen-futures", diff --git a/Cargo.toml b/Cargo.toml index 47c65b2..275d5e2 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -36,7 +36,7 @@ libp2p = { version = "0.53.2", features = [ "dcutr", "serde", ] } -libp2p-relay-manager = "0.2.2" +libp2p-relay-manager = "0.2.3" tokio = { version = "1.36.0", features = ["full"] } eyre = "0.6.12" regex = "1.10.4"