rusty_feeder/exchange/binance/
mod.rs

1//! Binance exchange provider implementation for rusty-feeder
2//!
3//! This module provides implementations for Binance Spot and Futures markets
4//! with high-performance data handling and normalization.
5
6/// Common types and utilities shared between Binance spot and futures
7pub mod common;
8/// Binance futures market implementation
9pub mod futures;
10/// Instrument parsing and normalization for Binance
11pub mod instrument;
12/// Binance spot market implementation
13pub mod spot;
14// Re-export main components
15pub use futures::provider::BinanceFuturesProvider;
16pub use spot::provider::BinanceSpotProvider;
17
18// Note: The optimized module has been temporarily moved to disabled/
19// and will be updated to match the current Provider trait in the future