From f1fc9a83c65cca0dd4190bf1e22507471f4cbd2b Mon Sep 17 00:00:00 2001 From: Henry de Valence Date: Mon, 30 Oct 2017 14:47:52 -0700 Subject: [PATCH] Pass through features from cargo-fuzz --- fuzz/Cargo.toml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/fuzz/Cargo.toml b/fuzz/Cargo.toml index 4408af6..ceb067b 100644 --- a/fuzz/Cargo.toml +++ b/fuzz/Cargo.toml @@ -10,7 +10,11 @@ cargo-fuzz = true [dependencies.curve25519-dalek] path = ".." -features = ["yolocrypto"] + +[features] +yolocrypto = ["curve25519-dalek/yolocrypto"] +nightly = ["curve25519-dalek/nightly"] +radix_51 = ["curve25519-dalek/radix_51"] [dependencies.libfuzzer-sys] git = "https://github.com/rust-fuzz/libfuzzer-sys.git"