From 1873cb06d27f082699a533833a65978ccbf25195 Mon Sep 17 00:00:00 2001 From: Juniper Tyree <50025784+juntyr@users.noreply.github.com> Date: Wed, 2 Oct 2024 09:45:57 +0000 Subject: [PATCH] Allow two hashbrown versions in the wasm-guest --- crates/numcodecs-wasm-guest/src/lib.rs | 3 +++ 1 file changed, 3 insertions(+) diff --git a/crates/numcodecs-wasm-guest/src/lib.rs b/crates/numcodecs-wasm-guest/src/lib.rs index 614a465a..8decc5eb 100644 --- a/crates/numcodecs-wasm-guest/src/lib.rs +++ b/crates/numcodecs-wasm-guest/src/lib.rs @@ -18,6 +18,9 @@ //! wasm32 guest-side bindings for the [`numcodecs`] API, which allows you to //! export one [`StaticCodec`] from a WASM component. +// hashbrown 0.14 (wasmparser) and 0.15 (indexmap) +#![allow(clippy::multiple_crate_versions)] + // Required in docs and the [`export_codec`] macro #[doc(hidden)] pub use numcodecs;