-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathCargo.toml
45 lines (43 loc) · 1.29 KB
/
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
40
41
42
43
44
45
[package]
name = "mitm"
version = "0.1.0"
authors = ["ixaxaar <[email protected]>"]
edition = "2018"
license = "MIT OR Apache-2.0"
description = "MITM-enabled auditing proxy server for outbound traffic."
readme = "README.md"
homepage = "https://github.com/SetuHQ/mitm.rs"
repository = "https://github.com/SetuHQ/mitm.rs"
keywords = ["cli", "mitm", "proxy"]
categories = ["command-line-utilities"]
[dependencies]
log = "0.4"
log4rs = "1.0"
clap = { version = "2.33.3", features = ["yaml"] }
# Serde
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
serde_yaml = "0.8"
base64 = "0.13"
# Network
hyper = { version = "0.14", features = ["full"] }
tokio = { version = "1", features = ["full"] }
# TLS
openssl = "0.10"
openssl-sys = "0.9"
rustls = "0.19"
rustls-native-certs = "0.5"
hyper-tls = "0.5"
hyper-rustls = "0.22"
tokio-rustls = "0.22"
tokio-native-tls = "0.3"
# Utils
futures = "0.3"
futures-util = "0.3"
lazy_static = "1.4"
bytes = "1.0"
lru-cache = "0.1"
colored = "2.0.0"
termcolor = "1.1.2"
[patch.crates-io]
"hyper" = { path = "./lib/hyper" }