Skip to main content

cpufetch_rs/
lib.rs

1//! cpufetch-rs: A CPU information fetching library
2//!
3//! This library provides functionality to fetch and display detailed CPU information
4//! across different architectures and platforms.
5
6pub mod arch;
7pub mod cli;
8pub mod cpu;
9pub mod error;
10pub mod printer;
11pub mod utils;
12
13// Re-export commonly used types
14pub use cpu::info::{CpuError, CpuInfo, Frequency, Vendor, Version};
15pub use error::Error;