Skip to content

Commit 09f6664

Browse files
committed
Cargo.toml: sort dependencies alphabetically
1 parent 4ee889f commit 09f6664

File tree

1 file changed

+17
-17
lines changed

1 file changed

+17
-17
lines changed

Cargo.toml

Lines changed: 17 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -30,49 +30,49 @@ feat_common_core = [
3030
]
3131

3232
[workspace.dependencies]
33-
uucore = "0.2.0"
33+
bytesize = "2.0.0"
34+
chrono = { version = "0.4.37", default-features = false, features = [
35+
"clock",
36+
] }
3437
clap = { version = "4.4", features = ["wrap_help", "cargo"] }
3538
clap_complete = "4.5"
3639
clap_mangen = "0.2"
37-
regex = "1.10.4"
40+
ctor = "0.6.0"
3841
libc = "0.2.153"
3942
phf = "0.13.0"
4043
phf_codegen = "0.11.2"
41-
textwrap = { version = "0.16.1", features = ["terminal_size"] }
42-
xattr = "1.3.1"
43-
tempfile = "3.10.1"
4444
rand = { version = "0.9", features = ["small_rng"] }
45-
bytesize = "2.0.0"
46-
chrono = { version = "0.4.37", default-features = false, features = [
47-
"clock",
48-
] }
49-
ctor = "0.6.0"
45+
regex = "1.10.4"
46+
uucore = "0.2.0"
47+
uuhelp_parser = "0.2.0"
5048
uutests = "0.2.2"
49+
tempfile = "3.10.1"
50+
textwrap = { version = "0.16.1", features = ["terminal_size"] }
51+
xattr = "1.3.1"
5152
zip = "2.1"
52-
uuhelp_parser = "0.2.0"
5353

5454
[dependencies]
5555
clap = { workspace = true }
5656
clap_complete = { workspace = true }
5757
clap_mangen = { workspace = true }
58-
uucore = { workspace = true }
58+
ctor = { workspace = true }
5959
phf = { workspace = true }
6060
textwrap = { workspace = true }
6161
uutests = { workspace = true }
62-
ctor = { workspace = true }
63-
zip = { workspace = true, optional = true }
62+
uucore = { workspace = true }
6463
uuhelp_parser = { workspace = true, optional = true }
64+
zip = { workspace = true, optional = true }
6565

6666
tar = { optional = true, version = "0.0.1", package = "uu_tar", path = "src/uu/tar" }
6767

6868
[dev-dependencies]
69+
chrono = { workspace = true }
70+
libc = { workspace = true }
6971
pretty_assertions = "1"
72+
rand = { workspace = true }
7073
regex = { workspace = true }
7174
tempfile = { workspace = true }
72-
libc = { workspace = true }
73-
rand = { workspace = true }
7475
uucore = { workspace = true, features = ["entries", "process", "signals"] }
75-
chrono = { workspace = true }
7676
uutests = { workspace = true }
7777

7878
[target.'cfg(unix)'.dev-dependencies]

0 commit comments

Comments
 (0)