rustgate-proxy 0.1.1

MITM-capable HTTP/HTTPS proxy library and CLI
Documentation
[package]
name = "rustgate-proxy"
version = "0.1.1"
edition = "2021"
authors = ["uky <yuki.detective@gmail.com>"]
license = "MIT"
description = "MITM-capable HTTP/HTTPS proxy library and CLI"
readme = "README.crates-io.md"
repository = "https://github.com/uky007/RustGate-Proxy"
keywords = ["proxy", "mitm", "http", "https", "tls"]
categories = ["network-programming", "web-programming"]

[lib]
name = "rustgate"
path = "src/lib.rs"

[[bin]]
name = "rustgate"
path = "src/main.rs"

[dependencies]
tokio = { version = "1", features = ["full"] }
hyper = { version = "1", features = ["server", "client", "http1"] }
hyper-util = { version = "0.1", features = ["tokio"] }
http-body-util = "0.1"
http = "1"
tokio-rustls = "0.26"
rustls = "0.23"
rustls-pemfile = "2"
rcgen = { version = "0.13", features = ["pem", "x509-parser"] }
bytes = "1"
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
clap = { version = "4", features = ["derive"] }
webpki-roots = "0.26"

[dev-dependencies]
tempfile = "3"