scuffle-http 0.3.2

A high-performance HTTP server supporting HTTP/1.1, HTTP/2, and HTTP/3.
Documentation
1
2
3
4
5
6
7
8
//! This module contains the underlying backends for the server.
//!
//! You probably don't want to use this module directly and should instead use the [`HttpServer`](crate::HttpServer) struct.

#[cfg(feature = "http3")]
pub mod h3;
#[cfg(any(feature = "http1", feature = "http2"))]
pub mod hyper;