#maps #linux #parse #parser

app parse_proc_maps

lightweight library for fast parsing of Linux /proc/[pid]/maps files

6 releases

0.1.8 Dec 3, 2022
0.1.4 Aug 8, 2022
0.1.3 Jul 22, 2022

#131 in #maps

MIT license

2KB

proc_maps_parser

crates.io

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<_>>();
// ...

No runtime deps