# ramusage This crate allows you to easily query the used and total amount of memory on your system. ## Usage as a library ``` sh cargo add ramusage ``` ``` rust use memusage::Info; let info = Info::read().expect("Failed to read memory usage"); println!("{info}"); ``` ## Usage as an executable ``` sh cargo install ramusage ramusage ``` ## OS Support - Linux - OpenBSD (planned) ## TODO - [ ] OpenBSD support - [ ] Command-line arguments parser (clap)