2019-09-04 05:27:25 +02:00
|
|
|
[package]
|
2019-09-17 04:54:39 +02:00
|
|
|
name = "bottom"
|
2020-01-12 00:21:14 +01:00
|
|
|
version = "0.1.2"
|
|
|
|
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-01-03 05:49:23 +01:00
|
|
|
keywords = ["cli", "monitoring-tool", "top", "bottom", "graphical"]
|
2019-09-17 04:42:23 +02:00
|
|
|
license = "MIT"
|
|
|
|
categories = ["command-line-utilities"]
|
2020-01-03 05:42:44 +01:00
|
|
|
description = "A graphical top clone, written in Rust. Inspired by both gtop and gotop."
|
2019-09-17 06:24:36 +02:00
|
|
|
readme = "README.md"
|
2019-09-04 05:27:25 +02:00
|
|
|
|
2019-10-19 22:29:04 +02:00
|
|
|
[[bin]]
|
|
|
|
name = "btm"
|
|
|
|
path = "src/main.rs"
|
2019-09-04 05:27:25 +02:00
|
|
|
|
2020-01-04 22:07:35 +01:00
|
|
|
[profile.release]
|
|
|
|
debug = 1
|
2020-02-05 05:33:09 +01:00
|
|
|
# debug = true
|
2020-01-04 22:07:35 +01:00
|
|
|
opt-level = 'z' # Optimize for size.
|
|
|
|
lto = true
|
|
|
|
|
2019-09-04 05:27:25 +02:00
|
|
|
[dependencies]
|
2019-12-07 09:01:35 +01:00
|
|
|
chrono = "0.4.10"
|
2019-09-12 02:41:11 +02:00
|
|
|
clap = "2.33.0"
|
2019-12-26 02:09:49 +01:00
|
|
|
crossterm = "0.14"
|
2019-12-07 09:01:35 +01:00
|
|
|
failure = "0.1.6"
|
2020-01-20 04:35:05 +01:00
|
|
|
fern = "0.5.9"
|
2020-02-05 02:05:07 +01:00
|
|
|
futures-timer = "3.0.1"
|
|
|
|
futures = "0.3.3"
|
2019-12-26 02:28:38 +01:00
|
|
|
heim = "0.0.9"
|
2020-01-20 04:35:05 +01:00
|
|
|
log = "0.4.8"
|
2020-02-02 23:09:42 +01:00
|
|
|
regex = "1.3.4"
|
2020-02-06 01:53:42 +01:00
|
|
|
sysinfo = "0.10.5"
|
2020-02-02 23:09:42 +01:00
|
|
|
tokio = "0.2.11"
|
2020-01-20 04:35:05 +01:00
|
|
|
winapi = "0.3.8"
|
2020-02-06 01:53:42 +01:00
|
|
|
tui = {version = "0.8", features = ["termion", "crossterm"], default-features = false }
|
2020-01-20 04:35:05 +01:00
|
|
|
lazy_static = "1.4.0"
|
2020-02-02 23:09:42 +01:00
|
|
|
backtrace = "0.3"
|
2020-02-03 00:06:19 +01:00
|
|
|
yaml-rust = "0.4.3"
|
2019-09-15 03:22:57 +02:00
|
|
|
|
|
|
|
[dev-dependencies]
|
2019-12-26 21:19:15 +01:00
|
|
|
assert_cmd = "0.12"
|
2019-09-15 03:22:57 +02:00
|
|
|
predicates = "1"
|