microsandbox-portal 0.2.6

`microsandbox-portal` implements the side car program for executing code and commands in a microsandbox.
Documentation
//! Microsandbox Portal - JSON-RPC implementation for portal processes.

#![warn(missing_docs)]

//--------------------------------------------------------------------------------------------------
// Types
//--------------------------------------------------------------------------------------------------

pub mod error;
pub mod handler;
pub mod payload;
pub mod portal;
pub mod route;
pub mod state;

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

pub use error::*;
pub use handler::*;
pub use payload::*;
pub use portal::*;
pub use route::*;
pub use state::*;