-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathCargo.toml
73 lines (70 loc) · 1.82 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
[profile.release]
codegen-units = 1
debug = 0
lto = true
opt-level = "z"
strip = true
[workspace]
resolver = "2"
members = [
"detox_auth",
"detox_futures",
"detox_hyper",
"detox_net",
"dnsdetox",
"paceval",
"paclib",
"proxydetox",
"proxydetoxlib",
"spnego",
"tools",
]
default-members = [
"paceval",
"proxydetox",
]
exclude = ["tools"]
[workspace.package]
version = "0.9.6"
edition = "2021"
homepage = "https://proxydetox.colorto.cc/"
[workspace.dependencies]
base64 = "0.21"
boa_engine = { version = "0.17", features = ["annex-b"] }
boa_gc = "0.17"
bytes = "1.1"
chrono = "0.4"
clap = { version = "4.1", features = ["derive", "env"] }
default-net = { version = "0.17" }
detox_auth = { path = "detox_auth" }
detox_futures = { path = "detox_futures" }
detox_hyper = { path = "detox_hyper" }
detox_net = { path = "detox_net" }
dirs = "5.0"
futures-util = { version = "0.3", features = [ "alloc" ], default-features = false }
gc = { version = "0.5", features = ["derive"] }
http = "1"
http-body = "1"
http-body-util = "0.1"
hyper = { version = "1.0", features = ["http1", "client", "server"] }
hyper-util = { version = "0.1", features = ["tokio"] }
lazy_static = "1.4"
libc = "0.2"
netrc = { version = "0.4" }
paclib = { path = "paclib" }
pin-project = "1"
proxydetoxlib = { path = "proxydetoxlib" }
rustls = "0.21"
rustls-native-certs = "0.6"
rustls-pemfile = "1.0"
socket2 = { version = "0.5", features = ["all"] }
spnego = { path = "spnego" }
thiserror = "1.0"
tokio = { version = "1", features = ["io-util", "rt-multi-thread", "net", "macros", "sync", "signal"] }
tokio-rustls = "0.24"
tokio-stream = { version = "0.1", features = ["net", "sync"] }
tokio-util = "0.7"
tracing = "0.1"
tracing-attributes = "0.1"
tracing-futures = "0.2"
tracing-subscriber = { version = "0.3", features = ["env-filter"] }