[package]
edition = "2024"
rust-version = "1.89"
name = "hyperlight-guest"
version = "0.13.0"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = """
Provides only the essential building blocks for interacting with the host environment, including the VM exit mechanism, abstractions for calling host functions and receiving return values, and the input/output stacks used for guest-host communication.
"""
homepage = "https://github.com/hyperlight-dev/hyperlight"
readme = "README.md"
license = "Apache-2.0"
repository = "https://github.com/hyperlight-dev/hyperlight"
resolver = "2"
[features]
default = []
trace_guest = [
"dep:hyperlight-guest-tracing",
"hyperlight-guest-tracing?/trace",
]
[lib]
name = "hyperlight_guest"
path = "src/lib.rs"
[dependencies.anyhow]
version = "1.0.102"
default-features = false
[dependencies.flatbuffers]
version = "25.12.19"
default-features = false
[dependencies.hyperlight-common]
version = "0.13.0"
default-features = false
[dependencies.serde_json]
version = "1.0"
features = ["alloc"]
default-features = false
[dependencies.tracing]
version = "0.1.44"
features = ["attributes"]
default-features = false
[target.'cfg(target_arch = "x86_64")'.dependencies.hyperlight-guest-tracing]
version = "0.13.0"
optional = true
default-features = false