Skip to main content

retch_cli/
lib.rs

1//! # retch
2//!
3//! A fast, feature-rich system information fetcher written in Rust.
4//! Similar to tools like `fastfetch` or `neofetch`.
5//!
6//! This crate provides both a CLI binary (`retch`) and a library interface
7//! for fetching and displaying system information.
8
9pub mod cli;
10pub mod config;
11pub mod display;
12pub mod fetch;
13pub mod logo;
14pub mod theme;