From 0caafc57ddd833cf92863074668e57c00348c727 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 1 Jul 2024 10:25:08 +0000 Subject: [PATCH] chore(deps): bump async-timer from 1.0.0-beta.11 to 1.0.0-beta.14 Bumps [async-timer](https://github.com/DoumanAsh/async-timer) from 1.0.0-beta.11 to 1.0.0-beta.14. - [Commits](https://github.com/DoumanAsh/async-timer/commits) --- updated-dependencies: - dependency-name: async-timer dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- Cargo.lock | 15 +++++++++++++-- ext/Cargo.toml | 2 +- 2 files changed, 14 insertions(+), 3 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index ac69aacd..4f3e8327 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -67,14 +67,15 @@ checksum = "7d5a26814d8dcb93b0e5a0ff3c6d80a8843bafb21b39e8e18a6f05471870e110" [[package]] name = "async-timer" -version = "1.0.0-beta.11" +version = "1.0.0-beta.14" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9a85c27a0fad465f4e93d563b849340a6683fac2040cd99f6f99ed75207e7069" +checksum = "5ff4ca74f619ff7e4eb279686a814665fc910cd2fca2bb943491b9bc40e80c8b" dependencies = [ "error-code", "libc", "tokio", "wasm-bindgen", + "web-time", ] [[package]] @@ -2166,6 +2167,16 @@ dependencies = [ "wast 209.0.1", ] +[[package]] +name = "web-time" +version = "1.1.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "5a6580f308b1fad9207618087a65c04e7a10bc77e02c8e84e9b00dd4b12fa0bb" +dependencies = [ + "js-sys", + "wasm-bindgen", +] + [[package]] name = "wiggle" version = "20.0.0" diff --git a/ext/Cargo.toml b/ext/Cargo.toml index 9ec871df..9f65c44a 100644 --- a/ext/Cargo.toml +++ b/ext/Cargo.toml @@ -33,7 +33,7 @@ tokio = { version = "1.36.0", features = [ "time", "net", ], optional = true } -async-timer = { version = "1.0.0-beta.11", features = [ +async-timer = { version = "1.0.0-beta.14", features = [ "tokio1", ], optional = true } static_assertions = "1.1.0"