1 2 3 4 5 6 7 8 9 10 11 12
#![no_std] #![forbid(unsafe_code)] #![doc = include_str!("../README.md")] #[cfg(feature = "ml-kem")] pub mod ml_kem; #[cfg(feature = "ml-kem-hybrid")] pub mod ml_kem_hybrid; #[cfg(feature = "ml-dsa")] pub mod ml_dsa;