
Currently the API modules are hidden to the crate scope. In order to avoid global permissive allows, they can initially be exported, and tweaked to local scopes as they get implemented, finalized and tested. Related to #3
12 lines
305 B
Rust
12 lines
305 B
Rust
pub use winterfell::math::{
|
|
fields::{f64::BaseElement as Felt, QuadExtension},
|
|
ExtensionOf, FieldElement, StarkField,
|
|
};
|
|
|
|
pub mod hash;
|
|
pub mod merkle;
|
|
|
|
// TYPE ALIASES
|
|
// ================================================================================================
|
|
|
|
pub type Word = [Felt; 4];
|