digdigdig3-core 0.3.19

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
10
11
12
13
14
15
//! # digdigdig3-core
//!
//! The pure-data core of [`digdigdig3`](https://docs.rs/digdigdig3): market-data
//! and trading types (`Kline`, `Ticker`, `OrderBook`, `PublicTrade`, `FundingRate`,
//! `StreamKind`, `Symbol`, `ExchangeId`, …) with **zero** connectors and **zero**
//! network I/O.
//!
//! Consumers that only need the data structures (indicator libraries, analytics,
//! backtesters) depend on this crate and avoid compiling reqwest / tokio /
//! websockets / the 47 exchange connectors that live in the full `digdigdig3` crate.
//!
//! The full `digdigdig3` crate re-exports everything here under the SAME paths
//! (`digdigdig3::core::types::*`, etc.), so it stays a drop-in superset.

pub mod core;