Frédéric Nieto
Frédéric Nieto
### Ktor Version 1.1.13 ### Ktor Engine Used(client or server and name) irrelevant ### JVM Version, Operating System and Relevant Context irrelevant ### Feedback The OAuth Authentication provides default scopes,...
Creating this because of #28 Currently there is no system to handle errors that occurred during runtime with this library. Instead i opted to use default values when parsing fails...
A system needs to be created that allows to provide one or more examples with their metadata without adding bulk to the minimal configuration.
Hi, Today i have to do this: ```rust const MVHD: [u8;4] = *b"mvhd"; match header.id { BoxType::Id(BoxId(MVHD)) => self.mvhd = Some(MvhdBox::read(header, reader).await?), // Or BoxType::Id(BoxId([b'm', b'v', b'e', b'x'])) => self.mvex...
It would be great if the `From` trait were implemented for the `Value` struct and other structures that are nested a lot. Also compatibility with serde would be nice to...
Prototyping with this create is difficult as debug derives are not generated.
Ongoing fix for #47
Hi, I am implemententing an auto-whitelabel fature on my service based on the host. For this i use wildcard dns resolution, and allow clients to register custom domains on the...
Removes unsafe implementations where in theory it should not affect perfoemance. I checked all implmenetations in compiler explorer, they give the equivalent code except for `slice.fill()` which is one zero...
#### Use Case: Unsafe is used almost everywhere in the code. No benchmarks are there to make sure that they give a true benefit over safe alternatives. One instance if...