rust-web-server 17.27.0

An HTTP web framework and server for Rust supporting HTTP/1.1, HTTP/2, and HTTP/3. No third-party HTTP dependencies — parsing, routing, middleware, auth, WebSocket, SSE, caching, tracing, and MCP server are all built in.
Documentation
## Docs

Module-level documentation for each component.

1. [Request]https://github.com/bohdaq/rust-web-server/tree/main/src/request
1. [Header]https://github.com/bohdaq/rust-web-server/tree/main/src/header
1. [Response]https://github.com/bohdaq/rust-web-server/tree/main/src/response
1. [Server]https://github.com/bohdaq/rust-web-server/tree/main/src/server
1. [Application]https://github.com/bohdaq/rust-web-server/tree/main/src/application
1. [Controller]https://github.com/bohdaq/rust-web-server/tree/main/src/controller
1. [TLS]https://github.com/bohdaq/rust-web-server/tree/main/src/tls — TLS acceptor and QUIC server config; requires `http2` or `http3` feature
1. [H2 Handler]https://github.com/bohdaq/rust-web-server/tree/main/src/h2_handler — HTTP/2 connection and stream handling; requires `http2` feature
1. [H3 Handler]https://github.com/bohdaq/rust-web-server/tree/main/src/h3_handler — HTTP/3 over QUIC connection and stream handling; requires `http3` feature
1. [Body]https://github.com/bohdaq/rust-web-server/tree/main/src/body
1. [JSON]https://github.com/bohdaq/rust-web-server/tree/main/src/json
1. [URL]https://github.com/bohdaq/rust-web-server/tree/main/src/url
1. [Null]https://github.com/bohdaq/rust-web-server/tree/main/src/null
1. [Core]https://github.com/bohdaq/rust-web-server/tree/main/src/core
1. [Proxy]https://github.com/bohdaq/rust-web-server/tree/main/src/proxy`ReverseProxy` middleware with round-robin load balancing and automatic failover
1. [Cache]https://github.com/bohdaq/rust-web-server/tree/main/src/cache`CacheLayer` middleware; in-memory TTL cache for GET responses with vary-by-header and capacity eviction
1. [Config Reload]https://github.com/bohdaq/rust-web-server/tree/main/src/config_reload — hot config reload via SIGHUP; `ConfigSnapshot` exposes reloadable values; `RateLimiter` limits update live
1. [Otel]https://github.com/bohdaq/rust-web-server/tree/main/src/otel`OtelLayer` middleware; W3C Trace Context propagation; OTLP HTTP export to Jaeger / Grafana Tempo; `StdoutExporter` for development