[package] name = "commonware-cryptography-curve25519-fuzz" version.workspace = true publish = false edition.workspace = true license.workspace = true [package.metadata] cargo-fuzz = true [dependencies] arbitrary.workspace = true commonware-cryptography-curve25519 = { workspace = true, features = [ "fuzz" ] } libfuzzer-sys.workspace = true [[bin]] name = "curve25519" path = "fuzz_targets/curve25519.rs" test = false doc = false bench = false