Refactor docs and make Input API more explicit (#235)

This commit is contained in:
Han
2025-12-06 12:02:14 +09:00
committed by GitHub
parent 3d844b9f8b
commit 8f6cee8a32
64 changed files with 1297 additions and 456 deletions

View File

@@ -1,10 +1,9 @@
use ere_platform_openvm::OpenVMPlatform;
use ere_test_utils::{
guest::Sha256,
io::serde::bincode::BincodeLegacy,
program::{basic::BasicProgram, Program},
};
fn main() {
BasicProgram::<BincodeLegacy>::run::<OpenVMPlatform<Sha256>>();
BasicProgram::<BincodeLegacy>::run_output_sha256::<OpenVMPlatform>();
}

View File

@@ -1,10 +1,12 @@
#![no_std]
#![no_main]
extern crate alloc;
use alloc::vec::Vec;
use core::sync::atomic::Ordering;
use core::sync::atomic::AtomicU16;
use core::sync::atomic::Ordering;
mod openvm_rt;
fn main() {