[package] name = "aptos-fuzz" version = "0.2.7" edition = "2018" authors = ["Aptos Labs "] description = "Aptos fuzzer fuzz" repository = "https://github.com/aptos-labs/aptos-core" homepage = "https://aptoslabs.com" license = "Apache-2.0" [package.metadata] cargo-fuzz = true [dependencies] libfuzzer-sys = "=0.3.2" once_cell = "1.10.0" aptos-fuzzer = { version = "0.2.1", path = ".." } [[bin]] name = "fuzz_runner" path = "fuzz_targets/fuzz_runner.rs" test = false # used for integration with Google OSS-Fuzz (see README) [[bin]] name = "fuzzer_builder" path = "google-oss-fuzz/fuzzer_builder.rs" test = false