From a7df970fa477e2d995c15ad92a5d13f17a35dea3 Mon Sep 17 00:00:00 2001 From: Anand Krishnamoorthi Date: Wed, 6 Nov 2024 11:09:39 -0800 Subject: [PATCH] fix: Lock wasm-bindgen version to 0.2.94 v0.2.95 causes a crash with wasm tests in CI Signed-off-by: Anand Krishnamoorthi --- bindings/wasm/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bindings/wasm/Cargo.toml b/bindings/wasm/Cargo.toml index eca6563..0ac7c0e 100644 --- a/bindings/wasm/Cargo.toml +++ b/bindings/wasm/Cargo.toml @@ -18,7 +18,7 @@ coverage = ["regorus/coverage"] [dependencies] regorus = { path = "../..", default-features = false, features = ["arc"] } serde_json = "1.0.111" -wasm-bindgen = "0.2.90" +wasm-bindgen = "=0.2.93" [dev-dependencies] wasm-bindgen-test = "0.3.40"