feat: Implement initial TLS termination and dynamic port handling (with compilation errors)

This commit is contained in:
2026-02-20 21:50:59 +00:00
parent 913e50ff1c
commit 6bc6bb4d62
10 changed files with 273 additions and 42 deletions

View File

@@ -20,6 +20,7 @@ name = "l4p"
path = "src/main.rs"
[dependencies]
anyhow = "1.0.102"
async-trait = "0.1.73"
byte_string = "1"
bytes = "1.1"
@@ -27,11 +28,14 @@ futures = "0.3"
log = "0.4"
pico-args = "0.5.0"
pretty_env_logger = "0.5"
rustls = "0.23"
rustls-pemfile = "2.2.0"
serde = { version = "1.0", features = ["derive"] }
serde_yaml = "0.9.21"
time = { version = "0.3.37", features = ["local-offset", "formatting"] }
tls-parser = "0.12.2"
tokio = { version = "1.0", features = ["full"] }
tokio-rustls = "0.26.4"
url = "2.2.2"
[dependencies.self_update]