Skip to content

Commit

Permalink
fix: Do not enable misleading hashbrown features
Browse files Browse the repository at this point in the history
  • Loading branch information
lu-zero committed Nov 22, 2024
1 parent a90a364 commit f0e6f40
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ std = ["serde/std", "serde_json/std", "serde_with/std", "time/std", "oxilangtag/
alloc = ["serde/alloc", "serde_json/alloc", "serde_with/alloc", "time/alloc", "oxilangtag/alloc", "hashbrown/allocator-api2"]

[dependencies]
hashbrown = { version = "0.15.1", default-features = false, features = ["core", "serde", "default-hasher", "inline-more", "equivalent"] }
hashbrown = { version = "0.15.1", default-features = false, features = ["serde", "default-hasher", "inline-more", "equivalent"] }
oxilangtag = { version = "0.1.5", features = ["serialize"], default-features = false }
serde = { version = "1.0.137", features = ["derive"], default-features = false }
serde_json = { version = "1.0.81", default-features = false }
Expand Down

0 comments on commit f0e6f40

Please sign in to comment.