Production-ready post-quantum cryptography. Hybrid ML-KEM+X25519 by default, all 4 NIST standards (FIPS 203–206), post-quantum TLS, and FIPS 140-3 backend — one crate, zero unsafe.
//! Error Handling Module
//!//! This module provides comprehensive error types for the LatticeArc library.
#![deny(unsafe_code)]#![deny(missing_docs)]#![deny(clippy::unwrap_used)]#![deny(clippy::panic)]/// Core error types and result handling.
pubmodtypes;pubusetypes::{LatticeArcError,Result};