2019-09-03 23:27:25 -04:00
[ package ]
2019-09-16 22:54:39 -04:00
name = "bottom"
2020-07-06 01:10:03 -04:00
version = "0.4.4"
2020-01-11 18:21:14 -05:00
authors = [ "Clement Tsang <cjhtsang@uwaterloo.ca>" ]
2019-09-03 23:27:25 -04:00
edition = "2018"
2019-09-16 22:54:39 -04:00
repository = "https://github.com/ClementTsang/bottom"
2020-02-22 18:41:13 -05:00
keywords = [ "cross-platform" , "monitoring" , "cli" , "top" , "tui" ]
2019-09-16 22:42:23 -04:00
license = "MIT"
2020-02-19 00:16:40 -05:00
categories = [ "command-line-utilities" , "visualization" ]
2020-02-22 18:38:18 -05: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 00:24:36 -04:00
readme = "README.md"
2019-09-03 23:27:25 -04:00
2019-10-19 16:29:04 -04:00
[ [ bin ] ]
name = "btm"
path = "src/main.rs"
2019-09-03 23:27:25 -04:00
2020-01-04 16:07:35 -05:00
[ profile . release ]
2020-02-17 18:13:13 -05:00
debug = 1
opt-level = 3
2020-03-05 02:23:19 -05:00
lto = "fat"
codegen-units = 1
2020-01-04 16:07:35 -05:00
2019-09-03 23:27:25 -04:00
[ dependencies ]
2020-04-16 20:06:50 -04:00
battery = "0.7.5"
2020-04-05 23:20:22 -04:00
crossterm = "0.17"
2020-03-13 01:07:24 -04:00
chrono = "0.4.11"
2020-05-14 22:22:29 -04:00
clap = "2.33.1"
2020-02-20 23:10:52 -05:00
dirs = "2.0.2"
2020-05-10 17:01:45 -04:00
futures = "0.3.5"
2020-02-15 17:18:37 -05:00
heim = "0.0.10"
2020-04-06 23:04:04 -04:00
itertools = "0.9.0"
2020-04-01 20:31:43 -04:00
regex = "1.3"
2020-05-19 21:17:01 -04:00
sysinfo = "0.14.2"
2020-03-13 01:07:24 -04:00
toml = "0.5.6"
2020-05-19 21:17:01 -04:00
typed-builder = "0.6.0"
2020-01-19 22:35:05 -05:00
lazy_static = "1.4.0"
2020-02-02 17:09:42 -05:00
backtrace = "0.3"
2020-02-25 09:54:03 -05:00
serde = { version = "1.0" , features = [ "derive" ] }
2020-02-25 22:23:17 -05:00
unicode-segmentation = "1.6.0"
2020-02-27 16:02:53 -05:00
unicode-width = "0.1.7"
2020-05-16 22:38:19 -04:00
tui = { version = "0.9" , features = [ "crossterm" ] , default-features = false }
2019-09-14 21:22:57 -04:00
2020-05-01 23:53:29 -04:00
# For debugging only...
fern = "0.6.0"
log = "0.4.8"
2020-02-28 21:15:36 -05:00
[ target . 'cfg(windows)' . dependencies ]
winapi = "0.3.8"
2019-09-14 21:22:57 -04:00
[ dev-dependencies ]
2020-03-27 18:33:51 -04:00
assert_cmd = "1.0"
2019-09-14 21:22:57 -04:00
predicates = "1"
2020-02-22 18:38:18 -05: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 .
2020-03-05 02:09:29 -05:00
If one is not specified it will fall back to defaults . If a config file does not
exist at the specified or default location , a blank one will be created for the user .
2020-02-25 09:54:03 -05:00
"" "