summaryrefslogtreecommitdiffstats
path: root/Cargo.toml
blob: 2865c5c8fa9e63830ed4b82f48dd7f379bf49319 (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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
[package]
name = "bottom"
version = "0.5.4"
authors = ["Clement Tsang <cjhtsang@uwaterloo.ca>"]
edition = "2018"
repository = "https://github.com/ClementTsang/bottom"
keywords = ["cross-platform", "monitoring", "cli", "top", "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"
default-run = "btm"
build = "build.rs"

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

[profile.release]
debug = 1
# debug = true
opt-level = 3
lto = "fat"
codegen-units = 1

[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"
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.22"
toml = "0.5.7"
tui = {version = "0.13.0", features = ["crossterm"], default-features = false }
typed-builder = "0.7.1"
unicode-segmentation = "1.7.1"
unicode-width = "0.1"

# 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"

[target.'cfg(windows)'.dependencies]
winapi = "0.3.9"

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

[build-dependencies]
clap = "2.33"

[package.metadata.deb]
section = "utility"
assets = [
    ["target/release/btm", "usr/bin/", "755"],
    ["LICENSE", "usr/share/doc/btm/", "644"],
    ["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"],
]
extended-description = """\
A cross-platform graphical process/system monitor with a customizable interface and a multitude of
features. Supports Linux, macOS, and Windows.

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.
"""

[package.metadata.wix]
output = "bottom_x86_64_installer.msi"

[dev-dependencies.cargo-husky]
version = "1"
default-features = false
features = ["user-hooks"]