bottom/Cargo.toml
2020-02-22 18:38:18 -05:00

57 lines
No EOL
1.4 KiB
TOML

[package]
name = "bottom"
version = "0.2.1"
authors = ["Clement Tsang <cjhtsang@uwaterloo.ca>"]
edition = "2018"
repository = "https://github.com/ClementTsang/bottom"
keywords = ["cross-platform", "monitoring", "cli", "top", "bottom", "tui"]
license = "MIT"
categories = ["command-line-utilities", "visualization"]
description = "A cross-platform graphical process/system monitor with a customizable interface and a multitude of features. Supports Linux, macOS, and Windows."
readme = "README.md"
[[bin]]
name = "btm"
path = "src/main.rs"
[profile.release]
#debug = true
debug = 1
opt-level = 3
lto = true
[dependencies]
chrono = "0.4.10"
clap = "2.33.0"
dirs = "2.0.2"
fern = "0.5.9"
futures-timer = "3.0.2"
futures = "0.3.4"
heim = "0.0.10"
log = "0.4.8"
regex = "1.3.4"
sysinfo = "0.11"
tokio = "0.2.11"
winapi = "0.3.8"
crossterm = "0.14"
tui = {version = "0.8", features = ["crossterm"], default-features = false }
lazy_static = "1.4.0"
backtrace = "0.3"
toml = "0.5.6"
serde = "1.0"
[dev-dependencies]
assert_cmd = "0.12"
predicates = "1"
[package.metadata.deb]
section = "utils"
assets = [
["target/release/btm", "usr/bin/", "755"],
["LICENSE", "usr/share/doc/btm/", "644"],
["README.md", "usr/share/doc/btm/README", "644"],
]
extended-description = """\
By default, bottom will look for a config file in ~/.config/bottom/bottom.toml.
If one is not specified it will fall back to defaults.
"""