Skip to content

Commit

Permalink
fix version of notify to 5.0.0-pre.2 (#2528)
Browse files Browse the repository at this point in the history
# 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
  • Loading branch information
mockersf committed Jul 24, 2021
1 parent e167a1d commit a4e5e27
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion crates/bevy_asset/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"

Expand Down

0 comments on commit a4e5e27

Please sign in to comment.