d240151f8c
* Add fuzzing Fuzzing can be useful to find crashes on random input. Running this for a short while should already result in a crash, proving it's usefulness.
27 lines
415 B
TOML
27 lines
415 B
TOML
|
|
[package]
|
|
authors = ["Automatically generated"]
|
|
edition = "2018"
|
|
name = "grass-fuzz"
|
|
publish = false
|
|
version = "0.0.0"
|
|
|
|
[package.metadata]
|
|
cargo-fuzz = true
|
|
|
|
[dependencies]
|
|
libfuzzer-sys = "0.3"
|
|
|
|
[dependencies.grass]
|
|
path = ".."
|
|
|
|
# Prevent this from interfering with workspaces
|
|
[workspace]
|
|
members = ["."]
|
|
|
|
[[bin]]
|
|
doc = false
|
|
name = "from_string_parsing"
|
|
path = "fuzz_targets/from_string_parsing.rs"
|
|
test = false
|