libp2p_webtransport_websys/
lib.rs

1//! Libp2p WebTransport built on [web-sys](https://rustwasm.github.io/wasm-bindgen/web-sys/index.html)
2
3#![allow(unexpected_cfgs)]
4
5mod bindings;
6mod connection;
7mod endpoint;
8mod error;
9mod fused_js_promise;
10mod stream;
11mod transport;
12mod utils;
13
14pub use self::{
15    connection::Connection,
16    error::Error,
17    stream::Stream,
18    transport::{Config, Transport},
19};