hyperlight-host 0.17.0

A lightweight Virtual Machine Manager that can be hosted in an application to safely run untrusted or code within a VM partition with very low latency and overhead.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
// SPDX-License-Identifier: Apache-2.0
// Copyright 2025 The Hyperlight Authors.

mod debug_regs;
mod fpu;
mod msrs;
mod special_regs;
mod standard_regs;

pub(crate) use debug_regs::*;
pub(crate) use fpu::*;
pub(crate) use msrs::*;
pub(crate) use special_regs::*;
pub(crate) use standard_regs::*;

#[cfg(target_os = "windows")]
pub(crate) use super::FromWhpRegisterError;