mirror of
https://github.com/uutils/coreutils
synced 2024-11-15 09:27:21 +00:00
e5b6f63305
+ revert 1bc9980
to use files in workspace
45 lines
719 B
TOML
45 lines
719 B
TOML
[package]
|
|
name = "uucore-fuzz"
|
|
version = "0.0.0"
|
|
publish = false
|
|
edition = "2021"
|
|
|
|
[package.metadata]
|
|
cargo-fuzz = true
|
|
|
|
[dependencies]
|
|
libfuzzer-sys = "0.4"
|
|
|
|
[dependencies.uucore]
|
|
path = "../src/uucore/"
|
|
|
|
[dependencies.uu_date]
|
|
path = "../src/uu/date/"
|
|
|
|
# Prevent this from interfering with workspaces
|
|
[workspace]
|
|
members = ["."]
|
|
|
|
[[bin]]
|
|
name = "fuzz_date"
|
|
path = "fuzz_targets/fuzz_date.rs"
|
|
test = false
|
|
doc = false
|
|
|
|
[[bin]]
|
|
name = "fuzz_parse_glob"
|
|
path = "fuzz_targets/fuzz_parse_glob.rs"
|
|
test = false
|
|
doc = false
|
|
|
|
[[bin]]
|
|
name = "fuzz_parse_size"
|
|
path = "fuzz_targets/fuzz_parse_size.rs"
|
|
test = false
|
|
doc = false
|
|
|
|
[[bin]]
|
|
name = "fuzz_parse_time"
|
|
path = "fuzz_targets/fuzz_parse_time.rs"
|
|
test = false
|
|
doc = false
|