From 6b9a3fa1f373f975c3d72960036c4996c7ba0389 Mon Sep 17 00:00:00 2001 From: Kamen Mladenov Date: Fri, 7 Feb 2025 09:34:43 +0200 Subject: feat(zkvms): Use std (or alloc) collections in all guests --- zkvms/nexus/guest/src/main.rs | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) (limited to 'zkvms/nexus') diff --git a/zkvms/nexus/guest/src/main.rs b/zkvms/nexus/guest/src/main.rs index eb82cde..bb2e0c8 100644 --- a/zkvms/nexus/guest/src/main.rs +++ b/zkvms/nexus/guest/src/main.rs @@ -3,14 +3,9 @@ use nexus_rt::{ postcard, println, read_private_input, write_output }; extern crate alloc; -use alloc::vec::Vec; +use alloc::{ vec::*, collections::* }; use wrapper_macro::make_wrapper; -type Input = (Vec>, u32, Vec>); -type Output = bool; - -const VERTICES: usize = 100; - #[nexus_rt::main] fn main() { zkp::entrypoint_expr!() -- cgit v1.2.3