From bd0b015180d838ca47eaf00951fea40f2aa565a3 Mon Sep 17 00:00:00 2001 From: FabianLars Date: Thu, 23 Nov 2023 22:05:01 +0100 Subject: [PATCH] update notify version to match code --- Cargo.lock | 14 ++++++++------ plugins/fs/Cargo.toml | 4 ++-- 2 files changed, 10 insertions(+), 8 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 40cf561b..cdd6ec08 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -3517,30 +3517,32 @@ dependencies = [ [[package]] name = "notify" -version = "5.2.0" +version = "6.1.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "729f63e1ca555a43fe3efa4f3efdf4801c479da85b432242a7b726f353c88486" +checksum = "6205bd8bb1e454ad2e27422015fb5e4f2bcc7e08fa8f27058670d208324a4d2d" dependencies = [ - "bitflags 1.3.2", + "bitflags 2.4.1", "crossbeam-channel", "filetime", "fsevent-sys", "inotify", "kqueue", "libc", + "log", "mio", "serde", "walkdir", - "windows-sys 0.45.0", + "windows-sys 0.48.0", ] [[package]] name = "notify-debouncer-mini" -version = "0.2.1" +version = "0.4.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e23e9fa24f094b143c1eb61f90ac6457de87be6987bc70746e0179f7dbc9007b" +checksum = "5d40b221972a1fc5ef4d858a2f671fb34c75983eb385463dff3780eeff6a9d43" dependencies = [ "crossbeam-channel", + "log", "notify", "serde", ] diff --git a/plugins/fs/Cargo.toml b/plugins/fs/Cargo.toml index ffd3f70a..53bc793f 100644 --- a/plugins/fs/Cargo.toml +++ b/plugins/fs/Cargo.toml @@ -18,8 +18,8 @@ thiserror = { workspace = true } anyhow = "1" uuid = { version = "1", features = [ "v4" ] } glob = "0.3" -notify = { version = "5", optional = true, features = [ "serde" ] } -notify-debouncer-mini = { version = "0.2.1", optional = true, features = [ "serde" ] } +notify = { version = "6", optional = true, features = [ "serde" ] } +notify-debouncer-mini = { version = "0.4", optional = true, features = [ "serde" ] } [features] watch = [ "notify", "notify-debouncer-mini" ]