[package]
edition = "2021"
name = "https_proxy"
version = "0.3.0"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Stealth HTTPS forward proxy with automatic Let's Encrypt TLS and nginx camouflage"
readme = "README.md"
keywords = [
"proxy",
"https",
"tls",
"acme",
"stealth",
]
categories = [
"network-programming",
"command-line-utilities",
]
license = "MIT"
repository = "https://github.com/madeye/https_proxy"
[features]
test-support = []
[lib]
name = "https_proxy"
path = "src/lib.rs"
[[bin]]
name = "https_proxy"
path = "src/main.rs"
[[test]]
name = "auth_tests"
path = "tests/auth_tests.rs"
[[test]]
name = "chrome_tests"
path = "tests/chrome_tests.rs"
[[test]]
name = "connect_tests"
path = "tests/connect_tests.rs"
[[test]]
name = "curl_tests"
path = "tests/curl_tests.rs"
[[test]]
name = "forward_tests"
path = "tests/forward_tests.rs"
[[test]]
name = "header_strip_tests"
path = "tests/header_strip_tests.rs"
[[test]]
name = "stealth_tests"
path = "tests/stealth_tests.rs"
[dependencies.anyhow]
version = "1"
[dependencies.base64]
version = "0.22"
[dependencies.clap]
version = "4"
features = ["derive"]
[dependencies.crossterm]
version = "0.28"
[dependencies.futures]
version = "0.3"
[dependencies.http-body-util]
version = "0.1"
[dependencies.hyper]
version = "1"
features = [
"http1",
"http2",
"server",
"client",
]
[dependencies.hyper-util]
version = "0.1"
features = [
"tokio",
"http1",
"http2",
"server-auto",
"client-legacy",
]
[dependencies.libc]
version = "0.2"
[dependencies.ratatui]
version = "0.29"
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.serde_yaml]
version = "0.9"
[dependencies.socket2]
version = "0.5"
features = ["all"]
[dependencies.tokio]
version = "1"
features = ["full"]
[dependencies.tokio-rustls]
version = "0.26"
[dependencies.tokio-rustls-acme]
version = "0.9"
features = ["axum"]
[dependencies.tokio-util]
version = "0.7"
features = ["rt"]
[dependencies.tracing]
version = "0.1"
[dependencies.tracing-subscriber]
version = "0.3"
features = ["env-filter"]
[dev-dependencies.base64]
version = "0.22"
[dev-dependencies.rcgen]
version = "0.14"
[dev-dependencies.reqwest]
version = "0.12"
features = [
"rustls-tls",
"json",
]
default-features = false
[dev-dependencies.serde_json]
version = "1"
[dev-dependencies.tempfile]
version = "3"
[profile.release]
lto = true
strip = true