memview 1.0.6

Linux-only ncdu-like TUI for attributing RAM across processes, tmpfs, shm, and kernel counters
1
2
3
4
5
6
7
#[cfg_attr(target_os = "linux", path = "linux/mod.rs")]
#[cfg_attr(not(target_os = "linux"), path = "unsupported.rs")]
mod platform;

fn main() -> platform::MainResult {
    platform::run()
}