rusty_feeder/exchange/bybit/mod.rs
1//! Bybit exchange provider implementation
2//!
3//! This module provides integration with Bybit's V5 unified API for spot and derivatives trading.
4
5/// Authentication utilities for Bybit API
6pub mod auth;
7/// Market data types and parsers
8pub mod data;
9/// Feeder implementation for processing Bybit market data
10pub mod feeder;
11/// Futures-specific implementations
12pub mod futures;
13/// Provider implementation for Bybit WebSocket connections
14pub mod provider;
15/// Bybit-specific types and structures
16pub mod types;
17
18// Re-export V5 market components
19pub use feeder::BybitFeeder;
20pub use provider::{BybitCategory, BybitProvider};
21
22// Re-export futures market components
23pub use futures::feeder::BybitFuturesFeeder;
24pub use futures::provider::BybitFuturesProvider;