rocketfetch 0.7.2

A WIP command line system information tool written asynchronously in rust for performance with toml file configuration.
1
2
3
4
5
6
7
8
9
10
11
#![warn(clippy::pedantic)]
mod cli;
mod config;
mod modules;
mod utils;
#[macro_use]
extern crate serde_derive;
use config::Config;
fn main() {
    Config::from_config(Config::path()).print();
}