Find a file
Eduard S. 4fa285d9fb
support longer arrays in vec_ref (#367)
Support arrays up to 256 elements (hardcoded maximum just to avoid abuse) by combining multiple random_accesses.
The index is now split into low and high parts. It's a bit more inconvenient than using a single Target but this allows avoiding bit decomposition.
2025-07-30 16:07:25 -07:00
.github/workflows Try actions-rust-lang/setup-rust-toolchain for possibly faster test b… (#364) 2025-07-29 10:21:13 -07:00
book New Native Operation PublicKeyOf (#355) 2025-07-28 15:53:01 -07:00
examples Remove unnecessary 'params' argument to MainPodBuilder::prove (#373) 2025-07-30 11:39:10 -07:00
src support longer arrays in vec_ref (#367) 2025-07-30 16:07:25 -07:00
.gitignore Aard custom (#49) 2025-02-24 09:05:30 -08:00
build.rs Feat/disk cache (#354) 2025-07-24 12:15:31 +02:00
Cargo.toml fix: missing gate and generator for serialization (#369) 2025-07-29 16:45:51 -07:00
README.md Featurize middleware types that are actually defined by the backend (#94) 2025-02-27 14:15:31 +01:00
rust-analyzer.toml chore(qol): add rust-analyzer.toml (#187) 2025-04-08 08:33:49 +10:00
rust-toolchain.toml Feat/disk cache (#354) 2025-07-24 12:15:31 +02:00
rustfmt.toml Organize imports (#188) 2025-04-07 16:19:13 -07:00

POD2

Usage

  • Run tests: cargo test --release
  • Rustfmt: cargo fmt
  • Check typos: typos -c .github/workflows/typos.toml

Book

The book contains the specification of POD2. A rendered version of the site can be found at: https://0xparc.github.io/pod2/

To run it locally:

  • Requirements
  • Go to the book directory: cd book
  • Run the mdbook: mdbook serve