From f0e6f40b1341183e4b765b0caee1d16159d49a11 Mon Sep 17 00:00:00 2001 From: Luca Barbato Date: Fri, 22 Nov 2024 17:01:22 +0100 Subject: [PATCH] fix: Do not enable misleading hashbrown features --- Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index dd4a402..ca4b7dd 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -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 }