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:
François 2021-07-24 01:41:48 +00:00
parent e167a1d9cf
commit a4e5e2790e

View file

@ -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"