mirror of
https://github.com/Noratrieb/dilaria.git
synced 2026-01-14 17:35:03 +01:00
31 lines
474 B
TOML
31 lines
474 B
TOML
[package]
|
|
name = "dilaria-fuzz"
|
|
version = "0.0.0"
|
|
authors = ["Automatically generated"]
|
|
publish = false
|
|
edition = "2018"
|
|
|
|
[package.metadata]
|
|
cargo-fuzz = true
|
|
|
|
[dependencies]
|
|
libfuzzer-sys = "0.4"
|
|
|
|
[dependencies.dilaria]
|
|
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
|