From 8ad96ebf39d159c044d56fbe8d5e52c74a91f402 Mon Sep 17 00:00:00 2001 From: Bas Zalmstra Date: Tue, 16 Jul 2024 22:29:44 +0200 Subject: [PATCH] fix: macos notify --- Cargo.toml | 2 +- crates/mun_runtime/Cargo.toml | 2 +- crates/mun_vfs/Cargo.toml | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index f1e9dbc0..2db4162b 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -80,7 +80,7 @@ toml = { version = "0.8.8", default-features = false } unicode-xid = { version = "0.2.4", default-features = false } walkdir = { version = "2.4.0", default-features = false } yansi-term = { version = "0.1.2", default-features = false } -notify = { version = "5.2.0", default-features = false } +notify = { version = "5.2.0" } winapi = { version = "0.3.9", default-features = false } [profile.dev] diff --git a/crates/mun_runtime/Cargo.toml b/crates/mun_runtime/Cargo.toml index e68e20a5..f59199eb 100644 --- a/crates/mun_runtime/Cargo.toml +++ b/crates/mun_runtime/Cargo.toml @@ -20,7 +20,7 @@ mun_memory = { version = "0.6.0-dev", path = "../mun_memory" } mun_project = { version = "0.6.0-dev", path = "../mun_project" } itertools = { workspace = true, features = ["use_alloc"] } log = { workspace = true } -notify = { workspace = true, features = ["macos_kqueue", "macos_fsevent", "crossbeam-channel"] } +notify = { workspace = true } once_cell = { workspace = true } parking_lot = { workspace = true } rustc-hash = { workspace = true } diff --git a/crates/mun_vfs/Cargo.toml b/crates/mun_vfs/Cargo.toml index 72566732..c7103367 100644 --- a/crates/mun_vfs/Cargo.toml +++ b/crates/mun_vfs/Cargo.toml @@ -16,6 +16,6 @@ license.workspace = true mun_paths = { version = "0.6.0-dev", path="../mun_paths" } crossbeam-channel = { workspace = true } log = { workspace = true } -notify = { workspace = true, features = ["macos_kqueue", "macos_fsevent", "crossbeam-channel"] } +notify = { workspace = true } rustc-hash = { workspace = true } walkdir = { workspace = true }