hyperlight-host 0.16.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
[package]
name = "hyperlight_surrogate"
version = "0.1.0"
edition = "2021"

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[workspace]

[dependencies]

[profile.dev]
panic = "abort"

[profile.release]
panic = "abort"

[profile.release-with-debug]
inherits = "release"
debug = true
panic = "abort"

# Note - This crate will currently get built during the build.rs script for the hyperlight-host crate.
# Cargo package does not allow for files named 'Cargo.toml' to be included in a crate so we'll rename
# during the build.rs script so this file can be included with source for hyperlight_surrogate.exe 
# the in hyperlight-host crate.