forked from cjbassi/ytop
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
44 lines (39 loc) · 1012 Bytes
/
Cargo.toml
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 = "ytop"
version = "0.6.2"
authors = ["Caleb Bassi <[email protected]>"]
license = "MIT"
description = "A TUI system monitor written in Rust"
edition = "2018"
[dependencies]
battery = "0.7.8"
better-panic = "0.2.0"
chrono = "0.4.11"
crossbeam-channel = "0.4.2"
crossterm = "0.17.4"
ctrlc = { version = "3.1.4", features = ["termination"] }
fern = "0.6.0"
log = "0.4.8"
num-rational = "0.3"
nvml-wrapper = "0.8.0"
once_cell = "1.3.1"
platform-dirs = "0.2.0"
psutil = "3.1.0"
serde = { version = "1.0.110", features = ["derive"] }
serde_json = "1.0.53"
size = "0.1.2"
structopt = "0.3.14"
tui = { version = "0.9.2", default-features = false, features = ["crossterm"] }
[target.'cfg(target_os = "linux")'.dependencies]
csv = "1.1.6"
which = "4.2.2"
[package.metadata.deb]
depends = "$auto"
section = "utils"
priority = "optional"
[package.metadata.rpm]
package = "ytop"
[package.metadata.rpm.cargo]
buildflags = ["--release"]
[package.metadata.rpm.targets]
ytop = { path = "/usr/bin/ytop" }