tachyon-web 0.0.2

A fast, Axum-compatible async web framework with native TLS, HTTP/3, Tor (.onion), and I2P (.i2p) support
Documentation
1
2
3
4
5
6
7
8
//! HTTP constructs like error types and response helpers.

pub mod error;
pub mod response;

// Re-export standard HTTP types for convenience so users don't need to depend on `hyper` or `http` directly.
pub use hyper::header;
pub use hyper::{HeaderMap, Method, Request, Response, StatusCode, Uri};