6 releases
0.1.8 | Dec 3, 2022 |
---|---|
0.1.4 | Aug 8, 2022 |
0.1.3 | Jul 22, 2022 |
#128 in #maps
2KB
proc_maps_parser
lightweight library for fast parsing of Linux /proc/[pid]/maps files
let contents = fs::read_to_string("/proc/pid/maps").unwrap();
let maps = MapsIter::new(&contents).collect::<Vec<_>>();
// ...