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
|
@ -1,20 +1,22 @@
|
|||
[package]
|
||||
name = "uucore-fuzz"
|
||||
version = "0.0.0"
|
||||
description = "uutils ~ 'core' uutils fuzzers"
|
||||
repository = "https://github.com/uutils/coreutils/tree/main/fuzz/"
|
||||
edition.workspace = true
|
||||
publish = false
|
||||
|
||||
[workspace.package]
|
||||
edition = "2024"
|
||||
license = "MIT"
|
||||
|
||||
[package.metadata]
|
||||
cargo-fuzz = true
|
||||
|
||||
[dependencies]
|
||||
console = "0.15.0"
|
||||
libfuzzer-sys = "0.4.7"
|
||||
libc = "0.2.153"
|
||||
tempfile = "3.15.0"
|
||||
rand = { version = "0.9.0", features = ["small_rng"] }
|
||||
similar = "2.5.0"
|
||||
|
||||
uufuzz = { path = "uufuzz/" }
|
||||
uucore = { path = "../src/uucore/", features = ["parser"] }
|
||||
uu_date = { path = "../src/uu/date/" }
|
||||
uu_test = { path = "../src/uu/test/" }
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue