//! Robust provider implementation with automatic reconnection and failover.
//!
//! # Components
//!
//! * [`RobustProvider`] - The main provider type that wraps underlying providers with reconnection
//! logic
//! * [`RobustProviderBuilder`] - Builder for constructing a `RobustProvider` with custom
//! configuration
//! * [`RobustSubscription`] / [`RobustSubscriptionStream`] - Subscription types that automatically
//! reconnect on failure
//!
//! # Traits
//!
//! * [`IntoRobustProvider`] - Convert types into a `RobustProvider`
//! * [`IntoRootProvider`] - Convert types into an underlying root provider
//!
//! # Feature Flags
//!
//! * `http-subscription` - Enable HTTP-based polling subscriptions for providers without native
//! pubsub support
pub use *;
pub use ;
pub use RobustProvider;
pub use ;
pub use ;