mirror of
https://github.com/gitui-org/gitui
synced 2026-05-23 08:58:21 +00:00
upgrade notify an cleanup advisory (#2475)
This commit is contained in:
parent
01ad0615b2
commit
778ac16cf7
3 changed files with 14 additions and 31 deletions
32
Cargo.lock
generated
32
Cargo.lock
generated
|
|
@ -2023,11 +2023,11 @@ checksum = "b248f5224d1d606005e02c97f5aa4e88eeb230488bcc03bc9ca4d7991399f2b5"
|
|||
|
||||
[[package]]
|
||||
name = "inotify"
|
||||
version = "0.10.2"
|
||||
version = "0.11.0"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "fdd168d97690d0b8c412d6b6c10360277f4d7ee495c5d0d5d5fe0854923255cc"
|
||||
checksum = "f37dccff2791ab604f9babef0ba14fbe0be30bd368dc541e2b08d07c8aa908f3"
|
||||
dependencies = [
|
||||
"bitflags 1.3.2",
|
||||
"bitflags 2.7.0",
|
||||
"inotify-sys",
|
||||
"libc",
|
||||
]
|
||||
|
|
@ -2064,15 +2064,6 @@ dependencies = [
|
|||
"syn",
|
||||
]
|
||||
|
||||
[[package]]
|
||||
name = "instant"
|
||||
version = "0.1.13"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "e0242819d153cba4b4b05a5a8f2a7e9bbf97b6055b2a002b395c96b5ff3c0222"
|
||||
dependencies = [
|
||||
"cfg-if",
|
||||
]
|
||||
|
||||
[[package]]
|
||||
name = "invalidstring"
|
||||
version = "0.1.3"
|
||||
|
|
@ -2334,9 +2325,9 @@ dependencies = [
|
|||
|
||||
[[package]]
|
||||
name = "notify"
|
||||
version = "7.0.0"
|
||||
version = "8.0.0"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "c533b4c39709f9ba5005d8002048266593c1cfaf3c5f0739d5b8ab0c6c504009"
|
||||
checksum = "2fee8403b3d66ac7b26aee6e40a897d85dc5ce26f44da36b8b73e987cc52e943"
|
||||
dependencies = [
|
||||
"bitflags 2.7.0",
|
||||
"filetime",
|
||||
|
|
@ -2348,14 +2339,14 @@ dependencies = [
|
|||
"mio",
|
||||
"notify-types",
|
||||
"walkdir",
|
||||
"windows-sys 0.52.0",
|
||||
"windows-sys 0.59.0",
|
||||
]
|
||||
|
||||
[[package]]
|
||||
name = "notify-debouncer-mini"
|
||||
version = "0.5.0"
|
||||
version = "0.6.0"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "aaa5a66d07ed97dce782be94dcf5ab4d1b457f4243f7566c7557f15cabc8c799"
|
||||
checksum = "a689eb4262184d9a1727f9087cd03883ea716682ab03ed24efec57d7716dccb8"
|
||||
dependencies = [
|
||||
"log",
|
||||
"notify",
|
||||
|
|
@ -2365,12 +2356,9 @@ dependencies = [
|
|||
|
||||
[[package]]
|
||||
name = "notify-types"
|
||||
version = "1.0.1"
|
||||
version = "2.0.0"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "585d3cb5e12e01aed9e8a1f70d5c6b5e86fe2a6e48fc8cd0b3e0b8df6f6eb174"
|
||||
dependencies = [
|
||||
"instant",
|
||||
]
|
||||
checksum = "5e0826a989adedc2a244799e823aece04662b66609d96af8dff7ac6df9a8925d"
|
||||
|
||||
[[package]]
|
||||
name = "ntapi"
|
||||
|
|
|
|||
|
|
@ -34,8 +34,8 @@ gh-emoji = { version = "1.0", optional = true }
|
|||
indexmap = "2"
|
||||
itertools = "0.13"
|
||||
log = "0.4"
|
||||
notify = "7"
|
||||
notify-debouncer-mini = "0.5"
|
||||
notify = "8"
|
||||
notify-debouncer-mini = "0.6"
|
||||
once_cell = "1"
|
||||
# pin until upgrading this does not introduce a duplicate dependency
|
||||
parking_lot_core = "=0.9.10"
|
||||
|
|
|
|||
|
|
@ -15,11 +15,7 @@ allow = [
|
|||
version = 2
|
||||
# No fix for RSA, and this is a dependency from ssh_key crate to handle rsa ssh key.
|
||||
# https://rustsec.org/advisories/RUSTSEC-2023-0071
|
||||
ignore = [
|
||||
"RUSTSEC-2023-0071",
|
||||
# https://github.com/notify-rs/notify/pull/652
|
||||
"RUSTSEC-2024-0384",
|
||||
]
|
||||
ignore = ["RUSTSEC-2023-0071"]
|
||||
|
||||
[bans]
|
||||
multiple-versions = "deny"
|
||||
|
|
@ -33,8 +29,7 @@ skip-tree = [
|
|||
# currently needed due to `ratatui v0.29.0`
|
||||
{ name = "unicode-truncate" },
|
||||
# currently needed due to:
|
||||
# * `gix v0.67.0` and other gix crates
|
||||
# * `redox_users v0.4.5`
|
||||
# * `redox_users v0.4.6`
|
||||
# * `syntect v5.2.0`
|
||||
{ name = "thiserror" },
|
||||
# currently needed due to:
|
||||
|
|
|
|||
Loading…
Reference in a new issue