# Fancy Sys Info A Rust library that provides system information such as memory usage and CPU statistics, along with a fancy terminal user interface (TUI) for displaying this information. ## Features - Retrieve system memory and CPU usage statistics. - Interactive TUI built with `tui` and `crossterm`. - Supports displaying system info in a user-friendly format. - Easy to integrate into your Rust projects. ## Requirements - Rust (1.50.0 or later) - `cargo` for building and managing the project ## Installation To use this library in your Rust project, add the following to your `Cargo.toml`: ```toml [dependencies] fancy-sys-info = "0.1.0" # Replace with the latest version ``` ## example ```rust // src/bin/main.rs use fancy_sys_info::run; fn main() { if let Err(err) = run() { eprintln!("Error: {}", err); } } ```