Skip to content

Commit edaa9b0

Browse files
ndmitchellfacebook-github-bot
authored andcommitted
Make sure starlark_map requires allocative[hashbrown]
Summary: Required so we can build starlark_map alone, e.g. when publishing. Reviewed By: stepancheg Differential Revision: D46440378 fbshipit-source-id: 4d8c3099783927ed18b33780e07b7304e7cd7d82
1 parent cbf6e0f commit edaa9b0

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

starlark/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ num-traits = "0.2"
5757
inventory = "0.1.9"
5858
clap = { version = "4.0.7", features = ["derive", "wrap_help"] }
5959

60-
allocative = { workspace = true, features = ["bumpalo", "hashbrown", "num-bigint"] }
60+
allocative = { workspace = true, features = ["bumpalo", "num-bigint"] }
6161

6262
[target.'cfg(not(target_arch = "wasm32"))'.dependencies]
6363
rustyline = "11.0"

starlark_map/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ authors = [
1212

1313
[dependencies]
1414
dupe = { workspace = true }
15-
allocative = { workspace = true }
15+
allocative = { workspace = true, features = ["hashbrown"] }
1616

1717
fnv = "1.0.7"
1818
hashbrown = { version = "0.12.3", features = ["raw"] }

0 commit comments

Comments
 (0)