2019-09-04 03:27:25 +00:00
|
|
|
[package]
|
2019-09-17 02:54:39 +00:00
|
|
|
name = "bottom"
|
2019-09-15 01:22:57 +00:00
|
|
|
version = "0.1.0-alpha.1"
|
2019-09-04 03:27:25 +00:00
|
|
|
authors = ["ClementTsang <clementjhtsang@gmail.com>"]
|
|
|
|
edition = "2018"
|
2019-09-17 02:54:39 +00:00
|
|
|
repository = "https://github.com/ClementTsang/bottom"
|
2019-09-17 03:16:43 +00:00
|
|
|
keywords = ["cli", "monitoring-tool", "process", "system", "top"]
|
2019-09-17 02:42:23 +00:00
|
|
|
license = "MIT"
|
|
|
|
categories = ["command-line-utilities"]
|
2019-09-17 03:16:43 +00:00
|
|
|
description = "A graphical top clone."
|
2019-09-04 03:27:25 +00:00
|
|
|
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
|
|
|
|
[dependencies]
|
2019-09-09 22:34:13 +00:00
|
|
|
chrono = "0.4.9"
|
2019-09-12 00:41:11 +00:00
|
|
|
clap = "2.33.0"
|
2019-09-08 23:56:23 +00:00
|
|
|
crossterm = "0.10.2"
|
2019-09-15 01:22:57 +00:00
|
|
|
failure = "0.1.5"
|
2019-09-07 04:49:15 +00:00
|
|
|
futures-preview = "0.3.0-alpha.18"
|
2019-09-09 22:34:13 +00:00
|
|
|
fern = "0.5"
|
2019-09-07 22:45:44 +00:00
|
|
|
futures-timer = "0.3"
|
|
|
|
futures-util = "0.2.1"
|
2019-09-07 00:51:18 +00:00
|
|
|
heim = "0.0.7"
|
2019-09-07 04:49:15 +00:00
|
|
|
heim-common = "0.0.7"
|
2019-09-09 22:34:13 +00:00
|
|
|
log = "0.4"
|
2019-09-07 04:49:15 +00:00
|
|
|
sysinfo = "0.9.4"
|
|
|
|
tokio = "0.2.0-alpha.4"
|
2019-09-08 23:56:23 +00:00
|
|
|
|
|
|
|
[dependencies.tui]
|
2019-09-17 03:08:37 +00:00
|
|
|
version = "0.6.2"
|
2019-09-17 03:34:34 +00:00
|
|
|
git = "https://github.com/ClementTsang/tui-rs"
|
2019-09-08 23:56:23 +00:00
|
|
|
default-features = false
|
|
|
|
features = ['crossterm']
|
2019-09-15 01:22:57 +00:00
|
|
|
|
|
|
|
[dev-dependencies]
|
|
|
|
assert_cmd = "0.10"
|
|
|
|
predicates = "1"
|