-
Notifications
You must be signed in to change notification settings - Fork 106
/
Copy pathCargo.toml
39 lines (35 loc) · 962 Bytes
/
Cargo.toml
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
[package]
name = "good-mitm"
version = "0.3.4"
authors = ["zu1k <i@zu1k.com>"]
edition = "2021"
description = "Use MITM technology to provide features like rewrite, redirect."
readme = "README.md"
homepage = "https://github.com/zu1k/good-mitm"
repository = "https://github.com/zu1k/good-mitm"
license = "MIT"
keywords = ["proxy", "MITM"]
exclude = [".github/", "docs/", "rules/"]
[profile.release]
strip = true
lto = true
opt-level = "s"
codegen-units = 1
[dependencies]
anyhow = "1.0"
clap = { version = "3.0", features = ["derive"] }
core = { path = "./core", package = "good-mitm-core" }
rcgen = { version = "0.9", features = ["x509-parser"] }
thiserror = "1"
log = "0.4"
env_logger = "0.9"
serde = { version = "1.0", features = ["derive"] }
serde_yaml = "0.8"
hyper-proxy = { version = "0.9", default-features = false }
rustls-pemfile = "1.0"
tokio = { version = "1", features = ["rt", "signal"] }
rustls = "0.20.6"
[workspace]
members = [
"core",
]