aboutsummaryrefslogtreecommitdiff
path: root/zkvms/nexus/guest/src/main.rs
blob: 680cf81e9e44f9aaf3fb2bacb6e5fb41d0b34f66 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
#![cfg_attr(target_arch = "riscv32", no_std, no_main, allow(unused_imports))]

use nexus_rt::{postcard, println, read_private_input, read_public_input, write_public_output};

extern crate alloc;
use alloc::{collections::*, vec::*};
use wrapper_macro::make_wrapper;

#[nexus_rt::main]
fn main() {
    zkp::entrypoint_expr!()
}