-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
46 lines (41 loc) · 1.3 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
46
[package]
name = "tls-proxy-tunnel"
version = "3.0.0"
edition = "2021"
authors = ["Aleksandar Lazic <[email protected]>"]
license = "Apache-2.0"
description = "Simple and fast TLS-Proxy tunnel in Rust"
readme = "README.md"
homepage = "https://github.com/git001/tls-proxy-tunnel"
repository = "https://github.com/git001/tls-proxy-tunnel"
keywords = ["proxy", "network"]
categories = ["web-programming"]
publish = false
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
exclude = [".*"]
[profile.release]
strip = true
opt-level = "z"
lto = true
codegen-units = 1
incremental = false
[[bin]]
name = "tls-proxy-tunnel"
path = "src/main.rs"
[dependencies]
env_logger = "0.11.3"
futures = "0.3.30"
http-body-util = "0.1.2"
human-duration = "0.1.0"
humantime = "2.1.0"
humantime-serde = "1.1.1"
hyper = { version = "1.3.1", features = ["http1", "server"] }
hyper-util = { version = "0.1.5", features = ["http1", "server", "service", "tokio"] }
log = "0.4.21"
serde = { version = "~1.0", features = ["derive"] }
serde_yml = "~0.0.10"
time = { version = "0.3.1", features = ["local-offset", "formatting"] }
tls-parser = "0.11.0"
tokio = { version = "1.38.0", features = ["full"] }
tokio-util = { version = "0.7.11", features = ["full"] }
url = { version = "2.5.2", features = ["serde"] }