digdigdig3 0.3.10

Unified async Rust API for 47 exchange connectors (REST + WebSocket). The core layer — pure ExchangeHub + connectors. Higher-level builder, persistence, replay, OB tracker live in `digdigdig3-station`.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
//! BitMEX connector — public market data.
//!
//! Primary purpose: `StreamEvent::PredictedFunding` via `instrument:{sym}` WS channel.
//! No authentication — public streams only.

pub mod endpoints;
pub mod auth;
pub mod parser;
pub mod protocol;
pub mod connector;
pub mod websocket;

pub use connector::BitmexConnector;
pub use websocket::BitmexWebSocket;