Crates.io | parse_proc_maps |
lib.rs | parse_proc_maps |
version | 0.1.8 |
source | src |
created_at | 2022-07-22 09:39:16.657347 |
updated_at | 2022-12-03 22:35:05.362987 |
description | lightweight library for fast parsing of Linux /proc/[pid]/maps files |
homepage | https://github.com/kekeimiku/vmmap |
repository | https://github.com/kekeimiku/vmmap |
max_upload_size | |
id | 630664 |
size | 1,843 |
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<_>>();
// ...