parse_proc_maps 0.1.4

no_std, lightweight library for fast parsing of Linux /proc/[pid]/maps files
Documentation
1
2
3
4
5
6
7
8
9
10
11
## proc_maps_parser

[![crates.io](https://img.shields.io/crates/v/parse_proc_maps.svg)](https://crates.io/crates/parse_proc_maps)

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

```rust
let contents = fs::read_to_string("/proc/pid/maps").unwrap();
let maps = MapsIter::new(&contents).collect::<Vec<_>>();
// ...
```