From 7aa5f31ebcfe0f07fe2ce02d187f87b63d9c54bc Mon Sep 17 00:00:00 2001 From: Arthur Meyre Date: Thu, 2 Jan 2025 13:11:32 +0100 Subject: [PATCH] chore: force wasm-bindgen-rayon to 1.2.2 the new 1.3.0 version changes the way some files are bundled, I don't want to discover during the release that nothing works properly anymore. --- tfhe/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tfhe/Cargo.toml b/tfhe/Cargo.toml index 4dc1142ddc..455bb5a2d7 100644 --- a/tfhe/Cargo.toml +++ b/tfhe/Cargo.toml @@ -79,7 +79,7 @@ tfhe-versionable = { version = "0.3.2", path = "../utils/tfhe-versionable" } wasm-bindgen = { workspace = true, features = [ "serde-serialize", ], optional = true } -wasm-bindgen-rayon = { version = "1.0", optional = true } +wasm-bindgen-rayon = { version = "=1.2.2", optional = true } js-sys = { version = "0.3", optional = true } console_error_panic_hook = { version = "0.1.7", optional = true } serde-wasm-bindgen = { version = "0.6.0", optional = true }