Initialize Rust project with Cargo, dependencies, and module skeleton

Set up single-binary reverse-proxy project with all core dependencies
(axum, tokio, hyper, tower, rustls, tokio-rustls, rustls-acme, serde,
toml, arc-swap, tracing, tracing-subscriber, rustls-pemfile,
rustls-pki-types, clap, signal-hook, anyhow, thiserror) pinned to exact
versions. Create module skeleton (config, proxy, tls, rate_limit,
logging, admin, health, shutdown) matching architecture spec.
This commit is contained in:
2026-06-11 11:34:53 +00:00
parent 309878c561
commit 97178800f9
23 changed files with 2305 additions and 0 deletions

2
src/tls/redirect.rs Normal file
View File

@@ -0,0 +1,2 @@
#[allow(dead_code)]
pub struct HttpsRedirect;