diff --git a/tfhe/Cargo.toml b/tfhe/Cargo.toml index 7484540124..99a3237a52 100644 --- a/tfhe/Cargo.toml +++ b/tfhe/Cargo.toml @@ -48,7 +48,9 @@ strum = { version = "0.26", features = ["derive"] } cbindgen = { version = "0.26.0", optional = true } [dependencies] -tfhe-csprng = { version = "0.5.0", path = "../tfhe-csprng", features = ["parallel"] } +tfhe-csprng = { version = "0.5.0", path = "../tfhe-csprng", features = [ + "parallel", +] } serde = { workspace = true, features = ["default", "derive"] } rayon = { workspace = true } bincode = "1.3.3" @@ -126,13 +128,6 @@ __profiling = [] software-prng = ["tfhe-csprng/software-prng"] -# Cover several profiles as we cannot have a wildcard it seems -[package.metadata.wasm-pack.profile.dev.wasm-bindgen] -split-linked-modules = true - -[package.metadata.wasm-pack.profile.release.wasm-bindgen] -split-linked-modules = true - [package.metadata.docs.rs] # TODO: manage builds for docs.rs based on their documentation https://docs.rs/about features = ["boolean", "shortint", "integer", "gpu", "zk-pok", "software-prng", "strings"]