//! # Deprecated
//!
//! This crate has been superseded by the [`qmux`] crate, which supports
//! TCP, TLS, and WebSocket transports with both the legacy `webtransport`
//! wire format and the new QMux (draft-ietf-quic-qmux-00) protocol.
//!
//! All Rust types in this crate are thin wrappers or re-exports from `qmux`.
//! Please migrate to `qmux` directly.
pub use Error;
pub use RecvStream;
pub use SendStream;
pub use Client;
pub use Server;
pub use Session;
pub use tokio_tungstenite;
pub use tungstenite;
/// Legacy ALPN identifier.
pub const ALPN: &str = "webtransport";