1 2 3 4 5 6 7
//! This crate provides shared functionality used by multiple crates in the project, //! including cryptographic utilities, encoding/decoding helpers, and time formatting. #![forbid(unsafe_code)] pub mod crypto; pub mod encoding;