This commit is contained in:
Tristan Partin
2025-03-12 20:12:31 -05:00
parent 358b59a5d7
commit 2e59a41c98
2 changed files with 11 additions and 3 deletions

12
Cargo.lock generated
View File

@@ -3869,10 +3869,9 @@ checksum = "38bf9645c8b145698bb0b18a4637dcacbc421ea49bef2317e4fd8065a387cf21"
[[package]]
name = "notify"
version = "6.1.1"
source = "git+https://github.com/notify-rs/notify?rev=2a06e5f267ab8881d011d88310b927c5d6e55ea6#2a06e5f267ab8881d011d88310b927c5d6e55ea6"
source = "git+https://github.com/notify-rs/notify?rev=13a49d60ca3f6bbee9d8ad42fd9aac14b92bd74b#13a49d60ca3f6bbee9d8ad42fd9aac14b92bd74b"
dependencies = [
"bitflags 2.8.0",
"crossbeam-channel",
"filetime",
"fsevent-sys",
"inotify",
@@ -3880,10 +3879,19 @@ dependencies = [
"libc",
"log",
"mio 0.8.11",
"notify-types",
"walkdir",
"windows-sys 0.48.0",
]
[[package]]
name = "notify-types"
version = "1.0.0"
source = "git+https://github.com/notify-rs/notify?rev=13a49d60ca3f6bbee9d8ad42fd9aac14b92bd74b#13a49d60ca3f6bbee9d8ad42fd9aac14b92bd74b"
dependencies = [
"instant",
]
[[package]]
name = "ntapi"
version = "0.4.1"

View File

@@ -128,7 +128,7 @@ memoffset = "0.9"
nix = { version = "0.27", features = ["dir", "fs", "process", "socket", "signal", "poll"] }
# Do not update to >= 7.0.0, at least. The update will have a significant impact
# on compute startup metrics (start_postgres_ms), >= 25% degradation.
notify = { git = "https://github.com/notify-rs/notify", rev = "2a06e5f267ab8881d011d88310b927c5d6e55ea6" }
notify = { git = "https://github.com/notify-rs/notify", rev = "13a49d60ca3f6bbee9d8ad42fd9aac14b92bd74b" }
num_cpus = "1.15"
num-traits = "0.2.15"
once_cell = "1.13"