Proxy
Trillium includes a custom http client implementation in order to support reverse proxying requests. There are two tls implementations for this client.
use trillium_logger::Logger;
use trillium_rustls::RustlsConnector;
use trillium_smol::TcpConnector;
type Proxy = trillium_proxy::Proxy<RustlsConnector<TcpConnector>>;
pub fn main() {
env_logger::init();
trillium_smol::run((Logger::new(), Proxy::new("https://httpbin.org/")));
}