From f6132a4c0e7945137220406d73b80281a4da61c6 Mon Sep 17 00:00:00 2001 From: Pratyush Mishra Date: Sun, 11 Oct 2020 20:40:00 -0700 Subject: [PATCH] `default-features = false` for `curve-benches` (#2) --- curve-benches/Cargo.toml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/curve-benches/Cargo.toml b/curve-benches/Cargo.toml index 4acabba..cbae12f 100644 --- a/curve-benches/Cargo.toml +++ b/curve-benches/Cargo.toml @@ -24,9 +24,9 @@ build = "build.rs" ################################# Dependencies ################################ [dependencies] -ark-ec = { git = "https://github.com/arkworks-rs/algebra" } -ark-ff = { git = "https://github.com/arkworks-rs/algebra" } -ark-serialize = { git = "https://github.com/arkworks-rs/algebra" } +ark-ec = { git = "https://github.com/arkworks-rs/algebra", default-features = false } +ark-ff = { git = "https://github.com/arkworks-rs/algebra", default-features = false } +ark-serialize = { git = "https://github.com/arkworks-rs/algebra", default-features = false } ark-mnt4-298 = { path = "../mnt4_298", optional = true } ark-mnt6-298 = { path = "../mnt6_298", optional = true }