arbiter_proxy/lib.rs
1//! Arbiter Proxy: an async HTTP reverse proxy with a middleware chain architecture.
2//!
3//! Requests flow through a configurable sequence of middleware before being
4//! forwarded to an upstream server. Configuration is loaded from TOML.
5
6pub mod config;
7pub mod middleware;
8pub mod proxy;
9pub mod server;