corevm 0.1.26

The JAM CoreVM Service, a container service for running regular software on JAM.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#![cfg_attr(any(target_arch = "riscv32", target_arch = "riscv64"), no_std)]

extern crate alloc;

mod logger;
mod ops;
mod service;
mod vm;

pub(crate) use self::{logger::*, ops::*, vm::*};
pub use service::Service;

#[cfg(all(any(target_arch = "riscv32", target_arch = "riscv64"), target_feature = "e"))]
polkavm_derive::min_stack_size!(8 * 4096);

pub const MANIFEST_DIR: &str = env!("CARGO_MANIFEST_DIR");