diff options
| author | Brennan Vincent <brennan@umanwizard.com> | 2022-05-22 17:04:57 -0400 |
|---|---|---|
| committer | Brennan Vincent <brennan@umanwizard.com> | 2022-05-22 17:04:57 -0400 |
| commit | 364dd5ff89d06c4d5dd802ae5af19b9fa62117b5 (patch) | |
| tree | a8b5a4d8cce9111bf1795d698e07e764de16b26a | |
| parent | 84be2eaf99c1c057b401f755f92d22d5896900f2 (diff) | |
| download | rust-364dd5ff89d06c4d5dd802ae5af19b9fa62117b5.tar.gz rust-364dd5ff89d06c4d5dd802ae5af19b9fa62117b5.zip | |
Fix build on OpenBSD (and probably other BSDs too)
notify-5.0.0-pre.14 does not build on these systems; this was fixed in https://github.com/notify-rs/notify/commit/41a74f0e98a1af386749ad3be4a197865054f17f , which landed in pre.15.
| -rw-r--r-- | Cargo.lock | 4 | ||||
| -rw-r--r-- | crates/vfs-notify/Cargo.toml | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/Cargo.lock b/Cargo.lock index 8d2217b2e22..f3bd3d6b76b 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -982,9 +982,9 @@ dependencies = [ [[package]] name = "notify" -version = "5.0.0-pre.14" +version = "5.0.0-pre.15" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d13c22db70a63592e098fb51735bab36646821e6389a0ba171f3549facdf0b74" +checksum = "553f9844ad0b0824605c20fb55a661679782680410abfb1a8144c2e7e437e7a7" dependencies = [ "bitflags", "crossbeam-channel", diff --git a/crates/vfs-notify/Cargo.toml b/crates/vfs-notify/Cargo.toml index a13a85f92f8..d9ac83af59c 100644 --- a/crates/vfs-notify/Cargo.toml +++ b/crates/vfs-notify/Cargo.toml @@ -14,7 +14,7 @@ tracing = "0.1.32" jod-thread = "0.1.2" walkdir = "2.3.2" crossbeam-channel = "0.5.4" -notify = "=5.0.0-pre.14" +notify = "=5.0.0-pre.15" vfs = { path = "../vfs", version = "0.0.0" } paths = { path = "../paths", version = "0.0.0" } |
