aashish
aashish
I'm trying to deserialize very large CBOR files, and end up hitting the recursion limit of serde_cbor. Would it be possible to provide a way to increase or disable the...
Deriving `Serialize` on a variant leads to an untagged representation right now. This means that serializing variants such as `type Variant = | A | B` or `type Variant =...
There's currently no way in `quinn_proto::SendStream` (and consequently `quinn::SendStream`) to perform all-or-nothing writes. As a concrete example, I have a `&mut [Bytes]` that I'd like to write to a `quinn::SendStream`...
Header::from_slice always returns a Header
## Description I want to be able to [configure the bound address](https://docs.rs/socket2/latest/socket2/struct.Socket.html#method.bind) of outgoing tcp connections - eg `127.0.0.2:0`. Currently, the only supported binding is related to [port reuse](https://github.com/libp2p/rust-libp2p/blob/14938043cfb6c99a9fc9fb7f6fd3ecc4296b6329/transports/tcp/src/lib.rs#LL481C6-L481C6). ##...