Files
parse_datetime/fuzz/Cargo.toml
T
Sylvestre Ledru f287886a18 Add a fuzzer
2023-04-23 20:27:31 +02:00

23 lines
333 B
TOML

[package]
name = "fuzz_from_str"
version = "0.1.0"
edition = "2018"
[package.metadata]
cargo-fuzz = true
[dependencies]
rand = "0.8.4"
libfuzzer-sys = "0.4"
regex = "1.8.1"
time = "0.3.20"
[dependencies.humantime_to_duration]
path = "../"
[[bin]]
name = "fuzz_from_str"
path = "fuzz_targets/from_str.rs"
test = false
doc = false