digdigdig3 0.3.1

Unified async Rust API for 47 exchange connectors (REST + WebSocket). The core layer — pure ExchangeHub + connectors. Higher-level builder, persistence, replay, OB tracker live in `digdigdig3-station`.
Documentation
//! # Connector Manager
//!
//! Unified interface for all 51+ exchange connectors.
//!
//! ## Architecture
//!
//! Connectors are dispatched through `Arc<dyn CoreConnector>` — a trait object
//! that composes all core sub-traits (ExchangeIdentity, MarketData, MarketDataPublic,
//! Trading, Account, Positions, etc.) with Send + Sync + 'static bounds.
//!
//! ## Components
//!
//! - `ConnectorPool` - Lock-free pool of `Arc<dyn CoreConnector>` by exchange
//! - `ConnectorFactory` - Constructs and wraps connectors from config
//! - `ConnectorAggregator` - Fan-out aggregation across multiple connectors
//! - `ConnectorRegistry` - Static metadata (supported features, categories)
//! - `ConnectorConfig` - Credentials and config management
//!
//! ## Usage
//!
//! ```ignore
//! use connectors_v5::connector_manager::{ConnectorFactory, CoreConnector};
//! use std::sync::Arc;
//!
//! // Build a connector through the factory
//! let connector: Arc<dyn CoreConnector> = factory.create_connector(exchange_id, credentials).await?;
//!
//! // Use core trait methods
//! let price = connector.get_price(symbol, AccountType::Spot).await?;
//! let balance = connector.get_balance(query).await?;
//!
//! // Get connector metadata
//! let id = connector.id();
//! let name = connector.exchange_name();
//! ```

mod registry;
mod pool;
mod ws_pool;
mod aggregator;
mod config;
mod factory;
mod hub;
mod feed;

pub use hub::ExchangeHub;
pub use crate::core::traits::CoreConnector;

// High-level feed API — fan-out of WebSocketConnector::event_stream over
// per-subscription broadcast channels. Exchanges still live in the hub;
// the feed only wraps subscribe/event-loop boilerplate.
pub use feed::{
    FeedBuilder, FeedEvent, FeedHandle, MarketFeed, OrderbookTrackerOpt,
    PersistenceOption, ReconnectPolicy,
};

// Registry metadata types — public for consumers who want to inspect connector capabilities.
// ExchangeHub is the sole entry point for operations; these are read-only metadata.
pub use registry::{AuthType, ConnectorCategory, ConnectorMetadata, Features};

// Internal re-exports — available within the crate only
pub(crate) use registry::ConnectorRegistry;
pub(crate) use pool::ConnectorPool;
pub(crate) use ws_pool::WebSocketPool;
pub(crate) use factory::ConnectorFactory;