-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
31 lines (28 loc) · 905 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
[package]
name = "rtop-rs"
version = "1.1.1"
authors = ["SquitchYT<contact@squitch.fr>"]
edition = "2021"
description = "Faster and better alternative to Vtop written in Rust."
repository = "https://github.com/SquitchYT/RTop"
readme = "README.md"
license = "MPL-2.0"
[profile.release]
codegen-units = 1
strip = true
lto = true
#opt-level = "z" # Optimize for binary size reduce ~100Ko from final binary on Linux
[dependencies]
tokio = { version = "1", features = ["sync", "rt-multi-thread", "macros", "signal"] }
chrono = { version = "0.4.19", features = ["clock"], default-features = false }
ncurses = { version = "5.101.0", features = ["wide"] }
sysinfo = { version = "0.26.7", default-features = false }
libloading = "0.7"
serde_json = "1.0"
serde = { version = "1.0", features = ["derive"]}
home = "0.5.3"
rtop_dev = "1.1.0"
unicode-segmentation = "1.9.0"
[[bin]]
name = "rtop"
path = "src/main.rs"