Skip to content

Commit 2d3d582

Browse files
authored
Merge pull request #22 from cakebaker/remove_sysinfo
Remove `sysinfo`
2 parents 61cd71e + 09f6664 commit 2d3d582

File tree

2 files changed

+18
-118
lines changed

2 files changed

+18
-118
lines changed

Cargo.lock

Lines changed: 1 addition & 99 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 17 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -30,51 +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"
38-
sysinfo = "0.34"
40+
ctor = "0.6.0"
3941
libc = "0.2.153"
4042
phf = "0.13.0"
4143
phf_codegen = "0.11.2"
42-
textwrap = { version = "0.16.1", features = ["terminal_size"] }
43-
xattr = "1.3.1"
44-
tempfile = "3.10.1"
4544
rand = { version = "0.9", features = ["small_rng"] }
46-
bytesize = "2.0.0"
47-
chrono = { version = "0.4.37", default-features = false, features = [
48-
"clock",
49-
] }
50-
ctor = "0.6.0"
45+
regex = "1.10.4"
46+
uucore = "0.2.0"
47+
uuhelp_parser = "0.2.0"
5148
uutests = "0.2.2"
49+
tempfile = "3.10.1"
50+
textwrap = { version = "0.16.1", features = ["terminal_size"] }
51+
xattr = "1.3.1"
5252
zip = "2.1"
53-
uuhelp_parser = "0.2.0"
5453

5554
[dependencies]
5655
clap = { workspace = true }
5756
clap_complete = { workspace = true }
5857
clap_mangen = { workspace = true }
59-
uucore = { workspace = true }
58+
ctor = { workspace = true }
6059
phf = { workspace = true }
6160
textwrap = { workspace = true }
62-
sysinfo = { workspace = true }
6361
uutests = { workspace = true }
64-
ctor = { workspace = true }
65-
zip = { workspace = true, optional = true }
62+
uucore = { workspace = true }
6663
uuhelp_parser = { workspace = true, optional = true }
64+
zip = { workspace = true, optional = true }
6765

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

7068
[dev-dependencies]
69+
chrono = { workspace = true }
70+
libc = { workspace = true }
7171
pretty_assertions = "1"
72+
rand = { workspace = true }
7273
regex = { workspace = true }
7374
tempfile = { workspace = true }
74-
libc = { workspace = true }
75-
rand = { workspace = true }
7675
uucore = { workspace = true, features = ["entries", "process", "signals"] }
77-
chrono = { workspace = true }
7876
uutests = { workspace = true }
7977

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

0 commit comments

Comments
 (0)