mirror of
https://github.com/Noratrieb/dilaria.git
synced 2026-01-14 17:35:03 +01:00
add fuzz
This commit is contained in:
parent
555aa21cc4
commit
141e8e09bf
7 changed files with 95 additions and 0 deletions
31
fuzz/Cargo.toml
Normal file
31
fuzz/Cargo.toml
Normal 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
|
||||
Loading…
Add table
Add a link
Reference in a new issue