audit-trail 1.0.0

Structured audit logging with tamper-evident chaining. Every write produces a cryptographically linked record (hash chain). Compliance-grade output (who, what, when, where, result). Pluggable backends. Foundation for HIPAA, SOC 2, and PCI-DSS compliance.
Documentation
1
2
3
4
5
6
7
8
9
10
//! Streaming readers for persisted audit logs.
//!
//! - [`FileReader`] — iterator over records read from a file, requires
//!   `std`.

#[cfg(feature = "std")]
mod file;

#[cfg(feature = "std")]
pub use file::FileReader;