hl-engine 0.1.11

Safe Rust lifecycle API for the standalone HL Linux guest engine
1
2
3
4
5
6
7
8
9
10
11
12
//! Typed discovery and launch-plane facade.

mod error;
mod machine;
mod network;
mod process;

pub use error::SpawnError;
pub use crate::api::spec::*;
pub use machine::MachineSpec;
pub use network::NetworkSpec;
pub use process::ProcessSpec;