From ebaf10936a2595e0e923411e3bc6f1660ed93795 Mon Sep 17 00:00:00 2001
From: Clement Tsang <34804052+ClementTsang@users.noreply.github.com>
Date: Wed, 18 Jan 2023 01:52:55 -0500
Subject: [PATCH] other: fix missing memory feature for heim on linux (#986)

---
 Cargo.toml | 4 ++--
 1 file 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"