1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
//! SPDX-License-Identifier: Apache-2.0 //! Copyright 2026-2027 Aditya Motale <arctic_byte@proton.me> #![deny(missing_docs)] #![allow(unsafe_op_in_unsafe_fn)] #![doc = include_str!("../README.md")] pub mod fe; pub mod hints; #[cfg(any(test, feature = "ff"))] pub mod ff; #[cfg(any(test, feature = "fm"))] pub mod fm;