mirror of
https://github.com/ClementTsang/bottom
synced 2024-11-22 20:23:12 +00:00
other: fix missing memory feature for heim on linux (#986)
This commit is contained in:
parent
639c93b4c8
commit
ebaf10936a
1 changed files with 2 additions and 2 deletions
|
@ -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"
|
||||
|
||||
|
|
Loading…
Reference in a new issue