Skip to content

Commit 4c12c1b

Browse files
committed
chore: upgrade hashbrown deps to 0.15
Signed-off-by: MrCroxx <[email protected]>
1 parent 746333e commit 4c12c1b

File tree

5 files changed

+9
-3
lines changed

5 files changed

+9
-3
lines changed

Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ clap = { version = "4", features = ["derive"] }
2828
crossbeam = "0.8"
2929
equivalent = "1"
3030
fastrace = "0.7"
31-
hashbrown = "0.14"
31+
hashbrown = "0.15"
3232
itertools = "0.13"
3333
parking_lot = { version = "0.12" }
3434
serde = { version = "1", features = ["derive", "rc"] }

foyer-common/Cargo.toml

+1
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,7 @@ futures = "0.3"
3434
rand = "0.8.5"
3535

3636
[features]
37+
nightly = ["hashbrown/nightly"]
3738
strict_assertions = []
3839
tracing = ["fastrace/enable"]
3940
prometheus = ["dep:prometheus"]

foyer-memory/Cargo.toml

+1
Original file line numberDiff line numberDiff line change
@@ -39,6 +39,7 @@ test-log = { workspace = true }
3939
zipf = "7.0.1"
4040

4141
[features]
42+
nightly = ["hashbrown/nightly"]
4243
deadlock = ["parking_lot/deadlock_detection"]
4344
# FIXME: remove sanity feature
4445
sanity = []

foyer-storage/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ test-log = { workspace = true }
5757
[features]
5858
default = []
5959
deadlock = ["parking_lot/deadlock_detection"]
60-
nightly = ["allocator-api2/nightly"]
60+
nightly = ["allocator-api2/nightly", "hashbrown/nightly"]
6161
strict_assertions = [
6262
"foyer-common/strict_assertions",
6363
"foyer-memory/strict_assertions",

foyer/Cargo.toml

+5-1
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,11 @@ test-log = { workspace = true }
3131

3232
[features]
3333
default = []
34-
nightly = ["foyer-storage/nightly"]
34+
nightly = [
35+
"foyer-storage/nightly",
36+
"foyer-common/nightly",
37+
"foyer-memory/nightly",
38+
]
3539
deadlock = ["foyer-storage/deadlock"]
3640
strict_assertions = [
3741
"foyer-common/strict_assertions",

0 commit comments

Comments
 (0)