summaryrefslogtreecommitdiffstats
path: root/Cargo.lock
diff options
context:
space:
mode:
authorAram Drevekenin <aram@poor.dev>2023-06-16 21:04:22 +0200
committerGitHub <noreply@github.com>2023-06-16 21:04:22 +0200
commitb7436742cddc3987df46371428d1be0d0ebfa282 (patch)
treeb46981be175fe5a9558f0ed0571717492b651934 /Cargo.lock
parent317bdfc90252058d51b3f2a1847b2074baf5e80e (diff)
performance(plugins): use a debounced fs watcher (#2546)
* performance(plugins): use a debounced fs watcher * style(fmt): rustfmt * fix(macos): use recommended watcher
Diffstat (limited to 'Cargo.lock')
-rw-r--r--Cargo.lock24
1 files changed, 23 insertions, 1 deletions
diff --git a/Cargo.lock b/Cargo.lock
index b410d17f4..535879b8d 100644
--- a/Cargo.lock
+++ b/Cargo.lock
@@ -1006,6 +1006,15 @@ dependencies = [
]
[[package]]
+name = "file-id"
+version = "0.1.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "e13be71e6ca82e91bc0cb862bebaac0b2d1924a5a1d970c822b2f98b63fda8c3"
+dependencies = [
+ "winapi-util",
+]
+
+[[package]]
name = "filedescriptor"
version = "0.8.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
@@ -1832,6 +1841,19 @@ dependencies = [
]
[[package]]
+name = "notify-debouncer-full"
+version = "0.1.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "f4812c1eb49be776fb8df4961623bdc01ec9dfdc1abe8211ceb09150a2e64219"
+dependencies = [
+ "crossbeam-channel",
+ "file-id",
+ "notify",
+ "parking_lot 0.12.1",
+ "walkdir",
+]
+
+[[package]]
name = "ntapi"
version = "0.3.7"
source = "registry+https://github.com/rust-lang/crates.io-index"
@@ -4424,7 +4446,7 @@ dependencies = [
"log4rs",
"miette",
"nix 0.23.1",
- "notify",
+ "notify-debouncer-full",
"once_cell",
"percent-encoding",
"regex",