diff options
| author | Kamen Mladenov <kamen@syndamia.com> | 2025-03-05 14:39:00 +0200 |
|---|---|---|
| committer | Kamen Mladenov <kamen@syndamia.com> | 2025-03-10 17:15:20 +0200 |
| commit | c32168bf8a9dd2e13c9982ca202c6326d863a360 (patch) | |
| tree | 7b06c80bb21feccf2a127efcee1453923d7c0175 /guests/arrays_iter/Cargo.toml | |
| parent | 9832b41c07618caf0f40354746b3f2a9841aaf7a (diff) | |
| download | zkVMs-benchmarks-c32168bf8a9dd2e13c9982ca202c6326d863a360.tar zkVMs-benchmarks-c32168bf8a9dd2e13c9982ca202c6326d863a360.tar.gz zkVMs-benchmarks-c32168bf8a9dd2e13c9982ca202c6326d863a360.zip | |
feat(guests): Add program which test array iteration, modulo arithmetic and early return
This test should be pretty difficult for Noir, but less so for the zkVMs
Diffstat (limited to 'guests/arrays_iter/Cargo.toml')
| -rw-r--r-- | guests/arrays_iter/Cargo.toml | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/guests/arrays_iter/Cargo.toml b/guests/arrays_iter/Cargo.toml new file mode 100644 index 0000000..ba73d97 --- /dev/null +++ b/guests/arrays_iter/Cargo.toml @@ -0,0 +1,16 @@ +[package] +name = "arrays_iter" +version = "0.1.0" +edition = "2021" + +[dependencies] +guests_macro = { version = "0.1.0", path = "../../guests_macro" } + +[features] +no_std = [] +jolt = [] +nexus = [] +risc0 = [] +sp1 = [] +zkm = [] +zkwasm = [] |
