This commit is contained in:
nora 2021-11-06 20:31:33 +01:00
parent 555aa21cc4
commit 141e8e09bf
7 changed files with 95 additions and 0 deletions

31
fuzz/Cargo.toml Normal file
View file

@ -0,0 +1,31 @@
[package]
name = "script_lang-fuzz"
version = "0.0.0"
authors = ["Automatically generated"]
publish = false
edition = "2018"
[package.metadata]
cargo-fuzz = true
[dependencies]
libfuzzer-sys = "0.4"
[dependencies.script_lang]
path = ".."
# Prevent this from interfering with workspaces
[workspace]
members = ["."]
[[bin]]
name = "lex"
path = "fuzz_targets/lex.rs"
test = false
doc = false
[[bin]]
name = "lex_parse"
path = "fuzz_targets/lex_parse.rs"
test = false
doc = false