Skip to content

Commit 797f073

Browse files
authored
Merge pull request #259 from cakebaker/cargo_toml_sort_entries
Cargo.toml: sort entries alphabetically
2 parents 517f604 + a11e4e4 commit 797f073

File tree

1 file changed

+30
-30
lines changed

1 file changed

+30
-30
lines changed

Cargo.toml

Lines changed: 30 additions & 30 deletions
Original file line numberDiff line numberDiff line change
@@ -26,74 +26,74 @@ default = ["feat_common_core"]
2626
uudoc = []
2727

2828
feat_common_core = [
29-
"pwdx",
3029
"free",
31-
"w",
32-
"watch",
33-
"pmap",
34-
"slabtop",
3530
"pgrep",
3631
"pidof",
37-
"ps",
3832
"pidwait",
39-
"top",
33+
"pmap",
34+
"ps",
35+
"pwdx",
36+
"slabtop",
4037
"snice",
38+
"top",
39+
"w",
40+
"watch",
4141
]
4242

4343
[workspace.dependencies]
44-
uucore = "0.0.27"
44+
bytesize = "1.3.0"
45+
chrono = { version = "0.4.38", default-features = false, features = ["clock"] }
4546
clap = { version = "4.5.4", features = ["wrap_help", "cargo"] }
4647
clap_complete = "4.5.2"
4748
clap_mangen = "0.2.20"
48-
regex = "1.10.4"
49-
sysinfo = "0.32.0"
5049
libc = "0.2.154"
50+
nix = { version = "0.29", default-features = false, features = ["process"] }
5151
phf = "0.11.2"
5252
phf_codegen = "0.11.2"
53+
prettytable-rs = "0.10.0"
54+
rand = { version = "0.8.5", features = ["small_rng"] }
55+
regex = "1.10.4"
56+
sysinfo = "0.32.0"
57+
tempfile = "3.10.1"
5358
textwrap = { version = "0.16.1", features = ["terminal_size"] }
5459
thiserror = "1.0.63"
55-
xattr = "1.3.1"
56-
tempfile = "3.10.1"
57-
rand = { version = "0.8.5", features = ["small_rng"] }
58-
bytesize = "1.3.0"
59-
chrono = { version = "0.4.38", default-features = false, features = ["clock"] }
60+
uucore = "0.0.27"
6061
walkdir = "2.5.0"
61-
prettytable-rs = "0.10.0"
62-
nix = { version = "0.29", default-features = false, features = ["process"] }
6362
windows = { version = "0.58.0" }
63+
xattr = "1.3.1"
6464

6565
[dependencies]
6666
clap = { workspace = true }
6767
clap_complete = { workspace = true }
6868
clap_mangen = { workspace = true }
69-
uucore = { workspace = true }
7069
phf = { workspace = true }
71-
textwrap = { workspace = true }
72-
sysinfo = { workspace = true }
7370
regex = { workspace = true }
71+
sysinfo = { workspace = true }
72+
textwrap = { workspace = true }
73+
uucore = { workspace = true }
7474

7575
#
76-
pwdx = { optional = true, version = "0.0.1", package = "uu_pwdx", path = "src/uu/pwdx" }
7776
free = { optional = true, version = "0.0.1", package = "uu_free", path = "src/uu/free" }
78-
w = { optional = true, version = "0.0.1", package = "uu_w", path = "src/uu/w" }
79-
watch = { optional = true, version = "0.0.1", package = "uu_watch", path = "src/uu/watch" }
80-
pmap = { optional = true, version = "0.0.1", package = "uu_pmap", path = "src/uu/pmap" }
81-
slabtop = { optional = true, version = "0.0.1", package = "uu_slabtop", path = "src/uu/slabtop" }
8277
pgrep = { optional = true, version = "0.0.1", package = "uu_pgrep", path = "src/uu/pgrep" }
8378
pidof = { optional = true, version = "0.0.1", package = "uu_pidof", path = "src/uu/pidof" }
84-
ps = { optional = true, version = "0.0.1", package = "uu_ps", path = "src/uu/ps" }
8579
pidwait = { optional = true, version = "0.0.1", package = "uu_pidwait", path = "src/uu/pidwait" }
86-
top = { optional = true, version = "0.0.1", package = "uu_top", path = "src/uu/top" }
80+
pmap = { optional = true, version = "0.0.1", package = "uu_pmap", path = "src/uu/pmap" }
81+
ps = { optional = true, version = "0.0.1", package = "uu_ps", path = "src/uu/ps" }
82+
pwdx = { optional = true, version = "0.0.1", package = "uu_pwdx", path = "src/uu/pwdx" }
83+
slabtop = { optional = true, version = "0.0.1", package = "uu_slabtop", path = "src/uu/slabtop" }
8784
snice = { optional = true, version = "0.0.1", package = "uu_snice", path = "src/uu/snice" }
85+
top = { optional = true, version = "0.0.1", package = "uu_top", path = "src/uu/top" }
86+
w = { optional = true, version = "0.0.1", package = "uu_w", path = "src/uu/w" }
87+
watch = { optional = true, version = "0.0.1", package = "uu_watch", path = "src/uu/watch" }
8888

8989
[dev-dependencies]
90+
chrono = { workspace = true }
91+
libc = { workspace = true }
9092
pretty_assertions = "1.4.0"
93+
rand = { workspace = true }
9194
regex = { workspace = true }
9295
tempfile = { workspace = true }
93-
libc = { workspace = true }
94-
rand = { workspace = true }
9596
uucore = { workspace = true, features = ["entries", "process", "signals"] }
96-
chrono = { workspace = true }
9797

9898
[target.'cfg(unix)'.dev-dependencies]
9999
xattr = { workspace = true }

0 commit comments

Comments
 (0)