//! AT Protocol Jetstream event consumer library.
//!
//! Provides async stream consumption and event handling for AT Protocol Jetstream
//! with support for WebSocket connections, event dispatching, and handler registration.
//!
//! ## Key Features
//!
//! - **Async Stream Consumer**: High-performance WebSocket-based event consumption
//! - **Event Handler Registration**: Flexible event handler system with multiple handlers
//! - **Compression Support**: Optional Zstandard compression with dictionary support
//! - **Graceful Shutdown**: Cancellation token support for clean shutdown
//! - **Error Handling**: Comprehensive error types following project conventions
pub use ;
// Re-export CancellationToken for convenience
pub use CancellationToken;