A library for retrieving information about memory mappings for Unix processes.
To use, add this line to your Cargo.toml:
```toml
[dependencies]
procmaps = "0.4.0"
```
```rust
use procmaps::maps;
let m = maps(pid).unwrap();
for mapping in m {
}
```