summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorClement Tsang <34804052+ClementTsang@users.noreply.github.com>2023-01-18 01:52:55 -0500
committerGitHub <noreply@github.com>2023-01-18 01:52:55 -0500
commitebaf10936a2595e0e923411e3bc6f1660ed93795 (patch)
treef9a5b53a9334f38ddf5444d29000889438fc33f2
parent639c93b4c80857d9090ec60cb49ed1f898163945 (diff)
other: fix missing memory feature for heim on linux (#986)
-rw-r--r--Cargo.toml4
1 files changed, 2 insertions, 2 deletions
diff --git a/Cargo.toml b/Cargo.toml
index dc769019..7911f692 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -2,7 +2,7 @@
name = "bottom"
version = "0.7.2"
authors = ["Clement Tsang <cjhtsang@uwaterloo.ca>"]
-edition = "2018"
+edition = "2018" # TODO: Bump to 2021 at some point?
repository = "https://github.com/ClementTsang/bottom"
keywords = ["cross-platform", "monitoring", "cli", "top", "tui"]
license = "MIT"
@@ -99,7 +99,7 @@ unicode-width = "0.1.10"
libc = "0.2.124"
[target.'cfg(target_os = "linux")'.dependencies]
-heim = { version = "0.1.0-rc.1", features = ["cpu", "disk", "net", "sensors"] }
+heim = { version = "0.1.0-rc.1", features = ["cpu", "disk", "memory", "net", "sensors"] }
procfs = { version = "0.14.2", default-features = false }
smol = "1.2.5"