1// Copyright (c) Microsoft Corporation. 2// Licensed under the MIT License. 3 4//! Crate for dynamically creating ACPI tables. 5 6#![expect(missing_docs)] 7#![forbid(unsafe_code)] 8 9mod aml; 10pub mod builder; 11pub mod dsdt; 12pub mod ssdt;