1//! The scalar field of the BN254 curve, defined as `F_P` where `P = 21888242871839275222246405745257275088548364400416034343698204186575808495617`.
2#![no_std]
34extern crate alloc;
56mod bn254;
7mod helpers;
8mod poseidon2;
910pub use bn254::*;
11pub use poseidon2::Poseidon2Bn254;