proc_sys_parser 0.1.22

This crate provides routines for parsing linux /proc files into Rust structs. There are multiple other crates doing this, but these either do not choose to process the statistics in way to make them directly usable, or generalize the statistics and loose the detail.
Documentation
[package]
name = "proc_sys_parser"
version = "0.1.22"
edition = "2021"
license = "Apache-2.0"
keywords = ["linux", "proc", "parser"]
categories = ["os::linux-apis", "parsing", "filesystem"]
homepage = "https://github.com/FritsHoogland/proc_sys_parser/"
repository = "https://github.com/FritsHoogland/proc_sys_parser/"
readme = "README.md"
description = "This crate provides routines for parsing linux /proc files into Rust structs. There are multiple other crates doing this, but these either do not choose to process the statistics in way to make them directly usable, or generalize the statistics and loose the detail."

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
log = "0.4.20"
nix = { version = "0.27.1", features = ["feature"] }
rand = "0.8.5"
regex = "1.10.3"
thiserror = "1.0.56"