2019-09-04 05:27:25 +02:00
|
|
|
[package]
|
2019-09-17 04:54:39 +02:00
|
|
|
name = "bottom"
|
2019-12-07 21:39:09 +01:00
|
|
|
version = "0.1.0"
|
2019-09-18 05:47:35 +02:00
|
|
|
authors = ["Clement Tsang <clementjhtsang@gmail.com>"]
|
2019-09-04 05:27:25 +02:00
|
|
|
edition = "2018"
|
2019-09-17 04:54:39 +02:00
|
|
|
repository = "https://github.com/ClementTsang/bottom"
|
2019-10-16 09:06:34 +02:00
|
|
|
keywords = ["cli", "monitoring-tool", "process", "system", "top", "temperature", "cpu", "memory", "bottom", "graphical"]
|
2019-09-17 04:42:23 +02:00
|
|
|
license = "MIT"
|
|
|
|
categories = ["command-line-utilities"]
|
2019-09-17 05:16:43 +02:00
|
|
|
description = "A graphical top clone."
|
2019-09-17 06:24:36 +02:00
|
|
|
readme = "README.md"
|
2019-09-04 05:27:25 +02:00
|
|
|
|
2019-10-19 22:29:04 +02:00
|
|
|
[[bin]]
|
|
|
|
name = "btm"
|
|
|
|
path = "src/main.rs"
|
2019-09-04 05:27:25 +02:00
|
|
|
|
|
|
|
[dependencies]
|
2019-12-07 09:01:35 +01:00
|
|
|
chrono = "0.4.10"
|
2019-09-12 02:41:11 +02:00
|
|
|
clap = "2.33.0"
|
2019-12-26 02:09:49 +01:00
|
|
|
crossterm = "0.14"
|
2019-12-07 09:01:35 +01:00
|
|
|
failure = "0.1.6"
|
2019-09-10 00:34:13 +02:00
|
|
|
fern = "0.5"
|
2019-12-26 02:28:38 +01:00
|
|
|
futures-timer = "2.0.2"
|
|
|
|
futures = "0.3.1"
|
|
|
|
heim = "0.0.9"
|
2019-09-10 00:34:13 +02:00
|
|
|
log = "0.4"
|
2019-12-26 02:09:49 +01:00
|
|
|
rayon = "1.3"
|
2019-10-10 23:22:53 +02:00
|
|
|
regex = "1.3.1"
|
2019-12-26 05:02:21 +01:00
|
|
|
sysinfo = "0.9" #0.9 seems to be the last working version for my Ryzen PC...
|
2019-12-26 02:09:49 +01:00
|
|
|
tokio = "0.2.6"
|
2019-12-23 05:38:55 +01:00
|
|
|
winapi = "0.3"
|
2019-12-26 02:09:49 +01:00
|
|
|
tui = {version = "0.8", features = ["crossterm"], default-features = false }
|
2019-12-27 01:06:30 +01:00
|
|
|
lazy_static = "1.4"
|
2019-09-15 03:22:57 +02:00
|
|
|
|
|
|
|
[dev-dependencies]
|
2019-12-26 21:19:15 +01:00
|
|
|
assert_cmd = "0.12"
|
2019-09-15 03:22:57 +02:00
|
|
|
predicates = "1"
|