-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
43 lines (42 loc) · 1.17 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
[package]
name = "ptproxy"
version = "1.2.0"
description = "point-to-point HTTP/1.1 reverse proxy"
license = "GPL-3.0-or-later"
homepage = "https://ptproxy.alba.sh"
repository = "https://github.com/mildsunrise/ptproxy"
keywords = ["reverse-proxy", "quic", "http3"]
categories = ["command-line-utilities"]
edition = "2021"
[dependencies]
bytes = "1"
futures = "0.3.28"
h3 = "0.0.2"
h3-quinn = "0.0.3"
http = "0.2.9"
hyper = { version = "0.14.27", features = ["client", "server", "http1", "runtime"] }
quinn = { version = "0.10.1", default-features = false, features = [
"runtime-tokio",
"tls-rustls",
"ring",
] }
quinn-proto = "0.10.2"
rand = "0.8.5"
rustls = { version = "0.21.5", features = ["dangerous_configuration"] }
rustls-native-certs = "0.6"
rustls-pemfile = "1.0.3"
sd-notify = "0.4.1"
serde = { version = "1.0.171", features = ["derive"] }
socket2 = "0.5.3"
structopt = { version = "0.3.26", features = ["color"] }
tokio = { version = "1.29.1", features = ["full"] }
tokio-util = "0.7.8"
toml = "0.7.6"
tracing = "0.1.10"
tracing-subscriber = { version = "0.3", default-features = false, features = [
"fmt",
"ansi",
"env-filter",
"time",
"tracing-log",
] }