From 73e8bec1963d27a31fc43504af3ec28d9337114b Mon Sep 17 00:00:00 2001 From: Zicklag Date: Wed, 20 Jul 2022 15:18:26 +0000 Subject: [PATCH] Update Notify Dependency (#5396) # Objective I want to use the `deno_runtime` crate in my game, but it has a conflict with the version of the `notify` crate that Bevy depends on. ## Solution Updates the version of the `notify` crate the Bevy depends on. --- crates/bevy_asset/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crates/bevy_asset/Cargo.toml b/crates/bevy_asset/Cargo.toml index e16455537f78a3..d31b9c2ab1d5be 100644 --- a/crates/bevy_asset/Cargo.toml +++ b/crates/bevy_asset/Cargo.toml @@ -30,7 +30,7 @@ anyhow = "1.0.4" thiserror = "1.0" downcast-rs = "1.2.0" fastrand = "1.7.0" -notify = { version = "=5.0.0-pre.11", optional = true } +notify = { version = "=5.0.0-pre.15", optional = true } parking_lot = "0.12.1" [target.'cfg(target_arch = "wasm32")'.dependencies]