1 2 3 4 5 6 7 8 9 10 11 12 13 14
//! Native WebTransport implementation re-exports. //! //! This module exposes the Quinn-based WebTransport implementation //! for non-WASM targets. /// Re-export the underlying Quinn-based implementation pub use webtrans_quinn as quinn; pub use webtrans_quinn::{ Client, ClientBuilder, CongestionControl, RecvStream, Request, SendStream, Server, ServerBuilder, Session, }; pub use webtrans_quinn::{crypto, tls};