zlayer-proxy 0.11.3

High-performance reverse proxy with TLS termination and L4/L7 routing
Documentation
[package]
name = "zlayer-proxy"
version.workspace = true
edition.workspace = true
license.workspace = true
repository.workspace = true
rust-version.workspace = true
description = "High-performance reverse proxy with TLS termination and L4/L7 routing"
keywords = ["proxy", "reverse-proxy", "tls", "load-balancer"]
categories = ["network-programming", "web-programming"]
readme = "README.md"

[dependencies]
# HTTP implementation
hyper = { workspace = true }
hyper-util = { workspace = true }
http = "1"
http-body-util = "0.1"
bytes = "1"

# TLS/ACME
rustls = { workspace = true }
rustls-pemfile = { workspace = true }
tokio-rustls = { workspace = true }
instant-acme = { workspace = true }
rcgen = { workspace = true }

# Async runtime
tokio = { workspace = true }
async-trait = { workspace = true }

# Utils
dashmap = { workspace = true }
tracing = { workspace = true }
thiserror = { workspace = true }
ipnet = { workspace = true }
reqwest = { workspace = true }

# Tower middleware
tower = { workspace = true }

# Serialization
serde = { workspace = true }
serde_json = { workspace = true }

# Internal crates
zlayer-spec.workspace = true
chrono = { workspace = true, features = ["serde"] }
x509-parser = { workspace = true }
sha2 = { workspace = true }
hex = { workspace = true }
zlayer-paths.workspace = true

[dev-dependencies]
serde_json = { workspace = true }
tempfile = "3"

[lints]
workspace = true