Files

161 lines
3.0 KiB
TOML
Raw Permalink Normal View History

2023-02-18 21:44:24 +01:00
[package]
2023-03-07 23:23:07 +01:00
name = "uucore-fuzz"
2023-02-18 21:44:24 +01:00
version = "0.0.0"
description = "uutils ~ 'core' uutils fuzzers"
repository = "https://github.com/uutils/coreutils/tree/main/fuzz/"
edition.workspace = true
rust-version.workspace = true
2025-06-06 07:56:08 -04:00
license.workspace = true
2023-02-18 21:44:24 +01:00
publish = false
2025-06-06 07:56:08 -04:00
# Prevent this from interfering with workspaces
[workspace]
members = ["."]
[workspace.package]
2025-03-08 14:39:13 +01:00
edition = "2024"
rust-version = "1.88.0"
license = "MIT"
2023-02-18 21:44:24 +01:00
[package.metadata]
cargo-fuzz = true
# Enable debug symbols in release builds for readable backtraces
# when fuzzing discovers crashes. This addresses issue #5343.
[profile.release]
debug = true
2023-02-18 21:44:24 +01:00
[dependencies]
libfuzzer-sys = "0.4.7"
2026-03-13 10:23:07 +01:00
rand = { version = "0.10.1", features = ["std_rng"] }
2025-06-03 17:14:47 -04:00
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" }
uu_dirname = { path = "../src/uu/dirname" }
2023-02-18 21:44:24 +01:00
[[bin]]
2023-03-07 23:23:07 +01:00
name = "fuzz_date"
path = "fuzz_targets/fuzz_date.rs"
2023-02-18 21:44:24 +01:00
test = false
doc = false
2023-03-07 23:24:13 +01:00
2023-11-21 12:38:12 +01:00
[[bin]]
name = "fuzz_printf"
path = "fuzz_targets/fuzz_printf.rs"
test = false
doc = false
2023-11-29 09:55:55 +01:00
[[bin]]
name = "fuzz_echo"
path = "fuzz_targets/fuzz_echo.rs"
test = false
doc = false
2023-12-05 21:50:38 +01:00
[[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
2023-03-20 20:55:45 +01:00
[[bin]]
name = "fuzz_expr"
path = "fuzz_targets/fuzz_expr.rs"
test = false
doc = false
2023-08-21 07:34:45 +02:00
[[bin]]
name = "fuzz_test"
path = "fuzz_targets/fuzz_test.rs"
test = false
doc = false
2024-04-15 08:07:06 +02:00
[[bin]]
name = "fuzz_seq_parse_number"
path = "fuzz_targets/fuzz_seq_parse_number.rs"
test = false
doc = false
2023-03-07 23:24:13 +01:00
[[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
2024-04-01 01:03:14 +02:00
[[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
2024-07-18 23:43:24 +02:00
[[bin]]
name = "fuzz_cksum"
path = "fuzz_targets/fuzz_cksum.rs"
test = false
doc = false
[[bin]]
name = "fuzz_non_utf8_paths"
path = "fuzz_targets/fuzz_non_utf8_paths.rs"
test = false
doc = false
[[bin]]
name = "fuzz_dirname"
path = "fuzz_targets/fuzz_dirname.rs"
test = false
doc = false