rusty_feeder/exchange/binance/spot/
mod.rs

1//! Binance Spot market implementation
2//!
3//! This module implements the Provider trait for the Binance Spot market,
4//! allowing for high-performance data acquisition and normalization.
5
6pub mod data;
7pub mod feeder;
8pub mod message_handler;
9pub mod message_handler_zerocopy;
10pub mod provider;
11pub mod types;
12
13#[cfg(test)]
14mod provider_test;
15
16// Re-export main components
17pub use feeder::BinanceSpotFeeder;
18pub use provider::BinanceSpotProvider;