2019-09-04 03:27:25 +00:00
[ package ]
2019-09-17 02:54:39 +00:00
name = "bottom"
2021-01-31 01:23:18 +00:00
version = "0.5.7"
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"
2020-08-19 20:32:33 +00:00
default-run = "btm"
2020-08-31 21:50:21 +00:00
build = "build.rs"
2019-09-04 03:27:25 +00:00
2019-10-19 20:29:04 +00:00
[ [ bin ] ]
name = "btm"
2020-08-19 20:32:33 +00:00
path = "src/bin/main.rs"
doc = false
2019-09-04 03:27:25 +00:00
2020-01-04 21:07:35 +00:00
[ profile . release ]
2020-12-18 05:40:55 +00:00
debug = 0
lto = true
# debug = true
# lto = false
2020-02-17 23:13:13 +00:00
opt-level = 3
2020-03-05 07:23:19 +00:00
codegen-units = 1
2020-01-04 21:07:35 +00:00
2020-12-12 01:39:32 +00:00
[ features ]
default = [ "fern" , "log" ]
2019-09-04 03:27:25 +00:00
[ dependencies ]
2020-12-16 05:41:54 +00:00
anyhow = "1.0.35"
backtrace = "~0.3"
2020-11-02 20:04:54 +00:00
battery = "0.7.8"
2020-12-13 02:06:46 +00:00
beef = "0.4.4"
2020-10-03 02:12:07 +00:00
chrono = "0.4.19"
2020-11-03 04:52:45 +00:00
crossterm = "0.18.2"
2020-12-12 01:39:32 +00:00
ctrlc = { version = "3.1" , features = [ "termination" ] }
2020-08-21 20:00:14 +00:00
clap = "2.33"
2020-11-02 03:03:29 +00:00
dirs-next = "2.0.0"
2020-12-12 00:54:02 +00:00
fnv = "1.0.7"
2020-11-21 20:31:19 +00:00
futures = "0.3.8"
2020-12-16 05:41:54 +00:00
indexmap = "~1.6"
2020-04-07 03:04:04 +00:00
itertools = "0.9.0"
2020-11-22 21:44:40 +00:00
once_cell = "1.5.2"
2020-11-03 04:52:45 +00:00
regex = "1.4.2"
2020-12-17 22:57:38 +00:00
serde = { version = "~1.0" , features = [ "derive" ] }
2020-10-03 02:12:07 +00:00
sysinfo = "0.15.3"
2020-11-28 23:29:23 +00:00
thiserror = "1.0.22"
2020-11-03 04:52:45 +00:00
toml = "0.5.7"
2020-12-12 01:39:32 +00:00
tui = { version = "0.13.0" , features = [ "crossterm" ] , default-features = false }
2020-12-16 05:41:54 +00:00
typed-builder = "0.8.0"
2020-11-28 23:29:23 +00:00
unicode-segmentation = "1.7.1"
2020-08-21 20:00:14 +00:00
unicode-width = "0.1"
2019-09-15 01:22:57 +00:00
2020-12-22 01:24:27 +00:00
# For debugging only... disable on release builds with --no-default-target for no? TODO: Redo this.
2020-12-12 01:39:32 +00:00
fern = { version = "0.6.0" , optional = true }
2020-12-22 01:24:27 +00:00
log = { version = "0.4.11" , optional = true }
[ target . 'cfg(unix)' . dependencies ]
libc = "~0.2"
[ target . 'cfg(target_os = "linux")' . dependencies ]
heim = { version = "0.1.0-rc.1" , features = [ "cpu" , "disk" , "memory" , "net" , "sensors" ] }
futures-timer = "3.0.2"
2020-05-02 03:53:29 +00:00
2020-12-22 01:24:27 +00:00
[ target . 'cfg(target_os = "macos")' . dependencies ]
heim = { version = "0.1.0-rc.1" , features = [ "disk" , "memory" , "net" ] }
2020-09-02 06:59:51 +00:00
2020-12-22 01:24:27 +00:00
[ target . 'cfg(target_os = "windows")' . dependencies ]
heim = { version = "0.1.0-rc.1" , features = [ "disk" , "memory" ] }
2020-08-21 20:00:14 +00:00
winapi = "0.3.9"
2020-02-29 02:15:36 +00:00
2019-09-15 01:22:57 +00:00
[ dev-dependencies ]
2021-01-13 02:41:59 +00:00
assert_cmd = "1.0.2"
predicates = "1.0.6"
2020-02-22 23:38:18 +00:00
2020-08-31 21:50:21 +00:00
[ build-dependencies ]
clap = "2.33"
2020-02-22 23:38:18 +00:00
[ package . metadata . deb ]
2020-08-23 00:22:47 +00:00
section = "utility"
2020-02-22 23:38:18 +00:00
assets = [
[ "target/release/btm" , "usr/bin/" , "755" ] ,
[ "LICENSE" , "usr/share/doc/btm/" , "644" ] ,
2020-11-21 20:31:19 +00:00
[ "completion/btm.bash" , "usr/share/bash-completion/completions/btm" , "644" ] ,
[ "completion/btm.fish" , "usr/share/fish/vendor_completions.d/btm.fish" , "644" ] ,
[ "completion/_btm" , "usr/share/zsh/vendor-completions/" , "644" ] ,
2020-02-22 23:38:18 +00:00
]
extended-description = "" " \
2020-08-31 21:50:21 +00:00
A cross-platform graphical process / system monitor with a customizable interface and a multitude of
features . Supports Linux , macOS , and Windows .
2020-02-22 23:38:18 +00:00
By default , bottom will look for a config file in ~ / . config / bottom / bottom . toml .
2020-03-05 07:09:29 +00: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 14:54:03 +00:00
"" "
2020-08-24 01:22:31 +00:00
[ package . metadata . wix ]
2020-08-24 01:39:53 +00:00
output = "bottom_x86_64_installer.msi"
[ dev-dependencies . cargo-husky ]
version = "1"
2020-09-01 03:59:33 +00:00
default-features = false
2020-12-11 03:29:25 +00:00
features = [ "user-hooks" ]