d5dfefb704
* Fix a panic when indexing the bytes * Fix leb failing to read enough bytes * Fix another panic out of bounds * Use get rather than checking * Check addition with arbitrary val * Add backend load fuzzing * Handle no ops sub * Fix another index out of bounds
20 lines
339 B
TOML
20 lines
339 B
TOML
|
|
[package]
|
|
name = "automerge-fuzz"
|
|
version = "0.0.0"
|
|
authors = ["Automatically generated"]
|
|
publish = false
|
|
edition = "2018"
|
|
|
|
[package.metadata]
|
|
cargo-fuzz = true
|
|
|
|
[dependencies]
|
|
libfuzzer-sys = "0.4"
|
|
automerge-backend = { path = "../automerge-backend" }
|
|
|
|
[[bin]]
|
|
name = "backend_load"
|
|
path = "src/backend_load.rs"
|
|
test = false
|
|
doc = false
|