From 8d701b28e9dbc7b678631d741ba56902dfd574d7 Mon Sep 17 00:00:00 2001 From: Arthur Meyre Date: Thu, 10 Oct 2024 12:06:11 +0200 Subject: [PATCH] chore(ci): wasm-bindgen introduced a bug in 0.2.94 preventing our build - 0.2.93 works properly, changing the requirement to allow wasm to build --- tfhe/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tfhe/Cargo.toml b/tfhe/Cargo.toml index 609ebfb86f..86624fd5a7 100644 --- a/tfhe/Cargo.toml +++ b/tfhe/Cargo.toml @@ -79,7 +79,7 @@ tfhe-zk-pok = { version = "0.3.0", path = "../tfhe-zk-pok", optional = true } tfhe-versionable = { version = "0.3.2", path = "../utils/tfhe-versionable" } # wasm deps -wasm-bindgen = { version = "0.2.86", features = [ +wasm-bindgen = { version = "<0.2.94", features = [ "serde-serialize", ], optional = true } wasm-bindgen-rayon = { version = "1.0", optional = true }