mirror of
https://github.com/RGBCube/uutils-coreutils
synced 2025-07-29 20:17:45 +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/uufuzz/Cargo.toml
Normal file
17
fuzz/uufuzz/Cargo.toml
Normal file
|
@ -0,0 +1,17 @@
|
|||
[package]
|
||||
name = "uufuzz"
|
||||
authors = ["uutils developers"]
|
||||
description = "uutils ~ 'core' uutils fuzzing library"
|
||||
repository = "https://github.com/uutils/coreutils/tree/main/fuzz/uufuzz"
|
||||
version = "0.0.30"
|
||||
edition.workspace = true
|
||||
license.workspace = true
|
||||
|
||||
|
||||
[dependencies]
|
||||
console = "0.15.0"
|
||||
libc = "0.2.153"
|
||||
rand = { version = "0.9.0", features = ["small_rng"] }
|
||||
similar = "2.5.0"
|
||||
uucore = { path = "../../src/uucore/", features = ["parser"] }
|
||||
tempfile = "3.15.0"
|
Loading…
Add table
Add a link
Reference in a new issue