data-connectors 0.1.1

Parent crate for the live-data ecosystem's connector library. Per-exchange source-spec crates for popular live data feeds.
Documentation
//! # live-connectors
//!
//! Parent crate for the live-data ecosystem's connector library.
//! Per-exchange crates that produce
//! [`live-data`](https://crates.io/crates/live-data) for popular
//! market data.
//! 
//! ## Features
//!
//! Each connector is feature-gated so users opt in only to what they
//! need:
//!
//! - `binance` - adds [`live-binance`].
//! - `all` - every connector currently shipped.
//!
//! ## Stability
//!
//! Early development.
//!
//! [`live-binance`]: https://crates.io/crates/live-binance

#[cfg(feature = "binance")]
pub use live_binance;