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