bottom/Cargo.toml

33 lines
687 B
TOML
Raw Normal View History

2019-09-04 05:27:25 +02:00
[package]
2019-09-07 02:51:53 +02:00
name = "rustop"
2019-09-15 03:22:57 +02:00
version = "0.1.0-alpha.1"
2019-09-04 05:27:25 +02:00
authors = ["ClementTsang <clementjhtsang@gmail.com>"]
edition = "2018"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
chrono = "0.4.9"
2019-09-12 02:41:11 +02:00
clap = "2.33.0"
crossterm = "0.10.2"
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"
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"
log = "0.4"
2019-09-07 06:49:15 +02:00
sysinfo = "0.9.4"
tokio = "0.2.0-alpha.4"
[dependencies.tui]
git = "https://github.com/ClementTsang/tui-rs"
#path = "../tui-rs"
default-features = false
features = ['crossterm']
2019-09-15 03:22:57 +02:00
[dev-dependencies]
assert_cmd = "0.10"
predicates = "1"