From b35b3911035cca2e070f11cd49a1a217d4f4b5f8 Mon Sep 17 00:00:00 2001 From: UneBaguette <28904802+UneBaguette@users.noreply.github.com> Date: Wed, 22 Apr 2026 18:43:45 +0200 Subject: [PATCH] fix: add rlib crate-type for wasm tests --- Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index 4b3d231..aa0386f 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -9,7 +9,7 @@ keywords = ["blake3", "wasm", "hash", "cryptography", "wasm-bindgen"] categories = ["cryptography", "wasm"] [lib] -crate-type = ["cdylib"] +crate-type = ["cdylib", "rlib"] [dependencies] blake3 = { version = "1.8.4", features = ["wasm32_simd"] }