From d6a1c210982dfad2bd9d0fd49a803327da9369f8 Mon Sep 17 00:00:00 2001 From: Jess Woods <45497968+jkwoods@users.noreply.github.com> Date: Mon, 1 Aug 2022 18:51:02 -0600 Subject: [PATCH] Put simd_backend into default feature (#48) * move simd to default feature * rm simd Co-authored-by: jkwoods --- Cargo.toml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index 1aa150f..430d744 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -11,7 +11,7 @@ license-file = "LICENSE" keywords = ["zkSNARKs", "cryptography", "proofs"] [dependencies] -curve25519-dalek = {version = "3.2.0", features = ["serde", "simd_backend"]} +curve25519-dalek = {version = "3.2.0", features = ["serde"]} merlin = "3.0.0" digest = "0.8.1" sha3 = "0.8.2" @@ -62,5 +62,6 @@ name = "nizk" harness = false [features] +default = ["curve25519-dalek/simd_backend"] multicore = ["rayon"] profile = [] \ No newline at end of file