1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
// Copyright 2023 Ulvetanna Inc.
#![feature(step_trait)]
// This is to silence clippy errors around suspicious usage of XOR
// in our arithmetic. This is safe to do becasue we're operating
// over binary fields.
#![allow(clippy::suspicious_arithmetic_impl)]
#![allow(clippy::suspicious_op_assign_impl)]

pub mod challenger;
pub mod composition;
pub mod linear_code;
pub mod merkle_tree;
pub mod oracle;
pub mod poly_commit;
pub mod polynomial;
pub mod protocols;
#[allow(clippy::module_inception)]
pub mod reed_solomon;
pub mod tensor_algebra;
pub mod transparent;
pub mod util;
pub mod witness;

pub use core::iter::Step;