bottom/Cargo.toml

64 lines
1.6 KiB
TOML
Raw Normal View History

2019-09-04 06:27:25 +03:00
[package]
name = "bottom"
2020-02-25 18:06:37 +03:00
version = "0.2.2"
authors = ["Clement Tsang <cjhtsang@uwaterloo.ca>"]
2019-09-04 06:27:25 +03:00
edition = "2018"
repository = "https://github.com/ClementTsang/bottom"
2020-02-23 02:41:13 +03:00
keywords = ["cross-platform", "monitoring", "cli", "top", "tui"]
license = "MIT"
2020-02-19 08:16:40 +03:00
categories = ["command-line-utilities", "visualization"]
2020-02-23 02:38:18 +03:00
description = "A cross-platform graphical process/system monitor with a customizable interface and a multitude of features. Supports Linux, macOS, and Windows."
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]
2020-02-18 02:13:13 +03:00
#debug = true
debug = 1
opt-level = 3
#lto = true
lto = "fat"
codegen-units = 1
2020-01-05 00:07:35 +03:00
2019-09-04 06:27:25 +03:00
[dependencies]
crossterm = "0.17"
chrono = "0.4.11"
2019-09-12 03:41:11 +03:00
clap = "2.33.0"
dirs = "2.0.2"
fern = "0.6.0"
futures = "0.3.4"
2020-02-16 01:18:37 +03:00
heim = "0.0.10"
2020-01-20 06:35:05 +03:00
log = "0.4.8"
regex = "1.3"
sysinfo = "0.12"
toml = "0.5.6"
tui = {version = "0.8", features = ["crossterm"], default-features = false }
typed-builder = "0.5.1"
2020-01-20 06:35:05 +03:00
lazy_static = "1.4.0"
backtrace = "0.3"
serde = {version = "1.0", features = ["derive"] }
unicode-segmentation = "1.6.0"
unicode-width = "0.1.7"
2019-09-15 04:22:57 +03:00
2020-02-29 05:15:36 +03:00
[target.'cfg(windows)'.dependencies]
winapi = "0.3.8"
2019-09-15 04:22:57 +03:00
[dev-dependencies]
assert_cmd = "1.0"
2019-09-15 04:22:57 +03:00
predicates = "1"
2020-02-23 02:38:18 +03:00
[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. If a config file does not
exist at the specified or default location, a blank one will be created for the user.
"""