Skip to content

Commit

Permalink
fix: missing features
Browse files Browse the repository at this point in the history
  • Loading branch information
baszalmstra committed Jul 16, 2024
1 parent 5d6817d commit 5a1c0c3
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion crates/mun_abi/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ repository.workspace = true
license.workspace = true

[dependencies]
once_cell = { workspace = true }
once_cell = { workspace = true, features = ["std", "critical-section"] }
itertools = { workspace = true }
parking_lot = { workspace = true }
extendhash = { workspace = true }
Expand Down
2 changes: 1 addition & 1 deletion crates/mun_runtime/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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 }
notify = { workspace = true, features = ["macos_kqueue"] }
once_cell = { workspace = true }
parking_lot = { workspace = true }
rustc-hash = { workspace = true }
Expand Down
2 changes: 1 addition & 1 deletion crates/mun_vfs/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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 }
notify = { workspace = true, features = ["macos_kqueue"] }
rustc-hash = { workspace = true }
walkdir = { workspace = true }

0 comments on commit 5a1c0c3

Please sign in to comment.