rusty_feeder/exchange/
mod.rs

1//! Exchange-specific implementations
2//!
3//! This module contains provider implementations for various cryptocurrency exchanges,
4//! each optimized for the specific API and WebSocket protocols of that exchange.
5
6/// Binance exchange integration for spot and futures markets
7pub mod binance;
8/// Bithumb exchange integration (Korean exchange)
9pub mod bithumb;
10/// Bybit exchange integration for spot and derivatives
11pub mod bybit;
12/// Coinbase exchange integration
13pub mod coinbase;
14/// Upbit exchange integration (Korean exchange)
15pub mod upbit;
16/// Zero-copy parsing helpers shared across exchanges
17pub mod zerocopy_helpers;