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"