#![feature(array_try_map)]
#![feature(default_field_values)]
#![feature(error_generic_member_access)]
#![feature(formatting_options)]
#![feature(try_blocks)]
#![feature(const_default)]
#![cfg_attr(docsrs, feature(doc_cfg))]
pub extern crate v_exchanges_adapters as adapters;
pub mod core;
#[allow(unused_assignments)]
pub mod error;
pub mod prelude {
pub use std::str::FromStr as _;
pub use adapters::generics::RetryConfig;
#[cfg(feature = "binance")]
pub use crate::binance::Binance;
#[cfg(feature = "data")]
pub use crate::bitmex::Bitmex;
#[cfg(feature = "bybit")]
pub use crate::bybit::Bybit;
#[cfg(feature = "kucoin")]
pub use crate::kucoin::Kucoin;
#[cfg(feature = "mexc")]
pub use crate::mexc::Mexc;
#[cfg(feature = "data")]
pub use crate::yahoo::*;
pub use crate::{core::*, error::*, orders::*, other_types::*};
}
#[cfg(feature = "binance")]
#[cfg_attr(docsrs, doc(cfg(feature = "binance")))]
pub mod binance;
#[cfg(feature = "bybit")]
#[cfg_attr(docsrs, doc(cfg(feature = "bybit")))]
pub mod bybit;
#[cfg(feature = "kucoin")]
#[cfg_attr(docsrs, doc(cfg(feature = "kucoin")))]
pub mod kucoin;
#[cfg(feature = "mexc")]
#[cfg_attr(docsrs, doc(cfg(feature = "mexc")))]
pub mod mexc;
pub mod orders;
pub(crate) mod other_types;
pub use prelude::*;
pub(crate) mod utils;
cfg_if::cfg_if! {
if #[cfg(feature = "data")] {
pub mod bitmex;
pub mod yahoo;
}
}