1
Fork 0
mirror of https://github.com/RGBCube/uutils-coreutils synced 2025-07-27 19:17:43 +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

2
fuzz/Cargo.lock generated
View file

@ -1436,7 +1436,6 @@ version = "0.1.0"
dependencies = [
"clap",
"hex",
"regex",
"uucore",
]
@ -1592,7 +1591,6 @@ dependencies = [
"digest",
"dunce",
"fluent",
"fluent-bundle",
"fluent-syntax",
"glob",
"hex",

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"

View file

@ -12,5 +12,5 @@ console = "0.16.0"
libc = "0.2.153"
rand = { version = "0.9.0", features = ["small_rng"] }
similar = "2.5.0"
uucore = { path = "../../src/uucore/", features = ["parser"] }
uucore = { path = "../../src/uucore", features = ["parser"] }
tempfile = "3.15.0"