Luke Curley
Luke Curley
More eyes, more automation. ## Summary by CodeRabbit - New Features - Added Tauri-based WebTransport polyfill and plugin with connect/stream operations, plus a new package and workspace member. - Introduced...
Hey folks, I'm building a async friendly API using [Bytes](https://docs.rs/bytes/latest/bytes/struct.Bytes.html). I implemented `quiche::BufFactory` for it via a wrapper. A `bytes` feature would be nice to avoid this wrapper, but that's...
I created a wrapper around each stream that calls `stream_writable` before `stream_send`. The idea is that this would queue up `stream_writable_next` if false. Unfortunately this doesn't work for new streams,...
Each time I use Quiche, I find myself googling RFC9000 for information about the which stream IDs to use. It's not obvious to the outsider that server/client/bi/uni stream IDs are...
There's currently no way to determine how many bytes can be returned by `stream_recv`. I'm currently writing an async API on top of quiche and unfortunately, that means allocating on...