automerge/fuzz/Cargo.toml
Andrew Jeffery d5dfefb704
Fix backend panics (#141)
* 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
2021-05-20 11:24:23 +01:00

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