Skip to content

Commit

Permalink
lsmem: Impl lsmem
Browse files Browse the repository at this point in the history
  • Loading branch information
howjmay committed Aug 24, 2024
1 parent 52dd5ec commit 98c6d20
Show file tree
Hide file tree
Showing 7 changed files with 775 additions and 4 deletions.
144 changes: 142 additions & 2 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 3 additions & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,9 @@ textwrap = { version = "0.16.0", features = ["terminal_size"] }
xattr = "1.3.1"
tempfile = "3.9.0"
rand = { version = "0.8", features = ["small_rng"] }
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0.122"
tabled = "0.16.0"

[dependencies]
clap = { workspace = true }
Expand All @@ -56,7 +59,6 @@ uucore = { workspace = true }
phf = { workspace = true }
textwrap = { workspace = true }


#
lscpu = { optional = true, version = "0.0.1", package = "uu_lscpu", path = "src/uu/lscpu" }
lsmem = { optional = true, version = "0.0.1", package = "uu_lsmem", path = "src/uu/lsmem" }
Expand Down
3 changes: 3 additions & 0 deletions src/uu/lsmem/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,3 +13,6 @@ path = "src/main.rs"
[dependencies]
uucore = { workspace = true }
clap = { workspace = true }
serde = { workspace = true }
serde_json = { workspace = true }
tabled = { workspace = true }
Loading

0 comments on commit 98c6d20

Please sign in to comment.