From d3cf2526372055cb4c384d42b2f09e44c7201292 Mon Sep 17 00:00:00 2001 From: Isis Lovecruft Date: Mon, 4 Dec 2017 01:21:46 +0000 Subject: [PATCH] Remove unused fuzz/ directory for now. --- fuzz/.gitignore | 4 ---- fuzz/Cargo.toml | 28 ---------------------------- 2 files changed, 32 deletions(-) delete mode 100644 fuzz/.gitignore delete mode 100644 fuzz/Cargo.toml diff --git a/fuzz/.gitignore b/fuzz/.gitignore deleted file mode 100644 index 572e03b..0000000 --- a/fuzz/.gitignore +++ /dev/null @@ -1,4 +0,0 @@ - -target -corpus -artifacts diff --git a/fuzz/Cargo.toml b/fuzz/Cargo.toml deleted file mode 100644 index 0dccf7b..0000000 --- a/fuzz/Cargo.toml +++ /dev/null @@ -1,28 +0,0 @@ - -[package] -name = "curve25519-dalek-fuzz" -version = "0.0.1" -authors = ["Automatically generated"] -publish = false - -[package.metadata] -cargo-fuzz = true - -[dependencies.curve25519-dalek] -path = ".." - -[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" - -# Prevent this from interfering with workspaces -[workspace] -members = ["."] - -[[bin]] -name = "scalar_constructor_accepts_256bit_values" -path = "fuzz_targets/scalar_constructor_accepts_256bit_values.rs"