mirror of
https://github.com/saymrwulf/curve25519-dalek-source.git
synced 2026-09-04 20:24:10 +00:00
32 lines
676 B
TOML
32 lines
676 B
TOML
|
|
[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 = "decaf"
|
|
path = "fuzz_targets/decaf.rs"
|
|
|
|
[[bin]]
|
|
name = "scalar_constructor_accepts_256bit_values"
|
|
path = "fuzz_targets/scalar_constructor_accepts_256bit_values.rs"
|