mirror of
https://github.com/ClementTsang/bottom
synced 2024-11-10 14:44:18 +00:00
41 lines
983 B
TOML
41 lines
983 B
TOML
[package]
|
|
name = "bottom"
|
|
version = "0.1.0-alpha.4"
|
|
authors = ["Clement Tsang <clementjhtsang@gmail.com>"]
|
|
edition = "2018"
|
|
repository = "https://github.com/ClementTsang/bottom"
|
|
keywords = ["cli", "monitoring-tool", "process", "system", "top"]
|
|
license = "MIT"
|
|
categories = ["command-line-utilities"]
|
|
description = "A graphical top clone."
|
|
readme = "README.md"
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[dependencies]
|
|
chrono = "0.4.9"
|
|
clap = "2.33.0"
|
|
crossterm = "0.11.0"
|
|
failure = "0.1.5"
|
|
futures-preview = "0.3.0-alpha.18"
|
|
fern = "0.5"
|
|
futures-timer = "0.3"
|
|
futures-util = "0.2.1"
|
|
heim = "0.0.7"
|
|
heim-common = "0.0.7"
|
|
log = "0.4"
|
|
rayon = "1.2"
|
|
sysinfo = "0.9.4"
|
|
tokio = "0.2.0-alpha.4"
|
|
winapi = "0.3.8"
|
|
|
|
[dependencies.tui-temp-fork]
|
|
git = "https://github.com/ClementTsang/tui-rs"
|
|
#path = "../tui-rs"
|
|
version = "0.6.4"
|
|
default-features = false
|
|
features = ['crossterm']
|
|
|
|
[dev-dependencies]
|
|
assert_cmd = "0.10"
|
|
predicates = "1"
|