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
// SPDX-License-Identifier: Apache-2.0
// Copyright 2025 The Hyperlight Authors.

/// Tracing context support for sandboxes.
mod context;
pub(crate) use context::TraceContext;

/// Tracing and profiling support for sandboxes.
#[cfg(feature = "mem_profile")]
mod mem_profile;
#[cfg(feature = "mem_profile")]
pub(crate) use mem_profile::MemTraceInfo;