httprouter-rs icon indicating copy to clipboard operation
httprouter-rs copied to clipboard

A fast, minimal HTTP framework.

Results 1 httprouter-rs issues
Sort by recently updated
recently updated
newest added

Currently all route handlers needs to be `Send`, `Sync` and `'static`, the default hyper `Executor` only requires `Send` and `'static` bounds (see [this line](https://github.com/hyperium/hyper/blob/v0.14.10/src/common/exec.rs#L82)). The `Sync` bound is currently needed...