-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathCargo.toml
118 lines (92 loc) · 1.85 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
[package]
edition = "2021"
name = "chaussette"
version = "0.1.1"
authors = [
]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "SOCKS5 to HTTP CONNECT Proxy"
documentation = "https://github.com/cloudflare/chaussette/blob/main/README.md"
readme = "README.md"
license-file = "LICENSE"
repository = "https://github.com/cloudflare/chaussette"
[lib]
name = "chaussette"
path = "src/lib.rs"
[[bin]]
name = "chaussette"
path = "src/main.rs"
[dependencies.anyhow]
version = "1.0.95"
[dependencies.boring]
version = "4.3"
[dependencies.bytes]
version = "1.10.0"
[dependencies.clap]
version = "4.5.29"
features = [
"derive",
"env",
]
[dependencies.futures-util]
version = "0.3.31"
[dependencies.h2]
version = "0.4.7"
[dependencies.http]
version = "1.2.0"
[dependencies.http-body]
version = "1.0.1"
[dependencies.http-body-util]
version = "0.1.2"
[dependencies.hyper]
version = "1"
features = [
"client",
"http2",
]
[dependencies.hyper-boring]
version = "4.3"
features = ["hyper1"]
[dependencies.hyper-util]
version = "0.1.10"
features = [
"client",
"client-legacy",
"tokio",
]
[dependencies.socks5-proto]
version = "0.4.1"
[dependencies.socks5-server]
version = "0.10"
[dependencies.thiserror]
version = "2.0.11"
[dependencies.tokio]
version = "1.43.0"
features = ["full"]
[dependencies.tokio-boring]
version = "4.3"
[dependencies.tokio-quiche]
version = "0.2.0"
[dependencies.tokio-util]
version = "0.7.13"
features = ["io"]
[dependencies.tower]
version = "0.5"
features = ["retry"]
[dependencies.tower-service]
version = "0.3.3"
[dependencies.tracing]
version = "0.1.41"
[dependencies.tracing-subscriber]
version = "0.3.19"
[dependencies.url]
version = "2.5.4"