2019-09-04 03:27:25 +00:00
|
|
|
[package]
|
2019-09-17 02:54:39 +00:00
|
|
|
name = "bottom"
|
2019-12-07 20:39:09 +00:00
|
|
|
version = "0.1.0"
|
2019-09-18 03:47:35 +00:00
|
|
|
authors = ["Clement Tsang <clementjhtsang@gmail.com>"]
|
2019-09-04 03:27:25 +00:00
|
|
|
edition = "2018"
|
2019-09-17 02:54:39 +00:00
|
|
|
repository = "https://github.com/ClementTsang/bottom"
|
2019-10-16 07:06:34 +00:00
|
|
|
keywords = ["cli", "monitoring-tool", "process", "system", "top", "temperature", "cpu", "memory", "bottom", "graphical"]
|
2019-09-17 02:42:23 +00:00
|
|
|
license = "MIT"
|
|
|
|
categories = ["command-line-utilities"]
|
2019-09-17 03:16:43 +00:00
|
|
|
description = "A graphical top clone."
|
2019-09-17 04:24:36 +00:00
|
|
|
readme = "README.md"
|
2019-09-04 03:27:25 +00:00
|
|
|
|
2019-10-19 20:29:04 +00:00
|
|
|
[[bin]]
|
|
|
|
name = "btm"
|
|
|
|
path = "src/main.rs"
|
2019-09-04 03:27:25 +00:00
|
|
|
|
|
|
|
[dependencies]
|
2019-12-07 08:01:35 +00:00
|
|
|
chrono = "0.4.10"
|
2019-09-12 00:41:11 +00:00
|
|
|
clap = "2.33.0"
|
2019-12-06 05:57:04 +00:00
|
|
|
crossterm = "0.13"
|
2019-12-07 08:01:35 +00:00
|
|
|
failure = "0.1.6"
|
2019-09-09 22:34:13 +00:00
|
|
|
fern = "0.5"
|
2019-09-07 22:45:44 +00:00
|
|
|
futures-timer = "0.3"
|
2019-12-07 08:01:35 +00:00
|
|
|
futures-preview = "0.3.0-alpha.18"
|
|
|
|
heim = "0.0.8"
|
2019-09-09 22:34:13 +00:00
|
|
|
log = "0.4"
|
2019-09-25 04:27:43 +00:00
|
|
|
rayon = "1.2"
|
2019-10-10 21:22:53 +00:00
|
|
|
regex = "1.3.1"
|
2019-12-13 07:45:09 +00:00
|
|
|
sysinfo = "0.10"
|
2019-12-07 08:01:35 +00:00
|
|
|
tokio = "0.2.4"
|
2019-12-23 04:38:55 +00:00
|
|
|
winapi = "0.3"
|
2019-12-13 07:42:36 +00:00
|
|
|
tui = {version = "0.7", features = ["crossterm"], default-features = false }
|
2019-09-15 01:22:57 +00:00
|
|
|
|
|
|
|
[dev-dependencies]
|
|
|
|
assert_cmd = "0.10"
|
|
|
|
predicates = "1"
|