Gossamer
A lightweight, experimental HTTP web server framework.
Design philosophy
- Low-level, high-clarity. Route handlers just take requests and return responses. Function args are not variadic, and don't map unpredictably to different parts of the HTTP request.
- Extensability. OpenAPI should be easy to integrate, but entirely optional.
- Dry. When possible, avoid repetition and stick to one source of truth.
Utilizes hyper as a base.