2
0
Fork 0
mirror of https://github.com/ClementTsang/bottom synced 2025-02-25 19:57:12 +00:00
bottom/Cargo.toml

45 lines
963 B
TOML
Raw Normal View History

2019-09-03 23:27:25 -04:00
[package]
name = "bottom"
version = "0.2.0"
authors = ["Clement Tsang <cjhtsang@uwaterloo.ca>"]
2019-09-03 23:27:25 -04:00
edition = "2018"
repository = "https://github.com/ClementTsang/bottom"
keywords = ["cli", "monitoring-tool", "top", "bottom", "graphical"]
license = "MIT"
categories = ["command-line-utilities"]
2020-01-02 23:42:44 -05:00
description = "A graphical top clone, written in Rust. Inspired by both gtop and gotop."
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]
debug = 1
# debug = true
2020-01-04 16:07:35 -05:00
opt-level = 'z' # Optimize for size.
lto = true
2019-09-03 23:27:25 -04:00
[dependencies]
2019-12-07 03:01:35 -05:00
chrono = "0.4.10"
2019-09-11 20:41:11 -04:00
clap = "2.33.0"
2020-01-19 22:35:05 -05:00
fern = "0.5.9"
futures-timer = "3.0.1"
futures = "0.3.4"
2020-02-15 17:18:37 -05:00
heim = "0.0.10"
2020-01-19 22:35:05 -05:00
log = "0.4.8"
regex = "1.3.4"
sysinfo = "0.11"
tokio = "0.2.11"
2020-01-19 22:35:05 -05:00
winapi = "0.3.8"
2020-02-06 21:47:47 -05:00
crossterm = "0.14"
tui = {version = "0.8", features = ["crossterm"], default-features = false }
2020-01-19 22:35:05 -05:00
lazy_static = "1.4.0"
backtrace = "0.3"
2020-02-06 21:47:47 -05:00
toml = "0.5.6"
serde = "1.0"
2019-09-14 21:22:57 -04:00
[dev-dependencies]
2019-12-26 15:19:15 -05:00
assert_cmd = "0.12"
2019-09-14 21:22:57 -04:00
predicates = "1"