docs.rs failed to build nsproxy-warp-0.4.2
Please check the build logs for more information.
See Builds for ideas on how to fix a failed build, or Metadata for how to configure docs.rs builds.
If you believe this is docs.rs' fault, open an issue.
Please check the build logs for more information.
See Builds for ideas on how to fix a failed build, or Metadata for how to configure docs.rs builds.
If you believe this is docs.rs' fault, open an issue.
warp
A super-easy, composable, web server framework for warp speeds.
The fundamental building block of warp is the Filter: they can be combined
and composed to express rich requirements on requests.
Thanks to its Filter system, warp provides these out of the box:
- Path routing and parameter extraction
- Header requirements and extraction
- Query string deserialization
- JSON and Form bodies
- Multipart form data
- Static Files and Directories
- Websockets
- Access logging
- Gzip, Deflate, and Brotli compression
Since it builds on top of hyper, you automatically get:
- HTTP/1
- HTTP/2
- Asynchronous
- One of the fastest HTTP implementations
- Tested and correct
Example
Add warp and Tokio to your dependencies:
= { = "1", = ["full"] }
= { = "0.4", = ["server"] }
And then get started in your main.rs:
use Filter;
async
For more information you can check the docs or the examples.