You've already forked parse_datetime
mirror of
https://github.com/uutils/parse_datetime.git
synced 2026-06-10 16:13:15 -07:00
23 lines
333 B
TOML
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
|