From 2e59a41c9811495ced7f5f4816edb3402d4e2d9b Mon Sep 17 00:00:00 2001 From: Tristan Partin Date: Wed, 12 Mar 2025 20:12:31 -0500 Subject: [PATCH] Commit 2 --- Cargo.lock | 12 ++++++++++-- Cargo.toml | 2 +- 2 files changed, 11 insertions(+), 3 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 175a4865e7..b7f3fe6b2f 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -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" diff --git a/Cargo.toml b/Cargo.toml index e8f21c03ee..98a02deedb 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -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"