From caed6c6745e7994ec3ac011624ef60a4a22276b1 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 14 May 2024 19:39:02 +0000 Subject: [PATCH] chore(deps): Bump async-channel from 2.2.1 to 2.3.0 Bumps [async-channel](https://github.com/smol-rs/async-channel) from 2.2.1 to 2.3.0. - [Release notes](https://github.com/smol-rs/async-channel/releases) - [Changelog](https://github.com/smol-rs/async-channel/blob/master/CHANGELOG.md) - [Commits](https://github.com/smol-rs/async-channel/compare/v2.2.1...v2.3.0) --- updated-dependencies: - dependency-name: async-channel dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- Cargo.lock | 4 ++-- crates/core/Cargo.toml | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 1b4a0c5..f798487 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -236,9 +236,9 @@ dependencies = [ [[package]] name = "async-channel" -version = "2.2.1" +version = "2.3.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "136d4d23bcc79e27423727b36823d86233aad06dfea531837b038394d11e9928" +checksum = "9f2776ead772134d55b62dd45e59a79e21612d85d0af729b8b7d3967d601a62a" dependencies = [ "concurrent-queue", "event-listener 5.3.0", diff --git a/crates/core/Cargo.toml b/crates/core/Cargo.toml index a456762..e3655ae 100644 --- a/crates/core/Cargo.toml +++ b/crates/core/Cargo.toml @@ -27,7 +27,7 @@ arboard = { version = "3.3.2", optional = true } [target.wasm32-unknown-unknown.dependencies] web-sys = { version = "0.3.68", optional = true, features = ["Clipboard", "Window", "Navigator", "Permissions"] } wasm-bindgen-futures = { version = "0.4.41", optional = true } -async-channel = { version = "2.2.1", optional = true } +async-channel = { version = "2.3.0", optional = true } [dev-dependencies.bevy] version = "0.13"