mirror of
https://github.com/RGBCube/uutils-coreutils
synced 2025-07-29 03:57:44 +00:00
Create an uufuzz crate for common functions and use it (#7954)
* uufuzz: create a crate with the common functions * uufuzz: move the fuzz-common functions * uufuzz: polish the crate * adjust the fuzzer to use uufuzz
This commit is contained in:
parent
a9e259369b
commit
eff2cd997e
18 changed files with 62 additions and 57 deletions
17
fuzz/Cargo.lock
generated
17
fuzz/Cargo.lock
generated
|
@ -1347,12 +1347,8 @@ dependencies = [
|
|||
name = "uucore-fuzz"
|
||||
version = "0.0.0"
|
||||
dependencies = [
|
||||
"console",
|
||||
"libc",
|
||||
"libfuzzer-sys",
|
||||
"rand 0.9.1",
|
||||
"similar",
|
||||
"tempfile",
|
||||
"uu_cksum",
|
||||
"uu_cut",
|
||||
"uu_date",
|
||||
|
@ -1367,6 +1363,7 @@ dependencies = [
|
|||
"uu_tr",
|
||||
"uu_wc",
|
||||
"uucore",
|
||||
"uufuzz",
|
||||
]
|
||||
|
||||
[[package]]
|
||||
|
@ -1378,6 +1375,18 @@ dependencies = [
|
|||
"uuhelp_parser",
|
||||
]
|
||||
|
||||
[[package]]
|
||||
name = "uufuzz"
|
||||
version = "0.0.30"
|
||||
dependencies = [
|
||||
"console",
|
||||
"libc",
|
||||
"rand 0.9.1",
|
||||
"similar",
|
||||
"tempfile",
|
||||
"uucore",
|
||||
]
|
||||
|
||||
[[package]]
|
||||
name = "uuhelp_parser"
|
||||
version = "0.0.30"
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue