automerge/rust/automerge/fuzz/Cargo.toml
Conrad Irwin 931ee7e77b
Add Fuzz Testing (#498)
* Add fuzz testing for document load

* Fix fuzz crashers and add to test suite
2023-01-25 16:03:05 +00:00

29 lines
No EOL
417 B
TOML

[package]
name = "automerge-fuzz"
version = "0.0.0"
publish = false
edition = "2021"
[package.metadata]
cargo-fuzz = true
[dependencies]
libfuzzer-sys = "0.4"
leb128 = "^0.2.5"
sha2 = "^0.10.0"
[dependencies.automerge]
path = ".."
# Prevent this from interfering with workspaces
[workspace]
members = ["."]
[profile.release]
debug = 1
[[bin]]
name = "load"
path = "fuzz_targets/load.rs"
test = false
doc = false