2019-09-04 05:27:25 +02:00
[ package ]
2019-09-17 04:54:39 +02:00
name = "bottom"
2020-08-27 02:34:30 +02:00
version = "0.4.7"
2020-01-12 00:21:14 +01:00
authors = [ "Clement Tsang <cjhtsang@uwaterloo.ca>" ]
2019-09-04 05:27:25 +02:00
edition = "2018"
2019-09-17 04:54:39 +02:00
repository = "https://github.com/ClementTsang/bottom"
2020-02-23 00:41:13 +01:00
keywords = [ "cross-platform" , "monitoring" , "cli" , "top" , "tui" ]
2019-09-17 04:42:23 +02:00
license = "MIT"
2020-02-19 06:16:40 +01:00
categories = [ "command-line-utilities" , "visualization" ]
2020-02-23 00:38:18 +01: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 06:24:36 +02:00
readme = "README.md"
2020-08-19 22:32:33 +02:00
default-run = "btm"
2020-08-31 23:50:21 +02:00
build = "build.rs"
2019-09-04 05:27:25 +02:00
2019-10-19 22:29:04 +02:00
[ [ bin ] ]
name = "btm"
2020-08-19 22:32:33 +02:00
path = "src/bin/main.rs"
doc = false
2019-09-04 05:27:25 +02:00
2020-01-04 22:07:35 +01:00
[ profile . release ]
2020-02-18 00:13:13 +01:00
debug = 1
opt-level = 3
2020-03-05 08:23:19 +01:00
lto = "fat"
codegen-units = 1
2020-01-04 22:07:35 +01:00
2019-09-04 05:27:25 +02:00
[ dependencies ]
2020-09-01 05:59:33 +02:00
anyhow = "1.0.32"
2020-09-18 18:35:32 +02:00
backtrace = "0.3"
2020-08-30 02:41:41 +02:00
battery = "0.7.6"
2020-10-03 04:12:07 +02:00
chrono = "0.4.19"
2020-09-01 05:59:33 +02:00
crossterm = "0.17"
ctrlc = { version = "3.1" , features = [ "termination" ] }
2020-08-21 22:00:14 +02:00
clap = "2.33"
2020-11-02 04:03:29 +01:00
dirs-next = "2.0.0"
2020-05-10 23:01:45 +02:00
futures = "0.3.5"
2020-09-07 05:03:03 +02:00
indexmap = "1.6.0"
2020-04-07 05:04:04 +02:00
itertools = "0.9.0"
2020-09-18 18:35:32 +02:00
lazy_static = "1.4.0"
2020-09-01 05:59:33 +02:00
libc = "0.2"
2020-04-02 02:31:43 +02:00
regex = "1.3"
2020-09-18 18:35:32 +02:00
serde = { version = "1.0" , features = [ "derive" ] }
2020-10-03 04:12:07 +02:00
sysinfo = "0.15.3"
2020-09-18 18:35:32 +02:00
thiserror = "1.0.20"
2020-03-13 06:07:24 +01:00
toml = "0.5.6"
2020-09-27 20:23:18 +02:00
tui = { version = "0.12.0" , features = [ "crossterm" ] , default-features = false }
2020-08-12 02:22:39 +02:00
typed-builder = "0.7.0"
2020-02-26 04:23:17 +01:00
unicode-segmentation = "1.6.0"
2020-08-21 22:00:14 +02:00
unicode-width = "0.1"
2019-09-15 03:22:57 +02:00
2020-05-02 05:53:29 +02:00
# For debugging only...
fern = "0.6.0"
2020-08-21 22:00:14 +02:00
log = "0.4.11"
2020-05-02 05:53:29 +02:00
2020-09-02 08:59:51 +02:00
[ target . 'cfg(not(any(target_arch = "arm", target_arch = "aarch64")))' . dependencies ]
heim = "0.0.10"
2020-02-29 03:15:36 +01:00
[ target . 'cfg(windows)' . dependencies ]
2020-08-21 22:00:14 +02:00
winapi = "0.3.9"
2020-02-29 03:15:36 +01:00
2019-09-15 03:22:57 +02:00
[ dev-dependencies ]
2020-03-27 23:33:51 +01:00
assert_cmd = "1.0"
2019-09-15 03:22:57 +02:00
predicates = "1"
2020-02-23 00:38:18 +01:00
2020-08-31 23:50:21 +02:00
[ build-dependencies ]
clap = "2.33"
2020-02-23 00:38:18 +01:00
[ package . metadata . deb ]
2020-08-23 02:22:47 +02:00
section = "utility"
2020-02-23 00:38:18 +01:00
assets = [
[ "target/release/btm" , "usr/bin/" , "755" ] ,
[ "LICENSE" , "usr/share/doc/btm/" , "644" ] ,
2020-08-31 23:50:21 +02:00
[ "completions/btm.bash" , "usr/share/bash-completion/completions/btm" , "644" ] ,
[ "completions/btm.fish" , "usr/share/fish/vendor_completions.d/btm.fish" , "644" ] ,
[ "completions/_btm" , "usr/share/zsh/vendor-completions/" , "644" ] ,
2020-02-23 00:38:18 +01:00
]
extended-description = "" " \
2020-08-31 23:50:21 +02:00
A cross-platform graphical process / system monitor with a customizable interface and a multitude of
features . Supports Linux , macOS , and Windows .
2020-02-23 00:38:18 +01:00
By default , bottom will look for a config file in ~ / . config / bottom / bottom . toml .
2020-03-05 08:09:29 +01: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 15:54:03 +01:00
"" "
2020-08-24 03:22:31 +02:00
[ package . metadata . wix ]
2020-08-24 03:39:53 +02:00
output = "bottom_x86_64_installer.msi"
[ dev-dependencies . cargo-husky ]
version = "1"
2020-09-01 05:59:33 +02:00
default-features = false
features = [ "user-hooks" ]