From 1bfe38f9af5ed991dec665d317644ea8c8953aac Mon Sep 17 00:00:00 2001 From: Anand Krishnamoorthi <35780660+anakrish@users.noreply.github.com> Date: Wed, 6 Nov 2024 12:04:59 -0800 Subject: [PATCH] fix: Lock wasm-bindgen version to 0.2.94 (#342) 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"