mirror of
https://github.com/ClementTsang/bottom.git
synced 2024-11-10 18:24:07 +03:00
37 lines
902 B
TOML
37 lines
902 B
TOML
[package]
|
|
name = "bottom"
|
|
version = "0.1.1-alpha.0"
|
|
authors = ["Clement Tsang <clementjhtsang@gmail.com>"]
|
|
edition = "2018"
|
|
repository = "https://github.com/ClementTsang/bottom"
|
|
keywords = ["cli", "monitoring-tool", "top", "bottom", "graphical"]
|
|
license = "MIT"
|
|
categories = ["command-line-utilities"]
|
|
description = "A graphical top clone, written in Rust. Inspired by both gtop and gotop."
|
|
readme = "README.md"
|
|
|
|
[[bin]]
|
|
name = "btm"
|
|
path = "src/main.rs"
|
|
|
|
[dependencies]
|
|
chrono = "0.4.10"
|
|
clap = "2.33.0"
|
|
crossterm = "0.14"
|
|
failure = "0.1.6"
|
|
fern = "0.5"
|
|
futures-timer = "2.0.2"
|
|
futures = "0.3.1"
|
|
heim = "0.0.9"
|
|
log = "0.4"
|
|
regex = "1.3.1"
|
|
sysinfo = "0.9" #0.9 seems to be the last working version for my Ryzen PC...
|
|
tokio = "0.2.6"
|
|
winapi = "0.3"
|
|
tui = {version = "0.8", features = ["crossterm"], default-features = false }
|
|
lazy_static = "1.4"
|
|
|
|
[dev-dependencies]
|
|
assert_cmd = "0.12"
|
|
predicates = "1"
|