From e64cf73e938ef45be69bc1d3d46d781f47e8b51d Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Sat, 20 Jun 2026 02:36:24 +0000 Subject: [PATCH] chore(deps): bump notify-debouncer-full in /src-tauri Bumps [notify-debouncer-full](https://github.com/notify-rs/notify) from 0.3.2 to 0.7.0. - [Release notes](https://github.com/notify-rs/notify/releases) - [Changelog](https://github.com/notify-rs/notify/blob/main/CHANGELOG.md) - [Commits](https://github.com/notify-rs/notify/compare/debouncer-full-0.3.2...debouncer-full-0.7.0) --- updated-dependencies: - dependency-name: notify-debouncer-full dependency-version: 0.7.0 dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- src-tauri/Cargo.lock | 52 ++++++++++++++++++++++++++++++++++++++------ src-tauri/Cargo.toml | 2 +- 2 files changed, 46 insertions(+), 8 deletions(-) diff --git a/src-tauri/Cargo.lock b/src-tauri/Cargo.lock index 759b527..9ab4c27 100644 --- a/src-tauri/Cargo.lock +++ b/src-tauri/Cargo.lock @@ -2176,6 +2176,17 @@ dependencies = [ "libc", ] +[[package]] +name = "inotify" +version = "0.11.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "533e68a5842e734946fe159fb03fc9bbbb254f590dd0d8ad321ae5ff7beca2c1" +dependencies = [ + "bitflags 2.11.0", + "inotify-sys", + "libc", +] + [[package]] name = "inotify-sys" version = "0.1.5" @@ -2556,7 +2567,7 @@ dependencies = [ "image", "kamadak-exif", "lru", - "notify", + "notify 6.1.1", "notify-debouncer-full", "r2d2", "r2d2_sqlite", @@ -2741,6 +2752,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "50b7e5b27aa02a74bac8c3f23f448f8d87ff11f92d3aac1a6ed369ee08cc56c1" dependencies = [ "libc", + "log", "wasi 0.11.1+wasi-snapshot-preview1", "windows-sys 0.61.2", ] @@ -2849,7 +2861,7 @@ dependencies = [ "crossbeam-channel", "filetime", "fsevent-sys", - "inotify", + "inotify 0.9.6", "kqueue", "libc", "log", @@ -2858,20 +2870,46 @@ dependencies = [ "windows-sys 0.48.0", ] +[[package]] +name = "notify" +version = "8.2.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "4d3d07927151ff8575b7087f245456e549fea62edf0ec4e565a5ee50c8402bc3" +dependencies = [ + "bitflags 2.11.0", + "fsevent-sys", + "inotify 0.11.2", + "kqueue", + "libc", + "log", + "mio 1.2.0", + "notify-types", + "walkdir", + "windows-sys 0.60.2", +] + [[package]] name = "notify-debouncer-full" -version = "0.3.2" +version = "0.7.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "fb7fd166739789c9ff169e654dc1501373db9d80a4c3f972817c8a4d7cf8f34e" +checksum = "c02b49179cfebc9932238d04d6079912d26de0379328872846118a0fa0dbb302" dependencies = [ - "crossbeam-channel", "file-id", "log", - "notify", - "parking_lot", + "notify 8.2.0", + "notify-types", "walkdir", ] +[[package]] +name = "notify-types" +version = "2.1.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "42b8cfee0e339a0337359f3c88165702ac6e600dc01c0cc9579a92d62b08477a" +dependencies = [ + "bitflags 2.11.0", +] + [[package]] name = "nu-ansi-term" version = "0.50.3" diff --git a/src-tauri/Cargo.toml b/src-tauri/Cargo.toml index 0d94ce7..990ccd8 100644 --- a/src-tauri/Cargo.toml +++ b/src-tauri/Cargo.toml @@ -46,7 +46,7 @@ kamadak-exif = "0.5" # 文件系统监听 notify = "6" -notify-debouncer-full = "0.3" +notify-debouncer-full = "0.7" # 文件遍历(自动跳过隐藏目录) ignore = "0.4"