Skip to main content

aegis_hwsim/
lib.rs

1//! `aegis-hwsim` — QEMU+OVMF+swtpm hardware-persona matrix harness.
2//!
3//! Scaffolding phase. Real logic lands in Phase 1 per
4//! [aegis-boot#226](https://github.com/williamzujkowski/aegis-boot/issues/226).
5//! This crate currently exposes only the persona schema types so PR reviewers
6//! can sanity-check the data model before the orchestrator lands.
7
8#![forbid(unsafe_code)]
9#![warn(missing_docs)]
10
11pub mod coverage_grid;
12pub mod doctor;
13pub mod json;
14pub mod loader;
15pub mod ovmf;
16pub mod persona;
17pub mod qemu;
18pub mod scenario;
19pub mod scenarios;
20pub mod serial;
21pub mod smbios;
22pub mod swtpm;
23pub mod test_keyring;