pp/Cargo.toml
Trevor Merritt 7d830c4e3b ** RatatuiUi **
displays a preset list of hosts and their response state

Updates format of input file to CSV with <host ip>,<host name> as the format.
UI now has red/green for down/up hosts
duration_to_string now in lib
improves display of how long ago change happened
log events are now displayed on the monitoring page to show when a host comes up/goes down
Modularize ui better
Adds ability to return to monitoring or quit from editing page
table in place for displaying hosts

WIP: start of being able to go up/down through the list of hosts to eventually edit them.
2025-04-28 13:49:36 -04:00

22 lines
317 B
TOML

[package]
name = "pp"
version = "0.2.0-PREVIEW"
edition = "2024"
[dependencies]
env_logger = "0.11"
log = "0.4"
ansi_term = "0.12"
clap = { version = "4.5", features = ["derive"] }
csv = "1.3"
# Ratatui
color-eyre = "0.6.3"
crossterm = "0.28.1"
ratatui = "0.29.0"
# Time Display
chrono = "0.4"
[[bin]]
name = "pp"