mirror of
https://github.com/bevyengine/bevy
synced 2024-11-10 07:04:33 +00:00
fix version of notify to 5.0.0-pre.2 (#2528)
# Objective - https://github.com/notify-rs/notify changed their api in the latest pre-release of 0.5.0 - This breaks current main AND v0.5.0 ## Solution - Fix the dependency to the known working version before : https://docs.rs/notify/5.0.0-pre.2/notify/trait.Watcher.html after : https://docs.rs/notify/5.0.0-pre.11/notify/trait.Watcher.html
This commit is contained in:
parent
e167a1d9cf
commit
a4e5e2790e
1 changed files with 1 additions and 1 deletions
|
@ -32,7 +32,7 @@ crossbeam-channel = "0.5.0"
|
|||
anyhow = "1.0.4"
|
||||
thiserror = "1.0"
|
||||
downcast-rs = "1.2.0"
|
||||
notify = { version = "5.0.0-pre.2", optional = true }
|
||||
notify = { version = "=5.0.0-pre.10", optional = true }
|
||||
parking_lot = "0.11.0"
|
||||
rand = "0.8.0"
|
||||
|
||||
|
|
Loading…
Reference in a new issue