From 34234e37bcd1022da1067c0a0dcd7bdd27f63502 Mon Sep 17 00:00:00 2001 From: "Mayeul@Zama" <69792125+mayeul-zama@users.noreply.github.com> Date: Thu, 9 Jan 2025 15:59:16 +0100 Subject: [PATCH] chore: remove unused cargo key --- tfhe/Cargo.toml | 11 +++-------- 1 file changed, 3 insertions(+), 8 deletions(-) diff --git a/tfhe/Cargo.toml b/tfhe/Cargo.toml index 08ee93b587..3a47ce820a 100644 --- a/tfhe/Cargo.toml +++ b/tfhe/Cargo.toml @@ -53,7 +53,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" @@ -131,13 +133,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"]