Results 161 issues of Nugine

+ [ ] Extract all content type handling to one place + [ ] Return detailed error message about invalid content type + [ ] Support custom content type (?)

bug
feature

bug
tracking issue
security

Extract a generic test framework to another repo.

feature
test

Review all stream parsers in `s3s`. Goals: + correct, secure, fast + 100% unit test coverage Related + #353

feature

Related + #334

feature
tracking issue

In the long term, we will bring the project to a production-ready state.

tracking issue

tracking issue

feature
needs-investigation

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...