bottom/Cargo.toml

42 lines
972 B
TOML
Raw Normal View History

2019-09-04 06:27:25 +03:00
[package]
name = "bottom"
2020-01-07 07:07:58 +03:00
version = "0.2.0"
2019-09-18 06:47:35 +03:00
authors = ["Clement Tsang <clementjhtsang@gmail.com>"]
2019-09-04 06:27:25 +03:00
edition = "2018"
repository = "https://github.com/ClementTsang/bottom"
keywords = ["cli", "monitoring-tool", "top", "bottom", "graphical"]
license = "MIT"
categories = ["command-line-utilities"]
2020-01-03 07:42:44 +03:00
description = "A graphical top clone, written in Rust. Inspired by both gtop and gotop."
2019-09-17 07:24:36 +03:00
readme = "README.md"
2019-09-04 06:27:25 +03:00
2019-10-19 23:29:04 +03:00
[[bin]]
name = "btm"
path = "src/main.rs"
2019-09-04 06:27:25 +03:00
2020-01-05 00:07:35 +03:00
[profile.release]
debug = 1
opt-level = 'z' # Optimize for size.
lto = true
2019-09-04 06:27:25 +03:00
[dependencies]
2019-12-07 11:01:35 +03:00
chrono = "0.4.10"
2019-09-12 03:41:11 +03:00
clap = "2.33.0"
2019-12-26 04:09:49 +03:00
crossterm = "0.14"
2019-12-07 11:01:35 +03:00
failure = "0.1.6"
fern = "0.5"
2019-12-26 04:28:38 +03:00
futures-timer = "2.0.2"
futures = "0.3.1"
heim = "0.0.9"
log = "0.4"
regex = "1.3.1"
sysinfo = "0.9" #0.9 seems to be the last working version for my Ryzen PC...
2019-12-26 04:09:49 +03:00
tokio = "0.2.6"
winapi = "0.3"
2019-12-26 04:09:49 +03:00
tui = {version = "0.8", features = ["crossterm"], default-features = false }
lazy_static = "1.4"
2019-09-15 04:22:57 +03:00
[dev-dependencies]
2019-12-26 23:19:15 +03:00
assert_cmd = "0.12"
2019-09-15 04:22:57 +03:00
predicates = "1"