Geoffroy Couprie
Geoffroy Couprie
Hello! I spent some time cleaning up the old nom_benchmarks repository in a more general [parser_benchmarks](https://github.com/Geal/parser_benchmarks). Since we're reaching the point where the various parser libraries reach the same performance,...
the `default_shard_amount` calls `std::thread::available_parallelism` which makes syscalls to check the resources available in the cgroup. Could this value be stored after the first call? It's unlikely to change often (there...
We currently have a few example parsers. In order to test the project and make it useful, other formats can be implemented. Here is a list, if anyone wants to...
nom can recognize left recursive grammars, but at the price of losing some information. Something like `res
the minimum supported Rust version for nom has been a common theme this year, and has caused issues in a lot of crates. nom was also at the receiving end...
this way, the doc fixes for docsrs will be available for any use of rustdoc
Hello! I spent some time cleaning up the old nom_benchmarks repository in a more general [parser_benchmarks](https://github.com/Geal/parser_benchmarks). Since we're reaching the point where the various parser libraries reach the same performance,...
This is a test to see if we can convince the query planner to act as a subgraph. This would allow the gateway or the router to sit in front...
**Version** warp 0.3.2 **Platform** Linux 5.13.0-7620-generic **Description** when using tracing with warp, and the [tracing filters](https://docs.rs/warp/latest/warp/filters/trace/index.html), the generated tracing span ends before the entire response body is sent It is...
Hello, with the following code, I would get a 405 error while I expect a 404: ```rust fn main() { let routes = warp::post2().map(warp::reply).or(warp::get2().and(warp::path("test").and_then(send_test))); warp::serve(routes).run(([127, 0, 0, 1], 3000)); }...