Nugine
Nugine
+ [ ] Extract all content type handling to one place + [ ] Return detailed error message about invalid content type + [ ] Support custom content type (?)
Review all stream parsers in `s3s`. Goals: + correct, secure, fast + 100% unit test coverage Related + #353
In the long term, we will bring the project to a production-ready state.
It would be interesting to see whether the performance of `const-hex` and `hex-simd` is similar. https://docs.rs/hex-simd/latest/hex_simd/
It's common to use parameter objects in C++ libraries. ```c++ struct Options { std::string a; uint64_t b; int32_t *c; // ... } int foo(const Options& options); ``` The parameter objects...