From afaa4249930a71f6377653b6e3689223f8e97756 Mon Sep 17 00:00:00 2001 From: Robin Freyler Date: Mon, 11 Nov 2024 11:49:08 +0100 Subject: [PATCH] fix crate features propagation --- crates/wasmparser/Cargo.toml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/crates/wasmparser/Cargo.toml b/crates/wasmparser/Cargo.toml index 98c87f70fd..a814cb8244 100644 --- a/crates/wasmparser/Cargo.toml +++ b/crates/wasmparser/Cargo.toml @@ -48,7 +48,7 @@ default = ['std', 'validate', 'serde', 'features', 'component-model', 'hash-coll # A feature which enables implementations of `std::error::Error` as appropriate # along with other convenience APIs. This additionally uses the standard # library's source of randomness for seeding hash maps. -std = ['indexmap/std'] +std = ['indexmap?/std'] # Tells the `wasmparser` crate to provide (and use) hash-based collections internally. # @@ -70,7 +70,7 @@ validate = ['dep:semver'] # Enable Serialize/Deserialize implementations for types in # `wasmparser::collections` -serde = ['dep:serde', 'indexmap/serde', 'hashbrown/serde'] +serde = ['dep:serde', 'indexmap?/serde', 'hashbrown?/serde'] # A feature that enables the guts of the `WasmFeatures` type in this crate. #