summaryrefslogtreecommitdiff
path: root/Cargo.toml
diff options
context:
space:
mode:
authorDivy Srivastava <dj.srivastava23@gmail.com>2023-10-31 09:43:04 -0700
committerGitHub <noreply@github.com>2023-10-31 16:43:04 +0000
commit646afdf259e9e25b59c5305aff231e131ea2fc52 (patch)
tree95a886cf8129d9c53e9703bcb70cb0aed621aa2b /Cargo.toml
parente4308aebc0a060e7210362e576e792e558384c24 (diff)
chore: use kqueue backend of notify on macOS (#21028)
Towards #20996 "macos_fsevent" feature of notify links us to CoreFoundation on macOS.
Diffstat (limited to 'Cargo.toml')
-rw-r--r--Cargo.toml3
1 files changed, 2 insertions, 1 deletions
diff --git a/Cargo.toml b/Cargo.toml
index 61a8dc68f..a6cb60c8c 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -110,7 +110,8 @@ log = "=0.4.20"
lsp-types = "=0.94.1" # used by tower-lsp and "proposed" feature is unstable in patch releases
memmem = "0.1.1"
monch = "=0.4.3"
-notify = "=5.0.0"
+# Note: Do not use the "macos_fsevent" feature of notify, as it links us to CoreFoundation on macOS.
+notify = { version = "=5.0.0", default-features = false, features = ["macos_kqueue"] }
num-bigint = { version = "0.4", features = ["rand"] }
once_cell = "1.17.1"
os_pipe = "=1.1.4"