-
Notifications
You must be signed in to change notification settings - Fork 106
/
Copy pathCargo.toml
32 lines (29 loc) · 851 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
[package]
name = "good-mitm"
version = "0.1.0"
authors = ["zu1k <i@lgf.im>"]
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/"]
[profile.release]
lto = true
opt-level = "z"
codegen-units = 1
[dependencies]
bytes = { version = "1", features = ["serde"] }
clap = "2.33.3"
env_logger = "0.9"
fancy-regex = "0.7"
hudsucker = { git = "https://github.com/zu1k/hudsucker.git", branch = "good-mitm" }
lazy_static = "1.4"
log = "0.4"
serde = { version = "1.0", features = ["derive"] }
serde_yaml = "0.8"
tokio = { version = "1", features = ["full"] }
[dev-dependencies]
rcgen = { version = "0.8", features = ["x509-parser"] }