Signed-off-by: Tristan Partin <tristan@neon.tech>
This commit is contained in:
Tristan Partin
2025-03-12 19:43:22 -05:00
parent b1a1be6a4c
commit 358b59a5d7
2 changed files with 4 additions and 5 deletions

7
Cargo.lock generated
View File

@@ -3270,9 +3270,9 @@ dependencies = [
[[package]]
name = "inotify"
version = "0.9.6"
version = "0.10.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f8069d3ec154eb856955c1c0fbffefbf5f3c40a104ec912d4797314c1801abff"
checksum = "fdd168d97690d0b8c412d6b6c10360277f4d7ee495c5d0d5d5fe0854923255cc"
dependencies = [
"bitflags 1.3.2",
"inotify-sys",
@@ -3869,8 +3869,7 @@ checksum = "38bf9645c8b145698bb0b18a4637dcacbc421ea49bef2317e4fd8065a387cf21"
[[package]]
name = "notify"
version = "6.1.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "6205bd8bb1e454ad2e27422015fb5e4f2bcc7e08fa8f27058670d208324a4d2d"
source = "git+https://github.com/notify-rs/notify?rev=2a06e5f267ab8881d011d88310b927c5d6e55ea6#2a06e5f267ab8881d011d88310b927c5d6e55ea6"
dependencies = [
"bitflags 2.8.0",
"crossbeam-channel",

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 = "6.0.0"
notify = { git = "https://github.com/notify-rs/notify", rev = "2a06e5f267ab8881d011d88310b927c5d6e55ea6" }
num_cpus = "1.15"
num-traits = "0.2.15"
once_cell = "1.13"