httparse is the library being used to parse HTTP message strings. This is great for complete valid HTTP message strings but reqlang only has that once templating has taken place. This means that template references can't be used in request/response message strings in places where the character's are invalid e.g. header keys, response status codes.
Options
- Forking httparse
- Finding an alternative Rust library
- Writing an implementation
httparse is the library being used to parse HTTP message strings. This is great for complete valid HTTP message strings but reqlang only has that once templating has taken place. This means that template references can't be used in request/response message strings in places where the character's are invalid e.g. header keys, response status codes.
Options