corevm-host 0.1.28

Types that are common across CoreVM service, builder, monitor, tooling
Documentation
//! Public API for CoreVM builders.
//!
//! This API is shared between the builders and the CoreVM service itself.

#![no_std]

extern crate alloc;

#[cfg(any(feature = "std", test))]
extern crate std;

mod args;
pub mod fs;
mod input_streams;
mod messages;
mod package;
mod page;
mod range_set;
mod streams;

pub use self::{
	args::*, input_streams::*, messages::*, package::*, page::*, range_set::*, streams::*,
};

// Re-export all types.
pub use corevm_types::*;