corevm 0.1.22-rc.5

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
#![cfg_attr(any(target_arch = "riscv32", target_arch = "riscv64"), no_std)]

extern crate alloc;

mod logger;
mod service;
mod vm;

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

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