Skip to main content

digdigdig3_core/core/utils/
mod.rs

1//! Pure utility types needed by the core data types.
2//!
3//! Only `symbol_normalizer` (string normalization for symbol parsing) lives
4//! here — the crypto / encoding / time / rate-limiter helpers stay in the full
5//! `digdigdig3` crate, since they are connector-side concerns.
6
7pub mod symbol_normalizer;
8
9pub use symbol_normalizer::{NormalizerError, SymbolNormalizer};