Create fuzzing and add entropy helpers

This commit is contained in:
Julien Cretin
2020-11-11 12:30:24 +01:00
parent 8d33c7866d
commit 163e92fa6b
5 changed files with 200 additions and 0 deletions

View File

@@ -0,0 +1,21 @@
[package]
name = "fuzz-store"
version = "0.0.0"
authors = ["Julien Cretin <cretin@google.com>"]
publish = false
edition = "2018"
[package.metadata]
cargo-fuzz = true
[dependencies]
libfuzzer-sys = "0.3"
persistent_store = { path = "..", features = ["std"] }
# Prevent this from interfering with workspaces
[workspace]
members = ["."]
[[bin]]
name = "store"
path = "fuzz_targets/store.rs"