microsandbox-agentd 0.5.2

Guest init process and agent daemon for microsandbox microVMs.
Documentation
//! `microsandbox-agentd` is the PID 1 init process and agent daemon
//! that runs inside the microVM guest.
//!
//! This crate is Linux-only.

#![cfg(target_os = "linux")]
#![warn(missing_docs)]

mod config;
mod error;
mod rlimit;

//--------------------------------------------------------------------------------------------------
// Exports
//--------------------------------------------------------------------------------------------------

pub mod agent;
pub mod clock;
pub mod fs;
pub mod handoff;
pub mod heartbeat;
pub mod init;
pub mod network;
pub mod serial;
pub mod session;
pub mod tls;

pub use config::{AgentdConfig, BootParams, HandoffInit};
pub use error::*;