vmm_core/lib.rs
1// Copyright (c) Microsoft Corporation.
2// Licensed under the MIT License.
3
4//! Core building blocks for managing vm and vm related state to build a vmm.
5//! Used by both hvlite and underhill today.
6
7#![expect(missing_docs)]
8#![forbid(unsafe_code)]
9
10pub mod acpi_builder;
11pub mod cpuid;
12pub mod device_builder;
13pub mod emuplat;
14pub mod input_distributor;
15pub mod partition_unit;
16pub mod platform_resolvers;
17pub mod synic;
18pub mod vmbus_unit;
19pub mod vmotherboard_adapter;
20pub mod vmtime_unit;