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

30 lines
847 B
TOML
Raw Normal View History

2019-07-20 02:36:20 +02:00
[package]
2020-01-13 01:52:39 +01:00
name = "ytop"
2020-01-25 18:22:34 +01:00
version = "0.4.0"
2019-07-20 02:36:20 +02:00
authors = ["Caleb Bassi <calebjbassi@gmail.com>"]
license = "MIT"
description = "A TUI system monitor written in Rust"
edition = "2018"
[dependencies]
2020-01-10 02:24:02 +01:00
anyhow = "1.0.26"
2020-01-23 18:15:54 +01:00
battery = "0.7.5"
2020-01-23 22:18:43 +01:00
better-panic = "0.2.0"
2020-01-10 02:24:02 +01:00
chrono = "0.4.10"
crossbeam-channel = "0.4.0"
crossterm = "0.14.1"
2019-07-27 05:03:54 +02:00
ctrlc = { version = "3.1.3", features = ["termination"] }
2019-10-26 21:41:35 +02:00
fern = "0.5.9"
log = "0.4.8"
2019-07-27 22:40:43 +02:00
num-rational = "0.2.2"
2020-01-23 18:15:54 +01:00
once_cell = "1.3.1"
2019-07-20 02:36:20 +02:00
platform-dirs = "0.2.0"
2020-01-10 02:24:02 +01:00
# psutil = "1.7.0"
2020-01-23 18:34:13 +01:00
psutil = { git = "https://github.com/borntyping/rust-psutil" }
2020-01-10 02:24:02 +01:00
serde = { version = "1.0.104", features = ["derive"] }
serde_json = "1.0.44"
2019-07-20 02:36:20 +02:00
size = "0.1.2"
2020-01-10 02:24:02 +01:00
structopt = "0.3.7"
2020-01-11 01:24:04 +01:00
# tui = { version = "0.8.0", features = ["crossterm"] }
2020-01-23 18:49:44 +01:00
tui = { git = "https://github.com/cjbassi/tui-rs", branch = "master", default-features = false, features = ["crossterm"] }