linux-memutils 2.0.2

Basic utilities for reading from physical memory on Linux.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
// SPDX-FileCopyrightText: Benedikt Vollmerhaus <benedikt@vollmerhaus.org>
// SPDX-License-Identifier: MIT
/*!
This crate provides basic utilities for reading from physical memory on Linux.

It is developed in tandem with the [`agesafetch`] CLI crate, but its features
may also come in handy for other use cases.

[`agesafetch`]: https://crates.io/crates/agesafetch
*/
pub mod agesa;
pub mod iomem;
pub mod reader;