1
Fork 0
mirror of https://github.com/RGBCube/uutils-coreutils synced 2025-07-29 20:17:45 +00:00

chore: cleanup unused dependencies

This commit is contained in:
Yuri Astrakhan 2025-06-03 17:14:47 -04:00
parent d04d0cd987
commit 4fa9af4953
16 changed files with 16 additions and 65 deletions

View file

@ -21,21 +21,21 @@ 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/" }
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"