From 30182463bdb6cce592477e66659d5f66f846cfcf Mon Sep 17 00:00:00 2001 From: Tamir Duberstein Date: Fri, 19 Sep 2025 16:32:49 +0900 Subject: [PATCH] aya-obj: explicitly enable hashbrown features --- aya-obj/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/aya-obj/Cargo.toml b/aya-obj/Cargo.toml index 9ec5559e..c3056fe5 100644 --- a/aya-obj/Cargo.toml +++ b/aya-obj/Cargo.toml @@ -18,7 +18,7 @@ workspace = true [dependencies] bytes = { workspace = true } -hashbrown = { workspace = true, default-features = true } +hashbrown = { workspace = true, features = ["default-hasher", "equivalent"] } log = { workspace = true } object = { workspace = true, features = ["elf", "read_core"] } thiserror = { workspace = true }