tdx_guest_device/
lib.rs

1// Copyright (c) Microsoft Corporation.
2// Licensed under the MIT License.
3
4//! The crate includes the abstraction layer of Linux TDX Guest APIs and
5//! definitions of data structures according to TDX specification.
6
7#![cfg_attr(not(feature = "std"), no_std)]
8
9pub mod protocol;
10
11#[cfg(target_os = "linux")]
12pub mod ioctl;