digdigdig3-core 0.3.17

Core data types for digdigdig3 — pure market-data + trading structs/enums (Kline/Ticker/OrderBook/Trade/StreamKind/Symbol/…). Zero connectors, zero network I/O. A light dependency for consumers that only need the types, not the 47 exchange connectors.
Documentation
1
2
3
4
5
6
7
8
9
//! Pure utility types needed by the core data types.
//!
//! Only `symbol_normalizer` (string normalization for symbol parsing) lives
//! here — the crypto / encoding / time / rate-limiter helpers stay in the full
//! `digdigdig3` crate, since they are connector-side concerns.

pub mod symbol_normalizer;

pub use symbol_normalizer::{NormalizerError, SymbolNormalizer};