mirror of
https://github.com/uutils/coreutils.git
synced 2025-07-07 21:45:01 +00:00
move the fuzz_date fuzzers
This commit is contained in:
parent
234ef07abd
commit
e553a4a21c
3 changed files with 7 additions and 4 deletions
|
@ -1,7 +1,7 @@
|
||||||
# spell-checker:ignore libfuzzer
|
# spell-checker:ignore libfuzzer
|
||||||
|
|
||||||
[package]
|
[package]
|
||||||
name = "uu_date-fuzz"
|
name = "uucore-fuzz"
|
||||||
version = "0.0.0"
|
version = "0.0.0"
|
||||||
publish = false
|
publish = false
|
||||||
edition = "2021"
|
edition = "2021"
|
||||||
|
@ -12,15 +12,18 @@ cargo-fuzz = true
|
||||||
[dependencies]
|
[dependencies]
|
||||||
libfuzzer-sys = "0.4"
|
libfuzzer-sys = "0.4"
|
||||||
|
|
||||||
|
[dependencies.uucore]
|
||||||
|
path = "../src/uucore/"
|
||||||
|
|
||||||
[dependencies.uu_date]
|
[dependencies.uu_date]
|
||||||
path = ".."
|
path = "../src/uu/date/"
|
||||||
|
|
||||||
# Prevent this from interfering with workspaces
|
# Prevent this from interfering with workspaces
|
||||||
[workspace]
|
[workspace]
|
||||||
members = ["."]
|
members = ["."]
|
||||||
|
|
||||||
[[bin]]
|
[[bin]]
|
||||||
name = "fuzz_target_1"
|
name = "fuzz_date"
|
||||||
path = "fuzz_targets/fuzz_target_1.rs"
|
path = "fuzz_targets/fuzz_date.rs"
|
||||||
test = false
|
test = false
|
||||||
doc = false
|
doc = false
|
Loading…
Add table
Add a link
Reference in a new issue