mirror of
https://github.com/RGBCube/uutils-coreutils
synced 2026-01-13 16:51:06 +00:00
* chore: cleanup workspace crates * properly add all crates to the workspace cargo.toml as members * except `fuzz` because it still has some issues, TBD * use quotes around `true` and `false` to ensure there is no bool confusion * remove a few leftover readme comments * mark all unpublishable crates as `publish = false` to avoid accidental publishing * Add `uutests` to the main workspace * grammar * a bit more cleanup based on feedback * revert true/false * Update tests/benches/factor dependencies
140 lines
2.6 KiB
TOML
140 lines
2.6 KiB
TOML
[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
|
|
license.workspace = true
|
|
publish = false
|
|
|
|
# Prevent this from interfering with workspaces
|
|
[workspace]
|
|
members = ["."]
|
|
|
|
[workspace.package]
|
|
edition = "2024"
|
|
license = "MIT"
|
|
|
|
[package.metadata]
|
|
cargo-fuzz = true
|
|
|
|
[dependencies]
|
|
libfuzzer-sys = "0.4.7"
|
|
rand = { version = "0.9.0", features = ["small_rng"] }
|
|
uufuzz = { path = "uufuzz/" }
|
|
uucore = { path = "../src/uucore/", features = ["parser"] }
|
|
uu_date = { path = "../src/uu/date/" }
|
|
uu_test = { path = "../src/uu/test/" }
|
|
uu_expr = { path = "../src/uu/expr/" }
|
|
uu_printf = { path = "../src/uu/printf/" }
|
|
uu_echo = { path = "../src/uu/echo/" }
|
|
uu_seq = { path = "../src/uu/seq/" }
|
|
uu_sort = { path = "../src/uu/sort/" }
|
|
uu_wc = { path = "../src/uu/wc/" }
|
|
uu_cut = { path = "../src/uu/cut/" }
|
|
uu_split = { path = "../src/uu/split/" }
|
|
uu_tr = { path = "../src/uu/tr/" }
|
|
uu_env = { path = "../src/uu/env/" }
|
|
uu_cksum = { path = "../src/uu/cksum/" }
|
|
|
|
[[bin]]
|
|
name = "fuzz_date"
|
|
path = "fuzz_targets/fuzz_date.rs"
|
|
test = false
|
|
doc = false
|
|
|
|
[[bin]]
|
|
name = "fuzz_printf"
|
|
path = "fuzz_targets/fuzz_printf.rs"
|
|
test = false
|
|
doc = false
|
|
|
|
[[bin]]
|
|
name = "fuzz_echo"
|
|
path = "fuzz_targets/fuzz_echo.rs"
|
|
test = false
|
|
doc = false
|
|
|
|
[[bin]]
|
|
name = "fuzz_seq"
|
|
path = "fuzz_targets/fuzz_seq.rs"
|
|
test = false
|
|
doc = false
|
|
|
|
[[bin]]
|
|
name = "fuzz_sort"
|
|
path = "fuzz_targets/fuzz_sort.rs"
|
|
test = false
|
|
doc = false
|
|
|
|
[[bin]]
|
|
name = "fuzz_split"
|
|
path = "fuzz_targets/fuzz_split.rs"
|
|
test = false
|
|
doc = false
|
|
|
|
[[bin]]
|
|
name = "fuzz_cut"
|
|
path = "fuzz_targets/fuzz_cut.rs"
|
|
test = false
|
|
doc = false
|
|
|
|
[[bin]]
|
|
name = "fuzz_wc"
|
|
path = "fuzz_targets/fuzz_wc.rs"
|
|
test = false
|
|
doc = false
|
|
|
|
[[bin]]
|
|
name = "fuzz_expr"
|
|
path = "fuzz_targets/fuzz_expr.rs"
|
|
test = false
|
|
doc = false
|
|
|
|
[[bin]]
|
|
name = "fuzz_test"
|
|
path = "fuzz_targets/fuzz_test.rs"
|
|
test = false
|
|
doc = false
|
|
|
|
[[bin]]
|
|
name = "fuzz_seq_parse_number"
|
|
path = "fuzz_targets/fuzz_seq_parse_number.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
|
|
|
|
[[bin]]
|
|
name = "fuzz_tr"
|
|
path = "fuzz_targets/fuzz_tr.rs"
|
|
test = false
|
|
doc = false
|
|
|
|
[[bin]]
|
|
name = "fuzz_env"
|
|
path = "fuzz_targets/fuzz_env.rs"
|
|
test = false
|
|
doc = false
|
|
|
|
[[bin]]
|
|
name = "fuzz_cksum"
|
|
path = "fuzz_targets/fuzz_cksum.rs"
|
|
test = false
|
|
doc = false
|