1 2 3 4 5 6 7 8 9
## proc_maps_parser lightweight library for fast parsing of Linux /proc/[pid]/maps files ```rust let contents: &str = fs::read_to_string("/proc/pid/maps").unwrap(); let maps = MapsIter::new(contents).collect::<Vec<_>>(); // ... ```