linux_memutils/lib.rs
1// SPDX-FileCopyrightText: Benedikt Vollmerhaus <benedikt@vollmerhaus.org>
2// SPDX-License-Identifier: MIT
3/*!
4This crate provides basic utilities for reading from physical memory on Linux.
5
6It is developed in tandem with the [`agesafetch`] CLI crate, but its features
7may also come in handy for other use cases.
8
9[`agesafetch`]: https://crates.io/crates/agesafetch
10*/
11pub mod agesa;
12pub mod iomem;
13pub mod reader;