From df8cd86dc9ae42db695fa5629bbfae660912887b Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Sun, 24 May 2026 19:41:55 +0000 Subject: [PATCH] chore(deps): bump notify from 7.0.0 to 8.2.0 in /src-tauri Bumps [notify](https://github.com/notify-rs/notify) from 7.0.0 to 8.2.0. - [Release notes](https://github.com/notify-rs/notify/releases) - [Changelog](https://github.com/notify-rs/notify/blob/notify-8.2.0/CHANGELOG.md) - [Commits](https://github.com/notify-rs/notify/compare/notify-7.0.0...notify-8.2.0) --- updated-dependencies: - dependency-name: notify dependency-version: 8.2.0 dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- src-tauri/Cargo.lock | 48 +++++++++++++++++++++++++++++++++++++++----- src-tauri/Cargo.toml | 2 +- 2 files changed, 44 insertions(+), 6 deletions(-) diff --git a/src-tauri/Cargo.lock b/src-tauri/Cargo.lock index d8dbe0c..9378722 100644 --- a/src-tauri/Cargo.lock +++ b/src-tauri/Cargo.lock @@ -1536,7 +1536,7 @@ name = "gitpulse" version = "0.2.2" dependencies = [ "ignore", - "notify", + "notify 8.2.0", "notify-debouncer-full", "reqwest", "serde", @@ -2070,6 +2070,17 @@ dependencies = [ "libc", ] +[[package]] +name = "inotify" +version = "0.11.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "bd5b3eaf1a28b758ac0faa5a4254e8ab2705605496f1b1f3fbbc3988ad73d199" +dependencies = [ + "bitflags 2.11.1", + "inotify-sys", + "libc", +] + [[package]] name = "inotify-sys" version = "0.1.5" @@ -2511,16 +2522,34 @@ dependencies = [ "bitflags 2.11.1", "filetime", "fsevent-sys", - "inotify", + "inotify 0.10.2", "kqueue", "libc", "log", "mio", - "notify-types", + "notify-types 1.0.1", "walkdir", "windows-sys 0.52.0", ] +[[package]] +name = "notify" +version = "8.2.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "4d3d07927151ff8575b7087f245456e549fea62edf0ec4e565a5ee50c8402bc3" +dependencies = [ + "bitflags 2.11.1", + "fsevent-sys", + "inotify 0.11.1", + "kqueue", + "libc", + "log", + "mio", + "notify-types 2.1.0", + "walkdir", + "windows-sys 0.60.2", +] + [[package]] name = "notify-debouncer-full" version = "0.4.0" @@ -2529,8 +2558,8 @@ checksum = "9dcf855483228259b2353f89e99df35fc639b2b2510d1166e4858e3f67ec1afb" dependencies = [ "file-id", "log", - "notify", - "notify-types", + "notify 7.0.0", + "notify-types 1.0.1", "walkdir", ] @@ -2543,6 +2572,15 @@ dependencies = [ "instant", ] +[[package]] +name = "notify-types" +version = "2.1.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "42b8cfee0e339a0337359f3c88165702ac6e600dc01c0cc9579a92d62b08477a" +dependencies = [ + "bitflags 2.11.1", +] + [[package]] name = "nu-ansi-term" version = "0.50.3" diff --git a/src-tauri/Cargo.toml b/src-tauri/Cargo.toml index 67583b8..e6dc376 100644 --- a/src-tauri/Cargo.toml +++ b/src-tauri/Cargo.toml @@ -16,7 +16,7 @@ tauri-build = { version = "2", features = [] } [dependencies] ignore = "0.4" -notify = "7" +notify = "8" notify-debouncer-full = "0.4" reqwest = { version = "0.13", features = ["json"] } serde = { version = "1", features = ["derive"] }