sapling/eden/scm/lib/dag/fuzz/Cargo.toml
Jun Wu 29c749ef7d dag: add fuzz tests on the octopus DAG
Summary: This gives us some confidence about octopus merge handling.

Reviewed By: DurhamG

Differential Revision: D19540726

fbshipit-source-id: e84de74aecae54429483edd185d39fd1bd858f87
2020-01-23 17:58:51 -08:00

52 lines
842 B
TOML

[package]
name = "dag-fuzz"
version = "0.0.0"
publish = false
edition = "2018"
[package.metadata]
cargo-fuzz = true
[dependencies]
bindag = { path = "../bindag" }
dag = { path = ".." }
lazy_static = "1"
[dependencies.libfuzzer-sys]
git = "https://github.com/rust-fuzz/libfuzzer-sys.git"
# Prevent this from interfering with workspaces
[workspace]
members = ["."]
[profile.release]
debug = true
[[bin]]
name = "gca"
path = "fuzz_targets/gca.rs"
[[bin]]
name = "gca_small"
path = "fuzz_targets/gca_small.rs"
[[bin]]
name = "gca_octopus"
path = "fuzz_targets/gca_octopus.rs"
[[bin]]
name = "range"
path = "fuzz_targets/range.rs"
[[bin]]
name = "range_medium"
path = "fuzz_targets/range_medium.rs"
[[bin]]
name = "range_small"
path = "fuzz_targets/range_small.rs"
[[bin]]
name = "range_octopus"
path = "fuzz_targets/range_octopus.rs"