1//! An AIR for the Blake-3 permutation. Assumes the field size is between 2^20 and 2^32.
23#![no_std]
45extern crate alloc;
67mod air;
8mod columns;
9mod constants;
10mod generation;
1112pub use air::*;
13pub use columns::*;
14pub use generation::*;