1
0
mirror of https://github.com/danog/ytop.git synced 2024-11-26 20:15:03 +01:00
ytop/Cargo.toml

27 lines
735 B
TOML
Raw Normal View History

2019-07-20 02:36:20 +02:00
[package]
name = "rtop"
version = "0.1.0"
authors = ["Caleb Bassi <calebjbassi@gmail.com>"]
license = "MIT"
description = "A TUI system monitor written in Rust"
edition = "2018"
[dependencies]
chrono = "0.4.7"
crossbeam-channel = "0.3"
crossterm = "0.9.6"
2019-07-27 05:03:54 +02:00
ctrlc = { version = "3.1.3", features = ["termination"] }
2019-07-20 02:36:20 +02:00
fern = "0.5.8"
2019-07-22 03:11:53 +02:00
futures-preview = { version = "=0.3.0-alpha.17", features = ["async-await", "nightly"] }
2019-07-21 04:01:23 +02:00
heim = "0.0.4"
2019-07-20 02:36:20 +02:00
log = "0.4.7"
num_cpus = "1.10.1"
2019-07-27 22:40:43 +02:00
num-rational = "0.2.2"
2019-07-20 02:36:20 +02:00
platform-dirs = "0.2.0"
2019-07-21 20:35:12 +02:00
tokio = { git = "https://github.com/tokio-rs/tokio" }
serde = { version = "1.0.97", features = ["derive"] }
serde_json = "1.0.40"
2019-07-20 02:36:20 +02:00
size = "0.1.2"
structopt = "0.2.18"
tui = { version = "0.6.2", features = ["crossterm"] }