summaryrefslogtreecommitdiffstats
path: root/Cargo.toml
blob: 2224d80a5717b4a3751d786fb45047899bb86949 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
[package]
name = "bottom"
version = "0.1.2"
authors = ["Clement Tsang <cjhtsang@uwaterloo.ca>"]
edition = "2018"
repository = "https://github.com/ClementTsang/bottom"
keywords = ["cli", "monitoring-tool", "top", "bottom", "graphical"]
license = "MIT"
categories = ["command-line-utilities"]
description = "A graphical top clone, written in Rust. Inspired by both gtop and gotop."
readme = "README.md"

[[bin]]
name = "btm"
path = "src/main.rs"

[profile.release]
debug = 1
# debug = true
opt-level = 'z'  # Optimize for size.
lto = true

[dependencies]
chrono = "0.4.10"
clap = "2.33.0"
crossterm = "0.14"
failure = "0.1.6"
fern = "0.5.9"
futures-timer = "3.0.1"
futures = "0.3.3"
heim = "0.0.9"
log = "0.4.8"
regex = "1.3.4"
sysinfo = "0.10.5"
tokio = "0.2.11"
winapi = "0.3.8"
tui = {version = "0.8", features = ["crossterm"], default-features = false }
lazy_static = "1.4.0"
backtrace = "0.3"
yaml-rust = "0.4.3"

[dev-dependencies]
assert_cmd = "0.12"
predicates = "1"