wreq-rb 0.3.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +7 -0
- data/Cargo.lock +2688 -0
- data/Cargo.toml +6 -0
- data/README.md +179 -0
- data/ext/wreq_rb/Cargo.toml +39 -0
- data/ext/wreq_rb/extconf.rb +22 -0
- data/ext/wreq_rb/src/client.rs +565 -0
- data/ext/wreq_rb/src/error.rs +25 -0
- data/ext/wreq_rb/src/lib.rs +20 -0
- data/ext/wreq_rb/src/response.rs +132 -0
- data/lib/wreq-rb/version.rb +5 -0
- data/lib/wreq-rb.rb +17 -0
- data/patches/0001-add-transfer-size-tracking.patch +292 -0
- data/vendor/wreq/Cargo.toml +306 -0
- data/vendor/wreq/LICENSE +202 -0
- data/vendor/wreq/README.md +122 -0
- data/vendor/wreq/examples/cert_store.rs +77 -0
- data/vendor/wreq/examples/connect_via_lower_priority_tokio_runtime.rs +258 -0
- data/vendor/wreq/examples/emulation.rs +118 -0
- data/vendor/wreq/examples/form.rs +14 -0
- data/vendor/wreq/examples/http1_websocket.rs +37 -0
- data/vendor/wreq/examples/http2_websocket.rs +45 -0
- data/vendor/wreq/examples/json_dynamic.rs +41 -0
- data/vendor/wreq/examples/json_typed.rs +47 -0
- data/vendor/wreq/examples/keylog.rs +16 -0
- data/vendor/wreq/examples/request_with_emulation.rs +115 -0
- data/vendor/wreq/examples/request_with_interface.rs +37 -0
- data/vendor/wreq/examples/request_with_local_address.rs +16 -0
- data/vendor/wreq/examples/request_with_proxy.rs +13 -0
- data/vendor/wreq/examples/request_with_redirect.rs +22 -0
- data/vendor/wreq/examples/request_with_version.rs +15 -0
- data/vendor/wreq/examples/tor_socks.rs +24 -0
- data/vendor/wreq/examples/unix_socket.rs +33 -0
- data/vendor/wreq/src/client/body.rs +304 -0
- data/vendor/wreq/src/client/conn/conn.rs +231 -0
- data/vendor/wreq/src/client/conn/connector.rs +549 -0
- data/vendor/wreq/src/client/conn/http.rs +1023 -0
- data/vendor/wreq/src/client/conn/proxy/socks.rs +233 -0
- data/vendor/wreq/src/client/conn/proxy/tunnel.rs +260 -0
- data/vendor/wreq/src/client/conn/proxy.rs +39 -0
- data/vendor/wreq/src/client/conn/tls_info.rs +98 -0
- data/vendor/wreq/src/client/conn/uds.rs +44 -0
- data/vendor/wreq/src/client/conn/verbose.rs +149 -0
- data/vendor/wreq/src/client/conn.rs +323 -0
- data/vendor/wreq/src/client/core/body/incoming.rs +485 -0
- data/vendor/wreq/src/client/core/body/length.rs +118 -0
- data/vendor/wreq/src/client/core/body.rs +34 -0
- data/vendor/wreq/src/client/core/common/buf.rs +149 -0
- data/vendor/wreq/src/client/core/common/rewind.rs +141 -0
- data/vendor/wreq/src/client/core/common/watch.rs +76 -0
- data/vendor/wreq/src/client/core/common.rs +3 -0
- data/vendor/wreq/src/client/core/conn/http1.rs +342 -0
- data/vendor/wreq/src/client/core/conn/http2.rs +307 -0
- data/vendor/wreq/src/client/core/conn.rs +11 -0
- data/vendor/wreq/src/client/core/dispatch.rs +299 -0
- data/vendor/wreq/src/client/core/error.rs +435 -0
- data/vendor/wreq/src/client/core/ext.rs +201 -0
- data/vendor/wreq/src/client/core/http1.rs +178 -0
- data/vendor/wreq/src/client/core/http2.rs +483 -0
- data/vendor/wreq/src/client/core/proto/h1/conn.rs +988 -0
- data/vendor/wreq/src/client/core/proto/h1/decode.rs +1170 -0
- data/vendor/wreq/src/client/core/proto/h1/dispatch.rs +684 -0
- data/vendor/wreq/src/client/core/proto/h1/encode.rs +580 -0
- data/vendor/wreq/src/client/core/proto/h1/io.rs +879 -0
- data/vendor/wreq/src/client/core/proto/h1/role.rs +694 -0
- data/vendor/wreq/src/client/core/proto/h1.rs +104 -0
- data/vendor/wreq/src/client/core/proto/h2/client.rs +650 -0
- data/vendor/wreq/src/client/core/proto/h2/ping.rs +539 -0
- data/vendor/wreq/src/client/core/proto/h2.rs +379 -0
- data/vendor/wreq/src/client/core/proto/headers.rs +138 -0
- data/vendor/wreq/src/client/core/proto.rs +58 -0
- data/vendor/wreq/src/client/core/rt/bounds.rs +57 -0
- data/vendor/wreq/src/client/core/rt/timer.rs +150 -0
- data/vendor/wreq/src/client/core/rt/tokio.rs +99 -0
- data/vendor/wreq/src/client/core/rt.rs +25 -0
- data/vendor/wreq/src/client/core/upgrade.rs +267 -0
- data/vendor/wreq/src/client/core.rs +16 -0
- data/vendor/wreq/src/client/emulation.rs +161 -0
- data/vendor/wreq/src/client/http/client/error.rs +142 -0
- data/vendor/wreq/src/client/http/client/exec.rs +29 -0
- data/vendor/wreq/src/client/http/client/extra.rs +77 -0
- data/vendor/wreq/src/client/http/client/lazy.rs +79 -0
- data/vendor/wreq/src/client/http/client/pool.rs +1105 -0
- data/vendor/wreq/src/client/http/client/util.rs +104 -0
- data/vendor/wreq/src/client/http/client.rs +1003 -0
- data/vendor/wreq/src/client/http/future.rs +99 -0
- data/vendor/wreq/src/client/http.rs +1629 -0
- data/vendor/wreq/src/client/layer/config/options.rs +156 -0
- data/vendor/wreq/src/client/layer/config.rs +116 -0
- data/vendor/wreq/src/client/layer/cookie.rs +161 -0
- data/vendor/wreq/src/client/layer/decoder.rs +139 -0
- data/vendor/wreq/src/client/layer/redirect/future.rs +270 -0
- data/vendor/wreq/src/client/layer/redirect/policy.rs +63 -0
- data/vendor/wreq/src/client/layer/redirect.rs +145 -0
- data/vendor/wreq/src/client/layer/retry/classify.rs +105 -0
- data/vendor/wreq/src/client/layer/retry/scope.rs +51 -0
- data/vendor/wreq/src/client/layer/retry.rs +151 -0
- data/vendor/wreq/src/client/layer/timeout/body.rs +233 -0
- data/vendor/wreq/src/client/layer/timeout/future.rs +90 -0
- data/vendor/wreq/src/client/layer/timeout.rs +177 -0
- data/vendor/wreq/src/client/layer.rs +15 -0
- data/vendor/wreq/src/client/multipart.rs +717 -0
- data/vendor/wreq/src/client/request.rs +818 -0
- data/vendor/wreq/src/client/response.rs +534 -0
- data/vendor/wreq/src/client/ws/json.rs +99 -0
- data/vendor/wreq/src/client/ws/message.rs +453 -0
- data/vendor/wreq/src/client/ws.rs +714 -0
- data/vendor/wreq/src/client.rs +27 -0
- data/vendor/wreq/src/config.rs +140 -0
- data/vendor/wreq/src/cookie.rs +579 -0
- data/vendor/wreq/src/dns/gai.rs +249 -0
- data/vendor/wreq/src/dns/hickory.rs +78 -0
- data/vendor/wreq/src/dns/resolve.rs +180 -0
- data/vendor/wreq/src/dns.rs +69 -0
- data/vendor/wreq/src/error.rs +502 -0
- data/vendor/wreq/src/ext.rs +398 -0
- data/vendor/wreq/src/hash.rs +143 -0
- data/vendor/wreq/src/header.rs +506 -0
- data/vendor/wreq/src/into_uri.rs +187 -0
- data/vendor/wreq/src/lib.rs +586 -0
- data/vendor/wreq/src/proxy/mac.rs +82 -0
- data/vendor/wreq/src/proxy/matcher.rs +806 -0
- data/vendor/wreq/src/proxy/uds.rs +66 -0
- data/vendor/wreq/src/proxy/win.rs +31 -0
- data/vendor/wreq/src/proxy.rs +569 -0
- data/vendor/wreq/src/redirect.rs +575 -0
- data/vendor/wreq/src/retry.rs +198 -0
- data/vendor/wreq/src/sync.rs +129 -0
- data/vendor/wreq/src/tls/conn/cache.rs +123 -0
- data/vendor/wreq/src/tls/conn/cert_compression.rs +125 -0
- data/vendor/wreq/src/tls/conn/ext.rs +82 -0
- data/vendor/wreq/src/tls/conn/macros.rs +34 -0
- data/vendor/wreq/src/tls/conn/service.rs +138 -0
- data/vendor/wreq/src/tls/conn.rs +681 -0
- data/vendor/wreq/src/tls/keylog/handle.rs +64 -0
- data/vendor/wreq/src/tls/keylog.rs +99 -0
- data/vendor/wreq/src/tls/options.rs +464 -0
- data/vendor/wreq/src/tls/x509/identity.rs +122 -0
- data/vendor/wreq/src/tls/x509/parser.rs +71 -0
- data/vendor/wreq/src/tls/x509/store.rs +228 -0
- data/vendor/wreq/src/tls/x509.rs +68 -0
- data/vendor/wreq/src/tls.rs +154 -0
- data/vendor/wreq/src/trace.rs +55 -0
- data/vendor/wreq/src/util.rs +122 -0
- data/vendor/wreq/tests/badssl.rs +228 -0
- data/vendor/wreq/tests/brotli.rs +350 -0
- data/vendor/wreq/tests/client.rs +1098 -0
- data/vendor/wreq/tests/connector_layers.rs +227 -0
- data/vendor/wreq/tests/cookie.rs +306 -0
- data/vendor/wreq/tests/deflate.rs +347 -0
- data/vendor/wreq/tests/emulation.rs +260 -0
- data/vendor/wreq/tests/gzip.rs +347 -0
- data/vendor/wreq/tests/layers.rs +261 -0
- data/vendor/wreq/tests/multipart.rs +165 -0
- data/vendor/wreq/tests/proxy.rs +438 -0
- data/vendor/wreq/tests/redirect.rs +629 -0
- data/vendor/wreq/tests/retry.rs +135 -0
- data/vendor/wreq/tests/support/delay_server.rs +117 -0
- data/vendor/wreq/tests/support/error.rs +16 -0
- data/vendor/wreq/tests/support/layer.rs +183 -0
- data/vendor/wreq/tests/support/mod.rs +9 -0
- data/vendor/wreq/tests/support/server.rs +232 -0
- data/vendor/wreq/tests/timeouts.rs +281 -0
- data/vendor/wreq/tests/unix_socket.rs +135 -0
- data/vendor/wreq/tests/upgrade.rs +98 -0
- data/vendor/wreq/tests/zstd.rs +559 -0
- metadata +225 -0
data/Cargo.lock
ADDED
|
@@ -0,0 +1,2688 @@
|
|
|
1
|
+
# This file is automatically @generated by Cargo.
|
|
2
|
+
# It is not intended for manual editing.
|
|
3
|
+
version = 4
|
|
4
|
+
|
|
5
|
+
[[package]]
|
|
6
|
+
name = "adler2"
|
|
7
|
+
version = "2.0.1"
|
|
8
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
9
|
+
checksum = "320119579fcad9c21884f5c4861d16174d0e06250625266f50fe6898340abefa"
|
|
10
|
+
|
|
11
|
+
[[package]]
|
|
12
|
+
name = "ahash"
|
|
13
|
+
version = "0.8.12"
|
|
14
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
15
|
+
checksum = "5a15f179cd60c4584b8a8c596927aadc462e27f2ca70c04e0071964a73ba7a75"
|
|
16
|
+
dependencies = [
|
|
17
|
+
"cfg-if",
|
|
18
|
+
"once_cell",
|
|
19
|
+
"version_check",
|
|
20
|
+
"zerocopy",
|
|
21
|
+
]
|
|
22
|
+
|
|
23
|
+
[[package]]
|
|
24
|
+
name = "aho-corasick"
|
|
25
|
+
version = "1.1.4"
|
|
26
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
27
|
+
checksum = "ddd31a130427c27518df266943a5308ed92d4b226cc639f5a8f1002816174301"
|
|
28
|
+
dependencies = [
|
|
29
|
+
"memchr",
|
|
30
|
+
]
|
|
31
|
+
|
|
32
|
+
[[package]]
|
|
33
|
+
name = "alloc-no-stdlib"
|
|
34
|
+
version = "2.0.4"
|
|
35
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
36
|
+
checksum = "cc7bb162ec39d46ab1ca8c77bf72e890535becd1751bb45f64c597edb4c8c6b3"
|
|
37
|
+
|
|
38
|
+
[[package]]
|
|
39
|
+
name = "alloc-stdlib"
|
|
40
|
+
version = "0.2.2"
|
|
41
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
42
|
+
checksum = "94fb8275041c72129eb51b7d0322c29b8387a0386127718b096429201a5d6ece"
|
|
43
|
+
dependencies = [
|
|
44
|
+
"alloc-no-stdlib",
|
|
45
|
+
]
|
|
46
|
+
|
|
47
|
+
[[package]]
|
|
48
|
+
name = "async-compression"
|
|
49
|
+
version = "0.4.39"
|
|
50
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
51
|
+
checksum = "68650b7df54f0293fd061972a0fb05aaf4fc0879d3b3d21a638a182c5c543b9f"
|
|
52
|
+
dependencies = [
|
|
53
|
+
"compression-codecs",
|
|
54
|
+
"compression-core",
|
|
55
|
+
"pin-project-lite",
|
|
56
|
+
"tokio",
|
|
57
|
+
]
|
|
58
|
+
|
|
59
|
+
[[package]]
|
|
60
|
+
name = "async-trait"
|
|
61
|
+
version = "0.1.89"
|
|
62
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
63
|
+
checksum = "9035ad2d096bed7955a320ee7e2230574d28fd3c3a0f186cbea1ff3c7eed5dbb"
|
|
64
|
+
dependencies = [
|
|
65
|
+
"proc-macro2",
|
|
66
|
+
"quote",
|
|
67
|
+
"syn",
|
|
68
|
+
]
|
|
69
|
+
|
|
70
|
+
[[package]]
|
|
71
|
+
name = "atomic-waker"
|
|
72
|
+
version = "1.1.2"
|
|
73
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
74
|
+
checksum = "1505bd5d3d116872e7271a6d4e16d81d0c8570876c8de68093a09ac269d8aac0"
|
|
75
|
+
|
|
76
|
+
[[package]]
|
|
77
|
+
name = "bindgen"
|
|
78
|
+
version = "0.69.5"
|
|
79
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
80
|
+
checksum = "271383c67ccabffb7381723dea0672a673f292304fcb45c01cc648c7a8d58088"
|
|
81
|
+
dependencies = [
|
|
82
|
+
"bitflags",
|
|
83
|
+
"cexpr",
|
|
84
|
+
"clang-sys",
|
|
85
|
+
"itertools 0.12.1",
|
|
86
|
+
"lazy_static",
|
|
87
|
+
"lazycell",
|
|
88
|
+
"proc-macro2",
|
|
89
|
+
"quote",
|
|
90
|
+
"regex",
|
|
91
|
+
"rustc-hash 1.1.0",
|
|
92
|
+
"shlex",
|
|
93
|
+
"syn",
|
|
94
|
+
]
|
|
95
|
+
|
|
96
|
+
[[package]]
|
|
97
|
+
name = "bindgen"
|
|
98
|
+
version = "0.72.1"
|
|
99
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
100
|
+
checksum = "993776b509cfb49c750f11b8f07a46fa23e0a1386ffc01fb1e7d343efc387895"
|
|
101
|
+
dependencies = [
|
|
102
|
+
"bitflags",
|
|
103
|
+
"cexpr",
|
|
104
|
+
"clang-sys",
|
|
105
|
+
"itertools 0.13.0",
|
|
106
|
+
"proc-macro2",
|
|
107
|
+
"quote",
|
|
108
|
+
"regex",
|
|
109
|
+
"rustc-hash 2.1.1",
|
|
110
|
+
"shlex",
|
|
111
|
+
"syn",
|
|
112
|
+
]
|
|
113
|
+
|
|
114
|
+
[[package]]
|
|
115
|
+
name = "bitflags"
|
|
116
|
+
version = "2.11.0"
|
|
117
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
118
|
+
checksum = "843867be96c8daad0d758b57df9392b6d8d271134fce549de6ce169ff98a92af"
|
|
119
|
+
|
|
120
|
+
[[package]]
|
|
121
|
+
name = "block-buffer"
|
|
122
|
+
version = "0.10.4"
|
|
123
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
124
|
+
checksum = "3078c7629b62d3f0439517fa394996acacc5cbc91c5a20d8c658e77abd503a71"
|
|
125
|
+
dependencies = [
|
|
126
|
+
"generic-array",
|
|
127
|
+
]
|
|
128
|
+
|
|
129
|
+
[[package]]
|
|
130
|
+
name = "boring-sys2"
|
|
131
|
+
version = "5.0.0-alpha.12"
|
|
132
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
133
|
+
checksum = "6708f31d293423b48662069e699b8a79ac1c2a5d8de2c560c2cc0958e480d377"
|
|
134
|
+
dependencies = [
|
|
135
|
+
"bindgen 0.72.1",
|
|
136
|
+
"cmake",
|
|
137
|
+
"fs_extra",
|
|
138
|
+
"fslock",
|
|
139
|
+
]
|
|
140
|
+
|
|
141
|
+
[[package]]
|
|
142
|
+
name = "boring2"
|
|
143
|
+
version = "5.0.0-alpha.12"
|
|
144
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
145
|
+
checksum = "d190e62fc07d3433265641a2df3109baab591175c42a39a5f2379b584f3f0768"
|
|
146
|
+
dependencies = [
|
|
147
|
+
"bitflags",
|
|
148
|
+
"boring-sys2",
|
|
149
|
+
"foreign-types",
|
|
150
|
+
"libc",
|
|
151
|
+
"openssl-macros",
|
|
152
|
+
]
|
|
153
|
+
|
|
154
|
+
[[package]]
|
|
155
|
+
name = "brotli"
|
|
156
|
+
version = "8.0.2"
|
|
157
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
158
|
+
checksum = "4bd8b9603c7aa97359dbd97ecf258968c95f3adddd6db2f7e7a5bef101c84560"
|
|
159
|
+
dependencies = [
|
|
160
|
+
"alloc-no-stdlib",
|
|
161
|
+
"alloc-stdlib",
|
|
162
|
+
"brotli-decompressor",
|
|
163
|
+
]
|
|
164
|
+
|
|
165
|
+
[[package]]
|
|
166
|
+
name = "brotli-decompressor"
|
|
167
|
+
version = "5.0.0"
|
|
168
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
169
|
+
checksum = "874bb8112abecc98cbd6d81ea4fa7e94fb9449648c93cc89aa40c81c24d7de03"
|
|
170
|
+
dependencies = [
|
|
171
|
+
"alloc-no-stdlib",
|
|
172
|
+
"alloc-stdlib",
|
|
173
|
+
]
|
|
174
|
+
|
|
175
|
+
[[package]]
|
|
176
|
+
name = "bumpalo"
|
|
177
|
+
version = "3.19.1"
|
|
178
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
179
|
+
checksum = "5dd9dc738b7a8311c7ade152424974d8115f2cdad61e8dab8dac9f2362298510"
|
|
180
|
+
|
|
181
|
+
[[package]]
|
|
182
|
+
name = "bytes"
|
|
183
|
+
version = "1.11.1"
|
|
184
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
185
|
+
checksum = "1e748733b7cbc798e1434b6ac524f0c1ff2ab456fe201501e6497c8417a4fc33"
|
|
186
|
+
|
|
187
|
+
[[package]]
|
|
188
|
+
name = "cc"
|
|
189
|
+
version = "1.2.55"
|
|
190
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
191
|
+
checksum = "47b26a0954ae34af09b50f0de26458fa95369a0d478d8236d3f93082b219bd29"
|
|
192
|
+
dependencies = [
|
|
193
|
+
"find-msvc-tools",
|
|
194
|
+
"jobserver",
|
|
195
|
+
"libc",
|
|
196
|
+
"shlex",
|
|
197
|
+
]
|
|
198
|
+
|
|
199
|
+
[[package]]
|
|
200
|
+
name = "cexpr"
|
|
201
|
+
version = "0.6.0"
|
|
202
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
203
|
+
checksum = "6fac387a98bb7c37292057cffc56d62ecb629900026402633ae9160df93a8766"
|
|
204
|
+
dependencies = [
|
|
205
|
+
"nom",
|
|
206
|
+
]
|
|
207
|
+
|
|
208
|
+
[[package]]
|
|
209
|
+
name = "cfg-if"
|
|
210
|
+
version = "1.0.4"
|
|
211
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
212
|
+
checksum = "9330f8b2ff13f34540b44e946ef35111825727b38d33286ef986142615121801"
|
|
213
|
+
|
|
214
|
+
[[package]]
|
|
215
|
+
name = "clang-sys"
|
|
216
|
+
version = "1.8.1"
|
|
217
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
218
|
+
checksum = "0b023947811758c97c59bf9d1c188fd619ad4718dcaa767947df1cadb14f39f4"
|
|
219
|
+
dependencies = [
|
|
220
|
+
"glob",
|
|
221
|
+
"libc",
|
|
222
|
+
"libloading",
|
|
223
|
+
]
|
|
224
|
+
|
|
225
|
+
[[package]]
|
|
226
|
+
name = "cmake"
|
|
227
|
+
version = "0.1.57"
|
|
228
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
229
|
+
checksum = "75443c44cd6b379beb8c5b45d85d0773baf31cce901fe7bb252f4eff3008ef7d"
|
|
230
|
+
dependencies = [
|
|
231
|
+
"cc",
|
|
232
|
+
]
|
|
233
|
+
|
|
234
|
+
[[package]]
|
|
235
|
+
name = "compression-codecs"
|
|
236
|
+
version = "0.4.36"
|
|
237
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
238
|
+
checksum = "00828ba6fd27b45a448e57dbfe84f1029d4c9f26b368157e9a448a5f49a2ec2a"
|
|
239
|
+
dependencies = [
|
|
240
|
+
"brotli",
|
|
241
|
+
"compression-core",
|
|
242
|
+
"flate2",
|
|
243
|
+
"memchr",
|
|
244
|
+
"zstd",
|
|
245
|
+
"zstd-safe",
|
|
246
|
+
]
|
|
247
|
+
|
|
248
|
+
[[package]]
|
|
249
|
+
name = "compression-core"
|
|
250
|
+
version = "0.4.31"
|
|
251
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
252
|
+
checksum = "75984efb6ed102a0d42db99afb6c1948f0380d1d91808d5529916e6c08b49d8d"
|
|
253
|
+
|
|
254
|
+
[[package]]
|
|
255
|
+
name = "cookie"
|
|
256
|
+
version = "0.18.1"
|
|
257
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
258
|
+
checksum = "4ddef33a339a91ea89fb53151bd0a4689cfce27055c291dfa69945475d22c747"
|
|
259
|
+
dependencies = [
|
|
260
|
+
"time",
|
|
261
|
+
"version_check",
|
|
262
|
+
]
|
|
263
|
+
|
|
264
|
+
[[package]]
|
|
265
|
+
name = "core-foundation"
|
|
266
|
+
version = "0.9.4"
|
|
267
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
268
|
+
checksum = "91e195e091a93c46f7102ec7818a2aa394e1e1771c3ab4825963fa03e45afb8f"
|
|
269
|
+
dependencies = [
|
|
270
|
+
"core-foundation-sys",
|
|
271
|
+
"libc",
|
|
272
|
+
]
|
|
273
|
+
|
|
274
|
+
[[package]]
|
|
275
|
+
name = "core-foundation-sys"
|
|
276
|
+
version = "0.8.7"
|
|
277
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
278
|
+
checksum = "773648b94d0e5d620f64f280777445740e61fe701025087ec8b57f45c791888b"
|
|
279
|
+
|
|
280
|
+
[[package]]
|
|
281
|
+
name = "cpufeatures"
|
|
282
|
+
version = "0.2.17"
|
|
283
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
284
|
+
checksum = "59ed5838eebb26a2bb2e58f6d5b5316989ae9d08bab10e0e6d103e656d1b0280"
|
|
285
|
+
dependencies = [
|
|
286
|
+
"libc",
|
|
287
|
+
]
|
|
288
|
+
|
|
289
|
+
[[package]]
|
|
290
|
+
name = "crc32fast"
|
|
291
|
+
version = "1.5.0"
|
|
292
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
293
|
+
checksum = "9481c1c90cbf2ac953f07c8d4a58aa3945c425b7185c9154d67a65e4230da511"
|
|
294
|
+
dependencies = [
|
|
295
|
+
"cfg-if",
|
|
296
|
+
]
|
|
297
|
+
|
|
298
|
+
[[package]]
|
|
299
|
+
name = "critical-section"
|
|
300
|
+
version = "1.2.0"
|
|
301
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
302
|
+
checksum = "790eea4361631c5e7d22598ecd5723ff611904e3344ce8720784c93e3d83d40b"
|
|
303
|
+
|
|
304
|
+
[[package]]
|
|
305
|
+
name = "crossbeam-channel"
|
|
306
|
+
version = "0.5.15"
|
|
307
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
308
|
+
checksum = "82b8f8f868b36967f9606790d1903570de9ceaf870a7bf9fbbd3016d636a2cb2"
|
|
309
|
+
dependencies = [
|
|
310
|
+
"crossbeam-utils",
|
|
311
|
+
]
|
|
312
|
+
|
|
313
|
+
[[package]]
|
|
314
|
+
name = "crossbeam-epoch"
|
|
315
|
+
version = "0.9.18"
|
|
316
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
317
|
+
checksum = "5b82ac4a3c2ca9c3460964f020e1402edd5753411d7737aa39c3714ad1b5420e"
|
|
318
|
+
dependencies = [
|
|
319
|
+
"crossbeam-utils",
|
|
320
|
+
]
|
|
321
|
+
|
|
322
|
+
[[package]]
|
|
323
|
+
name = "crossbeam-utils"
|
|
324
|
+
version = "0.8.21"
|
|
325
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
326
|
+
checksum = "d0a5c400df2834b80a4c3327b3aad3a4c4cd4de0629063962b03235697506a28"
|
|
327
|
+
|
|
328
|
+
[[package]]
|
|
329
|
+
name = "crypto-common"
|
|
330
|
+
version = "0.1.7"
|
|
331
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
332
|
+
checksum = "78c8292055d1c1df0cce5d180393dc8cce0abec0a7102adb6c7b1eef6016d60a"
|
|
333
|
+
dependencies = [
|
|
334
|
+
"generic-array",
|
|
335
|
+
"typenum",
|
|
336
|
+
]
|
|
337
|
+
|
|
338
|
+
[[package]]
|
|
339
|
+
name = "data-encoding"
|
|
340
|
+
version = "2.10.0"
|
|
341
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
342
|
+
checksum = "d7a1e2f27636f116493b8b860f5546edb47c8d8f8ea73e1d2a20be88e28d1fea"
|
|
343
|
+
|
|
344
|
+
[[package]]
|
|
345
|
+
name = "deranged"
|
|
346
|
+
version = "0.5.5"
|
|
347
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
348
|
+
checksum = "ececcb659e7ba858fb4f10388c250a7252eb0a27373f1a72b8748afdd248e587"
|
|
349
|
+
dependencies = [
|
|
350
|
+
"powerfmt",
|
|
351
|
+
]
|
|
352
|
+
|
|
353
|
+
[[package]]
|
|
354
|
+
name = "digest"
|
|
355
|
+
version = "0.10.7"
|
|
356
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
357
|
+
checksum = "9ed9a281f7bc9b7576e61468ba615a66a5c8cfdff42420a70aa82701a3b1e292"
|
|
358
|
+
dependencies = [
|
|
359
|
+
"block-buffer",
|
|
360
|
+
"crypto-common",
|
|
361
|
+
]
|
|
362
|
+
|
|
363
|
+
[[package]]
|
|
364
|
+
name = "displaydoc"
|
|
365
|
+
version = "0.2.5"
|
|
366
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
367
|
+
checksum = "97369cbbc041bc366949bc74d34658d6cda5621039731c6310521892a3a20ae0"
|
|
368
|
+
dependencies = [
|
|
369
|
+
"proc-macro2",
|
|
370
|
+
"quote",
|
|
371
|
+
"syn",
|
|
372
|
+
]
|
|
373
|
+
|
|
374
|
+
[[package]]
|
|
375
|
+
name = "either"
|
|
376
|
+
version = "1.15.0"
|
|
377
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
378
|
+
checksum = "48c757948c5ede0e46177b7add2e67155f70e33c07fea8284df6576da70b3719"
|
|
379
|
+
|
|
380
|
+
[[package]]
|
|
381
|
+
name = "encoding_rs"
|
|
382
|
+
version = "0.8.35"
|
|
383
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
384
|
+
checksum = "75030f3c4f45dafd7586dd6780965a8c7e8e285a5ecb86713e63a79c5b2766f3"
|
|
385
|
+
dependencies = [
|
|
386
|
+
"cfg-if",
|
|
387
|
+
]
|
|
388
|
+
|
|
389
|
+
[[package]]
|
|
390
|
+
name = "enum-as-inner"
|
|
391
|
+
version = "0.6.1"
|
|
392
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
393
|
+
checksum = "a1e6a265c649f3f5979b601d26f1d05ada116434c87741c9493cb56218f76cbc"
|
|
394
|
+
dependencies = [
|
|
395
|
+
"heck",
|
|
396
|
+
"proc-macro2",
|
|
397
|
+
"quote",
|
|
398
|
+
"syn",
|
|
399
|
+
]
|
|
400
|
+
|
|
401
|
+
[[package]]
|
|
402
|
+
name = "env_logger"
|
|
403
|
+
version = "0.10.2"
|
|
404
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
405
|
+
checksum = "4cd405aab171cb85d6735e5c8d9db038c17d3ca007a4d2c25f337935c3d90580"
|
|
406
|
+
dependencies = [
|
|
407
|
+
"humantime",
|
|
408
|
+
"is-terminal",
|
|
409
|
+
"log",
|
|
410
|
+
"regex",
|
|
411
|
+
"termcolor",
|
|
412
|
+
]
|
|
413
|
+
|
|
414
|
+
[[package]]
|
|
415
|
+
name = "equivalent"
|
|
416
|
+
version = "1.0.2"
|
|
417
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
418
|
+
checksum = "877a4ace8713b0bcf2a4e7eec82529c029f1d0619886d18145fea96c3ffe5c0f"
|
|
419
|
+
|
|
420
|
+
[[package]]
|
|
421
|
+
name = "errno"
|
|
422
|
+
version = "0.3.14"
|
|
423
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
424
|
+
checksum = "39cab71617ae0d63f51a36d69f866391735b51691dbda63cf6f96d042b63efeb"
|
|
425
|
+
dependencies = [
|
|
426
|
+
"libc",
|
|
427
|
+
"windows-sys 0.61.2",
|
|
428
|
+
]
|
|
429
|
+
|
|
430
|
+
[[package]]
|
|
431
|
+
name = "find-msvc-tools"
|
|
432
|
+
version = "0.1.9"
|
|
433
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
434
|
+
checksum = "5baebc0774151f905a1a2cc41989300b1e6fbb29aff0ceffa1064fdd3088d582"
|
|
435
|
+
|
|
436
|
+
[[package]]
|
|
437
|
+
name = "flate2"
|
|
438
|
+
version = "1.1.9"
|
|
439
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
440
|
+
checksum = "843fba2746e448b37e26a819579957415c8cef339bf08564fe8b7ddbd959573c"
|
|
441
|
+
dependencies = [
|
|
442
|
+
"crc32fast",
|
|
443
|
+
"miniz_oxide",
|
|
444
|
+
]
|
|
445
|
+
|
|
446
|
+
[[package]]
|
|
447
|
+
name = "fnv"
|
|
448
|
+
version = "1.0.7"
|
|
449
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
450
|
+
checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1"
|
|
451
|
+
|
|
452
|
+
[[package]]
|
|
453
|
+
name = "foreign-types"
|
|
454
|
+
version = "0.5.0"
|
|
455
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
456
|
+
checksum = "d737d9aa519fb7b749cbc3b962edcf310a8dd1f4b67c91c4f83975dbdd17d965"
|
|
457
|
+
dependencies = [
|
|
458
|
+
"foreign-types-macros",
|
|
459
|
+
"foreign-types-shared",
|
|
460
|
+
]
|
|
461
|
+
|
|
462
|
+
[[package]]
|
|
463
|
+
name = "foreign-types-macros"
|
|
464
|
+
version = "0.2.3"
|
|
465
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
466
|
+
checksum = "1a5c6c585bc94aaf2c7b51dd4c2ba22680844aba4c687be581871a6f518c5742"
|
|
467
|
+
dependencies = [
|
|
468
|
+
"proc-macro2",
|
|
469
|
+
"quote",
|
|
470
|
+
"syn",
|
|
471
|
+
]
|
|
472
|
+
|
|
473
|
+
[[package]]
|
|
474
|
+
name = "foreign-types-shared"
|
|
475
|
+
version = "0.3.1"
|
|
476
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
477
|
+
checksum = "aa9a19cbb55df58761df49b23516a86d432839add4af60fc256da840f66ed35b"
|
|
478
|
+
|
|
479
|
+
[[package]]
|
|
480
|
+
name = "form_urlencoded"
|
|
481
|
+
version = "1.2.2"
|
|
482
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
483
|
+
checksum = "cb4cb245038516f5f85277875cdaa4f7d2c9a0fa0468de06ed190163b1581fcf"
|
|
484
|
+
dependencies = [
|
|
485
|
+
"percent-encoding",
|
|
486
|
+
]
|
|
487
|
+
|
|
488
|
+
[[package]]
|
|
489
|
+
name = "fs_extra"
|
|
490
|
+
version = "1.3.0"
|
|
491
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
492
|
+
checksum = "42703706b716c37f96a77aea830392ad231f44c9e9a67872fa5548707e11b11c"
|
|
493
|
+
|
|
494
|
+
[[package]]
|
|
495
|
+
name = "fslock"
|
|
496
|
+
version = "0.2.1"
|
|
497
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
498
|
+
checksum = "04412b8935272e3a9bae6f48c7bfff74c2911f60525404edfdd28e49884c3bfb"
|
|
499
|
+
dependencies = [
|
|
500
|
+
"libc",
|
|
501
|
+
"winapi",
|
|
502
|
+
]
|
|
503
|
+
|
|
504
|
+
[[package]]
|
|
505
|
+
name = "futures"
|
|
506
|
+
version = "0.3.31"
|
|
507
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
508
|
+
checksum = "65bc07b1a8bc7c85c5f2e110c476c7389b4554ba72af57d8445ea63a576b0876"
|
|
509
|
+
dependencies = [
|
|
510
|
+
"futures-channel",
|
|
511
|
+
"futures-core",
|
|
512
|
+
"futures-io",
|
|
513
|
+
"futures-sink",
|
|
514
|
+
"futures-task",
|
|
515
|
+
"futures-util",
|
|
516
|
+
]
|
|
517
|
+
|
|
518
|
+
[[package]]
|
|
519
|
+
name = "futures-channel"
|
|
520
|
+
version = "0.3.31"
|
|
521
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
522
|
+
checksum = "2dff15bf788c671c1934e366d07e30c1814a8ef514e1af724a602e8a2fbe1b10"
|
|
523
|
+
dependencies = [
|
|
524
|
+
"futures-core",
|
|
525
|
+
"futures-sink",
|
|
526
|
+
]
|
|
527
|
+
|
|
528
|
+
[[package]]
|
|
529
|
+
name = "futures-core"
|
|
530
|
+
version = "0.3.31"
|
|
531
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
532
|
+
checksum = "05f29059c0c2090612e8d742178b0580d2dc940c837851ad723096f87af6663e"
|
|
533
|
+
|
|
534
|
+
[[package]]
|
|
535
|
+
name = "futures-io"
|
|
536
|
+
version = "0.3.31"
|
|
537
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
538
|
+
checksum = "9e5c1b78ca4aae1ac06c48a526a655760685149f0d465d21f37abfe57ce075c6"
|
|
539
|
+
|
|
540
|
+
[[package]]
|
|
541
|
+
name = "futures-sink"
|
|
542
|
+
version = "0.3.31"
|
|
543
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
544
|
+
checksum = "e575fab7d1e0dcb8d0c7bcf9a63ee213816ab51902e6d244a95819acacf1d4f7"
|
|
545
|
+
|
|
546
|
+
[[package]]
|
|
547
|
+
name = "futures-task"
|
|
548
|
+
version = "0.3.31"
|
|
549
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
550
|
+
checksum = "f90f7dce0722e95104fcb095585910c0977252f286e354b5e3bd38902cd99988"
|
|
551
|
+
|
|
552
|
+
[[package]]
|
|
553
|
+
name = "futures-util"
|
|
554
|
+
version = "0.3.31"
|
|
555
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
556
|
+
checksum = "9fa08315bb612088cc391249efdc3bc77536f16c91f6cf495e6fbe85b20a4a81"
|
|
557
|
+
dependencies = [
|
|
558
|
+
"futures-channel",
|
|
559
|
+
"futures-core",
|
|
560
|
+
"futures-io",
|
|
561
|
+
"futures-sink",
|
|
562
|
+
"futures-task",
|
|
563
|
+
"memchr",
|
|
564
|
+
"pin-project-lite",
|
|
565
|
+
"pin-utils",
|
|
566
|
+
"slab",
|
|
567
|
+
]
|
|
568
|
+
|
|
569
|
+
[[package]]
|
|
570
|
+
name = "generic-array"
|
|
571
|
+
version = "0.14.7"
|
|
572
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
573
|
+
checksum = "85649ca51fd72272d7821adaf274ad91c288277713d9c18820d8499a7ff69e9a"
|
|
574
|
+
dependencies = [
|
|
575
|
+
"typenum",
|
|
576
|
+
"version_check",
|
|
577
|
+
]
|
|
578
|
+
|
|
579
|
+
[[package]]
|
|
580
|
+
name = "getrandom"
|
|
581
|
+
version = "0.2.17"
|
|
582
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
583
|
+
checksum = "ff2abc00be7fca6ebc474524697ae276ad847ad0a6b3faa4bcb027e9a4614ad0"
|
|
584
|
+
dependencies = [
|
|
585
|
+
"cfg-if",
|
|
586
|
+
"libc",
|
|
587
|
+
"wasi",
|
|
588
|
+
]
|
|
589
|
+
|
|
590
|
+
[[package]]
|
|
591
|
+
name = "getrandom"
|
|
592
|
+
version = "0.3.4"
|
|
593
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
594
|
+
checksum = "899def5c37c4fd7b2664648c28120ecec138e4d395b459e5ca34f9cce2dd77fd"
|
|
595
|
+
dependencies = [
|
|
596
|
+
"cfg-if",
|
|
597
|
+
"libc",
|
|
598
|
+
"r-efi",
|
|
599
|
+
"wasip2",
|
|
600
|
+
]
|
|
601
|
+
|
|
602
|
+
[[package]]
|
|
603
|
+
name = "glob"
|
|
604
|
+
version = "0.3.3"
|
|
605
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
606
|
+
checksum = "0cc23270f6e1808e30a928bdc84dea0b9b4136a8bc82338574f23baf47bbd280"
|
|
607
|
+
|
|
608
|
+
[[package]]
|
|
609
|
+
name = "h2"
|
|
610
|
+
version = "0.4.13"
|
|
611
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
612
|
+
checksum = "2f44da3a8150a6703ed5d34e164b875fd14c2cdab9af1252a9a1020bde2bdc54"
|
|
613
|
+
dependencies = [
|
|
614
|
+
"atomic-waker",
|
|
615
|
+
"bytes",
|
|
616
|
+
"fnv",
|
|
617
|
+
"futures-core",
|
|
618
|
+
"futures-sink",
|
|
619
|
+
"http",
|
|
620
|
+
"indexmap",
|
|
621
|
+
"slab",
|
|
622
|
+
"tokio",
|
|
623
|
+
"tokio-util",
|
|
624
|
+
"tracing",
|
|
625
|
+
]
|
|
626
|
+
|
|
627
|
+
[[package]]
|
|
628
|
+
name = "hashbrown"
|
|
629
|
+
version = "0.13.2"
|
|
630
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
631
|
+
checksum = "43a3c133739dddd0d2990f9a4bdf8eb4b21ef50e4851ca85ab661199821d510e"
|
|
632
|
+
|
|
633
|
+
[[package]]
|
|
634
|
+
name = "hashbrown"
|
|
635
|
+
version = "0.16.1"
|
|
636
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
637
|
+
checksum = "841d1cc9bed7f9236f321df977030373f4a4163ae1a7dbfe1a51a2c1a51d9100"
|
|
638
|
+
|
|
639
|
+
[[package]]
|
|
640
|
+
name = "heck"
|
|
641
|
+
version = "0.5.0"
|
|
642
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
643
|
+
checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea"
|
|
644
|
+
|
|
645
|
+
[[package]]
|
|
646
|
+
name = "hermit-abi"
|
|
647
|
+
version = "0.5.2"
|
|
648
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
649
|
+
checksum = "fc0fef456e4baa96da950455cd02c081ca953b141298e41db3fc7e36b1da849c"
|
|
650
|
+
|
|
651
|
+
[[package]]
|
|
652
|
+
name = "hickory-proto"
|
|
653
|
+
version = "0.25.2"
|
|
654
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
655
|
+
checksum = "f8a6fe56c0038198998a6f217ca4e7ef3a5e51f46163bd6dd60b5c71ca6c6502"
|
|
656
|
+
dependencies = [
|
|
657
|
+
"async-trait",
|
|
658
|
+
"cfg-if",
|
|
659
|
+
"data-encoding",
|
|
660
|
+
"enum-as-inner",
|
|
661
|
+
"futures-channel",
|
|
662
|
+
"futures-io",
|
|
663
|
+
"futures-util",
|
|
664
|
+
"idna",
|
|
665
|
+
"ipnet",
|
|
666
|
+
"once_cell",
|
|
667
|
+
"rand",
|
|
668
|
+
"ring",
|
|
669
|
+
"thiserror 2.0.18",
|
|
670
|
+
"tinyvec",
|
|
671
|
+
"tokio",
|
|
672
|
+
"tracing",
|
|
673
|
+
"url",
|
|
674
|
+
]
|
|
675
|
+
|
|
676
|
+
[[package]]
|
|
677
|
+
name = "hickory-resolver"
|
|
678
|
+
version = "0.25.2"
|
|
679
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
680
|
+
checksum = "dc62a9a99b0bfb44d2ab95a7208ac952d31060efc16241c87eaf36406fecf87a"
|
|
681
|
+
dependencies = [
|
|
682
|
+
"cfg-if",
|
|
683
|
+
"futures-util",
|
|
684
|
+
"hickory-proto",
|
|
685
|
+
"ipconfig",
|
|
686
|
+
"moka",
|
|
687
|
+
"once_cell",
|
|
688
|
+
"parking_lot",
|
|
689
|
+
"rand",
|
|
690
|
+
"resolv-conf",
|
|
691
|
+
"smallvec",
|
|
692
|
+
"thiserror 2.0.18",
|
|
693
|
+
"tokio",
|
|
694
|
+
"tracing",
|
|
695
|
+
]
|
|
696
|
+
|
|
697
|
+
[[package]]
|
|
698
|
+
name = "http"
|
|
699
|
+
version = "1.4.0"
|
|
700
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
701
|
+
checksum = "e3ba2a386d7f85a81f119ad7498ebe444d2e22c2af0b86b069416ace48b3311a"
|
|
702
|
+
dependencies = [
|
|
703
|
+
"bytes",
|
|
704
|
+
"itoa",
|
|
705
|
+
]
|
|
706
|
+
|
|
707
|
+
[[package]]
|
|
708
|
+
name = "http-body"
|
|
709
|
+
version = "1.0.1"
|
|
710
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
711
|
+
checksum = "1efedce1fb8e6913f23e0c92de8e62cd5b772a67e7b3946df930a62566c93184"
|
|
712
|
+
dependencies = [
|
|
713
|
+
"bytes",
|
|
714
|
+
"http",
|
|
715
|
+
]
|
|
716
|
+
|
|
717
|
+
[[package]]
|
|
718
|
+
name = "http-body-util"
|
|
719
|
+
version = "0.1.3"
|
|
720
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
721
|
+
checksum = "b021d93e26becf5dc7e1b75b1bed1fd93124b374ceb73f43d4d4eafec896a64a"
|
|
722
|
+
dependencies = [
|
|
723
|
+
"bytes",
|
|
724
|
+
"futures-core",
|
|
725
|
+
"http",
|
|
726
|
+
"http-body",
|
|
727
|
+
"pin-project-lite",
|
|
728
|
+
]
|
|
729
|
+
|
|
730
|
+
[[package]]
|
|
731
|
+
name = "http2"
|
|
732
|
+
version = "0.5.12"
|
|
733
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
734
|
+
checksum = "faafa0f89e637a3524a9c081bcf825996e841afac53e691943e72049cea56f0a"
|
|
735
|
+
dependencies = [
|
|
736
|
+
"atomic-waker",
|
|
737
|
+
"bytes",
|
|
738
|
+
"fnv",
|
|
739
|
+
"futures-core",
|
|
740
|
+
"futures-sink",
|
|
741
|
+
"http",
|
|
742
|
+
"indexmap",
|
|
743
|
+
"parking_lot",
|
|
744
|
+
"slab",
|
|
745
|
+
"smallvec",
|
|
746
|
+
"tokio",
|
|
747
|
+
"tokio-util",
|
|
748
|
+
"tracing",
|
|
749
|
+
]
|
|
750
|
+
|
|
751
|
+
[[package]]
|
|
752
|
+
name = "httparse"
|
|
753
|
+
version = "1.10.1"
|
|
754
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
755
|
+
checksum = "6dbf3de79e51f3d586ab4cb9d5c3e2c14aa28ed23d180cf89b4df0454a69cc87"
|
|
756
|
+
|
|
757
|
+
[[package]]
|
|
758
|
+
name = "httpdate"
|
|
759
|
+
version = "1.0.3"
|
|
760
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
761
|
+
checksum = "df3b46402a9d5adb4c86a0cf463f42e19994e3ee891101b1841f30a545cb49a9"
|
|
762
|
+
|
|
763
|
+
[[package]]
|
|
764
|
+
name = "humantime"
|
|
765
|
+
version = "2.3.0"
|
|
766
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
767
|
+
checksum = "135b12329e5e3ce057a9f972339ea52bc954fe1e9358ef27f95e89716fbc5424"
|
|
768
|
+
|
|
769
|
+
[[package]]
|
|
770
|
+
name = "hyper"
|
|
771
|
+
version = "1.8.1"
|
|
772
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
773
|
+
checksum = "2ab2d4f250c3d7b1c9fcdff1cece94ea4e2dfbec68614f7b87cb205f24ca9d11"
|
|
774
|
+
dependencies = [
|
|
775
|
+
"atomic-waker",
|
|
776
|
+
"bytes",
|
|
777
|
+
"futures-channel",
|
|
778
|
+
"futures-core",
|
|
779
|
+
"h2",
|
|
780
|
+
"http",
|
|
781
|
+
"http-body",
|
|
782
|
+
"httparse",
|
|
783
|
+
"httpdate",
|
|
784
|
+
"itoa",
|
|
785
|
+
"pin-project-lite",
|
|
786
|
+
"pin-utils",
|
|
787
|
+
"smallvec",
|
|
788
|
+
"tokio",
|
|
789
|
+
]
|
|
790
|
+
|
|
791
|
+
[[package]]
|
|
792
|
+
name = "hyper-util"
|
|
793
|
+
version = "0.1.20"
|
|
794
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
795
|
+
checksum = "96547c2556ec9d12fb1578c4eaf448b04993e7fb79cbaad930a656880a6bdfa0"
|
|
796
|
+
dependencies = [
|
|
797
|
+
"bytes",
|
|
798
|
+
"http",
|
|
799
|
+
"http-body",
|
|
800
|
+
"hyper",
|
|
801
|
+
"pin-project-lite",
|
|
802
|
+
"tokio",
|
|
803
|
+
]
|
|
804
|
+
|
|
805
|
+
[[package]]
|
|
806
|
+
name = "icu_collections"
|
|
807
|
+
version = "2.1.1"
|
|
808
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
809
|
+
checksum = "4c6b649701667bbe825c3b7e6388cb521c23d88644678e83c0c4d0a621a34b43"
|
|
810
|
+
dependencies = [
|
|
811
|
+
"displaydoc",
|
|
812
|
+
"potential_utf",
|
|
813
|
+
"yoke",
|
|
814
|
+
"zerofrom",
|
|
815
|
+
"zerovec",
|
|
816
|
+
]
|
|
817
|
+
|
|
818
|
+
[[package]]
|
|
819
|
+
name = "icu_locale_core"
|
|
820
|
+
version = "2.1.1"
|
|
821
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
822
|
+
checksum = "edba7861004dd3714265b4db54a3c390e880ab658fec5f7db895fae2046b5bb6"
|
|
823
|
+
dependencies = [
|
|
824
|
+
"displaydoc",
|
|
825
|
+
"litemap",
|
|
826
|
+
"tinystr",
|
|
827
|
+
"writeable",
|
|
828
|
+
"zerovec",
|
|
829
|
+
]
|
|
830
|
+
|
|
831
|
+
[[package]]
|
|
832
|
+
name = "icu_normalizer"
|
|
833
|
+
version = "2.1.1"
|
|
834
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
835
|
+
checksum = "5f6c8828b67bf8908d82127b2054ea1b4427ff0230ee9141c54251934ab1b599"
|
|
836
|
+
dependencies = [
|
|
837
|
+
"icu_collections",
|
|
838
|
+
"icu_normalizer_data",
|
|
839
|
+
"icu_properties",
|
|
840
|
+
"icu_provider",
|
|
841
|
+
"smallvec",
|
|
842
|
+
"zerovec",
|
|
843
|
+
]
|
|
844
|
+
|
|
845
|
+
[[package]]
|
|
846
|
+
name = "icu_normalizer_data"
|
|
847
|
+
version = "2.1.1"
|
|
848
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
849
|
+
checksum = "7aedcccd01fc5fe81e6b489c15b247b8b0690feb23304303a9e560f37efc560a"
|
|
850
|
+
|
|
851
|
+
[[package]]
|
|
852
|
+
name = "icu_properties"
|
|
853
|
+
version = "2.1.2"
|
|
854
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
855
|
+
checksum = "020bfc02fe870ec3a66d93e677ccca0562506e5872c650f893269e08615d74ec"
|
|
856
|
+
dependencies = [
|
|
857
|
+
"icu_collections",
|
|
858
|
+
"icu_locale_core",
|
|
859
|
+
"icu_properties_data",
|
|
860
|
+
"icu_provider",
|
|
861
|
+
"zerotrie",
|
|
862
|
+
"zerovec",
|
|
863
|
+
]
|
|
864
|
+
|
|
865
|
+
[[package]]
|
|
866
|
+
name = "icu_properties_data"
|
|
867
|
+
version = "2.1.2"
|
|
868
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
869
|
+
checksum = "616c294cf8d725c6afcd8f55abc17c56464ef6211f9ed59cccffe534129c77af"
|
|
870
|
+
|
|
871
|
+
[[package]]
|
|
872
|
+
name = "icu_provider"
|
|
873
|
+
version = "2.1.1"
|
|
874
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
875
|
+
checksum = "85962cf0ce02e1e0a629cc34e7ca3e373ce20dda4c4d7294bbd0bf1fdb59e614"
|
|
876
|
+
dependencies = [
|
|
877
|
+
"displaydoc",
|
|
878
|
+
"icu_locale_core",
|
|
879
|
+
"writeable",
|
|
880
|
+
"yoke",
|
|
881
|
+
"zerofrom",
|
|
882
|
+
"zerotrie",
|
|
883
|
+
"zerovec",
|
|
884
|
+
]
|
|
885
|
+
|
|
886
|
+
[[package]]
|
|
887
|
+
name = "idna"
|
|
888
|
+
version = "1.1.0"
|
|
889
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
890
|
+
checksum = "3b0875f23caa03898994f6ddc501886a45c7d3d62d04d2d90788d47be1b1e4de"
|
|
891
|
+
dependencies = [
|
|
892
|
+
"idna_adapter",
|
|
893
|
+
"smallvec",
|
|
894
|
+
"utf8_iter",
|
|
895
|
+
]
|
|
896
|
+
|
|
897
|
+
[[package]]
|
|
898
|
+
name = "idna_adapter"
|
|
899
|
+
version = "1.2.1"
|
|
900
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
901
|
+
checksum = "3acae9609540aa318d1bc588455225fb2085b9ed0c4f6bd0d9d5bcd86f1a0344"
|
|
902
|
+
dependencies = [
|
|
903
|
+
"icu_normalizer",
|
|
904
|
+
"icu_properties",
|
|
905
|
+
]
|
|
906
|
+
|
|
907
|
+
[[package]]
|
|
908
|
+
name = "indexmap"
|
|
909
|
+
version = "2.13.0"
|
|
910
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
911
|
+
checksum = "7714e70437a7dc3ac8eb7e6f8df75fd8eb422675fc7678aff7364301092b1017"
|
|
912
|
+
dependencies = [
|
|
913
|
+
"equivalent",
|
|
914
|
+
"hashbrown 0.16.1",
|
|
915
|
+
]
|
|
916
|
+
|
|
917
|
+
[[package]]
|
|
918
|
+
name = "ipconfig"
|
|
919
|
+
version = "0.3.2"
|
|
920
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
921
|
+
checksum = "b58db92f96b720de98181bbbe63c831e87005ab460c1bf306eb2622b4707997f"
|
|
922
|
+
dependencies = [
|
|
923
|
+
"socket2 0.5.10",
|
|
924
|
+
"widestring",
|
|
925
|
+
"windows-sys 0.48.0",
|
|
926
|
+
"winreg",
|
|
927
|
+
]
|
|
928
|
+
|
|
929
|
+
[[package]]
|
|
930
|
+
name = "ipnet"
|
|
931
|
+
version = "2.11.0"
|
|
932
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
933
|
+
checksum = "469fb0b9cefa57e3ef31275ee7cacb78f2fdca44e4765491884a2b119d4eb130"
|
|
934
|
+
|
|
935
|
+
[[package]]
|
|
936
|
+
name = "is-terminal"
|
|
937
|
+
version = "0.4.17"
|
|
938
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
939
|
+
checksum = "3640c1c38b8e4e43584d8df18be5fc6b0aa314ce6ebf51b53313d4306cca8e46"
|
|
940
|
+
dependencies = [
|
|
941
|
+
"hermit-abi",
|
|
942
|
+
"libc",
|
|
943
|
+
"windows-sys 0.61.2",
|
|
944
|
+
]
|
|
945
|
+
|
|
946
|
+
[[package]]
|
|
947
|
+
name = "itertools"
|
|
948
|
+
version = "0.12.1"
|
|
949
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
950
|
+
checksum = "ba291022dbbd398a455acf126c1e341954079855bc60dfdda641363bd6922569"
|
|
951
|
+
dependencies = [
|
|
952
|
+
"either",
|
|
953
|
+
]
|
|
954
|
+
|
|
955
|
+
[[package]]
|
|
956
|
+
name = "itertools"
|
|
957
|
+
version = "0.13.0"
|
|
958
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
959
|
+
checksum = "413ee7dfc52ee1a4949ceeb7dbc8a33f2d6c088194d9f922fb8318faf1f01186"
|
|
960
|
+
dependencies = [
|
|
961
|
+
"either",
|
|
962
|
+
]
|
|
963
|
+
|
|
964
|
+
[[package]]
|
|
965
|
+
name = "itoa"
|
|
966
|
+
version = "1.0.17"
|
|
967
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
968
|
+
checksum = "92ecc6618181def0457392ccd0ee51198e065e016d1d527a7ac1b6dc7c1f09d2"
|
|
969
|
+
|
|
970
|
+
[[package]]
|
|
971
|
+
name = "jobserver"
|
|
972
|
+
version = "0.1.34"
|
|
973
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
974
|
+
checksum = "9afb3de4395d6b3e67a780b6de64b51c978ecf11cb9a462c66be7d4ca9039d33"
|
|
975
|
+
dependencies = [
|
|
976
|
+
"getrandom 0.3.4",
|
|
977
|
+
"libc",
|
|
978
|
+
]
|
|
979
|
+
|
|
980
|
+
[[package]]
|
|
981
|
+
name = "js-sys"
|
|
982
|
+
version = "0.3.85"
|
|
983
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
984
|
+
checksum = "8c942ebf8e95485ca0d52d97da7c5a2c387d0e7f0ba4c35e93bfcaee045955b3"
|
|
985
|
+
dependencies = [
|
|
986
|
+
"once_cell",
|
|
987
|
+
"wasm-bindgen",
|
|
988
|
+
]
|
|
989
|
+
|
|
990
|
+
[[package]]
|
|
991
|
+
name = "lazy_static"
|
|
992
|
+
version = "1.5.0"
|
|
993
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
994
|
+
checksum = "bbd2bcb4c963f2ddae06a2efc7e9f3591312473c50c6685e1f298068316e66fe"
|
|
995
|
+
|
|
996
|
+
[[package]]
|
|
997
|
+
name = "lazycell"
|
|
998
|
+
version = "1.3.0"
|
|
999
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1000
|
+
checksum = "830d08ce1d1d941e6b30645f1a0eb5643013d835ce3779a5fc208261dbe10f55"
|
|
1001
|
+
|
|
1002
|
+
[[package]]
|
|
1003
|
+
name = "libc"
|
|
1004
|
+
version = "0.2.182"
|
|
1005
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1006
|
+
checksum = "6800badb6cb2082ffd7b6a67e6125bb39f18782f793520caee8cb8846be06112"
|
|
1007
|
+
|
|
1008
|
+
[[package]]
|
|
1009
|
+
name = "libloading"
|
|
1010
|
+
version = "0.8.9"
|
|
1011
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1012
|
+
checksum = "d7c4b02199fee7c5d21a5ae7d8cfa79a6ef5bb2fc834d6e9058e89c825efdc55"
|
|
1013
|
+
dependencies = [
|
|
1014
|
+
"cfg-if",
|
|
1015
|
+
"windows-link",
|
|
1016
|
+
]
|
|
1017
|
+
|
|
1018
|
+
[[package]]
|
|
1019
|
+
name = "litemap"
|
|
1020
|
+
version = "0.8.1"
|
|
1021
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1022
|
+
checksum = "6373607a59f0be73a39b6fe456b8192fcc3585f602af20751600e974dd455e77"
|
|
1023
|
+
|
|
1024
|
+
[[package]]
|
|
1025
|
+
name = "lock_api"
|
|
1026
|
+
version = "0.4.14"
|
|
1027
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1028
|
+
checksum = "224399e74b87b5f3557511d98dff8b14089b3dadafcab6bb93eab67d3aace965"
|
|
1029
|
+
dependencies = [
|
|
1030
|
+
"scopeguard",
|
|
1031
|
+
]
|
|
1032
|
+
|
|
1033
|
+
[[package]]
|
|
1034
|
+
name = "log"
|
|
1035
|
+
version = "0.4.29"
|
|
1036
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1037
|
+
checksum = "5e5032e24019045c762d3c0f28f5b6b8bbf38563a65908389bf7978758920897"
|
|
1038
|
+
|
|
1039
|
+
[[package]]
|
|
1040
|
+
name = "magnus"
|
|
1041
|
+
version = "0.8.2"
|
|
1042
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1043
|
+
checksum = "3b36a5b126bbe97eb0d02d07acfeb327036c6319fd816139a49824a83b7f9012"
|
|
1044
|
+
dependencies = [
|
|
1045
|
+
"magnus-macros",
|
|
1046
|
+
"rb-sys",
|
|
1047
|
+
"rb-sys-env",
|
|
1048
|
+
"seq-macro",
|
|
1049
|
+
]
|
|
1050
|
+
|
|
1051
|
+
[[package]]
|
|
1052
|
+
name = "magnus-macros"
|
|
1053
|
+
version = "0.8.0"
|
|
1054
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1055
|
+
checksum = "47607461fd8e1513cb4f2076c197d8092d921a1ea75bd08af97398f593751892"
|
|
1056
|
+
dependencies = [
|
|
1057
|
+
"proc-macro2",
|
|
1058
|
+
"quote",
|
|
1059
|
+
"syn",
|
|
1060
|
+
]
|
|
1061
|
+
|
|
1062
|
+
[[package]]
|
|
1063
|
+
name = "memchr"
|
|
1064
|
+
version = "2.8.0"
|
|
1065
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1066
|
+
checksum = "f8ca58f447f06ed17d5fc4043ce1b10dd205e060fb3ce5b979b8ed8e59ff3f79"
|
|
1067
|
+
|
|
1068
|
+
[[package]]
|
|
1069
|
+
name = "mime"
|
|
1070
|
+
version = "0.3.17"
|
|
1071
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1072
|
+
checksum = "6877bb514081ee2a7ff5ef9de3281f14a4dd4bceac4c09388074a6b5df8a139a"
|
|
1073
|
+
|
|
1074
|
+
[[package]]
|
|
1075
|
+
name = "mime_guess"
|
|
1076
|
+
version = "2.0.5"
|
|
1077
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1078
|
+
checksum = "f7c44f8e672c00fe5308fa235f821cb4198414e1c77935c1ab6948d3fd78550e"
|
|
1079
|
+
dependencies = [
|
|
1080
|
+
"mime",
|
|
1081
|
+
"unicase",
|
|
1082
|
+
]
|
|
1083
|
+
|
|
1084
|
+
[[package]]
|
|
1085
|
+
name = "minimal-lexical"
|
|
1086
|
+
version = "0.2.1"
|
|
1087
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1088
|
+
checksum = "68354c5c6bd36d73ff3feceb05efa59b6acb7626617f4962be322a825e61f79a"
|
|
1089
|
+
|
|
1090
|
+
[[package]]
|
|
1091
|
+
name = "miniz_oxide"
|
|
1092
|
+
version = "0.8.9"
|
|
1093
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1094
|
+
checksum = "1fa76a2c86f704bdb222d66965fb3d63269ce38518b83cb0575fca855ebb6316"
|
|
1095
|
+
dependencies = [
|
|
1096
|
+
"adler2",
|
|
1097
|
+
"simd-adler32",
|
|
1098
|
+
]
|
|
1099
|
+
|
|
1100
|
+
[[package]]
|
|
1101
|
+
name = "mio"
|
|
1102
|
+
version = "1.1.1"
|
|
1103
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1104
|
+
checksum = "a69bcab0ad47271a0234d9422b131806bf3968021e5dc9328caf2d4cd58557fc"
|
|
1105
|
+
dependencies = [
|
|
1106
|
+
"libc",
|
|
1107
|
+
"wasi",
|
|
1108
|
+
"windows-sys 0.61.2",
|
|
1109
|
+
]
|
|
1110
|
+
|
|
1111
|
+
[[package]]
|
|
1112
|
+
name = "moka"
|
|
1113
|
+
version = "0.12.13"
|
|
1114
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1115
|
+
checksum = "b4ac832c50ced444ef6be0767a008b02c106a909ba79d1d830501e94b96f6b7e"
|
|
1116
|
+
dependencies = [
|
|
1117
|
+
"crossbeam-channel",
|
|
1118
|
+
"crossbeam-epoch",
|
|
1119
|
+
"crossbeam-utils",
|
|
1120
|
+
"equivalent",
|
|
1121
|
+
"parking_lot",
|
|
1122
|
+
"portable-atomic",
|
|
1123
|
+
"smallvec",
|
|
1124
|
+
"tagptr",
|
|
1125
|
+
"uuid",
|
|
1126
|
+
]
|
|
1127
|
+
|
|
1128
|
+
[[package]]
|
|
1129
|
+
name = "nom"
|
|
1130
|
+
version = "7.1.3"
|
|
1131
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1132
|
+
checksum = "d273983c5a657a70a3e8f2a01329822f3b8c8172b73826411a55751e404a0a4a"
|
|
1133
|
+
dependencies = [
|
|
1134
|
+
"memchr",
|
|
1135
|
+
"minimal-lexical",
|
|
1136
|
+
]
|
|
1137
|
+
|
|
1138
|
+
[[package]]
|
|
1139
|
+
name = "nu-ansi-term"
|
|
1140
|
+
version = "0.50.3"
|
|
1141
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1142
|
+
checksum = "7957b9740744892f114936ab4a57b3f487491bbeafaf8083688b16841a4240e5"
|
|
1143
|
+
dependencies = [
|
|
1144
|
+
"windows-sys 0.61.2",
|
|
1145
|
+
]
|
|
1146
|
+
|
|
1147
|
+
[[package]]
|
|
1148
|
+
name = "num-conv"
|
|
1149
|
+
version = "0.2.0"
|
|
1150
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1151
|
+
checksum = "cf97ec579c3c42f953ef76dbf8d55ac91fb219dde70e49aa4a6b7d74e9919050"
|
|
1152
|
+
|
|
1153
|
+
[[package]]
|
|
1154
|
+
name = "once_cell"
|
|
1155
|
+
version = "1.21.3"
|
|
1156
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1157
|
+
checksum = "42f5e15c9953c5e4ccceeb2e7382a716482c34515315f7b03532b8b4e8393d2d"
|
|
1158
|
+
dependencies = [
|
|
1159
|
+
"critical-section",
|
|
1160
|
+
"portable-atomic",
|
|
1161
|
+
]
|
|
1162
|
+
|
|
1163
|
+
[[package]]
|
|
1164
|
+
name = "openssl-macros"
|
|
1165
|
+
version = "0.1.1"
|
|
1166
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1167
|
+
checksum = "a948666b637a0f465e8564c73e89d4dde00d72d4d473cc972f390fc3dcee7d9c"
|
|
1168
|
+
dependencies = [
|
|
1169
|
+
"proc-macro2",
|
|
1170
|
+
"quote",
|
|
1171
|
+
"syn",
|
|
1172
|
+
]
|
|
1173
|
+
|
|
1174
|
+
[[package]]
|
|
1175
|
+
name = "parking_lot"
|
|
1176
|
+
version = "0.12.5"
|
|
1177
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1178
|
+
checksum = "93857453250e3077bd71ff98b6a65ea6621a19bb0f559a85248955ac12c45a1a"
|
|
1179
|
+
dependencies = [
|
|
1180
|
+
"lock_api",
|
|
1181
|
+
"parking_lot_core",
|
|
1182
|
+
]
|
|
1183
|
+
|
|
1184
|
+
[[package]]
|
|
1185
|
+
name = "parking_lot_core"
|
|
1186
|
+
version = "0.9.12"
|
|
1187
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1188
|
+
checksum = "2621685985a2ebf1c516881c026032ac7deafcda1a2c9b7850dc81e3dfcb64c1"
|
|
1189
|
+
dependencies = [
|
|
1190
|
+
"cfg-if",
|
|
1191
|
+
"libc",
|
|
1192
|
+
"redox_syscall",
|
|
1193
|
+
"smallvec",
|
|
1194
|
+
"windows-link",
|
|
1195
|
+
]
|
|
1196
|
+
|
|
1197
|
+
[[package]]
|
|
1198
|
+
name = "percent-encoding"
|
|
1199
|
+
version = "2.3.2"
|
|
1200
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1201
|
+
checksum = "9b4f627cb1b25917193a259e49bdad08f671f8d9708acfd5fe0a8c1455d87220"
|
|
1202
|
+
|
|
1203
|
+
[[package]]
|
|
1204
|
+
name = "pin-project-lite"
|
|
1205
|
+
version = "0.2.16"
|
|
1206
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1207
|
+
checksum = "3b3cff922bd51709b605d9ead9aa71031d81447142d828eb4a6eba76fe619f9b"
|
|
1208
|
+
|
|
1209
|
+
[[package]]
|
|
1210
|
+
name = "pin-utils"
|
|
1211
|
+
version = "0.1.0"
|
|
1212
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1213
|
+
checksum = "8b870d8c151b6f2fb93e84a13146138f05d02ed11c7e7c54f8826aaaf7c9f184"
|
|
1214
|
+
|
|
1215
|
+
[[package]]
|
|
1216
|
+
name = "pkg-config"
|
|
1217
|
+
version = "0.3.32"
|
|
1218
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1219
|
+
checksum = "7edddbd0b52d732b21ad9a5fab5c704c14cd949e5e9a1ec5929a24fded1b904c"
|
|
1220
|
+
|
|
1221
|
+
[[package]]
|
|
1222
|
+
name = "portable-atomic"
|
|
1223
|
+
version = "1.13.1"
|
|
1224
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1225
|
+
checksum = "c33a9471896f1c69cecef8d20cbe2f7accd12527ce60845ff44c153bb2a21b49"
|
|
1226
|
+
|
|
1227
|
+
[[package]]
|
|
1228
|
+
name = "potential_utf"
|
|
1229
|
+
version = "0.1.4"
|
|
1230
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1231
|
+
checksum = "b73949432f5e2a09657003c25bca5e19a0e9c84f8058ca374f49e0ebe605af77"
|
|
1232
|
+
dependencies = [
|
|
1233
|
+
"zerovec",
|
|
1234
|
+
]
|
|
1235
|
+
|
|
1236
|
+
[[package]]
|
|
1237
|
+
name = "powerfmt"
|
|
1238
|
+
version = "0.2.0"
|
|
1239
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1240
|
+
checksum = "439ee305def115ba05938db6eb1644ff94165c5ab5e9420d1c1bcedbba909391"
|
|
1241
|
+
|
|
1242
|
+
[[package]]
|
|
1243
|
+
name = "ppv-lite86"
|
|
1244
|
+
version = "0.2.21"
|
|
1245
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1246
|
+
checksum = "85eae3c4ed2f50dcfe72643da4befc30deadb458a9b590d720cde2f2b1e97da9"
|
|
1247
|
+
dependencies = [
|
|
1248
|
+
"zerocopy",
|
|
1249
|
+
]
|
|
1250
|
+
|
|
1251
|
+
[[package]]
|
|
1252
|
+
name = "pretty_env_logger"
|
|
1253
|
+
version = "0.5.0"
|
|
1254
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1255
|
+
checksum = "865724d4dbe39d9f3dd3b52b88d859d66bcb2d6a0acfd5ea68a65fb66d4bdc1c"
|
|
1256
|
+
dependencies = [
|
|
1257
|
+
"env_logger",
|
|
1258
|
+
"log",
|
|
1259
|
+
]
|
|
1260
|
+
|
|
1261
|
+
[[package]]
|
|
1262
|
+
name = "proc-macro2"
|
|
1263
|
+
version = "1.0.106"
|
|
1264
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1265
|
+
checksum = "8fd00f0bb2e90d81d1044c2b32617f68fcb9fa3bb7640c23e9c748e53fb30934"
|
|
1266
|
+
dependencies = [
|
|
1267
|
+
"unicode-ident",
|
|
1268
|
+
]
|
|
1269
|
+
|
|
1270
|
+
[[package]]
|
|
1271
|
+
name = "quote"
|
|
1272
|
+
version = "1.0.44"
|
|
1273
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1274
|
+
checksum = "21b2ebcf727b7760c461f091f9f0f539b77b8e87f2fd88131e7f1b433b3cece4"
|
|
1275
|
+
dependencies = [
|
|
1276
|
+
"proc-macro2",
|
|
1277
|
+
]
|
|
1278
|
+
|
|
1279
|
+
[[package]]
|
|
1280
|
+
name = "r-efi"
|
|
1281
|
+
version = "5.3.0"
|
|
1282
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1283
|
+
checksum = "69cdb34c158ceb288df11e18b4bd39de994f6657d83847bdffdbd7f346754b0f"
|
|
1284
|
+
|
|
1285
|
+
[[package]]
|
|
1286
|
+
name = "rand"
|
|
1287
|
+
version = "0.9.2"
|
|
1288
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1289
|
+
checksum = "6db2770f06117d490610c7488547d543617b21bfa07796d7a12f6f1bd53850d1"
|
|
1290
|
+
dependencies = [
|
|
1291
|
+
"rand_chacha",
|
|
1292
|
+
"rand_core",
|
|
1293
|
+
]
|
|
1294
|
+
|
|
1295
|
+
[[package]]
|
|
1296
|
+
name = "rand_chacha"
|
|
1297
|
+
version = "0.9.0"
|
|
1298
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1299
|
+
checksum = "d3022b5f1df60f26e1ffddd6c66e8aa15de382ae63b3a0c1bfc0e4d3e3f325cb"
|
|
1300
|
+
dependencies = [
|
|
1301
|
+
"ppv-lite86",
|
|
1302
|
+
"rand_core",
|
|
1303
|
+
]
|
|
1304
|
+
|
|
1305
|
+
[[package]]
|
|
1306
|
+
name = "rand_core"
|
|
1307
|
+
version = "0.9.5"
|
|
1308
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1309
|
+
checksum = "76afc826de14238e6e8c374ddcc1fa19e374fd8dd986b0d2af0d02377261d83c"
|
|
1310
|
+
dependencies = [
|
|
1311
|
+
"getrandom 0.3.4",
|
|
1312
|
+
]
|
|
1313
|
+
|
|
1314
|
+
[[package]]
|
|
1315
|
+
name = "rb-sys"
|
|
1316
|
+
version = "0.9.124"
|
|
1317
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1318
|
+
checksum = "c85c4188462601e2aa1469def389c17228566f82ea72f137ed096f21591bc489"
|
|
1319
|
+
dependencies = [
|
|
1320
|
+
"rb-sys-build",
|
|
1321
|
+
]
|
|
1322
|
+
|
|
1323
|
+
[[package]]
|
|
1324
|
+
name = "rb-sys-build"
|
|
1325
|
+
version = "0.9.124"
|
|
1326
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1327
|
+
checksum = "568068db4102230882e6d4ae8de6632e224ca75fe5970f6e026a04e91ed635d3"
|
|
1328
|
+
dependencies = [
|
|
1329
|
+
"bindgen 0.69.5",
|
|
1330
|
+
"lazy_static",
|
|
1331
|
+
"proc-macro2",
|
|
1332
|
+
"quote",
|
|
1333
|
+
"regex",
|
|
1334
|
+
"shell-words",
|
|
1335
|
+
"syn",
|
|
1336
|
+
]
|
|
1337
|
+
|
|
1338
|
+
[[package]]
|
|
1339
|
+
name = "rb-sys-env"
|
|
1340
|
+
version = "0.2.3"
|
|
1341
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1342
|
+
checksum = "cca7ad6a7e21e72151d56fe2495a259b5670e204c3adac41ee7ef676ea08117a"
|
|
1343
|
+
|
|
1344
|
+
[[package]]
|
|
1345
|
+
name = "redox_syscall"
|
|
1346
|
+
version = "0.5.18"
|
|
1347
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1348
|
+
checksum = "ed2bf2547551a7053d6fdfafda3f938979645c44812fbfcda098faae3f1a362d"
|
|
1349
|
+
dependencies = [
|
|
1350
|
+
"bitflags",
|
|
1351
|
+
]
|
|
1352
|
+
|
|
1353
|
+
[[package]]
|
|
1354
|
+
name = "regex"
|
|
1355
|
+
version = "1.12.3"
|
|
1356
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1357
|
+
checksum = "e10754a14b9137dd7b1e3e5b0493cc9171fdd105e0ab477f51b72e7f3ac0e276"
|
|
1358
|
+
dependencies = [
|
|
1359
|
+
"aho-corasick",
|
|
1360
|
+
"memchr",
|
|
1361
|
+
"regex-automata",
|
|
1362
|
+
"regex-syntax",
|
|
1363
|
+
]
|
|
1364
|
+
|
|
1365
|
+
[[package]]
|
|
1366
|
+
name = "regex-automata"
|
|
1367
|
+
version = "0.4.14"
|
|
1368
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1369
|
+
checksum = "6e1dd4122fc1595e8162618945476892eefca7b88c52820e74af6262213cae8f"
|
|
1370
|
+
dependencies = [
|
|
1371
|
+
"aho-corasick",
|
|
1372
|
+
"memchr",
|
|
1373
|
+
"regex-syntax",
|
|
1374
|
+
]
|
|
1375
|
+
|
|
1376
|
+
[[package]]
|
|
1377
|
+
name = "regex-syntax"
|
|
1378
|
+
version = "0.8.9"
|
|
1379
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1380
|
+
checksum = "a96887878f22d7bad8a3b6dc5b7440e0ada9a245242924394987b21cf2210a4c"
|
|
1381
|
+
|
|
1382
|
+
[[package]]
|
|
1383
|
+
name = "resolv-conf"
|
|
1384
|
+
version = "0.7.6"
|
|
1385
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1386
|
+
checksum = "1e061d1b48cb8d38042de4ae0a7a6401009d6143dc80d2e2d6f31f0bdd6470c7"
|
|
1387
|
+
|
|
1388
|
+
[[package]]
|
|
1389
|
+
name = "ring"
|
|
1390
|
+
version = "0.17.14"
|
|
1391
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1392
|
+
checksum = "a4689e6c2294d81e88dc6261c768b63bc4fcdb852be6d1352498b114f61383b7"
|
|
1393
|
+
dependencies = [
|
|
1394
|
+
"cc",
|
|
1395
|
+
"cfg-if",
|
|
1396
|
+
"getrandom 0.2.17",
|
|
1397
|
+
"libc",
|
|
1398
|
+
"untrusted",
|
|
1399
|
+
"windows-sys 0.52.0",
|
|
1400
|
+
]
|
|
1401
|
+
|
|
1402
|
+
[[package]]
|
|
1403
|
+
name = "rustc-hash"
|
|
1404
|
+
version = "1.1.0"
|
|
1405
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1406
|
+
checksum = "08d43f7aa6b08d49f382cde6a7982047c3426db949b1424bc4b7ec9ae12c6ce2"
|
|
1407
|
+
|
|
1408
|
+
[[package]]
|
|
1409
|
+
name = "rustc-hash"
|
|
1410
|
+
version = "2.1.1"
|
|
1411
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1412
|
+
checksum = "357703d41365b4b27c590e3ed91eabb1b663f07c4c084095e60cbed4362dff0d"
|
|
1413
|
+
|
|
1414
|
+
[[package]]
|
|
1415
|
+
name = "rustls-pki-types"
|
|
1416
|
+
version = "1.14.0"
|
|
1417
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1418
|
+
checksum = "be040f8b0a225e40375822a563fa9524378b9d63112f53e19ffff34df5d33fdd"
|
|
1419
|
+
|
|
1420
|
+
[[package]]
|
|
1421
|
+
name = "rustversion"
|
|
1422
|
+
version = "1.0.22"
|
|
1423
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1424
|
+
checksum = "b39cdef0fa800fc44525c84ccb54a029961a8215f9619753635a9c0d2538d46d"
|
|
1425
|
+
|
|
1426
|
+
[[package]]
|
|
1427
|
+
name = "ryu"
|
|
1428
|
+
version = "1.0.23"
|
|
1429
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1430
|
+
checksum = "9774ba4a74de5f7b1c1451ed6cd5285a32eddb5cccb8cc655a4e50009e06477f"
|
|
1431
|
+
|
|
1432
|
+
[[package]]
|
|
1433
|
+
name = "schnellru"
|
|
1434
|
+
version = "0.2.4"
|
|
1435
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1436
|
+
checksum = "356285bbf17bea63d9e52e96bd18f039672ac92b55b8cb997d6162a2a37d1649"
|
|
1437
|
+
dependencies = [
|
|
1438
|
+
"ahash",
|
|
1439
|
+
"cfg-if",
|
|
1440
|
+
"hashbrown 0.13.2",
|
|
1441
|
+
]
|
|
1442
|
+
|
|
1443
|
+
[[package]]
|
|
1444
|
+
name = "scopeguard"
|
|
1445
|
+
version = "1.2.0"
|
|
1446
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1447
|
+
checksum = "94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49"
|
|
1448
|
+
|
|
1449
|
+
[[package]]
|
|
1450
|
+
name = "seq-macro"
|
|
1451
|
+
version = "0.3.6"
|
|
1452
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1453
|
+
checksum = "1bc711410fbe7399f390ca1c3b60ad0f53f80e95c5eb935e52268a0e2cd49acc"
|
|
1454
|
+
|
|
1455
|
+
[[package]]
|
|
1456
|
+
name = "serde"
|
|
1457
|
+
version = "1.0.228"
|
|
1458
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1459
|
+
checksum = "9a8e94ea7f378bd32cbbd37198a4a91436180c5bb472411e48b5ec2e2124ae9e"
|
|
1460
|
+
dependencies = [
|
|
1461
|
+
"serde_core",
|
|
1462
|
+
"serde_derive",
|
|
1463
|
+
]
|
|
1464
|
+
|
|
1465
|
+
[[package]]
|
|
1466
|
+
name = "serde_core"
|
|
1467
|
+
version = "1.0.228"
|
|
1468
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1469
|
+
checksum = "41d385c7d4ca58e59fc732af25c3983b67ac852c1a25000afe1175de458b67ad"
|
|
1470
|
+
dependencies = [
|
|
1471
|
+
"serde_derive",
|
|
1472
|
+
]
|
|
1473
|
+
|
|
1474
|
+
[[package]]
|
|
1475
|
+
name = "serde_derive"
|
|
1476
|
+
version = "1.0.228"
|
|
1477
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1478
|
+
checksum = "d540f220d3187173da220f885ab66608367b6574e925011a9353e4badda91d79"
|
|
1479
|
+
dependencies = [
|
|
1480
|
+
"proc-macro2",
|
|
1481
|
+
"quote",
|
|
1482
|
+
"syn",
|
|
1483
|
+
]
|
|
1484
|
+
|
|
1485
|
+
[[package]]
|
|
1486
|
+
name = "serde_json"
|
|
1487
|
+
version = "1.0.149"
|
|
1488
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1489
|
+
checksum = "83fc039473c5595ace860d8c4fafa220ff474b3fc6bfdb4293327f1a37e94d86"
|
|
1490
|
+
dependencies = [
|
|
1491
|
+
"itoa",
|
|
1492
|
+
"memchr",
|
|
1493
|
+
"serde",
|
|
1494
|
+
"serde_core",
|
|
1495
|
+
"zmij",
|
|
1496
|
+
]
|
|
1497
|
+
|
|
1498
|
+
[[package]]
|
|
1499
|
+
name = "serde_urlencoded"
|
|
1500
|
+
version = "0.7.1"
|
|
1501
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1502
|
+
checksum = "d3491c14715ca2294c4d6a88f15e84739788c1d030eed8c110436aafdaa2f3fd"
|
|
1503
|
+
dependencies = [
|
|
1504
|
+
"form_urlencoded",
|
|
1505
|
+
"itoa",
|
|
1506
|
+
"ryu",
|
|
1507
|
+
"serde",
|
|
1508
|
+
]
|
|
1509
|
+
|
|
1510
|
+
[[package]]
|
|
1511
|
+
name = "sha1"
|
|
1512
|
+
version = "0.10.6"
|
|
1513
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1514
|
+
checksum = "e3bf829a2d51ab4a5ddf1352d8470c140cadc8301b2ae1789db023f01cedd6ba"
|
|
1515
|
+
dependencies = [
|
|
1516
|
+
"cfg-if",
|
|
1517
|
+
"cpufeatures",
|
|
1518
|
+
"digest",
|
|
1519
|
+
]
|
|
1520
|
+
|
|
1521
|
+
[[package]]
|
|
1522
|
+
name = "sharded-slab"
|
|
1523
|
+
version = "0.1.7"
|
|
1524
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1525
|
+
checksum = "f40ca3c46823713e0d4209592e8d6e826aa57e928f09752619fc696c499637f6"
|
|
1526
|
+
dependencies = [
|
|
1527
|
+
"lazy_static",
|
|
1528
|
+
]
|
|
1529
|
+
|
|
1530
|
+
[[package]]
|
|
1531
|
+
name = "shell-words"
|
|
1532
|
+
version = "1.1.1"
|
|
1533
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1534
|
+
checksum = "dc6fe69c597f9c37bfeeeeeb33da3530379845f10be461a66d16d03eca2ded77"
|
|
1535
|
+
|
|
1536
|
+
[[package]]
|
|
1537
|
+
name = "shlex"
|
|
1538
|
+
version = "1.3.0"
|
|
1539
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1540
|
+
checksum = "0fda2ff0d084019ba4d7c6f371c95d8fd75ce3524c3cb8fb653a3023f6323e64"
|
|
1541
|
+
|
|
1542
|
+
[[package]]
|
|
1543
|
+
name = "signal-hook-registry"
|
|
1544
|
+
version = "1.4.8"
|
|
1545
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1546
|
+
checksum = "c4db69cba1110affc0e9f7bcd48bbf87b3f4fc7c61fc9155afd4c469eb3d6c1b"
|
|
1547
|
+
dependencies = [
|
|
1548
|
+
"errno",
|
|
1549
|
+
"libc",
|
|
1550
|
+
]
|
|
1551
|
+
|
|
1552
|
+
[[package]]
|
|
1553
|
+
name = "simd-adler32"
|
|
1554
|
+
version = "0.3.8"
|
|
1555
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1556
|
+
checksum = "e320a6c5ad31d271ad523dcf3ad13e2767ad8b1cb8f047f75a8aeaf8da139da2"
|
|
1557
|
+
|
|
1558
|
+
[[package]]
|
|
1559
|
+
name = "slab"
|
|
1560
|
+
version = "0.4.12"
|
|
1561
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1562
|
+
checksum = "0c790de23124f9ab44544d7ac05d60440adc586479ce501c1d6d7da3cd8c9cf5"
|
|
1563
|
+
|
|
1564
|
+
[[package]]
|
|
1565
|
+
name = "smallvec"
|
|
1566
|
+
version = "1.15.1"
|
|
1567
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1568
|
+
checksum = "67b1b7a3b5fe4f1376887184045fcf45c69e92af734b7aaddc05fb777b6fbd03"
|
|
1569
|
+
|
|
1570
|
+
[[package]]
|
|
1571
|
+
name = "socket2"
|
|
1572
|
+
version = "0.5.10"
|
|
1573
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1574
|
+
checksum = "e22376abed350d73dd1cd119b57ffccad95b4e585a7cda43e286245ce23c0678"
|
|
1575
|
+
dependencies = [
|
|
1576
|
+
"libc",
|
|
1577
|
+
"windows-sys 0.52.0",
|
|
1578
|
+
]
|
|
1579
|
+
|
|
1580
|
+
[[package]]
|
|
1581
|
+
name = "socket2"
|
|
1582
|
+
version = "0.6.2"
|
|
1583
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1584
|
+
checksum = "86f4aa3ad99f2088c990dfa82d367e19cb29268ed67c574d10d0a4bfe71f07e0"
|
|
1585
|
+
dependencies = [
|
|
1586
|
+
"libc",
|
|
1587
|
+
"windows-sys 0.60.2",
|
|
1588
|
+
]
|
|
1589
|
+
|
|
1590
|
+
[[package]]
|
|
1591
|
+
name = "stable_deref_trait"
|
|
1592
|
+
version = "1.2.1"
|
|
1593
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1594
|
+
checksum = "6ce2be8dc25455e1f91df71bfa12ad37d7af1092ae736f3a6cd0e37bc7810596"
|
|
1595
|
+
|
|
1596
|
+
[[package]]
|
|
1597
|
+
name = "syn"
|
|
1598
|
+
version = "2.0.114"
|
|
1599
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1600
|
+
checksum = "d4d107df263a3013ef9b1879b0df87d706ff80f65a86ea879bd9c31f9b307c2a"
|
|
1601
|
+
dependencies = [
|
|
1602
|
+
"proc-macro2",
|
|
1603
|
+
"quote",
|
|
1604
|
+
"unicode-ident",
|
|
1605
|
+
]
|
|
1606
|
+
|
|
1607
|
+
[[package]]
|
|
1608
|
+
name = "sync_wrapper"
|
|
1609
|
+
version = "1.0.2"
|
|
1610
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1611
|
+
checksum = "0bf256ce5efdfa370213c1dabab5935a12e49f2c58d15e9eac2870d3b4f27263"
|
|
1612
|
+
dependencies = [
|
|
1613
|
+
"futures-core",
|
|
1614
|
+
]
|
|
1615
|
+
|
|
1616
|
+
[[package]]
|
|
1617
|
+
name = "synstructure"
|
|
1618
|
+
version = "0.13.2"
|
|
1619
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1620
|
+
checksum = "728a70f3dbaf5bab7f0c4b1ac8d7ae5ea60a4b5549c8a5914361c99147a709d2"
|
|
1621
|
+
dependencies = [
|
|
1622
|
+
"proc-macro2",
|
|
1623
|
+
"quote",
|
|
1624
|
+
"syn",
|
|
1625
|
+
]
|
|
1626
|
+
|
|
1627
|
+
[[package]]
|
|
1628
|
+
name = "system-configuration"
|
|
1629
|
+
version = "0.7.0"
|
|
1630
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1631
|
+
checksum = "a13f3d0daba03132c0aa9767f98351b3488edc2c100cda2d2ec2b04f3d8d3c8b"
|
|
1632
|
+
dependencies = [
|
|
1633
|
+
"bitflags",
|
|
1634
|
+
"core-foundation",
|
|
1635
|
+
"system-configuration-sys",
|
|
1636
|
+
]
|
|
1637
|
+
|
|
1638
|
+
[[package]]
|
|
1639
|
+
name = "system-configuration-sys"
|
|
1640
|
+
version = "0.6.0"
|
|
1641
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1642
|
+
checksum = "8e1d1b10ced5ca923a1fcb8d03e96b8d3268065d724548c0211415ff6ac6bac4"
|
|
1643
|
+
dependencies = [
|
|
1644
|
+
"core-foundation-sys",
|
|
1645
|
+
"libc",
|
|
1646
|
+
]
|
|
1647
|
+
|
|
1648
|
+
[[package]]
|
|
1649
|
+
name = "tagptr"
|
|
1650
|
+
version = "0.2.0"
|
|
1651
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1652
|
+
checksum = "7b2093cf4c8eb1e67749a6762251bc9cd836b6fc171623bd0a9d324d37af2417"
|
|
1653
|
+
|
|
1654
|
+
[[package]]
|
|
1655
|
+
name = "termcolor"
|
|
1656
|
+
version = "1.4.1"
|
|
1657
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1658
|
+
checksum = "06794f8f6c5c898b3275aebefa6b8a1cb24cd2c6c79397ab15774837a0bc5755"
|
|
1659
|
+
dependencies = [
|
|
1660
|
+
"winapi-util",
|
|
1661
|
+
]
|
|
1662
|
+
|
|
1663
|
+
[[package]]
|
|
1664
|
+
name = "thiserror"
|
|
1665
|
+
version = "1.0.69"
|
|
1666
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1667
|
+
checksum = "b6aaf5339b578ea85b50e080feb250a3e8ae8cfcdff9a461c9ec2904bc923f52"
|
|
1668
|
+
dependencies = [
|
|
1669
|
+
"thiserror-impl 1.0.69",
|
|
1670
|
+
]
|
|
1671
|
+
|
|
1672
|
+
[[package]]
|
|
1673
|
+
name = "thiserror"
|
|
1674
|
+
version = "2.0.18"
|
|
1675
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1676
|
+
checksum = "4288b5bcbc7920c07a1149a35cf9590a2aa808e0bc1eafaade0b80947865fbc4"
|
|
1677
|
+
dependencies = [
|
|
1678
|
+
"thiserror-impl 2.0.18",
|
|
1679
|
+
]
|
|
1680
|
+
|
|
1681
|
+
[[package]]
|
|
1682
|
+
name = "thiserror-impl"
|
|
1683
|
+
version = "1.0.69"
|
|
1684
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1685
|
+
checksum = "4fee6c4efc90059e10f81e6d42c60a18f76588c3d74cb83a0b242a2b6c7504c1"
|
|
1686
|
+
dependencies = [
|
|
1687
|
+
"proc-macro2",
|
|
1688
|
+
"quote",
|
|
1689
|
+
"syn",
|
|
1690
|
+
]
|
|
1691
|
+
|
|
1692
|
+
[[package]]
|
|
1693
|
+
name = "thiserror-impl"
|
|
1694
|
+
version = "2.0.18"
|
|
1695
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1696
|
+
checksum = "ebc4ee7f67670e9b64d05fa4253e753e016c6c95ff35b89b7941d6b856dec1d5"
|
|
1697
|
+
dependencies = [
|
|
1698
|
+
"proc-macro2",
|
|
1699
|
+
"quote",
|
|
1700
|
+
"syn",
|
|
1701
|
+
]
|
|
1702
|
+
|
|
1703
|
+
[[package]]
|
|
1704
|
+
name = "thread_local"
|
|
1705
|
+
version = "1.1.9"
|
|
1706
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1707
|
+
checksum = "f60246a4944f24f6e018aa17cdeffb7818b76356965d03b07d6a9886e8962185"
|
|
1708
|
+
dependencies = [
|
|
1709
|
+
"cfg-if",
|
|
1710
|
+
]
|
|
1711
|
+
|
|
1712
|
+
[[package]]
|
|
1713
|
+
name = "time"
|
|
1714
|
+
version = "0.3.47"
|
|
1715
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1716
|
+
checksum = "743bd48c283afc0388f9b8827b976905fb217ad9e647fae3a379a9283c4def2c"
|
|
1717
|
+
dependencies = [
|
|
1718
|
+
"deranged",
|
|
1719
|
+
"itoa",
|
|
1720
|
+
"num-conv",
|
|
1721
|
+
"powerfmt",
|
|
1722
|
+
"serde_core",
|
|
1723
|
+
"time-core",
|
|
1724
|
+
"time-macros",
|
|
1725
|
+
]
|
|
1726
|
+
|
|
1727
|
+
[[package]]
|
|
1728
|
+
name = "time-core"
|
|
1729
|
+
version = "0.1.8"
|
|
1730
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1731
|
+
checksum = "7694e1cfe791f8d31026952abf09c69ca6f6fa4e1a1229e18988f06a04a12dca"
|
|
1732
|
+
|
|
1733
|
+
[[package]]
|
|
1734
|
+
name = "time-macros"
|
|
1735
|
+
version = "0.2.27"
|
|
1736
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1737
|
+
checksum = "2e70e4c5a0e0a8a4823ad65dfe1a6930e4f4d756dcd9dd7939022b5e8c501215"
|
|
1738
|
+
dependencies = [
|
|
1739
|
+
"num-conv",
|
|
1740
|
+
"time-core",
|
|
1741
|
+
]
|
|
1742
|
+
|
|
1743
|
+
[[package]]
|
|
1744
|
+
name = "tinystr"
|
|
1745
|
+
version = "0.8.2"
|
|
1746
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1747
|
+
checksum = "42d3e9c45c09de15d06dd8acf5f4e0e399e85927b7f00711024eb7ae10fa4869"
|
|
1748
|
+
dependencies = [
|
|
1749
|
+
"displaydoc",
|
|
1750
|
+
"zerovec",
|
|
1751
|
+
]
|
|
1752
|
+
|
|
1753
|
+
[[package]]
|
|
1754
|
+
name = "tinyvec"
|
|
1755
|
+
version = "1.10.0"
|
|
1756
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1757
|
+
checksum = "bfa5fdc3bce6191a1dbc8c02d5c8bffcf557bafa17c124c5264a458f1b0613fa"
|
|
1758
|
+
dependencies = [
|
|
1759
|
+
"tinyvec_macros",
|
|
1760
|
+
]
|
|
1761
|
+
|
|
1762
|
+
[[package]]
|
|
1763
|
+
name = "tinyvec_macros"
|
|
1764
|
+
version = "0.1.1"
|
|
1765
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1766
|
+
checksum = "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20"
|
|
1767
|
+
|
|
1768
|
+
[[package]]
|
|
1769
|
+
name = "tokio"
|
|
1770
|
+
version = "1.49.0"
|
|
1771
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1772
|
+
checksum = "72a2903cd7736441aac9df9d7688bd0ce48edccaadf181c3b90be801e81d3d86"
|
|
1773
|
+
dependencies = [
|
|
1774
|
+
"bytes",
|
|
1775
|
+
"libc",
|
|
1776
|
+
"mio",
|
|
1777
|
+
"parking_lot",
|
|
1778
|
+
"pin-project-lite",
|
|
1779
|
+
"signal-hook-registry",
|
|
1780
|
+
"socket2 0.6.2",
|
|
1781
|
+
"tokio-macros",
|
|
1782
|
+
"windows-sys 0.61.2",
|
|
1783
|
+
]
|
|
1784
|
+
|
|
1785
|
+
[[package]]
|
|
1786
|
+
name = "tokio-boring2"
|
|
1787
|
+
version = "5.0.0-alpha.12"
|
|
1788
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1789
|
+
checksum = "8332a3a493b27722984a621fc00dc6e46211ac034083f4aab4305fc1bbae2b85"
|
|
1790
|
+
dependencies = [
|
|
1791
|
+
"boring2",
|
|
1792
|
+
"tokio",
|
|
1793
|
+
]
|
|
1794
|
+
|
|
1795
|
+
[[package]]
|
|
1796
|
+
name = "tokio-macros"
|
|
1797
|
+
version = "2.6.0"
|
|
1798
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1799
|
+
checksum = "af407857209536a95c8e56f8231ef2c2e2aff839b22e07a1ffcbc617e9db9fa5"
|
|
1800
|
+
dependencies = [
|
|
1801
|
+
"proc-macro2",
|
|
1802
|
+
"quote",
|
|
1803
|
+
"syn",
|
|
1804
|
+
]
|
|
1805
|
+
|
|
1806
|
+
[[package]]
|
|
1807
|
+
name = "tokio-socks"
|
|
1808
|
+
version = "0.5.2"
|
|
1809
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1810
|
+
checksum = "0d4770b8024672c1101b3f6733eab95b18007dbe0847a8afe341fcf79e06043f"
|
|
1811
|
+
dependencies = [
|
|
1812
|
+
"either",
|
|
1813
|
+
"futures-util",
|
|
1814
|
+
"thiserror 1.0.69",
|
|
1815
|
+
"tokio",
|
|
1816
|
+
]
|
|
1817
|
+
|
|
1818
|
+
[[package]]
|
|
1819
|
+
name = "tokio-stream"
|
|
1820
|
+
version = "0.1.18"
|
|
1821
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1822
|
+
checksum = "32da49809aab5c3bc678af03902d4ccddea2a87d028d86392a4b1560c6906c70"
|
|
1823
|
+
dependencies = [
|
|
1824
|
+
"futures-core",
|
|
1825
|
+
"pin-project-lite",
|
|
1826
|
+
"tokio",
|
|
1827
|
+
]
|
|
1828
|
+
|
|
1829
|
+
[[package]]
|
|
1830
|
+
name = "tokio-test"
|
|
1831
|
+
version = "0.4.5"
|
|
1832
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1833
|
+
checksum = "3f6d24790a10a7af737693a3e8f1d03faef7e6ca0cc99aae5066f533766de545"
|
|
1834
|
+
dependencies = [
|
|
1835
|
+
"futures-core",
|
|
1836
|
+
"tokio",
|
|
1837
|
+
"tokio-stream",
|
|
1838
|
+
]
|
|
1839
|
+
|
|
1840
|
+
[[package]]
|
|
1841
|
+
name = "tokio-tungstenite"
|
|
1842
|
+
version = "0.28.0"
|
|
1843
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1844
|
+
checksum = "d25a406cddcc431a75d3d9afc6a7c0f7428d4891dd973e4d54c56b46127bf857"
|
|
1845
|
+
dependencies = [
|
|
1846
|
+
"futures-util",
|
|
1847
|
+
"log",
|
|
1848
|
+
"tokio",
|
|
1849
|
+
"tungstenite",
|
|
1850
|
+
]
|
|
1851
|
+
|
|
1852
|
+
[[package]]
|
|
1853
|
+
name = "tokio-util"
|
|
1854
|
+
version = "0.7.18"
|
|
1855
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1856
|
+
checksum = "9ae9cec805b01e8fc3fd2fe289f89149a9b66dd16786abd8b19cfa7b48cb0098"
|
|
1857
|
+
dependencies = [
|
|
1858
|
+
"bytes",
|
|
1859
|
+
"futures-core",
|
|
1860
|
+
"futures-sink",
|
|
1861
|
+
"pin-project-lite",
|
|
1862
|
+
"tokio",
|
|
1863
|
+
]
|
|
1864
|
+
|
|
1865
|
+
[[package]]
|
|
1866
|
+
name = "tower"
|
|
1867
|
+
version = "0.5.3"
|
|
1868
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1869
|
+
checksum = "ebe5ef63511595f1344e2d5cfa636d973292adc0eec1f0ad45fae9f0851ab1d4"
|
|
1870
|
+
dependencies = [
|
|
1871
|
+
"futures-core",
|
|
1872
|
+
"futures-util",
|
|
1873
|
+
"pin-project-lite",
|
|
1874
|
+
"sync_wrapper",
|
|
1875
|
+
"tokio",
|
|
1876
|
+
"tokio-util",
|
|
1877
|
+
"tower-layer",
|
|
1878
|
+
"tower-service",
|
|
1879
|
+
"tracing",
|
|
1880
|
+
]
|
|
1881
|
+
|
|
1882
|
+
[[package]]
|
|
1883
|
+
name = "tower-http"
|
|
1884
|
+
version = "0.6.8"
|
|
1885
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1886
|
+
checksum = "d4e6559d53cc268e5031cd8429d05415bc4cb4aefc4aa5d6cc35fbf5b924a1f8"
|
|
1887
|
+
dependencies = [
|
|
1888
|
+
"async-compression",
|
|
1889
|
+
"bitflags",
|
|
1890
|
+
"bytes",
|
|
1891
|
+
"futures-core",
|
|
1892
|
+
"http",
|
|
1893
|
+
"http-body",
|
|
1894
|
+
"http-body-util",
|
|
1895
|
+
"pin-project-lite",
|
|
1896
|
+
"tokio",
|
|
1897
|
+
"tokio-util",
|
|
1898
|
+
"tower-layer",
|
|
1899
|
+
"tower-service",
|
|
1900
|
+
]
|
|
1901
|
+
|
|
1902
|
+
[[package]]
|
|
1903
|
+
name = "tower-layer"
|
|
1904
|
+
version = "0.3.3"
|
|
1905
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1906
|
+
checksum = "121c2a6cda46980bb0fcd1647ffaf6cd3fc79a013de288782836f6df9c48780e"
|
|
1907
|
+
|
|
1908
|
+
[[package]]
|
|
1909
|
+
name = "tower-service"
|
|
1910
|
+
version = "0.3.3"
|
|
1911
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1912
|
+
checksum = "8df9b6e13f2d32c91b9bd719c00d1958837bc7dec474d94952798cc8e69eeec3"
|
|
1913
|
+
|
|
1914
|
+
[[package]]
|
|
1915
|
+
name = "tracing"
|
|
1916
|
+
version = "0.1.44"
|
|
1917
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1918
|
+
checksum = "63e71662fa4b2a2c3a26f570f037eb95bb1f85397f3cd8076caed2f026a6d100"
|
|
1919
|
+
dependencies = [
|
|
1920
|
+
"pin-project-lite",
|
|
1921
|
+
"tracing-attributes",
|
|
1922
|
+
"tracing-core",
|
|
1923
|
+
]
|
|
1924
|
+
|
|
1925
|
+
[[package]]
|
|
1926
|
+
name = "tracing-attributes"
|
|
1927
|
+
version = "0.1.31"
|
|
1928
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1929
|
+
checksum = "7490cfa5ec963746568740651ac6781f701c9c5ea257c58e057f3ba8cf69e8da"
|
|
1930
|
+
dependencies = [
|
|
1931
|
+
"proc-macro2",
|
|
1932
|
+
"quote",
|
|
1933
|
+
"syn",
|
|
1934
|
+
]
|
|
1935
|
+
|
|
1936
|
+
[[package]]
|
|
1937
|
+
name = "tracing-core"
|
|
1938
|
+
version = "0.1.36"
|
|
1939
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1940
|
+
checksum = "db97caf9d906fbde555dd62fa95ddba9eecfd14cb388e4f491a66d74cd5fb79a"
|
|
1941
|
+
dependencies = [
|
|
1942
|
+
"once_cell",
|
|
1943
|
+
"valuable",
|
|
1944
|
+
]
|
|
1945
|
+
|
|
1946
|
+
[[package]]
|
|
1947
|
+
name = "tracing-log"
|
|
1948
|
+
version = "0.2.0"
|
|
1949
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1950
|
+
checksum = "ee855f1f400bd0e5c02d150ae5de3840039a3f54b025156404e34c23c03f47c3"
|
|
1951
|
+
dependencies = [
|
|
1952
|
+
"log",
|
|
1953
|
+
"once_cell",
|
|
1954
|
+
"tracing-core",
|
|
1955
|
+
]
|
|
1956
|
+
|
|
1957
|
+
[[package]]
|
|
1958
|
+
name = "tracing-subscriber"
|
|
1959
|
+
version = "0.3.22"
|
|
1960
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1961
|
+
checksum = "2f30143827ddab0d256fd843b7a66d164e9f271cfa0dde49142c5ca0ca291f1e"
|
|
1962
|
+
dependencies = [
|
|
1963
|
+
"nu-ansi-term",
|
|
1964
|
+
"sharded-slab",
|
|
1965
|
+
"smallvec",
|
|
1966
|
+
"thread_local",
|
|
1967
|
+
"tracing-core",
|
|
1968
|
+
"tracing-log",
|
|
1969
|
+
]
|
|
1970
|
+
|
|
1971
|
+
[[package]]
|
|
1972
|
+
name = "try-lock"
|
|
1973
|
+
version = "0.2.5"
|
|
1974
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1975
|
+
checksum = "e421abadd41a4225275504ea4d6566923418b7f05506fbc9c0fe86ba7396114b"
|
|
1976
|
+
|
|
1977
|
+
[[package]]
|
|
1978
|
+
name = "tungstenite"
|
|
1979
|
+
version = "0.28.0"
|
|
1980
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1981
|
+
checksum = "8628dcc84e5a09eb3d8423d6cb682965dea9133204e8fb3efee74c2a0c259442"
|
|
1982
|
+
dependencies = [
|
|
1983
|
+
"bytes",
|
|
1984
|
+
"data-encoding",
|
|
1985
|
+
"http",
|
|
1986
|
+
"httparse",
|
|
1987
|
+
"log",
|
|
1988
|
+
"rand",
|
|
1989
|
+
"sha1",
|
|
1990
|
+
"thiserror 2.0.18",
|
|
1991
|
+
"utf-8",
|
|
1992
|
+
]
|
|
1993
|
+
|
|
1994
|
+
[[package]]
|
|
1995
|
+
name = "typed-builder"
|
|
1996
|
+
version = "0.23.2"
|
|
1997
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1998
|
+
checksum = "31aa81521b70f94402501d848ccc0ecaa8f93c8eb6999eb9747e72287757ffda"
|
|
1999
|
+
dependencies = [
|
|
2000
|
+
"typed-builder-macro",
|
|
2001
|
+
]
|
|
2002
|
+
|
|
2003
|
+
[[package]]
|
|
2004
|
+
name = "typed-builder-macro"
|
|
2005
|
+
version = "0.23.2"
|
|
2006
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2007
|
+
checksum = "076a02dc54dd46795c2e9c8282ed40bcfb1e22747e955de9389a1de28190fb26"
|
|
2008
|
+
dependencies = [
|
|
2009
|
+
"proc-macro2",
|
|
2010
|
+
"quote",
|
|
2011
|
+
"syn",
|
|
2012
|
+
]
|
|
2013
|
+
|
|
2014
|
+
[[package]]
|
|
2015
|
+
name = "typenum"
|
|
2016
|
+
version = "1.19.0"
|
|
2017
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2018
|
+
checksum = "562d481066bde0658276a35467c4af00bdc6ee726305698a55b86e61d7ad82bb"
|
|
2019
|
+
|
|
2020
|
+
[[package]]
|
|
2021
|
+
name = "unicase"
|
|
2022
|
+
version = "2.9.0"
|
|
2023
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2024
|
+
checksum = "dbc4bc3a9f746d862c45cb89d705aa10f187bb96c76001afab07a0d35ce60142"
|
|
2025
|
+
|
|
2026
|
+
[[package]]
|
|
2027
|
+
name = "unicode-ident"
|
|
2028
|
+
version = "1.0.23"
|
|
2029
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2030
|
+
checksum = "537dd038a89878be9b64dd4bd1b260315c1bb94f4d784956b81e27a088d9a09e"
|
|
2031
|
+
|
|
2032
|
+
[[package]]
|
|
2033
|
+
name = "untrusted"
|
|
2034
|
+
version = "0.9.0"
|
|
2035
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2036
|
+
checksum = "8ecb6da28b8a351d773b68d5825ac39017e680750f980f3a1a85cd8dd28a47c1"
|
|
2037
|
+
|
|
2038
|
+
[[package]]
|
|
2039
|
+
name = "url"
|
|
2040
|
+
version = "2.5.8"
|
|
2041
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2042
|
+
checksum = "ff67a8a4397373c3ef660812acab3268222035010ab8680ec4215f38ba3d0eed"
|
|
2043
|
+
dependencies = [
|
|
2044
|
+
"form_urlencoded",
|
|
2045
|
+
"idna",
|
|
2046
|
+
"percent-encoding",
|
|
2047
|
+
"serde",
|
|
2048
|
+
]
|
|
2049
|
+
|
|
2050
|
+
[[package]]
|
|
2051
|
+
name = "utf-8"
|
|
2052
|
+
version = "0.7.6"
|
|
2053
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2054
|
+
checksum = "09cc8ee72d2a9becf2f2febe0205bbed8fc6615b7cb429ad062dc7b7ddd036a9"
|
|
2055
|
+
|
|
2056
|
+
[[package]]
|
|
2057
|
+
name = "utf8_iter"
|
|
2058
|
+
version = "1.0.4"
|
|
2059
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2060
|
+
checksum = "b6c140620e7ffbb22c2dee59cafe6084a59b5ffc27a8859a5f0d494b5d52b6be"
|
|
2061
|
+
|
|
2062
|
+
[[package]]
|
|
2063
|
+
name = "uuid"
|
|
2064
|
+
version = "1.20.0"
|
|
2065
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2066
|
+
checksum = "ee48d38b119b0cd71fe4141b30f5ba9c7c5d9f4e7a3a8b4a674e4b6ef789976f"
|
|
2067
|
+
dependencies = [
|
|
2068
|
+
"getrandom 0.3.4",
|
|
2069
|
+
"js-sys",
|
|
2070
|
+
"wasm-bindgen",
|
|
2071
|
+
]
|
|
2072
|
+
|
|
2073
|
+
[[package]]
|
|
2074
|
+
name = "valuable"
|
|
2075
|
+
version = "0.1.1"
|
|
2076
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2077
|
+
checksum = "ba73ea9cf16a25df0c8caa16c51acb937d5712a8429db78a3ee29d5dcacd3a65"
|
|
2078
|
+
|
|
2079
|
+
[[package]]
|
|
2080
|
+
name = "version_check"
|
|
2081
|
+
version = "0.9.5"
|
|
2082
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2083
|
+
checksum = "0b928f33d975fc6ad9f86c8f283853ad26bdd5b10b7f1542aa2fa15e2289105a"
|
|
2084
|
+
|
|
2085
|
+
[[package]]
|
|
2086
|
+
name = "want"
|
|
2087
|
+
version = "0.3.1"
|
|
2088
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2089
|
+
checksum = "bfa7760aed19e106de2c7c0b581b509f2f25d3dacaf737cb82ac61bc6d760b0e"
|
|
2090
|
+
dependencies = [
|
|
2091
|
+
"try-lock",
|
|
2092
|
+
]
|
|
2093
|
+
|
|
2094
|
+
[[package]]
|
|
2095
|
+
name = "wasi"
|
|
2096
|
+
version = "0.11.1+wasi-snapshot-preview1"
|
|
2097
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2098
|
+
checksum = "ccf3ec651a847eb01de73ccad15eb7d99f80485de043efb2f370cd654f4ea44b"
|
|
2099
|
+
|
|
2100
|
+
[[package]]
|
|
2101
|
+
name = "wasip2"
|
|
2102
|
+
version = "1.0.2+wasi-0.2.9"
|
|
2103
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2104
|
+
checksum = "9517f9239f02c069db75e65f174b3da828fe5f5b945c4dd26bd25d89c03ebcf5"
|
|
2105
|
+
dependencies = [
|
|
2106
|
+
"wit-bindgen",
|
|
2107
|
+
]
|
|
2108
|
+
|
|
2109
|
+
[[package]]
|
|
2110
|
+
name = "wasm-bindgen"
|
|
2111
|
+
version = "0.2.108"
|
|
2112
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2113
|
+
checksum = "64024a30ec1e37399cf85a7ffefebdb72205ca1c972291c51512360d90bd8566"
|
|
2114
|
+
dependencies = [
|
|
2115
|
+
"cfg-if",
|
|
2116
|
+
"once_cell",
|
|
2117
|
+
"rustversion",
|
|
2118
|
+
"wasm-bindgen-macro",
|
|
2119
|
+
"wasm-bindgen-shared",
|
|
2120
|
+
]
|
|
2121
|
+
|
|
2122
|
+
[[package]]
|
|
2123
|
+
name = "wasm-bindgen-macro"
|
|
2124
|
+
version = "0.2.108"
|
|
2125
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2126
|
+
checksum = "008b239d9c740232e71bd39e8ef6429d27097518b6b30bdf9086833bd5b6d608"
|
|
2127
|
+
dependencies = [
|
|
2128
|
+
"quote",
|
|
2129
|
+
"wasm-bindgen-macro-support",
|
|
2130
|
+
]
|
|
2131
|
+
|
|
2132
|
+
[[package]]
|
|
2133
|
+
name = "wasm-bindgen-macro-support"
|
|
2134
|
+
version = "0.2.108"
|
|
2135
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2136
|
+
checksum = "5256bae2d58f54820e6490f9839c49780dff84c65aeab9e772f15d5f0e913a55"
|
|
2137
|
+
dependencies = [
|
|
2138
|
+
"bumpalo",
|
|
2139
|
+
"proc-macro2",
|
|
2140
|
+
"quote",
|
|
2141
|
+
"syn",
|
|
2142
|
+
"wasm-bindgen-shared",
|
|
2143
|
+
]
|
|
2144
|
+
|
|
2145
|
+
[[package]]
|
|
2146
|
+
name = "wasm-bindgen-shared"
|
|
2147
|
+
version = "0.2.108"
|
|
2148
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2149
|
+
checksum = "1f01b580c9ac74c8d8f0c0e4afb04eeef2acf145458e52c03845ee9cd23e3d12"
|
|
2150
|
+
dependencies = [
|
|
2151
|
+
"unicode-ident",
|
|
2152
|
+
]
|
|
2153
|
+
|
|
2154
|
+
[[package]]
|
|
2155
|
+
name = "webpki-root-certs"
|
|
2156
|
+
version = "1.0.6"
|
|
2157
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2158
|
+
checksum = "804f18a4ac2676ffb4e8b5b5fa9ae38af06df08162314f96a68d2a363e21a8ca"
|
|
2159
|
+
dependencies = [
|
|
2160
|
+
"rustls-pki-types",
|
|
2161
|
+
]
|
|
2162
|
+
|
|
2163
|
+
[[package]]
|
|
2164
|
+
name = "widestring"
|
|
2165
|
+
version = "1.2.1"
|
|
2166
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2167
|
+
checksum = "72069c3113ab32ab29e5584db3c6ec55d416895e60715417b5b883a357c3e471"
|
|
2168
|
+
|
|
2169
|
+
[[package]]
|
|
2170
|
+
name = "winapi"
|
|
2171
|
+
version = "0.3.9"
|
|
2172
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2173
|
+
checksum = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419"
|
|
2174
|
+
dependencies = [
|
|
2175
|
+
"winapi-i686-pc-windows-gnu",
|
|
2176
|
+
"winapi-x86_64-pc-windows-gnu",
|
|
2177
|
+
]
|
|
2178
|
+
|
|
2179
|
+
[[package]]
|
|
2180
|
+
name = "winapi-i686-pc-windows-gnu"
|
|
2181
|
+
version = "0.4.0"
|
|
2182
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2183
|
+
checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6"
|
|
2184
|
+
|
|
2185
|
+
[[package]]
|
|
2186
|
+
name = "winapi-util"
|
|
2187
|
+
version = "0.1.11"
|
|
2188
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2189
|
+
checksum = "c2a7b1c03c876122aa43f3020e6c3c3ee5c05081c9a00739faf7503aeba10d22"
|
|
2190
|
+
dependencies = [
|
|
2191
|
+
"windows-sys 0.61.2",
|
|
2192
|
+
]
|
|
2193
|
+
|
|
2194
|
+
[[package]]
|
|
2195
|
+
name = "winapi-x86_64-pc-windows-gnu"
|
|
2196
|
+
version = "0.4.0"
|
|
2197
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2198
|
+
checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f"
|
|
2199
|
+
|
|
2200
|
+
[[package]]
|
|
2201
|
+
name = "windows-link"
|
|
2202
|
+
version = "0.2.1"
|
|
2203
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2204
|
+
checksum = "f0805222e57f7521d6a62e36fa9163bc891acd422f971defe97d64e70d0a4fe5"
|
|
2205
|
+
|
|
2206
|
+
[[package]]
|
|
2207
|
+
name = "windows-registry"
|
|
2208
|
+
version = "0.6.1"
|
|
2209
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2210
|
+
checksum = "02752bf7fbdcce7f2a27a742f798510f3e5ad88dbe84871e5168e2120c3d5720"
|
|
2211
|
+
dependencies = [
|
|
2212
|
+
"windows-link",
|
|
2213
|
+
"windows-result",
|
|
2214
|
+
"windows-strings",
|
|
2215
|
+
]
|
|
2216
|
+
|
|
2217
|
+
[[package]]
|
|
2218
|
+
name = "windows-result"
|
|
2219
|
+
version = "0.4.1"
|
|
2220
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2221
|
+
checksum = "7781fa89eaf60850ac3d2da7af8e5242a5ea78d1a11c49bf2910bb5a73853eb5"
|
|
2222
|
+
dependencies = [
|
|
2223
|
+
"windows-link",
|
|
2224
|
+
]
|
|
2225
|
+
|
|
2226
|
+
[[package]]
|
|
2227
|
+
name = "windows-strings"
|
|
2228
|
+
version = "0.5.1"
|
|
2229
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2230
|
+
checksum = "7837d08f69c77cf6b07689544538e017c1bfcf57e34b4c0ff58e6c2cd3b37091"
|
|
2231
|
+
dependencies = [
|
|
2232
|
+
"windows-link",
|
|
2233
|
+
]
|
|
2234
|
+
|
|
2235
|
+
[[package]]
|
|
2236
|
+
name = "windows-sys"
|
|
2237
|
+
version = "0.48.0"
|
|
2238
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2239
|
+
checksum = "677d2418bec65e3338edb076e806bc1ec15693c5d0104683f2efe857f61056a9"
|
|
2240
|
+
dependencies = [
|
|
2241
|
+
"windows-targets 0.48.5",
|
|
2242
|
+
]
|
|
2243
|
+
|
|
2244
|
+
[[package]]
|
|
2245
|
+
name = "windows-sys"
|
|
2246
|
+
version = "0.52.0"
|
|
2247
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2248
|
+
checksum = "282be5f36a8ce781fad8c8ae18fa3f9beff57ec1b52cb3de0789201425d9a33d"
|
|
2249
|
+
dependencies = [
|
|
2250
|
+
"windows-targets 0.52.6",
|
|
2251
|
+
]
|
|
2252
|
+
|
|
2253
|
+
[[package]]
|
|
2254
|
+
name = "windows-sys"
|
|
2255
|
+
version = "0.60.2"
|
|
2256
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2257
|
+
checksum = "f2f500e4d28234f72040990ec9d39e3a6b950f9f22d3dba18416c35882612bcb"
|
|
2258
|
+
dependencies = [
|
|
2259
|
+
"windows-targets 0.53.5",
|
|
2260
|
+
]
|
|
2261
|
+
|
|
2262
|
+
[[package]]
|
|
2263
|
+
name = "windows-sys"
|
|
2264
|
+
version = "0.61.2"
|
|
2265
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2266
|
+
checksum = "ae137229bcbd6cdf0f7b80a31df61766145077ddf49416a728b02cb3921ff3fc"
|
|
2267
|
+
dependencies = [
|
|
2268
|
+
"windows-link",
|
|
2269
|
+
]
|
|
2270
|
+
|
|
2271
|
+
[[package]]
|
|
2272
|
+
name = "windows-targets"
|
|
2273
|
+
version = "0.48.5"
|
|
2274
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2275
|
+
checksum = "9a2fa6e2155d7247be68c096456083145c183cbbbc2764150dda45a87197940c"
|
|
2276
|
+
dependencies = [
|
|
2277
|
+
"windows_aarch64_gnullvm 0.48.5",
|
|
2278
|
+
"windows_aarch64_msvc 0.48.5",
|
|
2279
|
+
"windows_i686_gnu 0.48.5",
|
|
2280
|
+
"windows_i686_msvc 0.48.5",
|
|
2281
|
+
"windows_x86_64_gnu 0.48.5",
|
|
2282
|
+
"windows_x86_64_gnullvm 0.48.5",
|
|
2283
|
+
"windows_x86_64_msvc 0.48.5",
|
|
2284
|
+
]
|
|
2285
|
+
|
|
2286
|
+
[[package]]
|
|
2287
|
+
name = "windows-targets"
|
|
2288
|
+
version = "0.52.6"
|
|
2289
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2290
|
+
checksum = "9b724f72796e036ab90c1021d4780d4d3d648aca59e491e6b98e725b84e99973"
|
|
2291
|
+
dependencies = [
|
|
2292
|
+
"windows_aarch64_gnullvm 0.52.6",
|
|
2293
|
+
"windows_aarch64_msvc 0.52.6",
|
|
2294
|
+
"windows_i686_gnu 0.52.6",
|
|
2295
|
+
"windows_i686_gnullvm 0.52.6",
|
|
2296
|
+
"windows_i686_msvc 0.52.6",
|
|
2297
|
+
"windows_x86_64_gnu 0.52.6",
|
|
2298
|
+
"windows_x86_64_gnullvm 0.52.6",
|
|
2299
|
+
"windows_x86_64_msvc 0.52.6",
|
|
2300
|
+
]
|
|
2301
|
+
|
|
2302
|
+
[[package]]
|
|
2303
|
+
name = "windows-targets"
|
|
2304
|
+
version = "0.53.5"
|
|
2305
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2306
|
+
checksum = "4945f9f551b88e0d65f3db0bc25c33b8acea4d9e41163edf90dcd0b19f9069f3"
|
|
2307
|
+
dependencies = [
|
|
2308
|
+
"windows-link",
|
|
2309
|
+
"windows_aarch64_gnullvm 0.53.1",
|
|
2310
|
+
"windows_aarch64_msvc 0.53.1",
|
|
2311
|
+
"windows_i686_gnu 0.53.1",
|
|
2312
|
+
"windows_i686_gnullvm 0.53.1",
|
|
2313
|
+
"windows_i686_msvc 0.53.1",
|
|
2314
|
+
"windows_x86_64_gnu 0.53.1",
|
|
2315
|
+
"windows_x86_64_gnullvm 0.53.1",
|
|
2316
|
+
"windows_x86_64_msvc 0.53.1",
|
|
2317
|
+
]
|
|
2318
|
+
|
|
2319
|
+
[[package]]
|
|
2320
|
+
name = "windows_aarch64_gnullvm"
|
|
2321
|
+
version = "0.48.5"
|
|
2322
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2323
|
+
checksum = "2b38e32f0abccf9987a4e3079dfb67dcd799fb61361e53e2882c3cbaf0d905d8"
|
|
2324
|
+
|
|
2325
|
+
[[package]]
|
|
2326
|
+
name = "windows_aarch64_gnullvm"
|
|
2327
|
+
version = "0.52.6"
|
|
2328
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2329
|
+
checksum = "32a4622180e7a0ec044bb555404c800bc9fd9ec262ec147edd5989ccd0c02cd3"
|
|
2330
|
+
|
|
2331
|
+
[[package]]
|
|
2332
|
+
name = "windows_aarch64_gnullvm"
|
|
2333
|
+
version = "0.53.1"
|
|
2334
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2335
|
+
checksum = "a9d8416fa8b42f5c947f8482c43e7d89e73a173cead56d044f6a56104a6d1b53"
|
|
2336
|
+
|
|
2337
|
+
[[package]]
|
|
2338
|
+
name = "windows_aarch64_msvc"
|
|
2339
|
+
version = "0.48.5"
|
|
2340
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2341
|
+
checksum = "dc35310971f3b2dbbf3f0690a219f40e2d9afcf64f9ab7cc1be722937c26b4bc"
|
|
2342
|
+
|
|
2343
|
+
[[package]]
|
|
2344
|
+
name = "windows_aarch64_msvc"
|
|
2345
|
+
version = "0.52.6"
|
|
2346
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2347
|
+
checksum = "09ec2a7bb152e2252b53fa7803150007879548bc709c039df7627cabbd05d469"
|
|
2348
|
+
|
|
2349
|
+
[[package]]
|
|
2350
|
+
name = "windows_aarch64_msvc"
|
|
2351
|
+
version = "0.53.1"
|
|
2352
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2353
|
+
checksum = "b9d782e804c2f632e395708e99a94275910eb9100b2114651e04744e9b125006"
|
|
2354
|
+
|
|
2355
|
+
[[package]]
|
|
2356
|
+
name = "windows_i686_gnu"
|
|
2357
|
+
version = "0.48.5"
|
|
2358
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2359
|
+
checksum = "a75915e7def60c94dcef72200b9a8e58e5091744960da64ec734a6c6e9b3743e"
|
|
2360
|
+
|
|
2361
|
+
[[package]]
|
|
2362
|
+
name = "windows_i686_gnu"
|
|
2363
|
+
version = "0.52.6"
|
|
2364
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2365
|
+
checksum = "8e9b5ad5ab802e97eb8e295ac6720e509ee4c243f69d781394014ebfe8bbfa0b"
|
|
2366
|
+
|
|
2367
|
+
[[package]]
|
|
2368
|
+
name = "windows_i686_gnu"
|
|
2369
|
+
version = "0.53.1"
|
|
2370
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2371
|
+
checksum = "960e6da069d81e09becb0ca57a65220ddff016ff2d6af6a223cf372a506593a3"
|
|
2372
|
+
|
|
2373
|
+
[[package]]
|
|
2374
|
+
name = "windows_i686_gnullvm"
|
|
2375
|
+
version = "0.52.6"
|
|
2376
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2377
|
+
checksum = "0eee52d38c090b3caa76c563b86c3a4bd71ef1a819287c19d586d7334ae8ed66"
|
|
2378
|
+
|
|
2379
|
+
[[package]]
|
|
2380
|
+
name = "windows_i686_gnullvm"
|
|
2381
|
+
version = "0.53.1"
|
|
2382
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2383
|
+
checksum = "fa7359d10048f68ab8b09fa71c3daccfb0e9b559aed648a8f95469c27057180c"
|
|
2384
|
+
|
|
2385
|
+
[[package]]
|
|
2386
|
+
name = "windows_i686_msvc"
|
|
2387
|
+
version = "0.48.5"
|
|
2388
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2389
|
+
checksum = "8f55c233f70c4b27f66c523580f78f1004e8b5a8b659e05a4eb49d4166cca406"
|
|
2390
|
+
|
|
2391
|
+
[[package]]
|
|
2392
|
+
name = "windows_i686_msvc"
|
|
2393
|
+
version = "0.52.6"
|
|
2394
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2395
|
+
checksum = "240948bc05c5e7c6dabba28bf89d89ffce3e303022809e73deaefe4f6ec56c66"
|
|
2396
|
+
|
|
2397
|
+
[[package]]
|
|
2398
|
+
name = "windows_i686_msvc"
|
|
2399
|
+
version = "0.53.1"
|
|
2400
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2401
|
+
checksum = "1e7ac75179f18232fe9c285163565a57ef8d3c89254a30685b57d83a38d326c2"
|
|
2402
|
+
|
|
2403
|
+
[[package]]
|
|
2404
|
+
name = "windows_x86_64_gnu"
|
|
2405
|
+
version = "0.48.5"
|
|
2406
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2407
|
+
checksum = "53d40abd2583d23e4718fddf1ebec84dbff8381c07cae67ff7768bbf19c6718e"
|
|
2408
|
+
|
|
2409
|
+
[[package]]
|
|
2410
|
+
name = "windows_x86_64_gnu"
|
|
2411
|
+
version = "0.52.6"
|
|
2412
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2413
|
+
checksum = "147a5c80aabfbf0c7d901cb5895d1de30ef2907eb21fbbab29ca94c5b08b1a78"
|
|
2414
|
+
|
|
2415
|
+
[[package]]
|
|
2416
|
+
name = "windows_x86_64_gnu"
|
|
2417
|
+
version = "0.53.1"
|
|
2418
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2419
|
+
checksum = "9c3842cdd74a865a8066ab39c8a7a473c0778a3f29370b5fd6b4b9aa7df4a499"
|
|
2420
|
+
|
|
2421
|
+
[[package]]
|
|
2422
|
+
name = "windows_x86_64_gnullvm"
|
|
2423
|
+
version = "0.48.5"
|
|
2424
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2425
|
+
checksum = "0b7b52767868a23d5bab768e390dc5f5c55825b6d30b86c844ff2dc7414044cc"
|
|
2426
|
+
|
|
2427
|
+
[[package]]
|
|
2428
|
+
name = "windows_x86_64_gnullvm"
|
|
2429
|
+
version = "0.52.6"
|
|
2430
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2431
|
+
checksum = "24d5b23dc417412679681396f2b49f3de8c1473deb516bd34410872eff51ed0d"
|
|
2432
|
+
|
|
2433
|
+
[[package]]
|
|
2434
|
+
name = "windows_x86_64_gnullvm"
|
|
2435
|
+
version = "0.53.1"
|
|
2436
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2437
|
+
checksum = "0ffa179e2d07eee8ad8f57493436566c7cc30ac536a3379fdf008f47f6bb7ae1"
|
|
2438
|
+
|
|
2439
|
+
[[package]]
|
|
2440
|
+
name = "windows_x86_64_msvc"
|
|
2441
|
+
version = "0.48.5"
|
|
2442
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2443
|
+
checksum = "ed94fce61571a4006852b7389a063ab983c02eb1bb37b47f8272ce92d06d9538"
|
|
2444
|
+
|
|
2445
|
+
[[package]]
|
|
2446
|
+
name = "windows_x86_64_msvc"
|
|
2447
|
+
version = "0.52.6"
|
|
2448
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2449
|
+
checksum = "589f6da84c646204747d1270a2a5661ea66ed1cced2631d546fdfb155959f9ec"
|
|
2450
|
+
|
|
2451
|
+
[[package]]
|
|
2452
|
+
name = "windows_x86_64_msvc"
|
|
2453
|
+
version = "0.53.1"
|
|
2454
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2455
|
+
checksum = "d6bbff5f0aada427a1e5a6da5f1f98158182f26556f345ac9e04d36d0ebed650"
|
|
2456
|
+
|
|
2457
|
+
[[package]]
|
|
2458
|
+
name = "winreg"
|
|
2459
|
+
version = "0.50.0"
|
|
2460
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2461
|
+
checksum = "524e57b2c537c0f9b1e69f1965311ec12182b4122e45035b1508cd24d2adadb1"
|
|
2462
|
+
dependencies = [
|
|
2463
|
+
"cfg-if",
|
|
2464
|
+
"windows-sys 0.48.0",
|
|
2465
|
+
]
|
|
2466
|
+
|
|
2467
|
+
[[package]]
|
|
2468
|
+
name = "wit-bindgen"
|
|
2469
|
+
version = "0.51.0"
|
|
2470
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2471
|
+
checksum = "d7249219f66ced02969388cf2bb044a09756a083d0fab1e566056b04d9fbcaa5"
|
|
2472
|
+
|
|
2473
|
+
[[package]]
|
|
2474
|
+
name = "wreq"
|
|
2475
|
+
version = "6.0.0-rc.28"
|
|
2476
|
+
dependencies = [
|
|
2477
|
+
"ahash",
|
|
2478
|
+
"boring2",
|
|
2479
|
+
"brotli",
|
|
2480
|
+
"bytes",
|
|
2481
|
+
"cookie",
|
|
2482
|
+
"encoding_rs",
|
|
2483
|
+
"flate2",
|
|
2484
|
+
"futures",
|
|
2485
|
+
"futures-channel",
|
|
2486
|
+
"futures-util",
|
|
2487
|
+
"hickory-resolver",
|
|
2488
|
+
"http",
|
|
2489
|
+
"http-body",
|
|
2490
|
+
"http-body-util",
|
|
2491
|
+
"http2",
|
|
2492
|
+
"httparse",
|
|
2493
|
+
"hyper",
|
|
2494
|
+
"hyper-util",
|
|
2495
|
+
"ipnet",
|
|
2496
|
+
"libc",
|
|
2497
|
+
"mime",
|
|
2498
|
+
"mime_guess",
|
|
2499
|
+
"percent-encoding",
|
|
2500
|
+
"pin-project-lite",
|
|
2501
|
+
"pretty_env_logger",
|
|
2502
|
+
"schnellru",
|
|
2503
|
+
"serde",
|
|
2504
|
+
"serde_json",
|
|
2505
|
+
"serde_urlencoded",
|
|
2506
|
+
"smallvec",
|
|
2507
|
+
"socket2 0.6.2",
|
|
2508
|
+
"sync_wrapper",
|
|
2509
|
+
"system-configuration",
|
|
2510
|
+
"tokio",
|
|
2511
|
+
"tokio-boring2",
|
|
2512
|
+
"tokio-socks",
|
|
2513
|
+
"tokio-test",
|
|
2514
|
+
"tokio-tungstenite",
|
|
2515
|
+
"tokio-util",
|
|
2516
|
+
"tower",
|
|
2517
|
+
"tower-http",
|
|
2518
|
+
"tracing",
|
|
2519
|
+
"tracing-subscriber",
|
|
2520
|
+
"url",
|
|
2521
|
+
"want",
|
|
2522
|
+
"webpki-root-certs",
|
|
2523
|
+
"windows-registry",
|
|
2524
|
+
"zstd",
|
|
2525
|
+
]
|
|
2526
|
+
|
|
2527
|
+
[[package]]
|
|
2528
|
+
name = "wreq-util"
|
|
2529
|
+
version = "3.0.0-rc.9"
|
|
2530
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2531
|
+
checksum = "2430952360874ecff465a5541de6c214a12fc232540a9a35192a7be2115e28a0"
|
|
2532
|
+
dependencies = [
|
|
2533
|
+
"serde",
|
|
2534
|
+
"typed-builder",
|
|
2535
|
+
"wreq",
|
|
2536
|
+
]
|
|
2537
|
+
|
|
2538
|
+
[[package]]
|
|
2539
|
+
name = "wreq_rb"
|
|
2540
|
+
version = "0.3.0"
|
|
2541
|
+
dependencies = [
|
|
2542
|
+
"bytes",
|
|
2543
|
+
"http",
|
|
2544
|
+
"magnus",
|
|
2545
|
+
"rb-sys",
|
|
2546
|
+
"serde_json",
|
|
2547
|
+
"tokio",
|
|
2548
|
+
"tokio-util",
|
|
2549
|
+
"wreq",
|
|
2550
|
+
"wreq-util",
|
|
2551
|
+
]
|
|
2552
|
+
|
|
2553
|
+
[[package]]
|
|
2554
|
+
name = "writeable"
|
|
2555
|
+
version = "0.6.2"
|
|
2556
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2557
|
+
checksum = "9edde0db4769d2dc68579893f2306b26c6ecfbe0ef499b013d731b7b9247e0b9"
|
|
2558
|
+
|
|
2559
|
+
[[package]]
|
|
2560
|
+
name = "yoke"
|
|
2561
|
+
version = "0.8.1"
|
|
2562
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2563
|
+
checksum = "72d6e5c6afb84d73944e5cedb052c4680d5657337201555f9f2a16b7406d4954"
|
|
2564
|
+
dependencies = [
|
|
2565
|
+
"stable_deref_trait",
|
|
2566
|
+
"yoke-derive",
|
|
2567
|
+
"zerofrom",
|
|
2568
|
+
]
|
|
2569
|
+
|
|
2570
|
+
[[package]]
|
|
2571
|
+
name = "yoke-derive"
|
|
2572
|
+
version = "0.8.1"
|
|
2573
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2574
|
+
checksum = "b659052874eb698efe5b9e8cf382204678a0086ebf46982b79d6ca3182927e5d"
|
|
2575
|
+
dependencies = [
|
|
2576
|
+
"proc-macro2",
|
|
2577
|
+
"quote",
|
|
2578
|
+
"syn",
|
|
2579
|
+
"synstructure",
|
|
2580
|
+
]
|
|
2581
|
+
|
|
2582
|
+
[[package]]
|
|
2583
|
+
name = "zerocopy"
|
|
2584
|
+
version = "0.8.39"
|
|
2585
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2586
|
+
checksum = "db6d35d663eadb6c932438e763b262fe1a70987f9ae936e60158176d710cae4a"
|
|
2587
|
+
dependencies = [
|
|
2588
|
+
"zerocopy-derive",
|
|
2589
|
+
]
|
|
2590
|
+
|
|
2591
|
+
[[package]]
|
|
2592
|
+
name = "zerocopy-derive"
|
|
2593
|
+
version = "0.8.39"
|
|
2594
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2595
|
+
checksum = "4122cd3169e94605190e77839c9a40d40ed048d305bfdc146e7df40ab0f3e517"
|
|
2596
|
+
dependencies = [
|
|
2597
|
+
"proc-macro2",
|
|
2598
|
+
"quote",
|
|
2599
|
+
"syn",
|
|
2600
|
+
]
|
|
2601
|
+
|
|
2602
|
+
[[package]]
|
|
2603
|
+
name = "zerofrom"
|
|
2604
|
+
version = "0.1.6"
|
|
2605
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2606
|
+
checksum = "50cc42e0333e05660c3587f3bf9d0478688e15d870fab3346451ce7f8c9fbea5"
|
|
2607
|
+
dependencies = [
|
|
2608
|
+
"zerofrom-derive",
|
|
2609
|
+
]
|
|
2610
|
+
|
|
2611
|
+
[[package]]
|
|
2612
|
+
name = "zerofrom-derive"
|
|
2613
|
+
version = "0.1.6"
|
|
2614
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2615
|
+
checksum = "d71e5d6e06ab090c67b5e44993ec16b72dcbaabc526db883a360057678b48502"
|
|
2616
|
+
dependencies = [
|
|
2617
|
+
"proc-macro2",
|
|
2618
|
+
"quote",
|
|
2619
|
+
"syn",
|
|
2620
|
+
"synstructure",
|
|
2621
|
+
]
|
|
2622
|
+
|
|
2623
|
+
[[package]]
|
|
2624
|
+
name = "zerotrie"
|
|
2625
|
+
version = "0.2.3"
|
|
2626
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2627
|
+
checksum = "2a59c17a5562d507e4b54960e8569ebee33bee890c70aa3fe7b97e85a9fd7851"
|
|
2628
|
+
dependencies = [
|
|
2629
|
+
"displaydoc",
|
|
2630
|
+
"yoke",
|
|
2631
|
+
"zerofrom",
|
|
2632
|
+
]
|
|
2633
|
+
|
|
2634
|
+
[[package]]
|
|
2635
|
+
name = "zerovec"
|
|
2636
|
+
version = "0.11.5"
|
|
2637
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2638
|
+
checksum = "6c28719294829477f525be0186d13efa9a3c602f7ec202ca9e353d310fb9a002"
|
|
2639
|
+
dependencies = [
|
|
2640
|
+
"yoke",
|
|
2641
|
+
"zerofrom",
|
|
2642
|
+
"zerovec-derive",
|
|
2643
|
+
]
|
|
2644
|
+
|
|
2645
|
+
[[package]]
|
|
2646
|
+
name = "zerovec-derive"
|
|
2647
|
+
version = "0.11.2"
|
|
2648
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2649
|
+
checksum = "eadce39539ca5cb3985590102671f2567e659fca9666581ad3411d59207951f3"
|
|
2650
|
+
dependencies = [
|
|
2651
|
+
"proc-macro2",
|
|
2652
|
+
"quote",
|
|
2653
|
+
"syn",
|
|
2654
|
+
]
|
|
2655
|
+
|
|
2656
|
+
[[package]]
|
|
2657
|
+
name = "zmij"
|
|
2658
|
+
version = "1.0.20"
|
|
2659
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2660
|
+
checksum = "4de98dfa5d5b7fef4ee834d0073d560c9ca7b6c46a71d058c48db7960f8cfaf7"
|
|
2661
|
+
|
|
2662
|
+
[[package]]
|
|
2663
|
+
name = "zstd"
|
|
2664
|
+
version = "0.13.3"
|
|
2665
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2666
|
+
checksum = "e91ee311a569c327171651566e07972200e76fcfe2242a4fa446149a3881c08a"
|
|
2667
|
+
dependencies = [
|
|
2668
|
+
"zstd-safe",
|
|
2669
|
+
]
|
|
2670
|
+
|
|
2671
|
+
[[package]]
|
|
2672
|
+
name = "zstd-safe"
|
|
2673
|
+
version = "7.2.4"
|
|
2674
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2675
|
+
checksum = "8f49c4d5f0abb602a93fb8736af2a4f4dd9512e36f7f570d66e65ff867ed3b9d"
|
|
2676
|
+
dependencies = [
|
|
2677
|
+
"zstd-sys",
|
|
2678
|
+
]
|
|
2679
|
+
|
|
2680
|
+
[[package]]
|
|
2681
|
+
name = "zstd-sys"
|
|
2682
|
+
version = "2.0.16+zstd.1.5.7"
|
|
2683
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2684
|
+
checksum = "91e19ebc2adc8f83e43039e79776e3fda8ca919132d68a1fed6a5faca2683748"
|
|
2685
|
+
dependencies = [
|
|
2686
|
+
"cc",
|
|
2687
|
+
"pkg-config",
|
|
2688
|
+
]
|