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

29 lines
831 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-02-17 01:45:45 +01:00
version = "0.5.1"
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-23 18:15:54 +01:00
battery = "0.7.5"
2020-01-23 22:18:43 +01:00
better-panic = "0.2.0"
2020-04-11 00:25:35 +02:00
chrono = "0.4.11"
crossbeam-channel = "0.4.2"
crossterm = "0.17.3"
ctrlc = { version = "3.1.4", features = ["termination"] }
fern = "0.6.0"
2019-10-26 21:41:35 +02:00
log = "0.4.8"
2020-04-11 00:25:35 +02:00
num-rational = "0.2.4"
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"
psutil = { git = "https://github.com/rust-psutil/rust-psutil" }
2020-04-11 00:25:35 +02:00
serde = { version = "1.0.106", features = ["derive"] }
serde_json = "1.0.51"
2019-07-20 02:36:20 +02:00
size = "0.1.2"
2020-04-11 00:25:35 +02:00
structopt = "0.3.13"
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"] }