1// Copyright (c) Microsoft Corporation. 2// Licensed under the MIT License. 3 4//! Types for describing VM topology (processor packages and layout, memory 5//! layout). 6 7#![forbid(unsafe_code)] 8 9pub mod memory; 10pub mod processor;