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` binary crate, but some of its
7features may come in handy for other use cases.
8*/
9pub mod agesa;
10pub mod iomem;
11pub mod reader;