web-wt-sys 0.2.2

Hand-crafted low-level Rust bindndings to WebTransport Web API for WebAssembly.
Documentation
1
2
3
4
5
6
7
8
9
10
11
//! Hand-crafted low-level Web API bindings for WebTransport.

#![cfg(target_family = "wasm")]
#![no_std]

mod macros;
mod streams;
mod webtransport;

pub use streams::*;
pub use webtransport::*;