Skip to main content

corevm_host/
lib.rs

1//! Public API for CoreVM builders.
2//!
3//! This API is shared between the builders and the CoreVM service itself.
4
5#![no_std]
6
7extern crate alloc;
8
9#[cfg(any(feature = "std", test))]
10extern crate std;
11
12mod args;
13pub mod fs;
14mod input_streams;
15mod messages;
16mod package;
17mod page;
18mod range_set;
19mod streams;
20
21pub use self::{
22	args::*, input_streams::*, messages::*, package::*, page::*, range_set::*, streams::*,
23};
24
25// Re-export all types.
26pub use corevm_types::*;