-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathCargo.toml
More file actions
53 lines (47 loc) · 1.47 KB
/
Cargo.toml
File metadata and controls
53 lines (47 loc) · 1.47 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
[package]
name = "https_proxy"
version = "0.3.0"
edition = "2021"
description = "Stealth HTTPS forward proxy with automatic Let's Encrypt TLS and nginx camouflage"
license = "MIT"
repository = "https://github.com/madeye/https_proxy"
keywords = ["proxy", "https", "tls", "acme", "stealth"]
categories = ["network-programming", "command-line-utilities"]
[lib]
name = "https_proxy"
path = "src/lib.rs"
[[bin]]
name = "https_proxy"
path = "src/main.rs"
[dependencies]
anyhow = "1"
futures = "0.3"
base64 = "0.22"
clap = { version = "4", features = ["derive"] }
http-body-util = "0.1"
hyper = { version = "1", features = ["http1", "http2", "server", "client"] }
hyper-util = { version = "0.1", features = ["tokio", "http1", "http2", "server-auto", "client-legacy"] }
libc = "0.2"
serde = { version = "1", features = ["derive"] }
socket2 = { version = "0.5", features = ["all"] }
serde_yaml = "0.9"
tokio = { version = "1", features = ["full"] }
tokio-rustls = "0.26"
tokio-rustls-acme = { version = "0.9", features = ["axum"] }
crossterm = "0.28"
ratatui = "0.29"
tracing = "0.1"
tokio-util = { version = "0.7", features = ["rt"] }
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
[features]
test-support = []
[dev-dependencies]
https_proxy = { path = ".", features = ["test-support"] }
base64 = "0.22"
rcgen = "0.14"
reqwest = { version = "0.12", features = ["rustls-tls", "json"], default-features = false }
serde_json = "1"
tempfile = "3"
[profile.release]
strip = true
lto = true