bottom/Cargo.toml

91 lines
2.4 KiB
TOML
Raw Normal View History

2019-09-04 06:27:25 +03:00
[package]
name = "bottom"
2020-11-27 03:36:01 +03:00
version = "0.5.3"
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"
default-run = "btm"
build = "build.rs"
2019-09-04 06:27:25 +03:00
2019-10-19 23:29:04 +03:00
[[bin]]
name = "btm"
path = "src/bin/main.rs"
doc = false
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 = 1
opt-level = 3
lto = "fat"
codegen-units = 1
2020-01-05 00:07:35 +03:00
2019-09-04 06:27:25 +03:00
[dependencies]
anyhow = "1.0.34"
backtrace = "0.3"
battery = "0.7.8"
chrono = "0.4.19"
crossterm = "0.18.2"
ctrlc = {version = "3.1", features = ["termination"]}
clap = "2.33"
dirs-next = "2.0.0"
2020-11-21 23:31:19 +03:00
futures = "0.3.8"
indexmap = "1.6.0"
itertools = "0.9.0"
libc = "0.2"
once_cell = "1.5.2"
regex = "1.4.2"
serde = {version = "1.0", features = ["derive"] }
sysinfo = "0.15.3"
thiserror = "1.0.21"
toml = "0.5.7"
tui = {version = "0.13.0", features = ["crossterm"], default-features = false }
typed-builder = "0.7.0"
unicode-segmentation = "1.6.0"
unicode-width = "0.1"
2019-09-15 04:22:57 +03:00
# For debugging only...
fern = "0.6.0"
log = "0.4.11"
[target.'cfg(not(any(target_arch = "arm", target_arch = "aarch64")))'.dependencies]
heim = "0.0.11"
2020-02-29 05:15:36 +03:00
[target.'cfg(windows)'.dependencies]
winapi = "0.3.9"
2020-02-29 05:15:36 +03:00
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
[build-dependencies]
clap = "2.33"
2020-02-23 02:38:18 +03:00
[package.metadata.deb]
section = "utility"
2020-02-23 02:38:18 +03:00
assets = [
["target/release/btm", "usr/bin/", "755"],
["LICENSE", "usr/share/doc/btm/", "644"],
2020-11-21 23:31:19 +03:00
["completion/btm.bash", "usr/share/bash-completion/completions/btm", "644"],
["completion/btm.fish", "usr/share/fish/vendor_completions.d/btm.fish", "644"],
["completion/_btm", "usr/share/zsh/vendor-completions/", "644"],
2020-02-23 02:38:18 +03:00
]
extended-description = """\
A cross-platform graphical process/system monitor with a customizable interface and a multitude of
features. Supports Linux, macOS, and Windows.
2020-02-23 02:38:18 +03:00
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.
"""
2020-08-24 04:22:31 +03:00
[package.metadata.wix]
2020-08-24 04:39:53 +03:00
output = "bottom_x86_64_installer.msi"
[dev-dependencies.cargo-husky]
version = "1"
default-features = false
features = ["user-hooks"]