Skip to content

Commit 4fa9af4

Browse files
committed
chore: cleanup unused dependencies
1 parent d04d0cd commit 4fa9af4

16 files changed

Lines changed: 16 additions & 65 deletions

File tree

Cargo.lock

Lines changed: 0 additions & 20 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -350,15 +350,12 @@ rust-ini = "0.21.0"
350350
same-file = "1.0.6"
351351
self_cell = "1.0.4"
352352
selinux = "0.5.2"
353-
selinux-sys = "0.6.15"
354353
signal-hook = "0.3.17"
355-
smallvec = { version = "1.13.2", features = ["union"] }
356354
tempfile = "3.15.0"
357355
terminal_size = "0.4.0"
358356
textwrap = { version = "0.16.1", features = ["terminal_size"] }
359357
thiserror = "2.0.3"
360358
time = { version = "0.3.36" }
361-
unicode-segmentation = "1.11.0"
362359
unicode-width = "0.2.0"
363360
utmp-classic = "0.1.6"
364361
uutils_term_grid = "0.7"
@@ -380,7 +377,6 @@ crc32fast = "1.4.2"
380377
digest = "0.10.7"
381378

382379
# Fluent dependencies
383-
fluent-bundle = "0.16.0"
384380
fluent = "0.17.0"
385381
unic-langid = "0.9.6"
386382
fluent-syntax = "0.12.0"

fuzz/Cargo.lock

Lines changed: 0 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

fuzz/Cargo.toml

Lines changed: 15 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -21,21 +21,21 @@ cargo-fuzz = true
2121
[dependencies]
2222
libfuzzer-sys = "0.4.7"
2323
rand = { version = "0.9.0", features = ["small_rng"] }
24-
uufuzz = { path = "uufuzz/" }
25-
uucore = { path = "../src/uucore/", features = ["parser"] }
26-
uu_date = { path = "../src/uu/date/" }
27-
uu_test = { path = "../src/uu/test/" }
28-
uu_expr = { path = "../src/uu/expr/" }
29-
uu_printf = { path = "../src/uu/printf/" }
30-
uu_echo = { path = "../src/uu/echo/" }
31-
uu_seq = { path = "../src/uu/seq/" }
32-
uu_sort = { path = "../src/uu/sort/" }
33-
uu_wc = { path = "../src/uu/wc/" }
34-
uu_cut = { path = "../src/uu/cut/" }
35-
uu_split = { path = "../src/uu/split/" }
36-
uu_tr = { path = "../src/uu/tr/" }
37-
uu_env = { path = "../src/uu/env/" }
38-
uu_cksum = { path = "../src/uu/cksum/" }
24+
uufuzz = { path = "uufuzz" }
25+
uucore = { path = "../src/uucore", features = ["parser"] }
26+
uu_date = { path = "../src/uu/date" }
27+
uu_test = { path = "../src/uu/test" }
28+
uu_expr = { path = "../src/uu/expr" }
29+
uu_printf = { path = "../src/uu/printf" }
30+
uu_echo = { path = "../src/uu/echo" }
31+
uu_seq = { path = "../src/uu/seq" }
32+
uu_sort = { path = "../src/uu/sort" }
33+
uu_wc = { path = "../src/uu/wc" }
34+
uu_cut = { path = "../src/uu/cut" }
35+
uu_split = { path = "../src/uu/split" }
36+
uu_tr = { path = "../src/uu/tr" }
37+
uu_env = { path = "../src/uu/env" }
38+
uu_cksum = { path = "../src/uu/cksum" }
3939

4040
[[bin]]
4141
name = "fuzz_date"

fuzz/uufuzz/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,5 +12,5 @@ console = "0.16.0"
1212
libc = "0.2.153"
1313
rand = { version = "0.9.0", features = ["small_rng"] }
1414
similar = "2.5.0"
15-
uucore = { path = "../../src/uucore/", features = ["parser"] }
15+
uucore = { path = "../../src/uucore", features = ["parser"] }
1616
tempfile = "3.15.0"

src/uu/chmod/Cargo.toml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,6 @@ path = "src/chmod.rs"
1919

2020
[dependencies]
2121
clap = { workspace = true }
22-
libc = { workspace = true }
2322
thiserror = { workspace = true }
2423
uucore = { workspace = true, features = ["entries", "fs", "mode", "perms"] }
2524

src/uu/cksum/Cargo.toml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,6 @@ path = "src/cksum.rs"
2121
clap = { workspace = true }
2222
uucore = { workspace = true, features = ["checksum", "encoding", "sum"] }
2323
hex = { workspace = true }
24-
regex = { workspace = true }
2524

2625
[[bin]]
2726
name = "cksum"

src/uu/factor/Cargo.toml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,8 +20,6 @@ num-traits = { workspace = true } # used in src/numerics.rs, which is included b
2020
[dependencies]
2121
clap = { workspace = true }
2222
num-traits = { workspace = true }
23-
rand = { workspace = true }
24-
smallvec = { workspace = true }
2523
uucore = { workspace = true }
2624
num-bigint = { workspace = true }
2725
num-prime = { workspace = true }

src/uu/hashsum/Cargo.toml

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -20,9 +20,6 @@ path = "src/hashsum.rs"
2020
[dependencies]
2121
clap = { workspace = true }
2222
uucore = { workspace = true, features = ["checksum", "sum"] }
23-
memchr = { workspace = true }
24-
regex = { workspace = true }
25-
hex = { workspace = true }
2623

2724
[[bin]]
2825
name = "hashsum"

src/uu/install/Cargo.toml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,6 @@ path = "src/install.rs"
2121
clap = { workspace = true }
2222
filetime = { workspace = true }
2323
file_diff = { workspace = true }
24-
libc = { workspace = true }
2524
thiserror = { workspace = true }
2625
uucore = { workspace = true, features = [
2726
"backup-control",

0 commit comments

Comments
 (0)