Switched to the webtransport-generic crate so quinn or quiche (with adapter) can be used. This also involved switching out the decoder/encoder since it meant a wrapper was required.
10 lines
125 B
Rust
10 lines
125 B
Rust
mod decode;
|
|
mod encode;
|
|
mod string;
|
|
mod varint;
|
|
|
|
pub use decode::*;
|
|
pub use encode::*;
|
|
pub use string::*;
|
|
pub use varint::*;
|