2019-09-04 03:27:25 +00:00
[ package ]
2019-09-17 02:54:39 +00:00
name = "bottom"
2020-02-25 15:06:37 +00:00
version = "0.2.2"
2020-01-11 23:21:14 +00:00
authors = [ "Clement Tsang <cjhtsang@uwaterloo.ca>" ]
2019-09-04 03:27:25 +00:00
edition = "2018"
2019-09-17 02:54:39 +00:00
repository = "https://github.com/ClementTsang/bottom"
2020-02-22 23:41:13 +00:00
keywords = [ "cross-platform" , "monitoring" , "cli" , "top" , "tui" ]
2019-09-17 02:42:23 +00:00
license = "MIT"
2020-02-19 05:16:40 +00:00
categories = [ "command-line-utilities" , "visualization" ]
2020-02-22 23:38:18 +00:00
description = "A cross-platform graphical process/system monitor with a customizable interface and a multitude of features. Supports Linux, macOS, and Windows."
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
2020-01-04 21:07:35 +00:00
[ profile . release ]
2020-02-17 23:13:13 +00:00
#debug = true
debug = 1
opt-level = 3
2020-01-04 21:07:35 +00:00
lto = true
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"
2020-02-21 04:10:52 +00:00
dirs = "2.0.2"
2020-01-20 03:35:05 +00:00
fern = "0.5.9"
2020-02-10 03:11:03 +00:00
futures = "0.3.4"
2020-02-15 22:18:37 +00:00
heim = "0.0.10"
2020-01-20 03:35:05 +00:00
log = "0.4.8"
2020-02-02 22:09:42 +00:00
regex = "1.3.4"
2020-02-10 03:11:03 +00:00
sysinfo = "0.11"
2020-02-28 04:00:51 +00:00
crossterm = "0.16"
2020-02-06 01:37:37 +00:00
tui = { version = "0.8" , features = [ "crossterm" ] , default-features = false }
2020-01-20 03:35:05 +00:00
lazy_static = "1.4.0"
2020-02-02 22:09:42 +00:00
backtrace = "0.3"
2020-02-07 02:47:47 +00:00
toml = "0.5.6"
2020-02-25 14:54:03 +00:00
serde = { version = "1.0" , features = [ "derive" ] }
2020-02-26 03:23:17 +00:00
unicode-segmentation = "1.6.0"
2020-02-27 21:02:53 +00:00
unicode-width = "0.1.7"
2019-09-15 01:22:57 +00:00
2020-02-29 02:15:36 +00:00
[ target . 'cfg(windows)' . dependencies ]
winapi = "0.3.8"
2019-09-15 01:22:57 +00:00
[ dev-dependencies ]
2019-12-26 20:19:15 +00:00
assert_cmd = "0.12"
2019-09-15 01:22:57 +00:00
predicates = "1"
2020-02-22 23:38:18 +00:00
[ package . metadata . deb ]
section = "utils"
assets = [
[ "target/release/btm" , "usr/bin/" , "755" ] ,
[ "LICENSE" , "usr/share/doc/btm/" , "644" ] ,
[ "README.md" , "usr/share/doc/btm/README" , "644" ] ,
]
extended-description = "" " \
By default , bottom will look for a config file in ~ / . config / bottom / bottom . toml .
If one is not specified it will fall back to defaults .
2020-02-25 14:54:03 +00:00
"" "