mirror of
https://gitee.com/openharmony/third_party_rust_nom
synced 2024-11-22 23:19:44 +00:00
25 lines
395 B
TOML
25 lines
395 B
TOML
|
|
[package]
|
|
name = "nom-fuzz"
|
|
version = "0.0.0"
|
|
authors = ["David Korczynski <david@adalogics.com>"]
|
|
publish = false
|
|
edition = "2018"
|
|
|
|
[package.metadata]
|
|
cargo-fuzz = true
|
|
|
|
[dependencies]
|
|
libfuzzer-sys = "0.4.0"
|
|
|
|
[dependencies.nom]
|
|
path = ".."
|
|
|
|
# Prevent this from interfering with workspaces
|
|
[workspace]
|
|
members = ["."]
|
|
|
|
[[bin]]
|
|
name = "fuzz_arithmetic"
|
|
path = "fuzz_targets/fuzz_arithmetic.rs"
|