shuck 0.0.1__tar.gz
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.
- shuck-0.0.1/Cargo.lock +3337 -0
- shuck-0.0.1/Cargo.toml +90 -0
- shuck-0.0.1/LICENSE +21 -0
- shuck-0.0.1/PKG-INFO +128 -0
- shuck-0.0.1/README.md +103 -0
- shuck-0.0.1/crates/shuck/Cargo.toml +36 -0
- shuck-0.0.1/crates/shuck/src/main.rs +3871 -0
- shuck-0.0.1/crates/shuck/tests/e2e.rs +884 -0
- shuck-0.0.1/crates/shuck-agent/Cargo.toml +28 -0
- shuck-0.0.1/crates/shuck-agent/src/lib.rs +317 -0
- shuck-0.0.1/crates/shuck-agent/src/main.rs +63 -0
- shuck-0.0.1/crates/shuck-agent/src/pty.rs +175 -0
- shuck-0.0.1/crates/shuck-agent/tests/handler.rs +986 -0
- shuck-0.0.1/crates/shuck-agent-proto/Cargo.toml +17 -0
- shuck-0.0.1/crates/shuck-agent-proto/src/lib.rs +721 -0
- shuck-0.0.1/crates/shuck-agent-proto/tests/integration.rs +163 -0
- shuck-0.0.1/crates/shuck-api/Cargo.toml +36 -0
- shuck-0.0.1/crates/shuck-api/src/lib.rs +3733 -0
- shuck-0.0.1/crates/shuck-api/tests/api_integration.rs +1814 -0
- shuck-0.0.1/crates/shuck-api/tests/openapi_contract.rs +151 -0
- shuck-0.0.1/crates/shuck-api/tests/perf_baseline.rs +118 -0
- shuck-0.0.1/crates/shuck-core/Cargo.toml +32 -0
- shuck-0.0.1/crates/shuck-core/src/agent_client.rs +276 -0
- shuck-0.0.1/crates/shuck-core/src/lib.rs +2056 -0
- shuck-0.0.1/crates/shuck-core/tests/agent_client.rs +627 -0
- shuck-0.0.1/crates/shuck-core/tests/agent_integration.rs +707 -0
- shuck-0.0.1/crates/shuck-core/tests/failure_injection.rs +212 -0
- shuck-0.0.1/crates/shuck-core/tests/orchestration_paths.rs +1696 -0
- shuck-0.0.1/crates/shuck-core/tests/state_transitions.rs +534 -0
- shuck-0.0.1/crates/shuck-net/Cargo.toml +15 -0
- shuck-0.0.1/crates/shuck-net/src/lib.rs +1046 -0
- shuck-0.0.1/crates/shuck-net/tests/e2e_bridge.rs +472 -0
- shuck-0.0.1/crates/shuck-state/Cargo.toml +19 -0
- shuck-0.0.1/crates/shuck-state/src/lib.rs +2003 -0
- shuck-0.0.1/crates/shuck-state/tests/integration.rs +161 -0
- shuck-0.0.1/crates/shuck-storage/Cargo.toml +15 -0
- shuck-0.0.1/crates/shuck-storage/src/lib.rs +266 -0
- shuck-0.0.1/crates/shuck-storage/tests/integration.rs +126 -0
- shuck-0.0.1/crates/shuck-vmm/Cargo.toml +42 -0
- shuck-0.0.1/crates/shuck-vmm/src/apple_vz.rs +686 -0
- shuck-0.0.1/crates/shuck-vmm/src/fd_stream.rs +298 -0
- shuck-0.0.1/crates/shuck-vmm/src/firecracker.rs +756 -0
- shuck-0.0.1/crates/shuck-vmm/src/lib.rs +131 -0
- shuck-0.0.1/crates/shuck-vmm/src/vsock.rs +92 -0
- shuck-0.0.1/crates/shuck-vmm/tests/mock_firecracker.rs +341 -0
- shuck-0.0.1/pyproject.toml +40 -0
- shuck-0.0.1/shuck_cli/__init__.py +5 -0
- shuck-0.0.1/shuck_cli/__main__.py +49 -0
shuck-0.0.1/Cargo.lock
ADDED
|
@@ -0,0 +1,3337 @@
|
|
|
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 = "android_system_properties"
|
|
34
|
+
version = "0.1.5"
|
|
35
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
36
|
+
checksum = "819e7219dbd41043ac279b19830f2efc897156490d7fd6ea916720117ee66311"
|
|
37
|
+
dependencies = [
|
|
38
|
+
"libc",
|
|
39
|
+
]
|
|
40
|
+
|
|
41
|
+
[[package]]
|
|
42
|
+
name = "anstream"
|
|
43
|
+
version = "1.0.0"
|
|
44
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
45
|
+
checksum = "824a212faf96e9acacdbd09febd34438f8f711fb84e09a8916013cd7815ca28d"
|
|
46
|
+
dependencies = [
|
|
47
|
+
"anstyle",
|
|
48
|
+
"anstyle-parse",
|
|
49
|
+
"anstyle-query",
|
|
50
|
+
"anstyle-wincon",
|
|
51
|
+
"colorchoice",
|
|
52
|
+
"is_terminal_polyfill",
|
|
53
|
+
"utf8parse",
|
|
54
|
+
]
|
|
55
|
+
|
|
56
|
+
[[package]]
|
|
57
|
+
name = "anstyle"
|
|
58
|
+
version = "1.0.14"
|
|
59
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
60
|
+
checksum = "940b3a0ca603d1eade50a4846a2afffd5ef57a9feac2c0e2ec2e14f9ead76000"
|
|
61
|
+
|
|
62
|
+
[[package]]
|
|
63
|
+
name = "anstyle-parse"
|
|
64
|
+
version = "1.0.0"
|
|
65
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
66
|
+
checksum = "52ce7f38b242319f7cabaa6813055467063ecdc9d355bbb4ce0c68908cd8130e"
|
|
67
|
+
dependencies = [
|
|
68
|
+
"utf8parse",
|
|
69
|
+
]
|
|
70
|
+
|
|
71
|
+
[[package]]
|
|
72
|
+
name = "anstyle-query"
|
|
73
|
+
version = "1.1.5"
|
|
74
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
75
|
+
checksum = "40c48f72fd53cd289104fc64099abca73db4166ad86ea0b4341abe65af83dadc"
|
|
76
|
+
dependencies = [
|
|
77
|
+
"windows-sys 0.61.2",
|
|
78
|
+
]
|
|
79
|
+
|
|
80
|
+
[[package]]
|
|
81
|
+
name = "anstyle-wincon"
|
|
82
|
+
version = "3.0.11"
|
|
83
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
84
|
+
checksum = "291e6a250ff86cd4a820112fb8898808a366d8f9f58ce16d1f538353ad55747d"
|
|
85
|
+
dependencies = [
|
|
86
|
+
"anstyle",
|
|
87
|
+
"once_cell_polyfill",
|
|
88
|
+
"windows-sys 0.61.2",
|
|
89
|
+
]
|
|
90
|
+
|
|
91
|
+
[[package]]
|
|
92
|
+
name = "anyhow"
|
|
93
|
+
version = "1.0.102"
|
|
94
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
95
|
+
checksum = "7f202df86484c868dbad7eaa557ef785d5c66295e41b460ef922eca0723b842c"
|
|
96
|
+
|
|
97
|
+
[[package]]
|
|
98
|
+
name = "arbitrary"
|
|
99
|
+
version = "1.4.2"
|
|
100
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
101
|
+
checksum = "c3d036a3c4ab069c7b410a2ce876bd74808d2d0888a82667669f8e783a898bf1"
|
|
102
|
+
dependencies = [
|
|
103
|
+
"derive_arbitrary",
|
|
104
|
+
]
|
|
105
|
+
|
|
106
|
+
[[package]]
|
|
107
|
+
name = "async-stream"
|
|
108
|
+
version = "0.3.6"
|
|
109
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
110
|
+
checksum = "0b5a71a6f37880a80d1d7f19efd781e4b5de42c88f0722cc13bcb6cc2cfe8476"
|
|
111
|
+
dependencies = [
|
|
112
|
+
"async-stream-impl",
|
|
113
|
+
"futures-core",
|
|
114
|
+
"pin-project-lite",
|
|
115
|
+
]
|
|
116
|
+
|
|
117
|
+
[[package]]
|
|
118
|
+
name = "async-stream-impl"
|
|
119
|
+
version = "0.3.6"
|
|
120
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
121
|
+
checksum = "c7c24de15d275a1ecfd47a380fb4d5ec9bfe0933f309ed5e705b775596a3574d"
|
|
122
|
+
dependencies = [
|
|
123
|
+
"proc-macro2",
|
|
124
|
+
"quote",
|
|
125
|
+
"syn",
|
|
126
|
+
]
|
|
127
|
+
|
|
128
|
+
[[package]]
|
|
129
|
+
name = "atomic-waker"
|
|
130
|
+
version = "1.1.2"
|
|
131
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
132
|
+
checksum = "1505bd5d3d116872e7271a6d4e16d81d0c8570876c8de68093a09ac269d8aac0"
|
|
133
|
+
|
|
134
|
+
[[package]]
|
|
135
|
+
name = "autocfg"
|
|
136
|
+
version = "1.5.0"
|
|
137
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
138
|
+
checksum = "c08606f8c3cbf4ce6ec8e28fb0014a2c086708fe954eaa885384a6165172e7e8"
|
|
139
|
+
|
|
140
|
+
[[package]]
|
|
141
|
+
name = "axum"
|
|
142
|
+
version = "0.8.9"
|
|
143
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
144
|
+
checksum = "31b698c5f9a010f6573133b09e0de5408834d0c82f8d7475a89fc1867a71cd90"
|
|
145
|
+
dependencies = [
|
|
146
|
+
"axum-core",
|
|
147
|
+
"base64",
|
|
148
|
+
"bytes",
|
|
149
|
+
"form_urlencoded",
|
|
150
|
+
"futures-util",
|
|
151
|
+
"http",
|
|
152
|
+
"http-body",
|
|
153
|
+
"http-body-util",
|
|
154
|
+
"hyper",
|
|
155
|
+
"hyper-util",
|
|
156
|
+
"itoa",
|
|
157
|
+
"matchit",
|
|
158
|
+
"memchr",
|
|
159
|
+
"mime",
|
|
160
|
+
"percent-encoding",
|
|
161
|
+
"pin-project-lite",
|
|
162
|
+
"serde_core",
|
|
163
|
+
"serde_json",
|
|
164
|
+
"serde_path_to_error",
|
|
165
|
+
"serde_urlencoded",
|
|
166
|
+
"sha1",
|
|
167
|
+
"sync_wrapper",
|
|
168
|
+
"tokio",
|
|
169
|
+
"tokio-tungstenite 0.29.0",
|
|
170
|
+
"tower",
|
|
171
|
+
"tower-layer",
|
|
172
|
+
"tower-service",
|
|
173
|
+
"tracing",
|
|
174
|
+
]
|
|
175
|
+
|
|
176
|
+
[[package]]
|
|
177
|
+
name = "axum-core"
|
|
178
|
+
version = "0.5.6"
|
|
179
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
180
|
+
checksum = "08c78f31d7b1291f7ee735c1c6780ccde7785daae9a9206026862dab7d8792d1"
|
|
181
|
+
dependencies = [
|
|
182
|
+
"bytes",
|
|
183
|
+
"futures-core",
|
|
184
|
+
"http",
|
|
185
|
+
"http-body",
|
|
186
|
+
"http-body-util",
|
|
187
|
+
"mime",
|
|
188
|
+
"pin-project-lite",
|
|
189
|
+
"sync_wrapper",
|
|
190
|
+
"tower-layer",
|
|
191
|
+
"tower-service",
|
|
192
|
+
"tracing",
|
|
193
|
+
]
|
|
194
|
+
|
|
195
|
+
[[package]]
|
|
196
|
+
name = "base64"
|
|
197
|
+
version = "0.22.1"
|
|
198
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
199
|
+
checksum = "72b3254f16251a8381aa12e40e3c4d2f0199f8c6508fbecb9d91f575e0fbb8c6"
|
|
200
|
+
|
|
201
|
+
[[package]]
|
|
202
|
+
name = "bit-set"
|
|
203
|
+
version = "0.8.0"
|
|
204
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
205
|
+
checksum = "08807e080ed7f9d5433fa9b275196cfc35414f66a0c79d864dc51a0d825231a3"
|
|
206
|
+
dependencies = [
|
|
207
|
+
"bit-vec",
|
|
208
|
+
]
|
|
209
|
+
|
|
210
|
+
[[package]]
|
|
211
|
+
name = "bit-vec"
|
|
212
|
+
version = "0.8.0"
|
|
213
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
214
|
+
checksum = "5e764a1d40d510daf35e07be9eb06e75770908c27d411ee6c92109c9840eaaf7"
|
|
215
|
+
|
|
216
|
+
[[package]]
|
|
217
|
+
name = "bitflags"
|
|
218
|
+
version = "2.11.1"
|
|
219
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
220
|
+
checksum = "c4512299f36f043ab09a583e57bceb5a5aab7a73db1805848e8fef3c9e8c78b3"
|
|
221
|
+
|
|
222
|
+
[[package]]
|
|
223
|
+
name = "block-buffer"
|
|
224
|
+
version = "0.10.4"
|
|
225
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
226
|
+
checksum = "3078c7629b62d3f0439517fa394996acacc5cbc91c5a20d8c658e77abd503a71"
|
|
227
|
+
dependencies = [
|
|
228
|
+
"generic-array",
|
|
229
|
+
]
|
|
230
|
+
|
|
231
|
+
[[package]]
|
|
232
|
+
name = "block2"
|
|
233
|
+
version = "0.6.2"
|
|
234
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
235
|
+
checksum = "cdeb9d870516001442e364c5220d3574d2da8dc765554b4a617230d33fa58ef5"
|
|
236
|
+
dependencies = [
|
|
237
|
+
"objc2",
|
|
238
|
+
]
|
|
239
|
+
|
|
240
|
+
[[package]]
|
|
241
|
+
name = "bumpalo"
|
|
242
|
+
version = "3.20.2"
|
|
243
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
244
|
+
checksum = "5d20789868f4b01b2f2caec9f5c4e0213b41e3e5702a50157d699ae31ced2fcb"
|
|
245
|
+
|
|
246
|
+
[[package]]
|
|
247
|
+
name = "bytes"
|
|
248
|
+
version = "1.11.1"
|
|
249
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
250
|
+
checksum = "1e748733b7cbc798e1434b6ac524f0c1ff2ab456fe201501e6497c8417a4fc33"
|
|
251
|
+
|
|
252
|
+
[[package]]
|
|
253
|
+
name = "cc"
|
|
254
|
+
version = "1.2.60"
|
|
255
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
256
|
+
checksum = "43c5703da9466b66a946814e1adf53ea2c90f10063b86290cc9eb67ce3478a20"
|
|
257
|
+
dependencies = [
|
|
258
|
+
"find-msvc-tools",
|
|
259
|
+
"shlex",
|
|
260
|
+
]
|
|
261
|
+
|
|
262
|
+
[[package]]
|
|
263
|
+
name = "cfg-if"
|
|
264
|
+
version = "1.0.4"
|
|
265
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
266
|
+
checksum = "9330f8b2ff13f34540b44e946ef35111825727b38d33286ef986142615121801"
|
|
267
|
+
|
|
268
|
+
[[package]]
|
|
269
|
+
name = "cfg_aliases"
|
|
270
|
+
version = "0.2.1"
|
|
271
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
272
|
+
checksum = "613afe47fcd5fac7ccf1db93babcb082c5994d996f20b8b159f2ad1658eb5724"
|
|
273
|
+
|
|
274
|
+
[[package]]
|
|
275
|
+
name = "chrono"
|
|
276
|
+
version = "0.4.44"
|
|
277
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
278
|
+
checksum = "c673075a2e0e5f4a1dde27ce9dee1ea4558c7ffe648f576438a20ca1d2acc4b0"
|
|
279
|
+
dependencies = [
|
|
280
|
+
"iana-time-zone",
|
|
281
|
+
"js-sys",
|
|
282
|
+
"num-traits",
|
|
283
|
+
"serde",
|
|
284
|
+
"wasm-bindgen",
|
|
285
|
+
"windows-link",
|
|
286
|
+
]
|
|
287
|
+
|
|
288
|
+
[[package]]
|
|
289
|
+
name = "clap"
|
|
290
|
+
version = "4.6.1"
|
|
291
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
292
|
+
checksum = "1ddb117e43bbf7dacf0a4190fef4d345b9bad68dfc649cb349e7d17d28428e51"
|
|
293
|
+
dependencies = [
|
|
294
|
+
"clap_builder",
|
|
295
|
+
"clap_derive",
|
|
296
|
+
]
|
|
297
|
+
|
|
298
|
+
[[package]]
|
|
299
|
+
name = "clap_builder"
|
|
300
|
+
version = "4.6.0"
|
|
301
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
302
|
+
checksum = "714a53001bf66416adb0e2ef5ac857140e7dc3a0c48fb28b2f10762fc4b5069f"
|
|
303
|
+
dependencies = [
|
|
304
|
+
"anstream",
|
|
305
|
+
"anstyle",
|
|
306
|
+
"clap_lex",
|
|
307
|
+
"strsim",
|
|
308
|
+
]
|
|
309
|
+
|
|
310
|
+
[[package]]
|
|
311
|
+
name = "clap_derive"
|
|
312
|
+
version = "4.6.1"
|
|
313
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
314
|
+
checksum = "f2ce8604710f6733aa641a2b3731eaa1e8b3d9973d5e3565da11800813f997a9"
|
|
315
|
+
dependencies = [
|
|
316
|
+
"heck",
|
|
317
|
+
"proc-macro2",
|
|
318
|
+
"quote",
|
|
319
|
+
"syn",
|
|
320
|
+
]
|
|
321
|
+
|
|
322
|
+
[[package]]
|
|
323
|
+
name = "clap_lex"
|
|
324
|
+
version = "1.1.0"
|
|
325
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
326
|
+
checksum = "c8d4a3bb8b1e0c1050499d1815f5ab16d04f0959b233085fb31653fbfc9d98f9"
|
|
327
|
+
|
|
328
|
+
[[package]]
|
|
329
|
+
name = "colorchoice"
|
|
330
|
+
version = "1.0.5"
|
|
331
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
332
|
+
checksum = "1d07550c9036bf2ae0c684c4297d503f838287c83c53686d05370d0e139ae570"
|
|
333
|
+
|
|
334
|
+
[[package]]
|
|
335
|
+
name = "core-foundation-sys"
|
|
336
|
+
version = "0.8.7"
|
|
337
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
338
|
+
checksum = "773648b94d0e5d620f64f280777445740e61fe701025087ec8b57f45c791888b"
|
|
339
|
+
|
|
340
|
+
[[package]]
|
|
341
|
+
name = "cpufeatures"
|
|
342
|
+
version = "0.2.17"
|
|
343
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
344
|
+
checksum = "59ed5838eebb26a2bb2e58f6d5b5316989ae9d08bab10e0e6d103e656d1b0280"
|
|
345
|
+
dependencies = [
|
|
346
|
+
"libc",
|
|
347
|
+
]
|
|
348
|
+
|
|
349
|
+
[[package]]
|
|
350
|
+
name = "crc32fast"
|
|
351
|
+
version = "1.5.0"
|
|
352
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
353
|
+
checksum = "9481c1c90cbf2ac953f07c8d4a58aa3945c425b7185c9154d67a65e4230da511"
|
|
354
|
+
dependencies = [
|
|
355
|
+
"cfg-if",
|
|
356
|
+
]
|
|
357
|
+
|
|
358
|
+
[[package]]
|
|
359
|
+
name = "crossterm"
|
|
360
|
+
version = "0.28.1"
|
|
361
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
362
|
+
checksum = "829d955a0bb380ef178a640b91779e3987da38c9aea133b20614cfed8cdea9c6"
|
|
363
|
+
dependencies = [
|
|
364
|
+
"bitflags",
|
|
365
|
+
"crossterm_winapi",
|
|
366
|
+
"mio",
|
|
367
|
+
"parking_lot",
|
|
368
|
+
"rustix 0.38.44",
|
|
369
|
+
"signal-hook",
|
|
370
|
+
"signal-hook-mio",
|
|
371
|
+
"winapi",
|
|
372
|
+
]
|
|
373
|
+
|
|
374
|
+
[[package]]
|
|
375
|
+
name = "crossterm_winapi"
|
|
376
|
+
version = "0.9.1"
|
|
377
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
378
|
+
checksum = "acdd7c62a3665c7f6830a51635d9ac9b23ed385797f70a83bb8bafe9c572ab2b"
|
|
379
|
+
dependencies = [
|
|
380
|
+
"winapi",
|
|
381
|
+
]
|
|
382
|
+
|
|
383
|
+
[[package]]
|
|
384
|
+
name = "crypto-common"
|
|
385
|
+
version = "0.1.7"
|
|
386
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
387
|
+
checksum = "78c8292055d1c1df0cce5d180393dc8cce0abec0a7102adb6c7b1eef6016d60a"
|
|
388
|
+
dependencies = [
|
|
389
|
+
"generic-array",
|
|
390
|
+
"typenum",
|
|
391
|
+
]
|
|
392
|
+
|
|
393
|
+
[[package]]
|
|
394
|
+
name = "data-encoding"
|
|
395
|
+
version = "2.10.0"
|
|
396
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
397
|
+
checksum = "d7a1e2f27636f116493b8b860f5546edb47c8d8f8ea73e1d2a20be88e28d1fea"
|
|
398
|
+
|
|
399
|
+
[[package]]
|
|
400
|
+
name = "derive_arbitrary"
|
|
401
|
+
version = "1.4.2"
|
|
402
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
403
|
+
checksum = "1e567bd82dcff979e4b03460c307b3cdc9e96fde3d73bed1496d2bc75d9dd62a"
|
|
404
|
+
dependencies = [
|
|
405
|
+
"proc-macro2",
|
|
406
|
+
"quote",
|
|
407
|
+
"syn",
|
|
408
|
+
]
|
|
409
|
+
|
|
410
|
+
[[package]]
|
|
411
|
+
name = "digest"
|
|
412
|
+
version = "0.10.7"
|
|
413
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
414
|
+
checksum = "9ed9a281f7bc9b7576e61468ba615a66a5c8cfdff42420a70aa82701a3b1e292"
|
|
415
|
+
dependencies = [
|
|
416
|
+
"block-buffer",
|
|
417
|
+
"crypto-common",
|
|
418
|
+
]
|
|
419
|
+
|
|
420
|
+
[[package]]
|
|
421
|
+
name = "dispatch2"
|
|
422
|
+
version = "0.3.1"
|
|
423
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
424
|
+
checksum = "1e0e367e4e7da84520dedcac1901e4da967309406d1e51017ae1abfb97adbd38"
|
|
425
|
+
dependencies = [
|
|
426
|
+
"bitflags",
|
|
427
|
+
"block2",
|
|
428
|
+
"libc",
|
|
429
|
+
"objc2",
|
|
430
|
+
]
|
|
431
|
+
|
|
432
|
+
[[package]]
|
|
433
|
+
name = "displaydoc"
|
|
434
|
+
version = "0.2.5"
|
|
435
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
436
|
+
checksum = "97369cbbc041bc366949bc74d34658d6cda5621039731c6310521892a3a20ae0"
|
|
437
|
+
dependencies = [
|
|
438
|
+
"proc-macro2",
|
|
439
|
+
"quote",
|
|
440
|
+
"syn",
|
|
441
|
+
]
|
|
442
|
+
|
|
443
|
+
[[package]]
|
|
444
|
+
name = "equivalent"
|
|
445
|
+
version = "1.0.2"
|
|
446
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
447
|
+
checksum = "877a4ace8713b0bcf2a4e7eec82529c029f1d0619886d18145fea96c3ffe5c0f"
|
|
448
|
+
|
|
449
|
+
[[package]]
|
|
450
|
+
name = "errno"
|
|
451
|
+
version = "0.3.14"
|
|
452
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
453
|
+
checksum = "39cab71617ae0d63f51a36d69f866391735b51691dbda63cf6f96d042b63efeb"
|
|
454
|
+
dependencies = [
|
|
455
|
+
"libc",
|
|
456
|
+
"windows-sys 0.61.2",
|
|
457
|
+
]
|
|
458
|
+
|
|
459
|
+
[[package]]
|
|
460
|
+
name = "fallible-iterator"
|
|
461
|
+
version = "0.3.0"
|
|
462
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
463
|
+
checksum = "2acce4a10f12dc2fb14a218589d4f1f62ef011b2d0cc4b3cb1bba8e94da14649"
|
|
464
|
+
|
|
465
|
+
[[package]]
|
|
466
|
+
name = "fallible-streaming-iterator"
|
|
467
|
+
version = "0.1.9"
|
|
468
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
469
|
+
checksum = "7360491ce676a36bf9bb3c56c1aa791658183a54d2744120f27285738d90465a"
|
|
470
|
+
|
|
471
|
+
[[package]]
|
|
472
|
+
name = "fastrand"
|
|
473
|
+
version = "2.4.1"
|
|
474
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
475
|
+
checksum = "9f1f227452a390804cdb637b74a86990f2a7d7ba4b7d5693aac9b4dd6defd8d6"
|
|
476
|
+
|
|
477
|
+
[[package]]
|
|
478
|
+
name = "find-msvc-tools"
|
|
479
|
+
version = "0.1.9"
|
|
480
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
481
|
+
checksum = "5baebc0774151f905a1a2cc41989300b1e6fbb29aff0ceffa1064fdd3088d582"
|
|
482
|
+
|
|
483
|
+
[[package]]
|
|
484
|
+
name = "flate2"
|
|
485
|
+
version = "1.1.9"
|
|
486
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
487
|
+
checksum = "843fba2746e448b37e26a819579957415c8cef339bf08564fe8b7ddbd959573c"
|
|
488
|
+
dependencies = [
|
|
489
|
+
"miniz_oxide",
|
|
490
|
+
"zlib-rs",
|
|
491
|
+
]
|
|
492
|
+
|
|
493
|
+
[[package]]
|
|
494
|
+
name = "fnv"
|
|
495
|
+
version = "1.0.7"
|
|
496
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
497
|
+
checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1"
|
|
498
|
+
|
|
499
|
+
[[package]]
|
|
500
|
+
name = "foldhash"
|
|
501
|
+
version = "0.1.5"
|
|
502
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
503
|
+
checksum = "d9c4f5dac5e15c24eb999c26181a6ca40b39fe946cbe4c263c7209467bc83af2"
|
|
504
|
+
|
|
505
|
+
[[package]]
|
|
506
|
+
name = "form_urlencoded"
|
|
507
|
+
version = "1.2.2"
|
|
508
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
509
|
+
checksum = "cb4cb245038516f5f85277875cdaa4f7d2c9a0fa0468de06ed190163b1581fcf"
|
|
510
|
+
dependencies = [
|
|
511
|
+
"percent-encoding",
|
|
512
|
+
]
|
|
513
|
+
|
|
514
|
+
[[package]]
|
|
515
|
+
name = "futures"
|
|
516
|
+
version = "0.3.32"
|
|
517
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
518
|
+
checksum = "8b147ee9d1f6d097cef9ce628cd2ee62288d963e16fb287bd9286455b241382d"
|
|
519
|
+
dependencies = [
|
|
520
|
+
"futures-channel",
|
|
521
|
+
"futures-core",
|
|
522
|
+
"futures-executor",
|
|
523
|
+
"futures-io",
|
|
524
|
+
"futures-sink",
|
|
525
|
+
"futures-task",
|
|
526
|
+
"futures-util",
|
|
527
|
+
]
|
|
528
|
+
|
|
529
|
+
[[package]]
|
|
530
|
+
name = "futures-channel"
|
|
531
|
+
version = "0.3.32"
|
|
532
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
533
|
+
checksum = "07bbe89c50d7a535e539b8c17bc0b49bdb77747034daa8087407d655f3f7cc1d"
|
|
534
|
+
dependencies = [
|
|
535
|
+
"futures-core",
|
|
536
|
+
"futures-sink",
|
|
537
|
+
]
|
|
538
|
+
|
|
539
|
+
[[package]]
|
|
540
|
+
name = "futures-core"
|
|
541
|
+
version = "0.3.32"
|
|
542
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
543
|
+
checksum = "7e3450815272ef58cec6d564423f6e755e25379b217b0bc688e295ba24df6b1d"
|
|
544
|
+
|
|
545
|
+
[[package]]
|
|
546
|
+
name = "futures-executor"
|
|
547
|
+
version = "0.3.32"
|
|
548
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
549
|
+
checksum = "baf29c38818342a3b26b5b923639e7b1f4a61fc5e76102d4b1981c6dc7a7579d"
|
|
550
|
+
dependencies = [
|
|
551
|
+
"futures-core",
|
|
552
|
+
"futures-task",
|
|
553
|
+
"futures-util",
|
|
554
|
+
]
|
|
555
|
+
|
|
556
|
+
[[package]]
|
|
557
|
+
name = "futures-io"
|
|
558
|
+
version = "0.3.32"
|
|
559
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
560
|
+
checksum = "cecba35d7ad927e23624b22ad55235f2239cfa44fd10428eecbeba6d6a717718"
|
|
561
|
+
|
|
562
|
+
[[package]]
|
|
563
|
+
name = "futures-macro"
|
|
564
|
+
version = "0.3.32"
|
|
565
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
566
|
+
checksum = "e835b70203e41293343137df5c0664546da5745f82ec9b84d40be8336958447b"
|
|
567
|
+
dependencies = [
|
|
568
|
+
"proc-macro2",
|
|
569
|
+
"quote",
|
|
570
|
+
"syn",
|
|
571
|
+
]
|
|
572
|
+
|
|
573
|
+
[[package]]
|
|
574
|
+
name = "futures-sink"
|
|
575
|
+
version = "0.3.32"
|
|
576
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
577
|
+
checksum = "c39754e157331b013978ec91992bde1ac089843443c49cbc7f46150b0fad0893"
|
|
578
|
+
|
|
579
|
+
[[package]]
|
|
580
|
+
name = "futures-task"
|
|
581
|
+
version = "0.3.32"
|
|
582
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
583
|
+
checksum = "037711b3d59c33004d3856fbdc83b99d4ff37a24768fa1be9ce3538a1cde4393"
|
|
584
|
+
|
|
585
|
+
[[package]]
|
|
586
|
+
name = "futures-util"
|
|
587
|
+
version = "0.3.32"
|
|
588
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
589
|
+
checksum = "389ca41296e6190b48053de0321d02a77f32f8a5d2461dd38762c0593805c6d6"
|
|
590
|
+
dependencies = [
|
|
591
|
+
"futures-channel",
|
|
592
|
+
"futures-core",
|
|
593
|
+
"futures-io",
|
|
594
|
+
"futures-macro",
|
|
595
|
+
"futures-sink",
|
|
596
|
+
"futures-task",
|
|
597
|
+
"memchr",
|
|
598
|
+
"pin-project-lite",
|
|
599
|
+
"slab",
|
|
600
|
+
]
|
|
601
|
+
|
|
602
|
+
[[package]]
|
|
603
|
+
name = "generic-array"
|
|
604
|
+
version = "0.14.7"
|
|
605
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
606
|
+
checksum = "85649ca51fd72272d7821adaf274ad91c288277713d9c18820d8499a7ff69e9a"
|
|
607
|
+
dependencies = [
|
|
608
|
+
"typenum",
|
|
609
|
+
"version_check",
|
|
610
|
+
]
|
|
611
|
+
|
|
612
|
+
[[package]]
|
|
613
|
+
name = "getrandom"
|
|
614
|
+
version = "0.2.17"
|
|
615
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
616
|
+
checksum = "ff2abc00be7fca6ebc474524697ae276ad847ad0a6b3faa4bcb027e9a4614ad0"
|
|
617
|
+
dependencies = [
|
|
618
|
+
"cfg-if",
|
|
619
|
+
"js-sys",
|
|
620
|
+
"libc",
|
|
621
|
+
"wasi",
|
|
622
|
+
"wasm-bindgen",
|
|
623
|
+
]
|
|
624
|
+
|
|
625
|
+
[[package]]
|
|
626
|
+
name = "getrandom"
|
|
627
|
+
version = "0.3.4"
|
|
628
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
629
|
+
checksum = "899def5c37c4fd7b2664648c28120ecec138e4d395b459e5ca34f9cce2dd77fd"
|
|
630
|
+
dependencies = [
|
|
631
|
+
"cfg-if",
|
|
632
|
+
"js-sys",
|
|
633
|
+
"libc",
|
|
634
|
+
"r-efi 5.3.0",
|
|
635
|
+
"wasip2",
|
|
636
|
+
"wasm-bindgen",
|
|
637
|
+
]
|
|
638
|
+
|
|
639
|
+
[[package]]
|
|
640
|
+
name = "getrandom"
|
|
641
|
+
version = "0.4.2"
|
|
642
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
643
|
+
checksum = "0de51e6874e94e7bf76d726fc5d13ba782deca734ff60d5bb2fb2607c7406555"
|
|
644
|
+
dependencies = [
|
|
645
|
+
"cfg-if",
|
|
646
|
+
"libc",
|
|
647
|
+
"r-efi 6.0.0",
|
|
648
|
+
"wasip2",
|
|
649
|
+
"wasip3",
|
|
650
|
+
]
|
|
651
|
+
|
|
652
|
+
[[package]]
|
|
653
|
+
name = "hashbrown"
|
|
654
|
+
version = "0.14.5"
|
|
655
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
656
|
+
checksum = "e5274423e17b7c9fc20b6e7e208532f9b19825d82dfd615708b70edd83df41f1"
|
|
657
|
+
dependencies = [
|
|
658
|
+
"ahash",
|
|
659
|
+
]
|
|
660
|
+
|
|
661
|
+
[[package]]
|
|
662
|
+
name = "hashbrown"
|
|
663
|
+
version = "0.15.5"
|
|
664
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
665
|
+
checksum = "9229cfe53dfd69f0609a49f65461bd93001ea1ef889cd5529dd176593f5338a1"
|
|
666
|
+
dependencies = [
|
|
667
|
+
"foldhash",
|
|
668
|
+
]
|
|
669
|
+
|
|
670
|
+
[[package]]
|
|
671
|
+
name = "hashbrown"
|
|
672
|
+
version = "0.17.0"
|
|
673
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
674
|
+
checksum = "4f467dd6dccf739c208452f8014c75c18bb8301b050ad1cfb27153803edb0f51"
|
|
675
|
+
|
|
676
|
+
[[package]]
|
|
677
|
+
name = "hashlink"
|
|
678
|
+
version = "0.9.1"
|
|
679
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
680
|
+
checksum = "6ba4ff7128dee98c7dc9794b6a411377e1404dba1c97deb8d1a55297bd25d8af"
|
|
681
|
+
dependencies = [
|
|
682
|
+
"hashbrown 0.14.5",
|
|
683
|
+
]
|
|
684
|
+
|
|
685
|
+
[[package]]
|
|
686
|
+
name = "heck"
|
|
687
|
+
version = "0.5.0"
|
|
688
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
689
|
+
checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea"
|
|
690
|
+
|
|
691
|
+
[[package]]
|
|
692
|
+
name = "http"
|
|
693
|
+
version = "1.4.0"
|
|
694
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
695
|
+
checksum = "e3ba2a386d7f85a81f119ad7498ebe444d2e22c2af0b86b069416ace48b3311a"
|
|
696
|
+
dependencies = [
|
|
697
|
+
"bytes",
|
|
698
|
+
"itoa",
|
|
699
|
+
]
|
|
700
|
+
|
|
701
|
+
[[package]]
|
|
702
|
+
name = "http-body"
|
|
703
|
+
version = "1.0.1"
|
|
704
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
705
|
+
checksum = "1efedce1fb8e6913f23e0c92de8e62cd5b772a67e7b3946df930a62566c93184"
|
|
706
|
+
dependencies = [
|
|
707
|
+
"bytes",
|
|
708
|
+
"http",
|
|
709
|
+
]
|
|
710
|
+
|
|
711
|
+
[[package]]
|
|
712
|
+
name = "http-body-util"
|
|
713
|
+
version = "0.1.3"
|
|
714
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
715
|
+
checksum = "b021d93e26becf5dc7e1b75b1bed1fd93124b374ceb73f43d4d4eafec896a64a"
|
|
716
|
+
dependencies = [
|
|
717
|
+
"bytes",
|
|
718
|
+
"futures-core",
|
|
719
|
+
"http",
|
|
720
|
+
"http-body",
|
|
721
|
+
"pin-project-lite",
|
|
722
|
+
]
|
|
723
|
+
|
|
724
|
+
[[package]]
|
|
725
|
+
name = "httparse"
|
|
726
|
+
version = "1.10.1"
|
|
727
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
728
|
+
checksum = "6dbf3de79e51f3d586ab4cb9d5c3e2c14aa28ed23d180cf89b4df0454a69cc87"
|
|
729
|
+
|
|
730
|
+
[[package]]
|
|
731
|
+
name = "httpdate"
|
|
732
|
+
version = "1.0.3"
|
|
733
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
734
|
+
checksum = "df3b46402a9d5adb4c86a0cf463f42e19994e3ee891101b1841f30a545cb49a9"
|
|
735
|
+
|
|
736
|
+
[[package]]
|
|
737
|
+
name = "hyper"
|
|
738
|
+
version = "1.9.0"
|
|
739
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
740
|
+
checksum = "6299f016b246a94207e63da54dbe807655bf9e00044f73ded42c3ac5305fbcca"
|
|
741
|
+
dependencies = [
|
|
742
|
+
"atomic-waker",
|
|
743
|
+
"bytes",
|
|
744
|
+
"futures-channel",
|
|
745
|
+
"futures-core",
|
|
746
|
+
"http",
|
|
747
|
+
"http-body",
|
|
748
|
+
"httparse",
|
|
749
|
+
"httpdate",
|
|
750
|
+
"itoa",
|
|
751
|
+
"pin-project-lite",
|
|
752
|
+
"smallvec",
|
|
753
|
+
"tokio",
|
|
754
|
+
"want",
|
|
755
|
+
]
|
|
756
|
+
|
|
757
|
+
[[package]]
|
|
758
|
+
name = "hyper-rustls"
|
|
759
|
+
version = "0.27.9"
|
|
760
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
761
|
+
checksum = "33ca68d021ef39cf6463ab54c1d0f5daf03377b70561305bb89a8f83aab66e0f"
|
|
762
|
+
dependencies = [
|
|
763
|
+
"http",
|
|
764
|
+
"hyper",
|
|
765
|
+
"hyper-util",
|
|
766
|
+
"rustls",
|
|
767
|
+
"tokio",
|
|
768
|
+
"tokio-rustls",
|
|
769
|
+
"tower-service",
|
|
770
|
+
"webpki-roots",
|
|
771
|
+
]
|
|
772
|
+
|
|
773
|
+
[[package]]
|
|
774
|
+
name = "hyper-util"
|
|
775
|
+
version = "0.1.20"
|
|
776
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
777
|
+
checksum = "96547c2556ec9d12fb1578c4eaf448b04993e7fb79cbaad930a656880a6bdfa0"
|
|
778
|
+
dependencies = [
|
|
779
|
+
"base64",
|
|
780
|
+
"bytes",
|
|
781
|
+
"futures-channel",
|
|
782
|
+
"futures-util",
|
|
783
|
+
"http",
|
|
784
|
+
"http-body",
|
|
785
|
+
"hyper",
|
|
786
|
+
"ipnet",
|
|
787
|
+
"libc",
|
|
788
|
+
"percent-encoding",
|
|
789
|
+
"pin-project-lite",
|
|
790
|
+
"socket2",
|
|
791
|
+
"tokio",
|
|
792
|
+
"tower-service",
|
|
793
|
+
"tracing",
|
|
794
|
+
]
|
|
795
|
+
|
|
796
|
+
[[package]]
|
|
797
|
+
name = "iana-time-zone"
|
|
798
|
+
version = "0.1.65"
|
|
799
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
800
|
+
checksum = "e31bc9ad994ba00e440a8aa5c9ef0ec67d5cb5e5cb0cc7f8b744a35b389cc470"
|
|
801
|
+
dependencies = [
|
|
802
|
+
"android_system_properties",
|
|
803
|
+
"core-foundation-sys",
|
|
804
|
+
"iana-time-zone-haiku",
|
|
805
|
+
"js-sys",
|
|
806
|
+
"log",
|
|
807
|
+
"wasm-bindgen",
|
|
808
|
+
"windows-core",
|
|
809
|
+
]
|
|
810
|
+
|
|
811
|
+
[[package]]
|
|
812
|
+
name = "iana-time-zone-haiku"
|
|
813
|
+
version = "0.1.2"
|
|
814
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
815
|
+
checksum = "f31827a206f56af32e590ba56d5d2d085f558508192593743f16b2306495269f"
|
|
816
|
+
dependencies = [
|
|
817
|
+
"cc",
|
|
818
|
+
]
|
|
819
|
+
|
|
820
|
+
[[package]]
|
|
821
|
+
name = "icu_collections"
|
|
822
|
+
version = "2.2.0"
|
|
823
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
824
|
+
checksum = "2984d1cd16c883d7935b9e07e44071dca8d917fd52ecc02c04d5fa0b5a3f191c"
|
|
825
|
+
dependencies = [
|
|
826
|
+
"displaydoc",
|
|
827
|
+
"potential_utf",
|
|
828
|
+
"utf8_iter",
|
|
829
|
+
"yoke",
|
|
830
|
+
"zerofrom",
|
|
831
|
+
"zerovec",
|
|
832
|
+
]
|
|
833
|
+
|
|
834
|
+
[[package]]
|
|
835
|
+
name = "icu_locale_core"
|
|
836
|
+
version = "2.2.0"
|
|
837
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
838
|
+
checksum = "92219b62b3e2b4d88ac5119f8904c10f8f61bf7e95b640d25ba3075e6cac2c29"
|
|
839
|
+
dependencies = [
|
|
840
|
+
"displaydoc",
|
|
841
|
+
"litemap",
|
|
842
|
+
"tinystr",
|
|
843
|
+
"writeable",
|
|
844
|
+
"zerovec",
|
|
845
|
+
]
|
|
846
|
+
|
|
847
|
+
[[package]]
|
|
848
|
+
name = "icu_normalizer"
|
|
849
|
+
version = "2.2.0"
|
|
850
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
851
|
+
checksum = "c56e5ee99d6e3d33bd91c5d85458b6005a22140021cc324cea84dd0e72cff3b4"
|
|
852
|
+
dependencies = [
|
|
853
|
+
"icu_collections",
|
|
854
|
+
"icu_normalizer_data",
|
|
855
|
+
"icu_properties",
|
|
856
|
+
"icu_provider",
|
|
857
|
+
"smallvec",
|
|
858
|
+
"zerovec",
|
|
859
|
+
]
|
|
860
|
+
|
|
861
|
+
[[package]]
|
|
862
|
+
name = "icu_normalizer_data"
|
|
863
|
+
version = "2.2.0"
|
|
864
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
865
|
+
checksum = "da3be0ae77ea334f4da67c12f149704f19f81d1adf7c51cf482943e84a2bad38"
|
|
866
|
+
|
|
867
|
+
[[package]]
|
|
868
|
+
name = "icu_properties"
|
|
869
|
+
version = "2.2.0"
|
|
870
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
871
|
+
checksum = "bee3b67d0ea5c2cca5003417989af8996f8604e34fb9ddf96208a033901e70de"
|
|
872
|
+
dependencies = [
|
|
873
|
+
"icu_collections",
|
|
874
|
+
"icu_locale_core",
|
|
875
|
+
"icu_properties_data",
|
|
876
|
+
"icu_provider",
|
|
877
|
+
"zerotrie",
|
|
878
|
+
"zerovec",
|
|
879
|
+
]
|
|
880
|
+
|
|
881
|
+
[[package]]
|
|
882
|
+
name = "icu_properties_data"
|
|
883
|
+
version = "2.2.0"
|
|
884
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
885
|
+
checksum = "8e2bbb201e0c04f7b4b3e14382af113e17ba4f63e2c9d2ee626b720cbce54a14"
|
|
886
|
+
|
|
887
|
+
[[package]]
|
|
888
|
+
name = "icu_provider"
|
|
889
|
+
version = "2.2.0"
|
|
890
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
891
|
+
checksum = "139c4cf31c8b5f33d7e199446eff9c1e02decfc2f0eec2c8d71f65befa45b421"
|
|
892
|
+
dependencies = [
|
|
893
|
+
"displaydoc",
|
|
894
|
+
"icu_locale_core",
|
|
895
|
+
"writeable",
|
|
896
|
+
"yoke",
|
|
897
|
+
"zerofrom",
|
|
898
|
+
"zerotrie",
|
|
899
|
+
"zerovec",
|
|
900
|
+
]
|
|
901
|
+
|
|
902
|
+
[[package]]
|
|
903
|
+
name = "id-arena"
|
|
904
|
+
version = "2.3.0"
|
|
905
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
906
|
+
checksum = "3d3067d79b975e8844ca9eb072e16b31c3c1c36928edf9c6789548c524d0d954"
|
|
907
|
+
|
|
908
|
+
[[package]]
|
|
909
|
+
name = "idna"
|
|
910
|
+
version = "1.1.0"
|
|
911
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
912
|
+
checksum = "3b0875f23caa03898994f6ddc501886a45c7d3d62d04d2d90788d47be1b1e4de"
|
|
913
|
+
dependencies = [
|
|
914
|
+
"idna_adapter",
|
|
915
|
+
"smallvec",
|
|
916
|
+
"utf8_iter",
|
|
917
|
+
]
|
|
918
|
+
|
|
919
|
+
[[package]]
|
|
920
|
+
name = "idna_adapter"
|
|
921
|
+
version = "1.2.1"
|
|
922
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
923
|
+
checksum = "3acae9609540aa318d1bc588455225fb2085b9ed0c4f6bd0d9d5bcd86f1a0344"
|
|
924
|
+
dependencies = [
|
|
925
|
+
"icu_normalizer",
|
|
926
|
+
"icu_properties",
|
|
927
|
+
]
|
|
928
|
+
|
|
929
|
+
[[package]]
|
|
930
|
+
name = "indexmap"
|
|
931
|
+
version = "2.14.0"
|
|
932
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
933
|
+
checksum = "d466e9454f08e4a911e14806c24e16fba1b4c121d1ea474396f396069cf949d9"
|
|
934
|
+
dependencies = [
|
|
935
|
+
"equivalent",
|
|
936
|
+
"hashbrown 0.17.0",
|
|
937
|
+
"serde",
|
|
938
|
+
"serde_core",
|
|
939
|
+
]
|
|
940
|
+
|
|
941
|
+
[[package]]
|
|
942
|
+
name = "ipnet"
|
|
943
|
+
version = "2.12.0"
|
|
944
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
945
|
+
checksum = "d98f6fed1fde3f8c21bc40a1abb88dd75e67924f9cffc3ef95607bad8017f8e2"
|
|
946
|
+
|
|
947
|
+
[[package]]
|
|
948
|
+
name = "iri-string"
|
|
949
|
+
version = "0.7.12"
|
|
950
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
951
|
+
checksum = "25e659a4bb38e810ebc252e53b5814ff908a8c58c2a9ce2fae1bbec24cbf4e20"
|
|
952
|
+
dependencies = [
|
|
953
|
+
"memchr",
|
|
954
|
+
"serde",
|
|
955
|
+
]
|
|
956
|
+
|
|
957
|
+
[[package]]
|
|
958
|
+
name = "is_terminal_polyfill"
|
|
959
|
+
version = "1.70.2"
|
|
960
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
961
|
+
checksum = "a6cb138bb79a146c1bd460005623e142ef0181e3d0219cb493e02f7d08a35695"
|
|
962
|
+
|
|
963
|
+
[[package]]
|
|
964
|
+
name = "itoa"
|
|
965
|
+
version = "1.0.18"
|
|
966
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
967
|
+
checksum = "8f42a60cbdf9a97f5d2305f08a87dc4e09308d1276d28c869c684d7777685682"
|
|
968
|
+
|
|
969
|
+
[[package]]
|
|
970
|
+
name = "js-sys"
|
|
971
|
+
version = "0.3.95"
|
|
972
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
973
|
+
checksum = "2964e92d1d9dc3364cae4d718d93f227e3abb088e747d92e0395bfdedf1c12ca"
|
|
974
|
+
dependencies = [
|
|
975
|
+
"cfg-if",
|
|
976
|
+
"futures-util",
|
|
977
|
+
"once_cell",
|
|
978
|
+
"wasm-bindgen",
|
|
979
|
+
]
|
|
980
|
+
|
|
981
|
+
[[package]]
|
|
982
|
+
name = "lazy_static"
|
|
983
|
+
version = "1.5.0"
|
|
984
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
985
|
+
checksum = "bbd2bcb4c963f2ddae06a2efc7e9f3591312473c50c6685e1f298068316e66fe"
|
|
986
|
+
|
|
987
|
+
[[package]]
|
|
988
|
+
name = "leb128fmt"
|
|
989
|
+
version = "0.1.0"
|
|
990
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
991
|
+
checksum = "09edd9e8b54e49e587e4f6295a7d29c3ea94d469cb40ab8ca70b288248a81db2"
|
|
992
|
+
|
|
993
|
+
[[package]]
|
|
994
|
+
name = "libc"
|
|
995
|
+
version = "0.2.185"
|
|
996
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
997
|
+
checksum = "52ff2c0fe9bc6cb6b14a0592c2ff4fa9ceb83eea9db979b0487cd054946a2b8f"
|
|
998
|
+
|
|
999
|
+
[[package]]
|
|
1000
|
+
name = "libsqlite3-sys"
|
|
1001
|
+
version = "0.30.1"
|
|
1002
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1003
|
+
checksum = "2e99fb7a497b1e3339bc746195567ed8d3e24945ecd636e3619d20b9de9e9149"
|
|
1004
|
+
dependencies = [
|
|
1005
|
+
"cc",
|
|
1006
|
+
"pkg-config",
|
|
1007
|
+
"vcpkg",
|
|
1008
|
+
]
|
|
1009
|
+
|
|
1010
|
+
[[package]]
|
|
1011
|
+
name = "linux-raw-sys"
|
|
1012
|
+
version = "0.4.15"
|
|
1013
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1014
|
+
checksum = "d26c52dbd32dccf2d10cac7725f8eae5296885fb5703b261f7d0a0739ec807ab"
|
|
1015
|
+
|
|
1016
|
+
[[package]]
|
|
1017
|
+
name = "linux-raw-sys"
|
|
1018
|
+
version = "0.12.1"
|
|
1019
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1020
|
+
checksum = "32a66949e030da00e8c7d4434b251670a91556f4144941d37452769c25d58a53"
|
|
1021
|
+
|
|
1022
|
+
[[package]]
|
|
1023
|
+
name = "litemap"
|
|
1024
|
+
version = "0.8.2"
|
|
1025
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1026
|
+
checksum = "92daf443525c4cce67b150400bc2316076100ce0b3686209eb8cf3c31612e6f0"
|
|
1027
|
+
|
|
1028
|
+
[[package]]
|
|
1029
|
+
name = "lock_api"
|
|
1030
|
+
version = "0.4.14"
|
|
1031
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1032
|
+
checksum = "224399e74b87b5f3557511d98dff8b14089b3dadafcab6bb93eab67d3aace965"
|
|
1033
|
+
dependencies = [
|
|
1034
|
+
"scopeguard",
|
|
1035
|
+
]
|
|
1036
|
+
|
|
1037
|
+
[[package]]
|
|
1038
|
+
name = "log"
|
|
1039
|
+
version = "0.4.29"
|
|
1040
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1041
|
+
checksum = "5e5032e24019045c762d3c0f28f5b6b8bbf38563a65908389bf7978758920897"
|
|
1042
|
+
|
|
1043
|
+
[[package]]
|
|
1044
|
+
name = "lru-slab"
|
|
1045
|
+
version = "0.1.2"
|
|
1046
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1047
|
+
checksum = "112b39cec0b298b6c1999fee3e31427f74f676e4cb9879ed1a121b43661a4154"
|
|
1048
|
+
|
|
1049
|
+
[[package]]
|
|
1050
|
+
name = "matchers"
|
|
1051
|
+
version = "0.2.0"
|
|
1052
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1053
|
+
checksum = "d1525a2a28c7f4fa0fc98bb91ae755d1e2d1505079e05539e35bc876b5d65ae9"
|
|
1054
|
+
dependencies = [
|
|
1055
|
+
"regex-automata",
|
|
1056
|
+
]
|
|
1057
|
+
|
|
1058
|
+
[[package]]
|
|
1059
|
+
name = "matchit"
|
|
1060
|
+
version = "0.8.4"
|
|
1061
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1062
|
+
checksum = "47e1ffaa40ddd1f3ed91f717a33c8c0ee23fff369e3aa8772b9605cc1d22f4c3"
|
|
1063
|
+
|
|
1064
|
+
[[package]]
|
|
1065
|
+
name = "memchr"
|
|
1066
|
+
version = "2.8.0"
|
|
1067
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1068
|
+
checksum = "f8ca58f447f06ed17d5fc4043ce1b10dd205e060fb3ce5b979b8ed8e59ff3f79"
|
|
1069
|
+
|
|
1070
|
+
[[package]]
|
|
1071
|
+
name = "memoffset"
|
|
1072
|
+
version = "0.9.1"
|
|
1073
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1074
|
+
checksum = "488016bfae457b036d996092f6cb448677611ce4449e970ceaf42695203f218a"
|
|
1075
|
+
dependencies = [
|
|
1076
|
+
"autocfg",
|
|
1077
|
+
]
|
|
1078
|
+
|
|
1079
|
+
[[package]]
|
|
1080
|
+
name = "mime"
|
|
1081
|
+
version = "0.3.17"
|
|
1082
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1083
|
+
checksum = "6877bb514081ee2a7ff5ef9de3281f14a4dd4bceac4c09388074a6b5df8a139a"
|
|
1084
|
+
|
|
1085
|
+
[[package]]
|
|
1086
|
+
name = "mime_guess"
|
|
1087
|
+
version = "2.0.5"
|
|
1088
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1089
|
+
checksum = "f7c44f8e672c00fe5308fa235f821cb4198414e1c77935c1ab6948d3fd78550e"
|
|
1090
|
+
dependencies = [
|
|
1091
|
+
"mime",
|
|
1092
|
+
"unicase",
|
|
1093
|
+
]
|
|
1094
|
+
|
|
1095
|
+
[[package]]
|
|
1096
|
+
name = "miniz_oxide"
|
|
1097
|
+
version = "0.8.9"
|
|
1098
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1099
|
+
checksum = "1fa76a2c86f704bdb222d66965fb3d63269ce38518b83cb0575fca855ebb6316"
|
|
1100
|
+
dependencies = [
|
|
1101
|
+
"adler2",
|
|
1102
|
+
"simd-adler32",
|
|
1103
|
+
]
|
|
1104
|
+
|
|
1105
|
+
[[package]]
|
|
1106
|
+
name = "mio"
|
|
1107
|
+
version = "1.2.0"
|
|
1108
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1109
|
+
checksum = "50b7e5b27aa02a74bac8c3f23f448f8d87ff11f92d3aac1a6ed369ee08cc56c1"
|
|
1110
|
+
dependencies = [
|
|
1111
|
+
"libc",
|
|
1112
|
+
"log",
|
|
1113
|
+
"wasi",
|
|
1114
|
+
"windows-sys 0.61.2",
|
|
1115
|
+
]
|
|
1116
|
+
|
|
1117
|
+
[[package]]
|
|
1118
|
+
name = "nix"
|
|
1119
|
+
version = "0.31.2"
|
|
1120
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1121
|
+
checksum = "5d6d0705320c1e6ba1d912b5e37cf18071b6c2e9b7fa8215a1e8a7651966f5d3"
|
|
1122
|
+
dependencies = [
|
|
1123
|
+
"bitflags",
|
|
1124
|
+
"cfg-if",
|
|
1125
|
+
"cfg_aliases",
|
|
1126
|
+
"libc",
|
|
1127
|
+
"memoffset",
|
|
1128
|
+
]
|
|
1129
|
+
|
|
1130
|
+
[[package]]
|
|
1131
|
+
name = "nu-ansi-term"
|
|
1132
|
+
version = "0.50.3"
|
|
1133
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1134
|
+
checksum = "7957b9740744892f114936ab4a57b3f487491bbeafaf8083688b16841a4240e5"
|
|
1135
|
+
dependencies = [
|
|
1136
|
+
"windows-sys 0.61.2",
|
|
1137
|
+
]
|
|
1138
|
+
|
|
1139
|
+
[[package]]
|
|
1140
|
+
name = "num-traits"
|
|
1141
|
+
version = "0.2.19"
|
|
1142
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1143
|
+
checksum = "071dfc062690e90b734c0b2273ce72ad0ffa95f0c74596bc250dcfd960262841"
|
|
1144
|
+
dependencies = [
|
|
1145
|
+
"autocfg",
|
|
1146
|
+
]
|
|
1147
|
+
|
|
1148
|
+
[[package]]
|
|
1149
|
+
name = "objc2"
|
|
1150
|
+
version = "0.6.4"
|
|
1151
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1152
|
+
checksum = "3a12a8ed07aefc768292f076dc3ac8c48f3781c8f2d5851dd3d98950e8c5a89f"
|
|
1153
|
+
dependencies = [
|
|
1154
|
+
"objc2-encode",
|
|
1155
|
+
]
|
|
1156
|
+
|
|
1157
|
+
[[package]]
|
|
1158
|
+
name = "objc2-app-kit"
|
|
1159
|
+
version = "0.3.2"
|
|
1160
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1161
|
+
checksum = "d49e936b501e5c5bf01fda3a9452ff86dc3ea98ad5f283e1455153142d97518c"
|
|
1162
|
+
dependencies = [
|
|
1163
|
+
"bitflags",
|
|
1164
|
+
"objc2",
|
|
1165
|
+
"objc2-foundation",
|
|
1166
|
+
]
|
|
1167
|
+
|
|
1168
|
+
[[package]]
|
|
1169
|
+
name = "objc2-core-foundation"
|
|
1170
|
+
version = "0.3.2"
|
|
1171
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1172
|
+
checksum = "2a180dd8642fa45cdb7dd721cd4c11b1cadd4929ce112ebd8b9f5803cc79d536"
|
|
1173
|
+
dependencies = [
|
|
1174
|
+
"bitflags",
|
|
1175
|
+
"dispatch2",
|
|
1176
|
+
"objc2",
|
|
1177
|
+
]
|
|
1178
|
+
|
|
1179
|
+
[[package]]
|
|
1180
|
+
name = "objc2-encode"
|
|
1181
|
+
version = "4.1.0"
|
|
1182
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1183
|
+
checksum = "ef25abbcd74fb2609453eb695bd2f860d389e457f67dc17cafc8b8cbc89d0c33"
|
|
1184
|
+
|
|
1185
|
+
[[package]]
|
|
1186
|
+
name = "objc2-foundation"
|
|
1187
|
+
version = "0.3.2"
|
|
1188
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1189
|
+
checksum = "e3e0adef53c21f888deb4fa59fc59f7eb17404926ee8a6f59f5df0fd7f9f3272"
|
|
1190
|
+
dependencies = [
|
|
1191
|
+
"bitflags",
|
|
1192
|
+
"block2",
|
|
1193
|
+
"libc",
|
|
1194
|
+
"objc2",
|
|
1195
|
+
"objc2-core-foundation",
|
|
1196
|
+
]
|
|
1197
|
+
|
|
1198
|
+
[[package]]
|
|
1199
|
+
name = "objc2-virtualization"
|
|
1200
|
+
version = "0.3.2"
|
|
1201
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1202
|
+
checksum = "8edb98625ad1f7dea2e82ab54d5bdf3f477e6645b550f4a7cced1818be9ff59d"
|
|
1203
|
+
dependencies = [
|
|
1204
|
+
"bitflags",
|
|
1205
|
+
"block2",
|
|
1206
|
+
"dispatch2",
|
|
1207
|
+
"objc2",
|
|
1208
|
+
"objc2-app-kit",
|
|
1209
|
+
"objc2-core-foundation",
|
|
1210
|
+
"objc2-foundation",
|
|
1211
|
+
]
|
|
1212
|
+
|
|
1213
|
+
[[package]]
|
|
1214
|
+
name = "once_cell"
|
|
1215
|
+
version = "1.21.4"
|
|
1216
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1217
|
+
checksum = "9f7c3e4beb33f85d45ae3e3a1792185706c8e16d043238c593331cc7cd313b50"
|
|
1218
|
+
|
|
1219
|
+
[[package]]
|
|
1220
|
+
name = "once_cell_polyfill"
|
|
1221
|
+
version = "1.70.2"
|
|
1222
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1223
|
+
checksum = "384b8ab6d37215f3c5301a95a4accb5d64aa607f1fcb26a11b5303878451b4fe"
|
|
1224
|
+
|
|
1225
|
+
[[package]]
|
|
1226
|
+
name = "parking_lot"
|
|
1227
|
+
version = "0.12.5"
|
|
1228
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1229
|
+
checksum = "93857453250e3077bd71ff98b6a65ea6621a19bb0f559a85248955ac12c45a1a"
|
|
1230
|
+
dependencies = [
|
|
1231
|
+
"lock_api",
|
|
1232
|
+
"parking_lot_core",
|
|
1233
|
+
]
|
|
1234
|
+
|
|
1235
|
+
[[package]]
|
|
1236
|
+
name = "parking_lot_core"
|
|
1237
|
+
version = "0.9.12"
|
|
1238
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1239
|
+
checksum = "2621685985a2ebf1c516881c026032ac7deafcda1a2c9b7850dc81e3dfcb64c1"
|
|
1240
|
+
dependencies = [
|
|
1241
|
+
"cfg-if",
|
|
1242
|
+
"libc",
|
|
1243
|
+
"redox_syscall",
|
|
1244
|
+
"smallvec",
|
|
1245
|
+
"windows-link",
|
|
1246
|
+
]
|
|
1247
|
+
|
|
1248
|
+
[[package]]
|
|
1249
|
+
name = "percent-encoding"
|
|
1250
|
+
version = "2.3.2"
|
|
1251
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1252
|
+
checksum = "9b4f627cb1b25917193a259e49bdad08f671f8d9708acfd5fe0a8c1455d87220"
|
|
1253
|
+
|
|
1254
|
+
[[package]]
|
|
1255
|
+
name = "pin-project-lite"
|
|
1256
|
+
version = "0.2.17"
|
|
1257
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1258
|
+
checksum = "a89322df9ebe1c1578d689c92318e070967d1042b512afbe49518723f4e6d5cd"
|
|
1259
|
+
|
|
1260
|
+
[[package]]
|
|
1261
|
+
name = "pkg-config"
|
|
1262
|
+
version = "0.3.33"
|
|
1263
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1264
|
+
checksum = "19f132c84eca552bf34cab8ec81f1c1dcc229b811638f9d283dceabe58c5569e"
|
|
1265
|
+
|
|
1266
|
+
[[package]]
|
|
1267
|
+
name = "potential_utf"
|
|
1268
|
+
version = "0.1.5"
|
|
1269
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1270
|
+
checksum = "0103b1cef7ec0cf76490e969665504990193874ea05c85ff9bab8b911d0a0564"
|
|
1271
|
+
dependencies = [
|
|
1272
|
+
"zerovec",
|
|
1273
|
+
]
|
|
1274
|
+
|
|
1275
|
+
[[package]]
|
|
1276
|
+
name = "ppv-lite86"
|
|
1277
|
+
version = "0.2.21"
|
|
1278
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1279
|
+
checksum = "85eae3c4ed2f50dcfe72643da4befc30deadb458a9b590d720cde2f2b1e97da9"
|
|
1280
|
+
dependencies = [
|
|
1281
|
+
"zerocopy",
|
|
1282
|
+
]
|
|
1283
|
+
|
|
1284
|
+
[[package]]
|
|
1285
|
+
name = "prettyplease"
|
|
1286
|
+
version = "0.2.37"
|
|
1287
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1288
|
+
checksum = "479ca8adacdd7ce8f1fb39ce9ecccbfe93a3f1344b3d0d97f20bc0196208f62b"
|
|
1289
|
+
dependencies = [
|
|
1290
|
+
"proc-macro2",
|
|
1291
|
+
"syn",
|
|
1292
|
+
]
|
|
1293
|
+
|
|
1294
|
+
[[package]]
|
|
1295
|
+
name = "proc-macro2"
|
|
1296
|
+
version = "1.0.106"
|
|
1297
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1298
|
+
checksum = "8fd00f0bb2e90d81d1044c2b32617f68fcb9fa3bb7640c23e9c748e53fb30934"
|
|
1299
|
+
dependencies = [
|
|
1300
|
+
"unicode-ident",
|
|
1301
|
+
]
|
|
1302
|
+
|
|
1303
|
+
[[package]]
|
|
1304
|
+
name = "proptest"
|
|
1305
|
+
version = "1.11.0"
|
|
1306
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1307
|
+
checksum = "4b45fcc2344c680f5025fe57779faef368840d0bd1f42f216291f0dc4ace4744"
|
|
1308
|
+
dependencies = [
|
|
1309
|
+
"bit-set",
|
|
1310
|
+
"bit-vec",
|
|
1311
|
+
"bitflags",
|
|
1312
|
+
"num-traits",
|
|
1313
|
+
"rand",
|
|
1314
|
+
"rand_chacha",
|
|
1315
|
+
"rand_xorshift",
|
|
1316
|
+
"regex-syntax",
|
|
1317
|
+
"rusty-fork",
|
|
1318
|
+
"tempfile",
|
|
1319
|
+
"unarray",
|
|
1320
|
+
]
|
|
1321
|
+
|
|
1322
|
+
[[package]]
|
|
1323
|
+
name = "quick-error"
|
|
1324
|
+
version = "1.2.3"
|
|
1325
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1326
|
+
checksum = "a1d01941d82fa2ab50be1e79e6714289dd7cde78eba4c074bc5a4374f650dfe0"
|
|
1327
|
+
|
|
1328
|
+
[[package]]
|
|
1329
|
+
name = "quinn"
|
|
1330
|
+
version = "0.11.9"
|
|
1331
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1332
|
+
checksum = "b9e20a958963c291dc322d98411f541009df2ced7b5a4f2bd52337638cfccf20"
|
|
1333
|
+
dependencies = [
|
|
1334
|
+
"bytes",
|
|
1335
|
+
"cfg_aliases",
|
|
1336
|
+
"pin-project-lite",
|
|
1337
|
+
"quinn-proto",
|
|
1338
|
+
"quinn-udp",
|
|
1339
|
+
"rustc-hash",
|
|
1340
|
+
"rustls",
|
|
1341
|
+
"socket2",
|
|
1342
|
+
"thiserror",
|
|
1343
|
+
"tokio",
|
|
1344
|
+
"tracing",
|
|
1345
|
+
"web-time",
|
|
1346
|
+
]
|
|
1347
|
+
|
|
1348
|
+
[[package]]
|
|
1349
|
+
name = "quinn-proto"
|
|
1350
|
+
version = "0.11.14"
|
|
1351
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1352
|
+
checksum = "434b42fec591c96ef50e21e886936e66d3cc3f737104fdb9b737c40ffb94c098"
|
|
1353
|
+
dependencies = [
|
|
1354
|
+
"bytes",
|
|
1355
|
+
"getrandom 0.3.4",
|
|
1356
|
+
"lru-slab",
|
|
1357
|
+
"rand",
|
|
1358
|
+
"ring",
|
|
1359
|
+
"rustc-hash",
|
|
1360
|
+
"rustls",
|
|
1361
|
+
"rustls-pki-types",
|
|
1362
|
+
"slab",
|
|
1363
|
+
"thiserror",
|
|
1364
|
+
"tinyvec",
|
|
1365
|
+
"tracing",
|
|
1366
|
+
"web-time",
|
|
1367
|
+
]
|
|
1368
|
+
|
|
1369
|
+
[[package]]
|
|
1370
|
+
name = "quinn-udp"
|
|
1371
|
+
version = "0.5.14"
|
|
1372
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1373
|
+
checksum = "addec6a0dcad8a8d96a771f815f0eaf55f9d1805756410b39f5fa81332574cbd"
|
|
1374
|
+
dependencies = [
|
|
1375
|
+
"cfg_aliases",
|
|
1376
|
+
"libc",
|
|
1377
|
+
"once_cell",
|
|
1378
|
+
"socket2",
|
|
1379
|
+
"tracing",
|
|
1380
|
+
"windows-sys 0.60.2",
|
|
1381
|
+
]
|
|
1382
|
+
|
|
1383
|
+
[[package]]
|
|
1384
|
+
name = "quote"
|
|
1385
|
+
version = "1.0.45"
|
|
1386
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1387
|
+
checksum = "41f2619966050689382d2b44f664f4bc593e129785a36d6ee376ddf37259b924"
|
|
1388
|
+
dependencies = [
|
|
1389
|
+
"proc-macro2",
|
|
1390
|
+
]
|
|
1391
|
+
|
|
1392
|
+
[[package]]
|
|
1393
|
+
name = "r-efi"
|
|
1394
|
+
version = "5.3.0"
|
|
1395
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1396
|
+
checksum = "69cdb34c158ceb288df11e18b4bd39de994f6657d83847bdffdbd7f346754b0f"
|
|
1397
|
+
|
|
1398
|
+
[[package]]
|
|
1399
|
+
name = "r-efi"
|
|
1400
|
+
version = "6.0.0"
|
|
1401
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1402
|
+
checksum = "f8dcc9c7d52a811697d2151c701e0d08956f92b0e24136cf4cf27b57a6a0d9bf"
|
|
1403
|
+
|
|
1404
|
+
[[package]]
|
|
1405
|
+
name = "rand"
|
|
1406
|
+
version = "0.9.4"
|
|
1407
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1408
|
+
checksum = "44c5af06bb1b7d3216d91932aed5265164bf384dc89cd6ba05cf59a35f5f76ea"
|
|
1409
|
+
dependencies = [
|
|
1410
|
+
"rand_chacha",
|
|
1411
|
+
"rand_core",
|
|
1412
|
+
]
|
|
1413
|
+
|
|
1414
|
+
[[package]]
|
|
1415
|
+
name = "rand_chacha"
|
|
1416
|
+
version = "0.9.0"
|
|
1417
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1418
|
+
checksum = "d3022b5f1df60f26e1ffddd6c66e8aa15de382ae63b3a0c1bfc0e4d3e3f325cb"
|
|
1419
|
+
dependencies = [
|
|
1420
|
+
"ppv-lite86",
|
|
1421
|
+
"rand_core",
|
|
1422
|
+
]
|
|
1423
|
+
|
|
1424
|
+
[[package]]
|
|
1425
|
+
name = "rand_core"
|
|
1426
|
+
version = "0.9.5"
|
|
1427
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1428
|
+
checksum = "76afc826de14238e6e8c374ddcc1fa19e374fd8dd986b0d2af0d02377261d83c"
|
|
1429
|
+
dependencies = [
|
|
1430
|
+
"getrandom 0.3.4",
|
|
1431
|
+
]
|
|
1432
|
+
|
|
1433
|
+
[[package]]
|
|
1434
|
+
name = "rand_xorshift"
|
|
1435
|
+
version = "0.4.0"
|
|
1436
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1437
|
+
checksum = "513962919efc330f829edb2535844d1b912b0fbe2ca165d613e4e8788bb05a5a"
|
|
1438
|
+
dependencies = [
|
|
1439
|
+
"rand_core",
|
|
1440
|
+
]
|
|
1441
|
+
|
|
1442
|
+
[[package]]
|
|
1443
|
+
name = "redox_syscall"
|
|
1444
|
+
version = "0.5.18"
|
|
1445
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1446
|
+
checksum = "ed2bf2547551a7053d6fdfafda3f938979645c44812fbfcda098faae3f1a362d"
|
|
1447
|
+
dependencies = [
|
|
1448
|
+
"bitflags",
|
|
1449
|
+
]
|
|
1450
|
+
|
|
1451
|
+
[[package]]
|
|
1452
|
+
name = "reflink-copy"
|
|
1453
|
+
version = "0.1.29"
|
|
1454
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1455
|
+
checksum = "13362233b147e57674c37b802d216b7c5e3dcccbed8967c84f0d8d223868ae27"
|
|
1456
|
+
dependencies = [
|
|
1457
|
+
"cfg-if",
|
|
1458
|
+
"libc",
|
|
1459
|
+
"rustix 1.1.4",
|
|
1460
|
+
"windows",
|
|
1461
|
+
]
|
|
1462
|
+
|
|
1463
|
+
[[package]]
|
|
1464
|
+
name = "regex"
|
|
1465
|
+
version = "1.12.3"
|
|
1466
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1467
|
+
checksum = "e10754a14b9137dd7b1e3e5b0493cc9171fdd105e0ab477f51b72e7f3ac0e276"
|
|
1468
|
+
dependencies = [
|
|
1469
|
+
"aho-corasick",
|
|
1470
|
+
"memchr",
|
|
1471
|
+
"regex-automata",
|
|
1472
|
+
"regex-syntax",
|
|
1473
|
+
]
|
|
1474
|
+
|
|
1475
|
+
[[package]]
|
|
1476
|
+
name = "regex-automata"
|
|
1477
|
+
version = "0.4.14"
|
|
1478
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1479
|
+
checksum = "6e1dd4122fc1595e8162618945476892eefca7b88c52820e74af6262213cae8f"
|
|
1480
|
+
dependencies = [
|
|
1481
|
+
"aho-corasick",
|
|
1482
|
+
"memchr",
|
|
1483
|
+
"regex-syntax",
|
|
1484
|
+
]
|
|
1485
|
+
|
|
1486
|
+
[[package]]
|
|
1487
|
+
name = "regex-syntax"
|
|
1488
|
+
version = "0.8.10"
|
|
1489
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1490
|
+
checksum = "dc897dd8d9e8bd1ed8cdad82b5966c3e0ecae09fb1907d58efaa013543185d0a"
|
|
1491
|
+
|
|
1492
|
+
[[package]]
|
|
1493
|
+
name = "reqwest"
|
|
1494
|
+
version = "0.12.28"
|
|
1495
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1496
|
+
checksum = "eddd3ca559203180a307f12d114c268abf583f59b03cb906fd0b3ff8646c1147"
|
|
1497
|
+
dependencies = [
|
|
1498
|
+
"base64",
|
|
1499
|
+
"bytes",
|
|
1500
|
+
"futures-core",
|
|
1501
|
+
"futures-util",
|
|
1502
|
+
"http",
|
|
1503
|
+
"http-body",
|
|
1504
|
+
"http-body-util",
|
|
1505
|
+
"hyper",
|
|
1506
|
+
"hyper-rustls",
|
|
1507
|
+
"hyper-util",
|
|
1508
|
+
"js-sys",
|
|
1509
|
+
"log",
|
|
1510
|
+
"percent-encoding",
|
|
1511
|
+
"pin-project-lite",
|
|
1512
|
+
"quinn",
|
|
1513
|
+
"rustls",
|
|
1514
|
+
"rustls-pki-types",
|
|
1515
|
+
"serde",
|
|
1516
|
+
"serde_json",
|
|
1517
|
+
"serde_urlencoded",
|
|
1518
|
+
"sync_wrapper",
|
|
1519
|
+
"tokio",
|
|
1520
|
+
"tokio-rustls",
|
|
1521
|
+
"tokio-util",
|
|
1522
|
+
"tower",
|
|
1523
|
+
"tower-http",
|
|
1524
|
+
"tower-service",
|
|
1525
|
+
"url",
|
|
1526
|
+
"wasm-bindgen",
|
|
1527
|
+
"wasm-bindgen-futures",
|
|
1528
|
+
"wasm-streams",
|
|
1529
|
+
"web-sys",
|
|
1530
|
+
"webpki-roots",
|
|
1531
|
+
]
|
|
1532
|
+
|
|
1533
|
+
[[package]]
|
|
1534
|
+
name = "ring"
|
|
1535
|
+
version = "0.17.14"
|
|
1536
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1537
|
+
checksum = "a4689e6c2294d81e88dc6261c768b63bc4fcdb852be6d1352498b114f61383b7"
|
|
1538
|
+
dependencies = [
|
|
1539
|
+
"cc",
|
|
1540
|
+
"cfg-if",
|
|
1541
|
+
"getrandom 0.2.17",
|
|
1542
|
+
"libc",
|
|
1543
|
+
"untrusted",
|
|
1544
|
+
"windows-sys 0.52.0",
|
|
1545
|
+
]
|
|
1546
|
+
|
|
1547
|
+
[[package]]
|
|
1548
|
+
name = "rusqlite"
|
|
1549
|
+
version = "0.32.1"
|
|
1550
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1551
|
+
checksum = "7753b721174eb8ff87a9a0e799e2d7bc3749323e773db92e0984debb00019d6e"
|
|
1552
|
+
dependencies = [
|
|
1553
|
+
"bitflags",
|
|
1554
|
+
"fallible-iterator",
|
|
1555
|
+
"fallible-streaming-iterator",
|
|
1556
|
+
"hashlink",
|
|
1557
|
+
"libsqlite3-sys",
|
|
1558
|
+
"smallvec",
|
|
1559
|
+
]
|
|
1560
|
+
|
|
1561
|
+
[[package]]
|
|
1562
|
+
name = "rust-embed"
|
|
1563
|
+
version = "8.11.0"
|
|
1564
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1565
|
+
checksum = "04113cb9355a377d83f06ef1f0a45b8ab8cd7d8b1288160717d66df5c7988d27"
|
|
1566
|
+
dependencies = [
|
|
1567
|
+
"rust-embed-impl",
|
|
1568
|
+
"rust-embed-utils",
|
|
1569
|
+
"walkdir",
|
|
1570
|
+
]
|
|
1571
|
+
|
|
1572
|
+
[[package]]
|
|
1573
|
+
name = "rust-embed-impl"
|
|
1574
|
+
version = "8.11.0"
|
|
1575
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1576
|
+
checksum = "da0902e4c7c8e997159ab384e6d0fc91c221375f6894346ae107f47dd0f3ccaa"
|
|
1577
|
+
dependencies = [
|
|
1578
|
+
"proc-macro2",
|
|
1579
|
+
"quote",
|
|
1580
|
+
"rust-embed-utils",
|
|
1581
|
+
"syn",
|
|
1582
|
+
"walkdir",
|
|
1583
|
+
]
|
|
1584
|
+
|
|
1585
|
+
[[package]]
|
|
1586
|
+
name = "rust-embed-utils"
|
|
1587
|
+
version = "8.11.0"
|
|
1588
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1589
|
+
checksum = "5bcdef0be6fe7f6fa333b1073c949729274b05f123a0ad7efcb8efd878e5c3b1"
|
|
1590
|
+
dependencies = [
|
|
1591
|
+
"sha2",
|
|
1592
|
+
"walkdir",
|
|
1593
|
+
]
|
|
1594
|
+
|
|
1595
|
+
[[package]]
|
|
1596
|
+
name = "rustc-hash"
|
|
1597
|
+
version = "2.1.2"
|
|
1598
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1599
|
+
checksum = "94300abf3f1ae2e2b8ffb7b58043de3d399c73fa6f4b73826402a5c457614dbe"
|
|
1600
|
+
|
|
1601
|
+
[[package]]
|
|
1602
|
+
name = "rustix"
|
|
1603
|
+
version = "0.38.44"
|
|
1604
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1605
|
+
checksum = "fdb5bc1ae2baa591800df16c9ca78619bf65c0488b41b96ccec5d11220d8c154"
|
|
1606
|
+
dependencies = [
|
|
1607
|
+
"bitflags",
|
|
1608
|
+
"errno",
|
|
1609
|
+
"libc",
|
|
1610
|
+
"linux-raw-sys 0.4.15",
|
|
1611
|
+
"windows-sys 0.59.0",
|
|
1612
|
+
]
|
|
1613
|
+
|
|
1614
|
+
[[package]]
|
|
1615
|
+
name = "rustix"
|
|
1616
|
+
version = "1.1.4"
|
|
1617
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1618
|
+
checksum = "b6fe4565b9518b83ef4f91bb47ce29620ca828bd32cb7e408f0062e9930ba190"
|
|
1619
|
+
dependencies = [
|
|
1620
|
+
"bitflags",
|
|
1621
|
+
"errno",
|
|
1622
|
+
"libc",
|
|
1623
|
+
"linux-raw-sys 0.12.1",
|
|
1624
|
+
"windows-sys 0.61.2",
|
|
1625
|
+
]
|
|
1626
|
+
|
|
1627
|
+
[[package]]
|
|
1628
|
+
name = "rustls"
|
|
1629
|
+
version = "0.23.38"
|
|
1630
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1631
|
+
checksum = "69f9466fb2c14ea04357e91413efb882e2a6d4a406e625449bc0a5d360d53a21"
|
|
1632
|
+
dependencies = [
|
|
1633
|
+
"once_cell",
|
|
1634
|
+
"ring",
|
|
1635
|
+
"rustls-pki-types",
|
|
1636
|
+
"rustls-webpki",
|
|
1637
|
+
"subtle",
|
|
1638
|
+
"zeroize",
|
|
1639
|
+
]
|
|
1640
|
+
|
|
1641
|
+
[[package]]
|
|
1642
|
+
name = "rustls-pki-types"
|
|
1643
|
+
version = "1.14.0"
|
|
1644
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1645
|
+
checksum = "be040f8b0a225e40375822a563fa9524378b9d63112f53e19ffff34df5d33fdd"
|
|
1646
|
+
dependencies = [
|
|
1647
|
+
"web-time",
|
|
1648
|
+
"zeroize",
|
|
1649
|
+
]
|
|
1650
|
+
|
|
1651
|
+
[[package]]
|
|
1652
|
+
name = "rustls-webpki"
|
|
1653
|
+
version = "0.103.12"
|
|
1654
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1655
|
+
checksum = "8279bb85272c9f10811ae6a6c547ff594d6a7f3c6c6b02ee9726d1d0dcfcdd06"
|
|
1656
|
+
dependencies = [
|
|
1657
|
+
"ring",
|
|
1658
|
+
"rustls-pki-types",
|
|
1659
|
+
"untrusted",
|
|
1660
|
+
]
|
|
1661
|
+
|
|
1662
|
+
[[package]]
|
|
1663
|
+
name = "rustversion"
|
|
1664
|
+
version = "1.0.22"
|
|
1665
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1666
|
+
checksum = "b39cdef0fa800fc44525c84ccb54a029961a8215f9619753635a9c0d2538d46d"
|
|
1667
|
+
|
|
1668
|
+
[[package]]
|
|
1669
|
+
name = "rusty-fork"
|
|
1670
|
+
version = "0.3.1"
|
|
1671
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1672
|
+
checksum = "cc6bf79ff24e648f6da1f8d1f011e9cac26491b619e6b9280f2b47f1774e6ee2"
|
|
1673
|
+
dependencies = [
|
|
1674
|
+
"fnv",
|
|
1675
|
+
"quick-error",
|
|
1676
|
+
"tempfile",
|
|
1677
|
+
"wait-timeout",
|
|
1678
|
+
]
|
|
1679
|
+
|
|
1680
|
+
[[package]]
|
|
1681
|
+
name = "ryu"
|
|
1682
|
+
version = "1.0.23"
|
|
1683
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1684
|
+
checksum = "9774ba4a74de5f7b1c1451ed6cd5285a32eddb5cccb8cc655a4e50009e06477f"
|
|
1685
|
+
|
|
1686
|
+
[[package]]
|
|
1687
|
+
name = "same-file"
|
|
1688
|
+
version = "1.0.6"
|
|
1689
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1690
|
+
checksum = "93fc1dc3aaa9bfed95e02e6eadabb4baf7e3078b0bd1b4d7b6b0b68378900502"
|
|
1691
|
+
dependencies = [
|
|
1692
|
+
"winapi-util",
|
|
1693
|
+
]
|
|
1694
|
+
|
|
1695
|
+
[[package]]
|
|
1696
|
+
name = "scopeguard"
|
|
1697
|
+
version = "1.2.0"
|
|
1698
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1699
|
+
checksum = "94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49"
|
|
1700
|
+
|
|
1701
|
+
[[package]]
|
|
1702
|
+
name = "semver"
|
|
1703
|
+
version = "1.0.28"
|
|
1704
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1705
|
+
checksum = "8a7852d02fc848982e0c167ef163aaff9cd91dc640ba85e263cb1ce46fae51cd"
|
|
1706
|
+
|
|
1707
|
+
[[package]]
|
|
1708
|
+
name = "serde"
|
|
1709
|
+
version = "1.0.228"
|
|
1710
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1711
|
+
checksum = "9a8e94ea7f378bd32cbbd37198a4a91436180c5bb472411e48b5ec2e2124ae9e"
|
|
1712
|
+
dependencies = [
|
|
1713
|
+
"serde_core",
|
|
1714
|
+
"serde_derive",
|
|
1715
|
+
]
|
|
1716
|
+
|
|
1717
|
+
[[package]]
|
|
1718
|
+
name = "serde_core"
|
|
1719
|
+
version = "1.0.228"
|
|
1720
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1721
|
+
checksum = "41d385c7d4ca58e59fc732af25c3983b67ac852c1a25000afe1175de458b67ad"
|
|
1722
|
+
dependencies = [
|
|
1723
|
+
"serde_derive",
|
|
1724
|
+
]
|
|
1725
|
+
|
|
1726
|
+
[[package]]
|
|
1727
|
+
name = "serde_derive"
|
|
1728
|
+
version = "1.0.228"
|
|
1729
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1730
|
+
checksum = "d540f220d3187173da220f885ab66608367b6574e925011a9353e4badda91d79"
|
|
1731
|
+
dependencies = [
|
|
1732
|
+
"proc-macro2",
|
|
1733
|
+
"quote",
|
|
1734
|
+
"syn",
|
|
1735
|
+
]
|
|
1736
|
+
|
|
1737
|
+
[[package]]
|
|
1738
|
+
name = "serde_json"
|
|
1739
|
+
version = "1.0.149"
|
|
1740
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1741
|
+
checksum = "83fc039473c5595ace860d8c4fafa220ff474b3fc6bfdb4293327f1a37e94d86"
|
|
1742
|
+
dependencies = [
|
|
1743
|
+
"itoa",
|
|
1744
|
+
"memchr",
|
|
1745
|
+
"serde",
|
|
1746
|
+
"serde_core",
|
|
1747
|
+
"zmij",
|
|
1748
|
+
]
|
|
1749
|
+
|
|
1750
|
+
[[package]]
|
|
1751
|
+
name = "serde_path_to_error"
|
|
1752
|
+
version = "0.1.20"
|
|
1753
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1754
|
+
checksum = "10a9ff822e371bb5403e391ecd83e182e0e77ba7f6fe0160b795797109d1b457"
|
|
1755
|
+
dependencies = [
|
|
1756
|
+
"itoa",
|
|
1757
|
+
"serde",
|
|
1758
|
+
"serde_core",
|
|
1759
|
+
]
|
|
1760
|
+
|
|
1761
|
+
[[package]]
|
|
1762
|
+
name = "serde_spanned"
|
|
1763
|
+
version = "0.6.9"
|
|
1764
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1765
|
+
checksum = "bf41e0cfaf7226dca15e8197172c295a782857fcb97fad1808a166870dee75a3"
|
|
1766
|
+
dependencies = [
|
|
1767
|
+
"serde",
|
|
1768
|
+
]
|
|
1769
|
+
|
|
1770
|
+
[[package]]
|
|
1771
|
+
name = "serde_urlencoded"
|
|
1772
|
+
version = "0.7.1"
|
|
1773
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1774
|
+
checksum = "d3491c14715ca2294c4d6a88f15e84739788c1d030eed8c110436aafdaa2f3fd"
|
|
1775
|
+
dependencies = [
|
|
1776
|
+
"form_urlencoded",
|
|
1777
|
+
"itoa",
|
|
1778
|
+
"ryu",
|
|
1779
|
+
"serde",
|
|
1780
|
+
]
|
|
1781
|
+
|
|
1782
|
+
[[package]]
|
|
1783
|
+
name = "sha1"
|
|
1784
|
+
version = "0.10.6"
|
|
1785
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1786
|
+
checksum = "e3bf829a2d51ab4a5ddf1352d8470c140cadc8301b2ae1789db023f01cedd6ba"
|
|
1787
|
+
dependencies = [
|
|
1788
|
+
"cfg-if",
|
|
1789
|
+
"cpufeatures",
|
|
1790
|
+
"digest",
|
|
1791
|
+
]
|
|
1792
|
+
|
|
1793
|
+
[[package]]
|
|
1794
|
+
name = "sha2"
|
|
1795
|
+
version = "0.10.9"
|
|
1796
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1797
|
+
checksum = "a7507d819769d01a365ab707794a4084392c824f54a7a6a7862f8c3d0892b283"
|
|
1798
|
+
dependencies = [
|
|
1799
|
+
"cfg-if",
|
|
1800
|
+
"cpufeatures",
|
|
1801
|
+
"digest",
|
|
1802
|
+
]
|
|
1803
|
+
|
|
1804
|
+
[[package]]
|
|
1805
|
+
name = "sharded-slab"
|
|
1806
|
+
version = "0.1.7"
|
|
1807
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1808
|
+
checksum = "f40ca3c46823713e0d4209592e8d6e826aa57e928f09752619fc696c499637f6"
|
|
1809
|
+
dependencies = [
|
|
1810
|
+
"lazy_static",
|
|
1811
|
+
]
|
|
1812
|
+
|
|
1813
|
+
[[package]]
|
|
1814
|
+
name = "shlex"
|
|
1815
|
+
version = "1.3.0"
|
|
1816
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1817
|
+
checksum = "0fda2ff0d084019ba4d7c6f371c95d8fd75ce3524c3cb8fb653a3023f6323e64"
|
|
1818
|
+
|
|
1819
|
+
[[package]]
|
|
1820
|
+
name = "shuck"
|
|
1821
|
+
version = "0.0.1"
|
|
1822
|
+
dependencies = [
|
|
1823
|
+
"anyhow",
|
|
1824
|
+
"clap",
|
|
1825
|
+
"crossterm",
|
|
1826
|
+
"futures-util",
|
|
1827
|
+
"reqwest",
|
|
1828
|
+
"serde",
|
|
1829
|
+
"serde_json",
|
|
1830
|
+
"shuck-agent-proto",
|
|
1831
|
+
"shuck-api",
|
|
1832
|
+
"shuck-core",
|
|
1833
|
+
"shuck-net",
|
|
1834
|
+
"shuck-state",
|
|
1835
|
+
"shuck-storage",
|
|
1836
|
+
"shuck-vmm",
|
|
1837
|
+
"tokio",
|
|
1838
|
+
"tokio-tungstenite 0.28.0",
|
|
1839
|
+
"toml",
|
|
1840
|
+
"tracing",
|
|
1841
|
+
"tracing-subscriber",
|
|
1842
|
+
"uuid",
|
|
1843
|
+
]
|
|
1844
|
+
|
|
1845
|
+
[[package]]
|
|
1846
|
+
name = "shuck-agent"
|
|
1847
|
+
version = "0.0.1"
|
|
1848
|
+
dependencies = [
|
|
1849
|
+
"anyhow",
|
|
1850
|
+
"libc",
|
|
1851
|
+
"shuck-agent-proto",
|
|
1852
|
+
"tempfile",
|
|
1853
|
+
"tokio",
|
|
1854
|
+
"tokio-vsock",
|
|
1855
|
+
"tracing",
|
|
1856
|
+
"tracing-subscriber",
|
|
1857
|
+
]
|
|
1858
|
+
|
|
1859
|
+
[[package]]
|
|
1860
|
+
name = "shuck-agent-proto"
|
|
1861
|
+
version = "0.0.1"
|
|
1862
|
+
dependencies = [
|
|
1863
|
+
"proptest",
|
|
1864
|
+
"serde",
|
|
1865
|
+
"serde_json",
|
|
1866
|
+
"tempfile",
|
|
1867
|
+
"thiserror",
|
|
1868
|
+
"tokio",
|
|
1869
|
+
]
|
|
1870
|
+
|
|
1871
|
+
[[package]]
|
|
1872
|
+
name = "shuck-api"
|
|
1873
|
+
version = "0.0.1"
|
|
1874
|
+
dependencies = [
|
|
1875
|
+
"async-stream",
|
|
1876
|
+
"axum",
|
|
1877
|
+
"chrono",
|
|
1878
|
+
"http-body-util",
|
|
1879
|
+
"serde",
|
|
1880
|
+
"serde_json",
|
|
1881
|
+
"shuck-agent-proto",
|
|
1882
|
+
"shuck-core",
|
|
1883
|
+
"shuck-net",
|
|
1884
|
+
"shuck-state",
|
|
1885
|
+
"shuck-storage",
|
|
1886
|
+
"shuck-vmm",
|
|
1887
|
+
"tempfile",
|
|
1888
|
+
"tokio",
|
|
1889
|
+
"tokio-stream",
|
|
1890
|
+
"tower",
|
|
1891
|
+
"tracing",
|
|
1892
|
+
"utoipa",
|
|
1893
|
+
"utoipa-swagger-ui",
|
|
1894
|
+
"uuid",
|
|
1895
|
+
]
|
|
1896
|
+
|
|
1897
|
+
[[package]]
|
|
1898
|
+
name = "shuck-core"
|
|
1899
|
+
version = "0.0.1"
|
|
1900
|
+
dependencies = [
|
|
1901
|
+
"chrono",
|
|
1902
|
+
"ring",
|
|
1903
|
+
"serde",
|
|
1904
|
+
"serde_json",
|
|
1905
|
+
"shuck-agent",
|
|
1906
|
+
"shuck-agent-proto",
|
|
1907
|
+
"shuck-net",
|
|
1908
|
+
"shuck-state",
|
|
1909
|
+
"shuck-storage",
|
|
1910
|
+
"shuck-vmm",
|
|
1911
|
+
"tempfile",
|
|
1912
|
+
"thiserror",
|
|
1913
|
+
"tokio",
|
|
1914
|
+
"tracing",
|
|
1915
|
+
"utoipa",
|
|
1916
|
+
"uuid",
|
|
1917
|
+
]
|
|
1918
|
+
|
|
1919
|
+
[[package]]
|
|
1920
|
+
name = "shuck-net"
|
|
1921
|
+
version = "0.0.1"
|
|
1922
|
+
dependencies = [
|
|
1923
|
+
"proptest",
|
|
1924
|
+
"serde_json",
|
|
1925
|
+
"thiserror",
|
|
1926
|
+
"tokio",
|
|
1927
|
+
"tracing",
|
|
1928
|
+
]
|
|
1929
|
+
|
|
1930
|
+
[[package]]
|
|
1931
|
+
name = "shuck-state"
|
|
1932
|
+
version = "0.0.1"
|
|
1933
|
+
dependencies = [
|
|
1934
|
+
"chrono",
|
|
1935
|
+
"rusqlite",
|
|
1936
|
+
"serde",
|
|
1937
|
+
"tempfile",
|
|
1938
|
+
"thiserror",
|
|
1939
|
+
"tracing",
|
|
1940
|
+
"uuid",
|
|
1941
|
+
]
|
|
1942
|
+
|
|
1943
|
+
[[package]]
|
|
1944
|
+
name = "shuck-storage"
|
|
1945
|
+
version = "0.0.1"
|
|
1946
|
+
dependencies = [
|
|
1947
|
+
"reflink-copy",
|
|
1948
|
+
"serde",
|
|
1949
|
+
"tempfile",
|
|
1950
|
+
"thiserror",
|
|
1951
|
+
"tokio",
|
|
1952
|
+
]
|
|
1953
|
+
|
|
1954
|
+
[[package]]
|
|
1955
|
+
name = "shuck-vmm"
|
|
1956
|
+
version = "0.0.1"
|
|
1957
|
+
dependencies = [
|
|
1958
|
+
"block2",
|
|
1959
|
+
"dispatch2",
|
|
1960
|
+
"http-body-util",
|
|
1961
|
+
"hyper",
|
|
1962
|
+
"hyper-util",
|
|
1963
|
+
"libc",
|
|
1964
|
+
"objc2",
|
|
1965
|
+
"objc2-foundation",
|
|
1966
|
+
"objc2-virtualization",
|
|
1967
|
+
"serde",
|
|
1968
|
+
"serde_json",
|
|
1969
|
+
"tempfile",
|
|
1970
|
+
"thiserror",
|
|
1971
|
+
"tokio",
|
|
1972
|
+
"tower",
|
|
1973
|
+
"uuid",
|
|
1974
|
+
]
|
|
1975
|
+
|
|
1976
|
+
[[package]]
|
|
1977
|
+
name = "signal-hook"
|
|
1978
|
+
version = "0.3.18"
|
|
1979
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1980
|
+
checksum = "d881a16cf4426aa584979d30bd82cb33429027e42122b169753d6ef1085ed6e2"
|
|
1981
|
+
dependencies = [
|
|
1982
|
+
"libc",
|
|
1983
|
+
"signal-hook-registry",
|
|
1984
|
+
]
|
|
1985
|
+
|
|
1986
|
+
[[package]]
|
|
1987
|
+
name = "signal-hook-mio"
|
|
1988
|
+
version = "0.2.5"
|
|
1989
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1990
|
+
checksum = "b75a19a7a740b25bc7944bdee6172368f988763b744e3d4dfe753f6b4ece40cc"
|
|
1991
|
+
dependencies = [
|
|
1992
|
+
"libc",
|
|
1993
|
+
"mio",
|
|
1994
|
+
"signal-hook",
|
|
1995
|
+
]
|
|
1996
|
+
|
|
1997
|
+
[[package]]
|
|
1998
|
+
name = "signal-hook-registry"
|
|
1999
|
+
version = "1.4.8"
|
|
2000
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2001
|
+
checksum = "c4db69cba1110affc0e9f7bcd48bbf87b3f4fc7c61fc9155afd4c469eb3d6c1b"
|
|
2002
|
+
dependencies = [
|
|
2003
|
+
"errno",
|
|
2004
|
+
"libc",
|
|
2005
|
+
]
|
|
2006
|
+
|
|
2007
|
+
[[package]]
|
|
2008
|
+
name = "simd-adler32"
|
|
2009
|
+
version = "0.3.9"
|
|
2010
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2011
|
+
checksum = "703d5c7ef118737c72f1af64ad2f6f8c5e1921f818cdcb97b8fe6fc69bf66214"
|
|
2012
|
+
|
|
2013
|
+
[[package]]
|
|
2014
|
+
name = "slab"
|
|
2015
|
+
version = "0.4.12"
|
|
2016
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2017
|
+
checksum = "0c790de23124f9ab44544d7ac05d60440adc586479ce501c1d6d7da3cd8c9cf5"
|
|
2018
|
+
|
|
2019
|
+
[[package]]
|
|
2020
|
+
name = "smallvec"
|
|
2021
|
+
version = "1.15.1"
|
|
2022
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2023
|
+
checksum = "67b1b7a3b5fe4f1376887184045fcf45c69e92af734b7aaddc05fb777b6fbd03"
|
|
2024
|
+
|
|
2025
|
+
[[package]]
|
|
2026
|
+
name = "socket2"
|
|
2027
|
+
version = "0.6.3"
|
|
2028
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2029
|
+
checksum = "3a766e1110788c36f4fa1c2b71b387a7815aa65f88ce0229841826633d93723e"
|
|
2030
|
+
dependencies = [
|
|
2031
|
+
"libc",
|
|
2032
|
+
"windows-sys 0.61.2",
|
|
2033
|
+
]
|
|
2034
|
+
|
|
2035
|
+
[[package]]
|
|
2036
|
+
name = "stable_deref_trait"
|
|
2037
|
+
version = "1.2.1"
|
|
2038
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2039
|
+
checksum = "6ce2be8dc25455e1f91df71bfa12ad37d7af1092ae736f3a6cd0e37bc7810596"
|
|
2040
|
+
|
|
2041
|
+
[[package]]
|
|
2042
|
+
name = "strsim"
|
|
2043
|
+
version = "0.11.1"
|
|
2044
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2045
|
+
checksum = "7da8b5736845d9f2fcb837ea5d9e2628564b3b043a70948a3f0b778838c5fb4f"
|
|
2046
|
+
|
|
2047
|
+
[[package]]
|
|
2048
|
+
name = "subtle"
|
|
2049
|
+
version = "2.6.1"
|
|
2050
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2051
|
+
checksum = "13c2bddecc57b384dee18652358fb23172facb8a2c51ccc10d74c157bdea3292"
|
|
2052
|
+
|
|
2053
|
+
[[package]]
|
|
2054
|
+
name = "syn"
|
|
2055
|
+
version = "2.0.117"
|
|
2056
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2057
|
+
checksum = "e665b8803e7b1d2a727f4023456bbbbe74da67099c585258af0ad9c5013b9b99"
|
|
2058
|
+
dependencies = [
|
|
2059
|
+
"proc-macro2",
|
|
2060
|
+
"quote",
|
|
2061
|
+
"unicode-ident",
|
|
2062
|
+
]
|
|
2063
|
+
|
|
2064
|
+
[[package]]
|
|
2065
|
+
name = "sync_wrapper"
|
|
2066
|
+
version = "1.0.2"
|
|
2067
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2068
|
+
checksum = "0bf256ce5efdfa370213c1dabab5935a12e49f2c58d15e9eac2870d3b4f27263"
|
|
2069
|
+
dependencies = [
|
|
2070
|
+
"futures-core",
|
|
2071
|
+
]
|
|
2072
|
+
|
|
2073
|
+
[[package]]
|
|
2074
|
+
name = "synstructure"
|
|
2075
|
+
version = "0.13.2"
|
|
2076
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2077
|
+
checksum = "728a70f3dbaf5bab7f0c4b1ac8d7ae5ea60a4b5549c8a5914361c99147a709d2"
|
|
2078
|
+
dependencies = [
|
|
2079
|
+
"proc-macro2",
|
|
2080
|
+
"quote",
|
|
2081
|
+
"syn",
|
|
2082
|
+
]
|
|
2083
|
+
|
|
2084
|
+
[[package]]
|
|
2085
|
+
name = "tempfile"
|
|
2086
|
+
version = "3.27.0"
|
|
2087
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2088
|
+
checksum = "32497e9a4c7b38532efcdebeef879707aa9f794296a4f0244f6f69e9bc8574bd"
|
|
2089
|
+
dependencies = [
|
|
2090
|
+
"fastrand",
|
|
2091
|
+
"getrandom 0.4.2",
|
|
2092
|
+
"once_cell",
|
|
2093
|
+
"rustix 1.1.4",
|
|
2094
|
+
"windows-sys 0.61.2",
|
|
2095
|
+
]
|
|
2096
|
+
|
|
2097
|
+
[[package]]
|
|
2098
|
+
name = "thiserror"
|
|
2099
|
+
version = "2.0.18"
|
|
2100
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2101
|
+
checksum = "4288b5bcbc7920c07a1149a35cf9590a2aa808e0bc1eafaade0b80947865fbc4"
|
|
2102
|
+
dependencies = [
|
|
2103
|
+
"thiserror-impl",
|
|
2104
|
+
]
|
|
2105
|
+
|
|
2106
|
+
[[package]]
|
|
2107
|
+
name = "thiserror-impl"
|
|
2108
|
+
version = "2.0.18"
|
|
2109
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2110
|
+
checksum = "ebc4ee7f67670e9b64d05fa4253e753e016c6c95ff35b89b7941d6b856dec1d5"
|
|
2111
|
+
dependencies = [
|
|
2112
|
+
"proc-macro2",
|
|
2113
|
+
"quote",
|
|
2114
|
+
"syn",
|
|
2115
|
+
]
|
|
2116
|
+
|
|
2117
|
+
[[package]]
|
|
2118
|
+
name = "thread_local"
|
|
2119
|
+
version = "1.1.9"
|
|
2120
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2121
|
+
checksum = "f60246a4944f24f6e018aa17cdeffb7818b76356965d03b07d6a9886e8962185"
|
|
2122
|
+
dependencies = [
|
|
2123
|
+
"cfg-if",
|
|
2124
|
+
]
|
|
2125
|
+
|
|
2126
|
+
[[package]]
|
|
2127
|
+
name = "tinystr"
|
|
2128
|
+
version = "0.8.3"
|
|
2129
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2130
|
+
checksum = "c8323304221c2a851516f22236c5722a72eaa19749016521d6dff0824447d96d"
|
|
2131
|
+
dependencies = [
|
|
2132
|
+
"displaydoc",
|
|
2133
|
+
"zerovec",
|
|
2134
|
+
]
|
|
2135
|
+
|
|
2136
|
+
[[package]]
|
|
2137
|
+
name = "tinyvec"
|
|
2138
|
+
version = "1.11.0"
|
|
2139
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2140
|
+
checksum = "3e61e67053d25a4e82c844e8424039d9745781b3fc4f32b8d55ed50f5f667ef3"
|
|
2141
|
+
dependencies = [
|
|
2142
|
+
"tinyvec_macros",
|
|
2143
|
+
]
|
|
2144
|
+
|
|
2145
|
+
[[package]]
|
|
2146
|
+
name = "tinyvec_macros"
|
|
2147
|
+
version = "0.1.1"
|
|
2148
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2149
|
+
checksum = "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20"
|
|
2150
|
+
|
|
2151
|
+
[[package]]
|
|
2152
|
+
name = "tokio"
|
|
2153
|
+
version = "1.52.1"
|
|
2154
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2155
|
+
checksum = "b67dee974fe86fd92cc45b7a95fdd2f99a36a6d7b0d431a231178d3d670bbcc6"
|
|
2156
|
+
dependencies = [
|
|
2157
|
+
"bytes",
|
|
2158
|
+
"libc",
|
|
2159
|
+
"mio",
|
|
2160
|
+
"parking_lot",
|
|
2161
|
+
"pin-project-lite",
|
|
2162
|
+
"signal-hook-registry",
|
|
2163
|
+
"socket2",
|
|
2164
|
+
"tokio-macros",
|
|
2165
|
+
"windows-sys 0.61.2",
|
|
2166
|
+
]
|
|
2167
|
+
|
|
2168
|
+
[[package]]
|
|
2169
|
+
name = "tokio-macros"
|
|
2170
|
+
version = "2.7.0"
|
|
2171
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2172
|
+
checksum = "385a6cb71ab9ab790c5fe8d67f1645e6c450a7ce006a33de03daa956cf70a496"
|
|
2173
|
+
dependencies = [
|
|
2174
|
+
"proc-macro2",
|
|
2175
|
+
"quote",
|
|
2176
|
+
"syn",
|
|
2177
|
+
]
|
|
2178
|
+
|
|
2179
|
+
[[package]]
|
|
2180
|
+
name = "tokio-rustls"
|
|
2181
|
+
version = "0.26.4"
|
|
2182
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2183
|
+
checksum = "1729aa945f29d91ba541258c8df89027d5792d85a8841fb65e8bf0f4ede4ef61"
|
|
2184
|
+
dependencies = [
|
|
2185
|
+
"rustls",
|
|
2186
|
+
"tokio",
|
|
2187
|
+
]
|
|
2188
|
+
|
|
2189
|
+
[[package]]
|
|
2190
|
+
name = "tokio-stream"
|
|
2191
|
+
version = "0.1.18"
|
|
2192
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2193
|
+
checksum = "32da49809aab5c3bc678af03902d4ccddea2a87d028d86392a4b1560c6906c70"
|
|
2194
|
+
dependencies = [
|
|
2195
|
+
"futures-core",
|
|
2196
|
+
"pin-project-lite",
|
|
2197
|
+
"tokio",
|
|
2198
|
+
]
|
|
2199
|
+
|
|
2200
|
+
[[package]]
|
|
2201
|
+
name = "tokio-tungstenite"
|
|
2202
|
+
version = "0.28.0"
|
|
2203
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2204
|
+
checksum = "d25a406cddcc431a75d3d9afc6a7c0f7428d4891dd973e4d54c56b46127bf857"
|
|
2205
|
+
dependencies = [
|
|
2206
|
+
"futures-util",
|
|
2207
|
+
"log",
|
|
2208
|
+
"tokio",
|
|
2209
|
+
"tungstenite 0.28.0",
|
|
2210
|
+
]
|
|
2211
|
+
|
|
2212
|
+
[[package]]
|
|
2213
|
+
name = "tokio-tungstenite"
|
|
2214
|
+
version = "0.29.0"
|
|
2215
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2216
|
+
checksum = "8f72a05e828585856dacd553fba484c242c46e391fb0e58917c942ee9202915c"
|
|
2217
|
+
dependencies = [
|
|
2218
|
+
"futures-util",
|
|
2219
|
+
"log",
|
|
2220
|
+
"tokio",
|
|
2221
|
+
"tungstenite 0.29.0",
|
|
2222
|
+
]
|
|
2223
|
+
|
|
2224
|
+
[[package]]
|
|
2225
|
+
name = "tokio-util"
|
|
2226
|
+
version = "0.7.18"
|
|
2227
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2228
|
+
checksum = "9ae9cec805b01e8fc3fd2fe289f89149a9b66dd16786abd8b19cfa7b48cb0098"
|
|
2229
|
+
dependencies = [
|
|
2230
|
+
"bytes",
|
|
2231
|
+
"futures-core",
|
|
2232
|
+
"futures-sink",
|
|
2233
|
+
"pin-project-lite",
|
|
2234
|
+
"tokio",
|
|
2235
|
+
]
|
|
2236
|
+
|
|
2237
|
+
[[package]]
|
|
2238
|
+
name = "tokio-vsock"
|
|
2239
|
+
version = "0.6.0"
|
|
2240
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2241
|
+
checksum = "ad311033c354453d61b537cc239d8d7cc8e3d59c9eda2e8611a8b26e71f0e945"
|
|
2242
|
+
dependencies = [
|
|
2243
|
+
"bytes",
|
|
2244
|
+
"futures",
|
|
2245
|
+
"libc",
|
|
2246
|
+
"tokio",
|
|
2247
|
+
"vsock",
|
|
2248
|
+
]
|
|
2249
|
+
|
|
2250
|
+
[[package]]
|
|
2251
|
+
name = "toml"
|
|
2252
|
+
version = "0.8.23"
|
|
2253
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2254
|
+
checksum = "dc1beb996b9d83529a9e75c17a1686767d148d70663143c7854d8b4a09ced362"
|
|
2255
|
+
dependencies = [
|
|
2256
|
+
"serde",
|
|
2257
|
+
"serde_spanned",
|
|
2258
|
+
"toml_datetime",
|
|
2259
|
+
"toml_edit",
|
|
2260
|
+
]
|
|
2261
|
+
|
|
2262
|
+
[[package]]
|
|
2263
|
+
name = "toml_datetime"
|
|
2264
|
+
version = "0.6.11"
|
|
2265
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2266
|
+
checksum = "22cddaf88f4fbc13c51aebbf5f8eceb5c7c5a9da2ac40a13519eb5b0a0e8f11c"
|
|
2267
|
+
dependencies = [
|
|
2268
|
+
"serde",
|
|
2269
|
+
]
|
|
2270
|
+
|
|
2271
|
+
[[package]]
|
|
2272
|
+
name = "toml_edit"
|
|
2273
|
+
version = "0.22.27"
|
|
2274
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2275
|
+
checksum = "41fe8c660ae4257887cf66394862d21dbca4a6ddd26f04a3560410406a2f819a"
|
|
2276
|
+
dependencies = [
|
|
2277
|
+
"indexmap",
|
|
2278
|
+
"serde",
|
|
2279
|
+
"serde_spanned",
|
|
2280
|
+
"toml_datetime",
|
|
2281
|
+
"toml_write",
|
|
2282
|
+
"winnow",
|
|
2283
|
+
]
|
|
2284
|
+
|
|
2285
|
+
[[package]]
|
|
2286
|
+
name = "toml_write"
|
|
2287
|
+
version = "0.1.2"
|
|
2288
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2289
|
+
checksum = "5d99f8c9a7727884afe522e9bd5edbfc91a3312b36a77b5fb8926e4c31a41801"
|
|
2290
|
+
|
|
2291
|
+
[[package]]
|
|
2292
|
+
name = "tower"
|
|
2293
|
+
version = "0.5.3"
|
|
2294
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2295
|
+
checksum = "ebe5ef63511595f1344e2d5cfa636d973292adc0eec1f0ad45fae9f0851ab1d4"
|
|
2296
|
+
dependencies = [
|
|
2297
|
+
"futures-core",
|
|
2298
|
+
"futures-util",
|
|
2299
|
+
"pin-project-lite",
|
|
2300
|
+
"sync_wrapper",
|
|
2301
|
+
"tokio",
|
|
2302
|
+
"tower-layer",
|
|
2303
|
+
"tower-service",
|
|
2304
|
+
"tracing",
|
|
2305
|
+
]
|
|
2306
|
+
|
|
2307
|
+
[[package]]
|
|
2308
|
+
name = "tower-http"
|
|
2309
|
+
version = "0.6.8"
|
|
2310
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2311
|
+
checksum = "d4e6559d53cc268e5031cd8429d05415bc4cb4aefc4aa5d6cc35fbf5b924a1f8"
|
|
2312
|
+
dependencies = [
|
|
2313
|
+
"bitflags",
|
|
2314
|
+
"bytes",
|
|
2315
|
+
"futures-util",
|
|
2316
|
+
"http",
|
|
2317
|
+
"http-body",
|
|
2318
|
+
"iri-string",
|
|
2319
|
+
"pin-project-lite",
|
|
2320
|
+
"tower",
|
|
2321
|
+
"tower-layer",
|
|
2322
|
+
"tower-service",
|
|
2323
|
+
]
|
|
2324
|
+
|
|
2325
|
+
[[package]]
|
|
2326
|
+
name = "tower-layer"
|
|
2327
|
+
version = "0.3.3"
|
|
2328
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2329
|
+
checksum = "121c2a6cda46980bb0fcd1647ffaf6cd3fc79a013de288782836f6df9c48780e"
|
|
2330
|
+
|
|
2331
|
+
[[package]]
|
|
2332
|
+
name = "tower-service"
|
|
2333
|
+
version = "0.3.3"
|
|
2334
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2335
|
+
checksum = "8df9b6e13f2d32c91b9bd719c00d1958837bc7dec474d94952798cc8e69eeec3"
|
|
2336
|
+
|
|
2337
|
+
[[package]]
|
|
2338
|
+
name = "tracing"
|
|
2339
|
+
version = "0.1.44"
|
|
2340
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2341
|
+
checksum = "63e71662fa4b2a2c3a26f570f037eb95bb1f85397f3cd8076caed2f026a6d100"
|
|
2342
|
+
dependencies = [
|
|
2343
|
+
"log",
|
|
2344
|
+
"pin-project-lite",
|
|
2345
|
+
"tracing-attributes",
|
|
2346
|
+
"tracing-core",
|
|
2347
|
+
]
|
|
2348
|
+
|
|
2349
|
+
[[package]]
|
|
2350
|
+
name = "tracing-attributes"
|
|
2351
|
+
version = "0.1.31"
|
|
2352
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2353
|
+
checksum = "7490cfa5ec963746568740651ac6781f701c9c5ea257c58e057f3ba8cf69e8da"
|
|
2354
|
+
dependencies = [
|
|
2355
|
+
"proc-macro2",
|
|
2356
|
+
"quote",
|
|
2357
|
+
"syn",
|
|
2358
|
+
]
|
|
2359
|
+
|
|
2360
|
+
[[package]]
|
|
2361
|
+
name = "tracing-core"
|
|
2362
|
+
version = "0.1.36"
|
|
2363
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2364
|
+
checksum = "db97caf9d906fbde555dd62fa95ddba9eecfd14cb388e4f491a66d74cd5fb79a"
|
|
2365
|
+
dependencies = [
|
|
2366
|
+
"once_cell",
|
|
2367
|
+
"valuable",
|
|
2368
|
+
]
|
|
2369
|
+
|
|
2370
|
+
[[package]]
|
|
2371
|
+
name = "tracing-log"
|
|
2372
|
+
version = "0.2.0"
|
|
2373
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2374
|
+
checksum = "ee855f1f400bd0e5c02d150ae5de3840039a3f54b025156404e34c23c03f47c3"
|
|
2375
|
+
dependencies = [
|
|
2376
|
+
"log",
|
|
2377
|
+
"once_cell",
|
|
2378
|
+
"tracing-core",
|
|
2379
|
+
]
|
|
2380
|
+
|
|
2381
|
+
[[package]]
|
|
2382
|
+
name = "tracing-serde"
|
|
2383
|
+
version = "0.2.0"
|
|
2384
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2385
|
+
checksum = "704b1aeb7be0d0a84fc9828cae51dab5970fee5088f83d1dd7ee6f6246fc6ff1"
|
|
2386
|
+
dependencies = [
|
|
2387
|
+
"serde",
|
|
2388
|
+
"tracing-core",
|
|
2389
|
+
]
|
|
2390
|
+
|
|
2391
|
+
[[package]]
|
|
2392
|
+
name = "tracing-subscriber"
|
|
2393
|
+
version = "0.3.23"
|
|
2394
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2395
|
+
checksum = "cb7f578e5945fb242538965c2d0b04418d38ec25c79d160cd279bf0731c8d319"
|
|
2396
|
+
dependencies = [
|
|
2397
|
+
"matchers",
|
|
2398
|
+
"nu-ansi-term",
|
|
2399
|
+
"once_cell",
|
|
2400
|
+
"regex-automata",
|
|
2401
|
+
"serde",
|
|
2402
|
+
"serde_json",
|
|
2403
|
+
"sharded-slab",
|
|
2404
|
+
"smallvec",
|
|
2405
|
+
"thread_local",
|
|
2406
|
+
"tracing",
|
|
2407
|
+
"tracing-core",
|
|
2408
|
+
"tracing-log",
|
|
2409
|
+
"tracing-serde",
|
|
2410
|
+
]
|
|
2411
|
+
|
|
2412
|
+
[[package]]
|
|
2413
|
+
name = "try-lock"
|
|
2414
|
+
version = "0.2.5"
|
|
2415
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2416
|
+
checksum = "e421abadd41a4225275504ea4d6566923418b7f05506fbc9c0fe86ba7396114b"
|
|
2417
|
+
|
|
2418
|
+
[[package]]
|
|
2419
|
+
name = "tungstenite"
|
|
2420
|
+
version = "0.28.0"
|
|
2421
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2422
|
+
checksum = "8628dcc84e5a09eb3d8423d6cb682965dea9133204e8fb3efee74c2a0c259442"
|
|
2423
|
+
dependencies = [
|
|
2424
|
+
"bytes",
|
|
2425
|
+
"data-encoding",
|
|
2426
|
+
"http",
|
|
2427
|
+
"httparse",
|
|
2428
|
+
"log",
|
|
2429
|
+
"rand",
|
|
2430
|
+
"sha1",
|
|
2431
|
+
"thiserror",
|
|
2432
|
+
"utf-8",
|
|
2433
|
+
]
|
|
2434
|
+
|
|
2435
|
+
[[package]]
|
|
2436
|
+
name = "tungstenite"
|
|
2437
|
+
version = "0.29.0"
|
|
2438
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2439
|
+
checksum = "6c01152af293afb9c7c2a57e4b559c5620b421f6d133261c60dd2d0cdb38e6b8"
|
|
2440
|
+
dependencies = [
|
|
2441
|
+
"bytes",
|
|
2442
|
+
"data-encoding",
|
|
2443
|
+
"http",
|
|
2444
|
+
"httparse",
|
|
2445
|
+
"log",
|
|
2446
|
+
"rand",
|
|
2447
|
+
"sha1",
|
|
2448
|
+
"thiserror",
|
|
2449
|
+
]
|
|
2450
|
+
|
|
2451
|
+
[[package]]
|
|
2452
|
+
name = "typenum"
|
|
2453
|
+
version = "1.20.0"
|
|
2454
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2455
|
+
checksum = "40ce102ab67701b8526c123c1bab5cbe42d7040ccfd0f64af1a385808d2f43de"
|
|
2456
|
+
|
|
2457
|
+
[[package]]
|
|
2458
|
+
name = "unarray"
|
|
2459
|
+
version = "0.1.4"
|
|
2460
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2461
|
+
checksum = "eaea85b334db583fe3274d12b4cd1880032beab409c0d774be044d4480ab9a94"
|
|
2462
|
+
|
|
2463
|
+
[[package]]
|
|
2464
|
+
name = "unicase"
|
|
2465
|
+
version = "2.9.0"
|
|
2466
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2467
|
+
checksum = "dbc4bc3a9f746d862c45cb89d705aa10f187bb96c76001afab07a0d35ce60142"
|
|
2468
|
+
|
|
2469
|
+
[[package]]
|
|
2470
|
+
name = "unicode-ident"
|
|
2471
|
+
version = "1.0.24"
|
|
2472
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2473
|
+
checksum = "e6e4313cd5fcd3dad5cafa179702e2b244f760991f45397d14d4ebf38247da75"
|
|
2474
|
+
|
|
2475
|
+
[[package]]
|
|
2476
|
+
name = "unicode-xid"
|
|
2477
|
+
version = "0.2.6"
|
|
2478
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2479
|
+
checksum = "ebc1c04c71510c7f702b52b7c350734c9ff1295c464a03335b00bb84fc54f853"
|
|
2480
|
+
|
|
2481
|
+
[[package]]
|
|
2482
|
+
name = "untrusted"
|
|
2483
|
+
version = "0.9.0"
|
|
2484
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2485
|
+
checksum = "8ecb6da28b8a351d773b68d5825ac39017e680750f980f3a1a85cd8dd28a47c1"
|
|
2486
|
+
|
|
2487
|
+
[[package]]
|
|
2488
|
+
name = "url"
|
|
2489
|
+
version = "2.5.8"
|
|
2490
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2491
|
+
checksum = "ff67a8a4397373c3ef660812acab3268222035010ab8680ec4215f38ba3d0eed"
|
|
2492
|
+
dependencies = [
|
|
2493
|
+
"form_urlencoded",
|
|
2494
|
+
"idna",
|
|
2495
|
+
"percent-encoding",
|
|
2496
|
+
"serde",
|
|
2497
|
+
]
|
|
2498
|
+
|
|
2499
|
+
[[package]]
|
|
2500
|
+
name = "utf-8"
|
|
2501
|
+
version = "0.7.6"
|
|
2502
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2503
|
+
checksum = "09cc8ee72d2a9becf2f2febe0205bbed8fc6615b7cb429ad062dc7b7ddd036a9"
|
|
2504
|
+
|
|
2505
|
+
[[package]]
|
|
2506
|
+
name = "utf8_iter"
|
|
2507
|
+
version = "1.0.4"
|
|
2508
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2509
|
+
checksum = "b6c140620e7ffbb22c2dee59cafe6084a59b5ffc27a8859a5f0d494b5d52b6be"
|
|
2510
|
+
|
|
2511
|
+
[[package]]
|
|
2512
|
+
name = "utf8parse"
|
|
2513
|
+
version = "0.2.2"
|
|
2514
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2515
|
+
checksum = "06abde3611657adf66d383f00b093d7faecc7fa57071cce2578660c9f1010821"
|
|
2516
|
+
|
|
2517
|
+
[[package]]
|
|
2518
|
+
name = "utoipa"
|
|
2519
|
+
version = "5.4.0"
|
|
2520
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2521
|
+
checksum = "2fcc29c80c21c31608227e0912b2d7fddba57ad76b606890627ba8ee7964e993"
|
|
2522
|
+
dependencies = [
|
|
2523
|
+
"indexmap",
|
|
2524
|
+
"serde",
|
|
2525
|
+
"serde_json",
|
|
2526
|
+
"utoipa-gen",
|
|
2527
|
+
]
|
|
2528
|
+
|
|
2529
|
+
[[package]]
|
|
2530
|
+
name = "utoipa-gen"
|
|
2531
|
+
version = "5.4.0"
|
|
2532
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2533
|
+
checksum = "6d79d08d92ab8af4c5e8a6da20c47ae3f61a0f1dabc1997cdf2d082b757ca08b"
|
|
2534
|
+
dependencies = [
|
|
2535
|
+
"proc-macro2",
|
|
2536
|
+
"quote",
|
|
2537
|
+
"regex",
|
|
2538
|
+
"syn",
|
|
2539
|
+
"uuid",
|
|
2540
|
+
]
|
|
2541
|
+
|
|
2542
|
+
[[package]]
|
|
2543
|
+
name = "utoipa-swagger-ui"
|
|
2544
|
+
version = "9.0.2"
|
|
2545
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2546
|
+
checksum = "d047458f1b5b65237c2f6dc6db136945667f40a7668627b3490b9513a3d43a55"
|
|
2547
|
+
dependencies = [
|
|
2548
|
+
"axum",
|
|
2549
|
+
"base64",
|
|
2550
|
+
"mime_guess",
|
|
2551
|
+
"regex",
|
|
2552
|
+
"rust-embed",
|
|
2553
|
+
"serde",
|
|
2554
|
+
"serde_json",
|
|
2555
|
+
"url",
|
|
2556
|
+
"utoipa",
|
|
2557
|
+
"zip",
|
|
2558
|
+
]
|
|
2559
|
+
|
|
2560
|
+
[[package]]
|
|
2561
|
+
name = "uuid"
|
|
2562
|
+
version = "1.23.1"
|
|
2563
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2564
|
+
checksum = "ddd74a9687298c6858e9b88ec8935ec45d22e8fd5e6394fa1bd4e99a87789c76"
|
|
2565
|
+
dependencies = [
|
|
2566
|
+
"getrandom 0.4.2",
|
|
2567
|
+
"js-sys",
|
|
2568
|
+
"serde_core",
|
|
2569
|
+
"wasm-bindgen",
|
|
2570
|
+
]
|
|
2571
|
+
|
|
2572
|
+
[[package]]
|
|
2573
|
+
name = "valuable"
|
|
2574
|
+
version = "0.1.1"
|
|
2575
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2576
|
+
checksum = "ba73ea9cf16a25df0c8caa16c51acb937d5712a8429db78a3ee29d5dcacd3a65"
|
|
2577
|
+
|
|
2578
|
+
[[package]]
|
|
2579
|
+
name = "vcpkg"
|
|
2580
|
+
version = "0.2.15"
|
|
2581
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2582
|
+
checksum = "accd4ea62f7bb7a82fe23066fb0957d48ef677f6eeb8215f372f52e48bb32426"
|
|
2583
|
+
|
|
2584
|
+
[[package]]
|
|
2585
|
+
name = "version_check"
|
|
2586
|
+
version = "0.9.5"
|
|
2587
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2588
|
+
checksum = "0b928f33d975fc6ad9f86c8f283853ad26bdd5b10b7f1542aa2fa15e2289105a"
|
|
2589
|
+
|
|
2590
|
+
[[package]]
|
|
2591
|
+
name = "vsock"
|
|
2592
|
+
version = "0.5.4"
|
|
2593
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2594
|
+
checksum = "6ba782755fc073877e567c2253c0be48e4aa9a254c232d36d3985dfae0bd5205"
|
|
2595
|
+
dependencies = [
|
|
2596
|
+
"libc",
|
|
2597
|
+
"nix",
|
|
2598
|
+
]
|
|
2599
|
+
|
|
2600
|
+
[[package]]
|
|
2601
|
+
name = "wait-timeout"
|
|
2602
|
+
version = "0.2.1"
|
|
2603
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2604
|
+
checksum = "09ac3b126d3914f9849036f826e054cbabdc8519970b8998ddaf3b5bd3c65f11"
|
|
2605
|
+
dependencies = [
|
|
2606
|
+
"libc",
|
|
2607
|
+
]
|
|
2608
|
+
|
|
2609
|
+
[[package]]
|
|
2610
|
+
name = "walkdir"
|
|
2611
|
+
version = "2.5.0"
|
|
2612
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2613
|
+
checksum = "29790946404f91d9c5d06f9874efddea1dc06c5efe94541a7d6863108e3a5e4b"
|
|
2614
|
+
dependencies = [
|
|
2615
|
+
"same-file",
|
|
2616
|
+
"winapi-util",
|
|
2617
|
+
]
|
|
2618
|
+
|
|
2619
|
+
[[package]]
|
|
2620
|
+
name = "want"
|
|
2621
|
+
version = "0.3.1"
|
|
2622
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2623
|
+
checksum = "bfa7760aed19e106de2c7c0b581b509f2f25d3dacaf737cb82ac61bc6d760b0e"
|
|
2624
|
+
dependencies = [
|
|
2625
|
+
"try-lock",
|
|
2626
|
+
]
|
|
2627
|
+
|
|
2628
|
+
[[package]]
|
|
2629
|
+
name = "wasi"
|
|
2630
|
+
version = "0.11.1+wasi-snapshot-preview1"
|
|
2631
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2632
|
+
checksum = "ccf3ec651a847eb01de73ccad15eb7d99f80485de043efb2f370cd654f4ea44b"
|
|
2633
|
+
|
|
2634
|
+
[[package]]
|
|
2635
|
+
name = "wasip2"
|
|
2636
|
+
version = "1.0.3+wasi-0.2.9"
|
|
2637
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2638
|
+
checksum = "20064672db26d7cdc89c7798c48a0fdfac8213434a1186e5ef29fd560ae223d6"
|
|
2639
|
+
dependencies = [
|
|
2640
|
+
"wit-bindgen 0.57.1",
|
|
2641
|
+
]
|
|
2642
|
+
|
|
2643
|
+
[[package]]
|
|
2644
|
+
name = "wasip3"
|
|
2645
|
+
version = "0.4.0+wasi-0.3.0-rc-2026-01-06"
|
|
2646
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2647
|
+
checksum = "5428f8bf88ea5ddc08faddef2ac4a67e390b88186c703ce6dbd955e1c145aca5"
|
|
2648
|
+
dependencies = [
|
|
2649
|
+
"wit-bindgen 0.51.0",
|
|
2650
|
+
]
|
|
2651
|
+
|
|
2652
|
+
[[package]]
|
|
2653
|
+
name = "wasm-bindgen"
|
|
2654
|
+
version = "0.2.118"
|
|
2655
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2656
|
+
checksum = "0bf938a0bacb0469e83c1e148908bd7d5a6010354cf4fb73279b7447422e3a89"
|
|
2657
|
+
dependencies = [
|
|
2658
|
+
"cfg-if",
|
|
2659
|
+
"once_cell",
|
|
2660
|
+
"rustversion",
|
|
2661
|
+
"wasm-bindgen-macro",
|
|
2662
|
+
"wasm-bindgen-shared",
|
|
2663
|
+
]
|
|
2664
|
+
|
|
2665
|
+
[[package]]
|
|
2666
|
+
name = "wasm-bindgen-futures"
|
|
2667
|
+
version = "0.4.68"
|
|
2668
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2669
|
+
checksum = "f371d383f2fb139252e0bfac3b81b265689bf45b6874af544ffa4c975ac1ebf8"
|
|
2670
|
+
dependencies = [
|
|
2671
|
+
"js-sys",
|
|
2672
|
+
"wasm-bindgen",
|
|
2673
|
+
]
|
|
2674
|
+
|
|
2675
|
+
[[package]]
|
|
2676
|
+
name = "wasm-bindgen-macro"
|
|
2677
|
+
version = "0.2.118"
|
|
2678
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2679
|
+
checksum = "eeff24f84126c0ec2db7a449f0c2ec963c6a49efe0698c4242929da037ca28ed"
|
|
2680
|
+
dependencies = [
|
|
2681
|
+
"quote",
|
|
2682
|
+
"wasm-bindgen-macro-support",
|
|
2683
|
+
]
|
|
2684
|
+
|
|
2685
|
+
[[package]]
|
|
2686
|
+
name = "wasm-bindgen-macro-support"
|
|
2687
|
+
version = "0.2.118"
|
|
2688
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2689
|
+
checksum = "9d08065faf983b2b80a79fd87d8254c409281cf7de75fc4b773019824196c904"
|
|
2690
|
+
dependencies = [
|
|
2691
|
+
"bumpalo",
|
|
2692
|
+
"proc-macro2",
|
|
2693
|
+
"quote",
|
|
2694
|
+
"syn",
|
|
2695
|
+
"wasm-bindgen-shared",
|
|
2696
|
+
]
|
|
2697
|
+
|
|
2698
|
+
[[package]]
|
|
2699
|
+
name = "wasm-bindgen-shared"
|
|
2700
|
+
version = "0.2.118"
|
|
2701
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2702
|
+
checksum = "5fd04d9e306f1907bd13c6361b5c6bfc7b3b3c095ed3f8a9246390f8dbdee129"
|
|
2703
|
+
dependencies = [
|
|
2704
|
+
"unicode-ident",
|
|
2705
|
+
]
|
|
2706
|
+
|
|
2707
|
+
[[package]]
|
|
2708
|
+
name = "wasm-encoder"
|
|
2709
|
+
version = "0.244.0"
|
|
2710
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2711
|
+
checksum = "990065f2fe63003fe337b932cfb5e3b80e0b4d0f5ff650e6985b1048f62c8319"
|
|
2712
|
+
dependencies = [
|
|
2713
|
+
"leb128fmt",
|
|
2714
|
+
"wasmparser",
|
|
2715
|
+
]
|
|
2716
|
+
|
|
2717
|
+
[[package]]
|
|
2718
|
+
name = "wasm-metadata"
|
|
2719
|
+
version = "0.244.0"
|
|
2720
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2721
|
+
checksum = "bb0e353e6a2fbdc176932bbaab493762eb1255a7900fe0fea1a2f96c296cc909"
|
|
2722
|
+
dependencies = [
|
|
2723
|
+
"anyhow",
|
|
2724
|
+
"indexmap",
|
|
2725
|
+
"wasm-encoder",
|
|
2726
|
+
"wasmparser",
|
|
2727
|
+
]
|
|
2728
|
+
|
|
2729
|
+
[[package]]
|
|
2730
|
+
name = "wasm-streams"
|
|
2731
|
+
version = "0.4.2"
|
|
2732
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2733
|
+
checksum = "15053d8d85c7eccdbefef60f06769760a563c7f0a9d6902a13d35c7800b0ad65"
|
|
2734
|
+
dependencies = [
|
|
2735
|
+
"futures-util",
|
|
2736
|
+
"js-sys",
|
|
2737
|
+
"wasm-bindgen",
|
|
2738
|
+
"wasm-bindgen-futures",
|
|
2739
|
+
"web-sys",
|
|
2740
|
+
]
|
|
2741
|
+
|
|
2742
|
+
[[package]]
|
|
2743
|
+
name = "wasmparser"
|
|
2744
|
+
version = "0.244.0"
|
|
2745
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2746
|
+
checksum = "47b807c72e1bac69382b3a6fb3dbe8ea4c0ed87ff5629b8685ae6b9a611028fe"
|
|
2747
|
+
dependencies = [
|
|
2748
|
+
"bitflags",
|
|
2749
|
+
"hashbrown 0.15.5",
|
|
2750
|
+
"indexmap",
|
|
2751
|
+
"semver",
|
|
2752
|
+
]
|
|
2753
|
+
|
|
2754
|
+
[[package]]
|
|
2755
|
+
name = "web-sys"
|
|
2756
|
+
version = "0.3.95"
|
|
2757
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2758
|
+
checksum = "4f2dfbb17949fa2088e5d39408c48368947b86f7834484e87b73de55bc14d97d"
|
|
2759
|
+
dependencies = [
|
|
2760
|
+
"js-sys",
|
|
2761
|
+
"wasm-bindgen",
|
|
2762
|
+
]
|
|
2763
|
+
|
|
2764
|
+
[[package]]
|
|
2765
|
+
name = "web-time"
|
|
2766
|
+
version = "1.1.0"
|
|
2767
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2768
|
+
checksum = "5a6580f308b1fad9207618087a65c04e7a10bc77e02c8e84e9b00dd4b12fa0bb"
|
|
2769
|
+
dependencies = [
|
|
2770
|
+
"js-sys",
|
|
2771
|
+
"wasm-bindgen",
|
|
2772
|
+
]
|
|
2773
|
+
|
|
2774
|
+
[[package]]
|
|
2775
|
+
name = "webpki-roots"
|
|
2776
|
+
version = "1.0.7"
|
|
2777
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2778
|
+
checksum = "52f5ee44c96cf55f1b349600768e3ece3a8f26010c05265ab73f945bb1a2eb9d"
|
|
2779
|
+
dependencies = [
|
|
2780
|
+
"rustls-pki-types",
|
|
2781
|
+
]
|
|
2782
|
+
|
|
2783
|
+
[[package]]
|
|
2784
|
+
name = "winapi"
|
|
2785
|
+
version = "0.3.9"
|
|
2786
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2787
|
+
checksum = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419"
|
|
2788
|
+
dependencies = [
|
|
2789
|
+
"winapi-i686-pc-windows-gnu",
|
|
2790
|
+
"winapi-x86_64-pc-windows-gnu",
|
|
2791
|
+
]
|
|
2792
|
+
|
|
2793
|
+
[[package]]
|
|
2794
|
+
name = "winapi-i686-pc-windows-gnu"
|
|
2795
|
+
version = "0.4.0"
|
|
2796
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2797
|
+
checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6"
|
|
2798
|
+
|
|
2799
|
+
[[package]]
|
|
2800
|
+
name = "winapi-util"
|
|
2801
|
+
version = "0.1.11"
|
|
2802
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2803
|
+
checksum = "c2a7b1c03c876122aa43f3020e6c3c3ee5c05081c9a00739faf7503aeba10d22"
|
|
2804
|
+
dependencies = [
|
|
2805
|
+
"windows-sys 0.61.2",
|
|
2806
|
+
]
|
|
2807
|
+
|
|
2808
|
+
[[package]]
|
|
2809
|
+
name = "winapi-x86_64-pc-windows-gnu"
|
|
2810
|
+
version = "0.4.0"
|
|
2811
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2812
|
+
checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f"
|
|
2813
|
+
|
|
2814
|
+
[[package]]
|
|
2815
|
+
name = "windows"
|
|
2816
|
+
version = "0.62.2"
|
|
2817
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2818
|
+
checksum = "527fadee13e0c05939a6a05d5bd6eec6cd2e3dbd648b9f8e447c6518133d8580"
|
|
2819
|
+
dependencies = [
|
|
2820
|
+
"windows-collections",
|
|
2821
|
+
"windows-core",
|
|
2822
|
+
"windows-future",
|
|
2823
|
+
"windows-numerics",
|
|
2824
|
+
]
|
|
2825
|
+
|
|
2826
|
+
[[package]]
|
|
2827
|
+
name = "windows-collections"
|
|
2828
|
+
version = "0.3.2"
|
|
2829
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2830
|
+
checksum = "23b2d95af1a8a14a3c7367e1ed4fc9c20e0a26e79551b1454d72583c97cc6610"
|
|
2831
|
+
dependencies = [
|
|
2832
|
+
"windows-core",
|
|
2833
|
+
]
|
|
2834
|
+
|
|
2835
|
+
[[package]]
|
|
2836
|
+
name = "windows-core"
|
|
2837
|
+
version = "0.62.2"
|
|
2838
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2839
|
+
checksum = "b8e83a14d34d0623b51dce9581199302a221863196a1dde71a7663a4c2be9deb"
|
|
2840
|
+
dependencies = [
|
|
2841
|
+
"windows-implement",
|
|
2842
|
+
"windows-interface",
|
|
2843
|
+
"windows-link",
|
|
2844
|
+
"windows-result",
|
|
2845
|
+
"windows-strings",
|
|
2846
|
+
]
|
|
2847
|
+
|
|
2848
|
+
[[package]]
|
|
2849
|
+
name = "windows-future"
|
|
2850
|
+
version = "0.3.2"
|
|
2851
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2852
|
+
checksum = "e1d6f90251fe18a279739e78025bd6ddc52a7e22f921070ccdc67dde84c605cb"
|
|
2853
|
+
dependencies = [
|
|
2854
|
+
"windows-core",
|
|
2855
|
+
"windows-link",
|
|
2856
|
+
"windows-threading",
|
|
2857
|
+
]
|
|
2858
|
+
|
|
2859
|
+
[[package]]
|
|
2860
|
+
name = "windows-implement"
|
|
2861
|
+
version = "0.60.2"
|
|
2862
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2863
|
+
checksum = "053e2e040ab57b9dc951b72c264860db7eb3b0200ba345b4e4c3b14f67855ddf"
|
|
2864
|
+
dependencies = [
|
|
2865
|
+
"proc-macro2",
|
|
2866
|
+
"quote",
|
|
2867
|
+
"syn",
|
|
2868
|
+
]
|
|
2869
|
+
|
|
2870
|
+
[[package]]
|
|
2871
|
+
name = "windows-interface"
|
|
2872
|
+
version = "0.59.3"
|
|
2873
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2874
|
+
checksum = "3f316c4a2570ba26bbec722032c4099d8c8bc095efccdc15688708623367e358"
|
|
2875
|
+
dependencies = [
|
|
2876
|
+
"proc-macro2",
|
|
2877
|
+
"quote",
|
|
2878
|
+
"syn",
|
|
2879
|
+
]
|
|
2880
|
+
|
|
2881
|
+
[[package]]
|
|
2882
|
+
name = "windows-link"
|
|
2883
|
+
version = "0.2.1"
|
|
2884
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2885
|
+
checksum = "f0805222e57f7521d6a62e36fa9163bc891acd422f971defe97d64e70d0a4fe5"
|
|
2886
|
+
|
|
2887
|
+
[[package]]
|
|
2888
|
+
name = "windows-numerics"
|
|
2889
|
+
version = "0.3.1"
|
|
2890
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2891
|
+
checksum = "6e2e40844ac143cdb44aead537bbf727de9b044e107a0f1220392177d15b0f26"
|
|
2892
|
+
dependencies = [
|
|
2893
|
+
"windows-core",
|
|
2894
|
+
"windows-link",
|
|
2895
|
+
]
|
|
2896
|
+
|
|
2897
|
+
[[package]]
|
|
2898
|
+
name = "windows-result"
|
|
2899
|
+
version = "0.4.1"
|
|
2900
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2901
|
+
checksum = "7781fa89eaf60850ac3d2da7af8e5242a5ea78d1a11c49bf2910bb5a73853eb5"
|
|
2902
|
+
dependencies = [
|
|
2903
|
+
"windows-link",
|
|
2904
|
+
]
|
|
2905
|
+
|
|
2906
|
+
[[package]]
|
|
2907
|
+
name = "windows-strings"
|
|
2908
|
+
version = "0.5.1"
|
|
2909
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2910
|
+
checksum = "7837d08f69c77cf6b07689544538e017c1bfcf57e34b4c0ff58e6c2cd3b37091"
|
|
2911
|
+
dependencies = [
|
|
2912
|
+
"windows-link",
|
|
2913
|
+
]
|
|
2914
|
+
|
|
2915
|
+
[[package]]
|
|
2916
|
+
name = "windows-sys"
|
|
2917
|
+
version = "0.52.0"
|
|
2918
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2919
|
+
checksum = "282be5f36a8ce781fad8c8ae18fa3f9beff57ec1b52cb3de0789201425d9a33d"
|
|
2920
|
+
dependencies = [
|
|
2921
|
+
"windows-targets 0.52.6",
|
|
2922
|
+
]
|
|
2923
|
+
|
|
2924
|
+
[[package]]
|
|
2925
|
+
name = "windows-sys"
|
|
2926
|
+
version = "0.59.0"
|
|
2927
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2928
|
+
checksum = "1e38bc4d79ed67fd075bcc251a1c39b32a1776bbe92e5bef1f0bf1f8c531853b"
|
|
2929
|
+
dependencies = [
|
|
2930
|
+
"windows-targets 0.52.6",
|
|
2931
|
+
]
|
|
2932
|
+
|
|
2933
|
+
[[package]]
|
|
2934
|
+
name = "windows-sys"
|
|
2935
|
+
version = "0.60.2"
|
|
2936
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2937
|
+
checksum = "f2f500e4d28234f72040990ec9d39e3a6b950f9f22d3dba18416c35882612bcb"
|
|
2938
|
+
dependencies = [
|
|
2939
|
+
"windows-targets 0.53.5",
|
|
2940
|
+
]
|
|
2941
|
+
|
|
2942
|
+
[[package]]
|
|
2943
|
+
name = "windows-sys"
|
|
2944
|
+
version = "0.61.2"
|
|
2945
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2946
|
+
checksum = "ae137229bcbd6cdf0f7b80a31df61766145077ddf49416a728b02cb3921ff3fc"
|
|
2947
|
+
dependencies = [
|
|
2948
|
+
"windows-link",
|
|
2949
|
+
]
|
|
2950
|
+
|
|
2951
|
+
[[package]]
|
|
2952
|
+
name = "windows-targets"
|
|
2953
|
+
version = "0.52.6"
|
|
2954
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2955
|
+
checksum = "9b724f72796e036ab90c1021d4780d4d3d648aca59e491e6b98e725b84e99973"
|
|
2956
|
+
dependencies = [
|
|
2957
|
+
"windows_aarch64_gnullvm 0.52.6",
|
|
2958
|
+
"windows_aarch64_msvc 0.52.6",
|
|
2959
|
+
"windows_i686_gnu 0.52.6",
|
|
2960
|
+
"windows_i686_gnullvm 0.52.6",
|
|
2961
|
+
"windows_i686_msvc 0.52.6",
|
|
2962
|
+
"windows_x86_64_gnu 0.52.6",
|
|
2963
|
+
"windows_x86_64_gnullvm 0.52.6",
|
|
2964
|
+
"windows_x86_64_msvc 0.52.6",
|
|
2965
|
+
]
|
|
2966
|
+
|
|
2967
|
+
[[package]]
|
|
2968
|
+
name = "windows-targets"
|
|
2969
|
+
version = "0.53.5"
|
|
2970
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2971
|
+
checksum = "4945f9f551b88e0d65f3db0bc25c33b8acea4d9e41163edf90dcd0b19f9069f3"
|
|
2972
|
+
dependencies = [
|
|
2973
|
+
"windows-link",
|
|
2974
|
+
"windows_aarch64_gnullvm 0.53.1",
|
|
2975
|
+
"windows_aarch64_msvc 0.53.1",
|
|
2976
|
+
"windows_i686_gnu 0.53.1",
|
|
2977
|
+
"windows_i686_gnullvm 0.53.1",
|
|
2978
|
+
"windows_i686_msvc 0.53.1",
|
|
2979
|
+
"windows_x86_64_gnu 0.53.1",
|
|
2980
|
+
"windows_x86_64_gnullvm 0.53.1",
|
|
2981
|
+
"windows_x86_64_msvc 0.53.1",
|
|
2982
|
+
]
|
|
2983
|
+
|
|
2984
|
+
[[package]]
|
|
2985
|
+
name = "windows-threading"
|
|
2986
|
+
version = "0.2.1"
|
|
2987
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2988
|
+
checksum = "3949bd5b99cafdf1c7ca86b43ca564028dfe27d66958f2470940f73d86d75b37"
|
|
2989
|
+
dependencies = [
|
|
2990
|
+
"windows-link",
|
|
2991
|
+
]
|
|
2992
|
+
|
|
2993
|
+
[[package]]
|
|
2994
|
+
name = "windows_aarch64_gnullvm"
|
|
2995
|
+
version = "0.52.6"
|
|
2996
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2997
|
+
checksum = "32a4622180e7a0ec044bb555404c800bc9fd9ec262ec147edd5989ccd0c02cd3"
|
|
2998
|
+
|
|
2999
|
+
[[package]]
|
|
3000
|
+
name = "windows_aarch64_gnullvm"
|
|
3001
|
+
version = "0.53.1"
|
|
3002
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3003
|
+
checksum = "a9d8416fa8b42f5c947f8482c43e7d89e73a173cead56d044f6a56104a6d1b53"
|
|
3004
|
+
|
|
3005
|
+
[[package]]
|
|
3006
|
+
name = "windows_aarch64_msvc"
|
|
3007
|
+
version = "0.52.6"
|
|
3008
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3009
|
+
checksum = "09ec2a7bb152e2252b53fa7803150007879548bc709c039df7627cabbd05d469"
|
|
3010
|
+
|
|
3011
|
+
[[package]]
|
|
3012
|
+
name = "windows_aarch64_msvc"
|
|
3013
|
+
version = "0.53.1"
|
|
3014
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3015
|
+
checksum = "b9d782e804c2f632e395708e99a94275910eb9100b2114651e04744e9b125006"
|
|
3016
|
+
|
|
3017
|
+
[[package]]
|
|
3018
|
+
name = "windows_i686_gnu"
|
|
3019
|
+
version = "0.52.6"
|
|
3020
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3021
|
+
checksum = "8e9b5ad5ab802e97eb8e295ac6720e509ee4c243f69d781394014ebfe8bbfa0b"
|
|
3022
|
+
|
|
3023
|
+
[[package]]
|
|
3024
|
+
name = "windows_i686_gnu"
|
|
3025
|
+
version = "0.53.1"
|
|
3026
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3027
|
+
checksum = "960e6da069d81e09becb0ca57a65220ddff016ff2d6af6a223cf372a506593a3"
|
|
3028
|
+
|
|
3029
|
+
[[package]]
|
|
3030
|
+
name = "windows_i686_gnullvm"
|
|
3031
|
+
version = "0.52.6"
|
|
3032
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3033
|
+
checksum = "0eee52d38c090b3caa76c563b86c3a4bd71ef1a819287c19d586d7334ae8ed66"
|
|
3034
|
+
|
|
3035
|
+
[[package]]
|
|
3036
|
+
name = "windows_i686_gnullvm"
|
|
3037
|
+
version = "0.53.1"
|
|
3038
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3039
|
+
checksum = "fa7359d10048f68ab8b09fa71c3daccfb0e9b559aed648a8f95469c27057180c"
|
|
3040
|
+
|
|
3041
|
+
[[package]]
|
|
3042
|
+
name = "windows_i686_msvc"
|
|
3043
|
+
version = "0.52.6"
|
|
3044
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3045
|
+
checksum = "240948bc05c5e7c6dabba28bf89d89ffce3e303022809e73deaefe4f6ec56c66"
|
|
3046
|
+
|
|
3047
|
+
[[package]]
|
|
3048
|
+
name = "windows_i686_msvc"
|
|
3049
|
+
version = "0.53.1"
|
|
3050
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3051
|
+
checksum = "1e7ac75179f18232fe9c285163565a57ef8d3c89254a30685b57d83a38d326c2"
|
|
3052
|
+
|
|
3053
|
+
[[package]]
|
|
3054
|
+
name = "windows_x86_64_gnu"
|
|
3055
|
+
version = "0.52.6"
|
|
3056
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3057
|
+
checksum = "147a5c80aabfbf0c7d901cb5895d1de30ef2907eb21fbbab29ca94c5b08b1a78"
|
|
3058
|
+
|
|
3059
|
+
[[package]]
|
|
3060
|
+
name = "windows_x86_64_gnu"
|
|
3061
|
+
version = "0.53.1"
|
|
3062
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3063
|
+
checksum = "9c3842cdd74a865a8066ab39c8a7a473c0778a3f29370b5fd6b4b9aa7df4a499"
|
|
3064
|
+
|
|
3065
|
+
[[package]]
|
|
3066
|
+
name = "windows_x86_64_gnullvm"
|
|
3067
|
+
version = "0.52.6"
|
|
3068
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3069
|
+
checksum = "24d5b23dc417412679681396f2b49f3de8c1473deb516bd34410872eff51ed0d"
|
|
3070
|
+
|
|
3071
|
+
[[package]]
|
|
3072
|
+
name = "windows_x86_64_gnullvm"
|
|
3073
|
+
version = "0.53.1"
|
|
3074
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3075
|
+
checksum = "0ffa179e2d07eee8ad8f57493436566c7cc30ac536a3379fdf008f47f6bb7ae1"
|
|
3076
|
+
|
|
3077
|
+
[[package]]
|
|
3078
|
+
name = "windows_x86_64_msvc"
|
|
3079
|
+
version = "0.52.6"
|
|
3080
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3081
|
+
checksum = "589f6da84c646204747d1270a2a5661ea66ed1cced2631d546fdfb155959f9ec"
|
|
3082
|
+
|
|
3083
|
+
[[package]]
|
|
3084
|
+
name = "windows_x86_64_msvc"
|
|
3085
|
+
version = "0.53.1"
|
|
3086
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3087
|
+
checksum = "d6bbff5f0aada427a1e5a6da5f1f98158182f26556f345ac9e04d36d0ebed650"
|
|
3088
|
+
|
|
3089
|
+
[[package]]
|
|
3090
|
+
name = "winnow"
|
|
3091
|
+
version = "0.7.15"
|
|
3092
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3093
|
+
checksum = "df79d97927682d2fd8adb29682d1140b343be4ac0f08fd68b7765d9c059d3945"
|
|
3094
|
+
dependencies = [
|
|
3095
|
+
"memchr",
|
|
3096
|
+
]
|
|
3097
|
+
|
|
3098
|
+
[[package]]
|
|
3099
|
+
name = "wit-bindgen"
|
|
3100
|
+
version = "0.51.0"
|
|
3101
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3102
|
+
checksum = "d7249219f66ced02969388cf2bb044a09756a083d0fab1e566056b04d9fbcaa5"
|
|
3103
|
+
dependencies = [
|
|
3104
|
+
"wit-bindgen-rust-macro",
|
|
3105
|
+
]
|
|
3106
|
+
|
|
3107
|
+
[[package]]
|
|
3108
|
+
name = "wit-bindgen"
|
|
3109
|
+
version = "0.57.1"
|
|
3110
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3111
|
+
checksum = "1ebf944e87a7c253233ad6766e082e3cd714b5d03812acc24c318f549614536e"
|
|
3112
|
+
|
|
3113
|
+
[[package]]
|
|
3114
|
+
name = "wit-bindgen-core"
|
|
3115
|
+
version = "0.51.0"
|
|
3116
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3117
|
+
checksum = "ea61de684c3ea68cb082b7a88508a8b27fcc8b797d738bfc99a82facf1d752dc"
|
|
3118
|
+
dependencies = [
|
|
3119
|
+
"anyhow",
|
|
3120
|
+
"heck",
|
|
3121
|
+
"wit-parser",
|
|
3122
|
+
]
|
|
3123
|
+
|
|
3124
|
+
[[package]]
|
|
3125
|
+
name = "wit-bindgen-rust"
|
|
3126
|
+
version = "0.51.0"
|
|
3127
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3128
|
+
checksum = "b7c566e0f4b284dd6561c786d9cb0142da491f46a9fbed79ea69cdad5db17f21"
|
|
3129
|
+
dependencies = [
|
|
3130
|
+
"anyhow",
|
|
3131
|
+
"heck",
|
|
3132
|
+
"indexmap",
|
|
3133
|
+
"prettyplease",
|
|
3134
|
+
"syn",
|
|
3135
|
+
"wasm-metadata",
|
|
3136
|
+
"wit-bindgen-core",
|
|
3137
|
+
"wit-component",
|
|
3138
|
+
]
|
|
3139
|
+
|
|
3140
|
+
[[package]]
|
|
3141
|
+
name = "wit-bindgen-rust-macro"
|
|
3142
|
+
version = "0.51.0"
|
|
3143
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3144
|
+
checksum = "0c0f9bfd77e6a48eccf51359e3ae77140a7f50b1e2ebfe62422d8afdaffab17a"
|
|
3145
|
+
dependencies = [
|
|
3146
|
+
"anyhow",
|
|
3147
|
+
"prettyplease",
|
|
3148
|
+
"proc-macro2",
|
|
3149
|
+
"quote",
|
|
3150
|
+
"syn",
|
|
3151
|
+
"wit-bindgen-core",
|
|
3152
|
+
"wit-bindgen-rust",
|
|
3153
|
+
]
|
|
3154
|
+
|
|
3155
|
+
[[package]]
|
|
3156
|
+
name = "wit-component"
|
|
3157
|
+
version = "0.244.0"
|
|
3158
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3159
|
+
checksum = "9d66ea20e9553b30172b5e831994e35fbde2d165325bec84fc43dbf6f4eb9cb2"
|
|
3160
|
+
dependencies = [
|
|
3161
|
+
"anyhow",
|
|
3162
|
+
"bitflags",
|
|
3163
|
+
"indexmap",
|
|
3164
|
+
"log",
|
|
3165
|
+
"serde",
|
|
3166
|
+
"serde_derive",
|
|
3167
|
+
"serde_json",
|
|
3168
|
+
"wasm-encoder",
|
|
3169
|
+
"wasm-metadata",
|
|
3170
|
+
"wasmparser",
|
|
3171
|
+
"wit-parser",
|
|
3172
|
+
]
|
|
3173
|
+
|
|
3174
|
+
[[package]]
|
|
3175
|
+
name = "wit-parser"
|
|
3176
|
+
version = "0.244.0"
|
|
3177
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3178
|
+
checksum = "ecc8ac4bc1dc3381b7f59c34f00b67e18f910c2c0f50015669dde7def656a736"
|
|
3179
|
+
dependencies = [
|
|
3180
|
+
"anyhow",
|
|
3181
|
+
"id-arena",
|
|
3182
|
+
"indexmap",
|
|
3183
|
+
"log",
|
|
3184
|
+
"semver",
|
|
3185
|
+
"serde",
|
|
3186
|
+
"serde_derive",
|
|
3187
|
+
"serde_json",
|
|
3188
|
+
"unicode-xid",
|
|
3189
|
+
"wasmparser",
|
|
3190
|
+
]
|
|
3191
|
+
|
|
3192
|
+
[[package]]
|
|
3193
|
+
name = "writeable"
|
|
3194
|
+
version = "0.6.3"
|
|
3195
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3196
|
+
checksum = "1ffae5123b2d3fc086436f8834ae3ab053a283cfac8fe0a0b8eaae044768a4c4"
|
|
3197
|
+
|
|
3198
|
+
[[package]]
|
|
3199
|
+
name = "yoke"
|
|
3200
|
+
version = "0.8.2"
|
|
3201
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3202
|
+
checksum = "abe8c5fda708d9ca3df187cae8bfb9ceda00dd96231bed36e445a1a48e66f9ca"
|
|
3203
|
+
dependencies = [
|
|
3204
|
+
"stable_deref_trait",
|
|
3205
|
+
"yoke-derive",
|
|
3206
|
+
"zerofrom",
|
|
3207
|
+
]
|
|
3208
|
+
|
|
3209
|
+
[[package]]
|
|
3210
|
+
name = "yoke-derive"
|
|
3211
|
+
version = "0.8.2"
|
|
3212
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3213
|
+
checksum = "de844c262c8848816172cef550288e7dc6c7b7814b4ee56b3e1553f275f1858e"
|
|
3214
|
+
dependencies = [
|
|
3215
|
+
"proc-macro2",
|
|
3216
|
+
"quote",
|
|
3217
|
+
"syn",
|
|
3218
|
+
"synstructure",
|
|
3219
|
+
]
|
|
3220
|
+
|
|
3221
|
+
[[package]]
|
|
3222
|
+
name = "zerocopy"
|
|
3223
|
+
version = "0.8.48"
|
|
3224
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3225
|
+
checksum = "eed437bf9d6692032087e337407a86f04cd8d6a16a37199ed57949d415bd68e9"
|
|
3226
|
+
dependencies = [
|
|
3227
|
+
"zerocopy-derive",
|
|
3228
|
+
]
|
|
3229
|
+
|
|
3230
|
+
[[package]]
|
|
3231
|
+
name = "zerocopy-derive"
|
|
3232
|
+
version = "0.8.48"
|
|
3233
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3234
|
+
checksum = "70e3cd084b1788766f53af483dd21f93881ff30d7320490ec3ef7526d203bad4"
|
|
3235
|
+
dependencies = [
|
|
3236
|
+
"proc-macro2",
|
|
3237
|
+
"quote",
|
|
3238
|
+
"syn",
|
|
3239
|
+
]
|
|
3240
|
+
|
|
3241
|
+
[[package]]
|
|
3242
|
+
name = "zerofrom"
|
|
3243
|
+
version = "0.1.7"
|
|
3244
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3245
|
+
checksum = "69faa1f2a1ea75661980b013019ed6687ed0e83d069bc1114e2cc74c6c04c4df"
|
|
3246
|
+
dependencies = [
|
|
3247
|
+
"zerofrom-derive",
|
|
3248
|
+
]
|
|
3249
|
+
|
|
3250
|
+
[[package]]
|
|
3251
|
+
name = "zerofrom-derive"
|
|
3252
|
+
version = "0.1.7"
|
|
3253
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3254
|
+
checksum = "11532158c46691caf0f2593ea8358fed6bbf68a0315e80aae9bd41fbade684a1"
|
|
3255
|
+
dependencies = [
|
|
3256
|
+
"proc-macro2",
|
|
3257
|
+
"quote",
|
|
3258
|
+
"syn",
|
|
3259
|
+
"synstructure",
|
|
3260
|
+
]
|
|
3261
|
+
|
|
3262
|
+
[[package]]
|
|
3263
|
+
name = "zeroize"
|
|
3264
|
+
version = "1.8.2"
|
|
3265
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3266
|
+
checksum = "b97154e67e32c85465826e8bcc1c59429aaaf107c1e4a9e53c8d8ccd5eff88d0"
|
|
3267
|
+
|
|
3268
|
+
[[package]]
|
|
3269
|
+
name = "zerotrie"
|
|
3270
|
+
version = "0.2.4"
|
|
3271
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3272
|
+
checksum = "0f9152d31db0792fa83f70fb2f83148effb5c1f5b8c7686c3459e361d9bc20bf"
|
|
3273
|
+
dependencies = [
|
|
3274
|
+
"displaydoc",
|
|
3275
|
+
"yoke",
|
|
3276
|
+
"zerofrom",
|
|
3277
|
+
]
|
|
3278
|
+
|
|
3279
|
+
[[package]]
|
|
3280
|
+
name = "zerovec"
|
|
3281
|
+
version = "0.11.6"
|
|
3282
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3283
|
+
checksum = "90f911cbc359ab6af17377d242225f4d75119aec87ea711a880987b18cd7b239"
|
|
3284
|
+
dependencies = [
|
|
3285
|
+
"yoke",
|
|
3286
|
+
"zerofrom",
|
|
3287
|
+
"zerovec-derive",
|
|
3288
|
+
]
|
|
3289
|
+
|
|
3290
|
+
[[package]]
|
|
3291
|
+
name = "zerovec-derive"
|
|
3292
|
+
version = "0.11.3"
|
|
3293
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3294
|
+
checksum = "625dc425cab0dca6dc3c3319506e6593dcb08a9f387ea3b284dbd52a92c40555"
|
|
3295
|
+
dependencies = [
|
|
3296
|
+
"proc-macro2",
|
|
3297
|
+
"quote",
|
|
3298
|
+
"syn",
|
|
3299
|
+
]
|
|
3300
|
+
|
|
3301
|
+
[[package]]
|
|
3302
|
+
name = "zip"
|
|
3303
|
+
version = "3.0.0"
|
|
3304
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3305
|
+
checksum = "12598812502ed0105f607f941c386f43d441e00148fce9dec3ca5ffb0bde9308"
|
|
3306
|
+
dependencies = [
|
|
3307
|
+
"arbitrary",
|
|
3308
|
+
"crc32fast",
|
|
3309
|
+
"flate2",
|
|
3310
|
+
"indexmap",
|
|
3311
|
+
"memchr",
|
|
3312
|
+
"zopfli",
|
|
3313
|
+
]
|
|
3314
|
+
|
|
3315
|
+
[[package]]
|
|
3316
|
+
name = "zlib-rs"
|
|
3317
|
+
version = "0.6.3"
|
|
3318
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3319
|
+
checksum = "3be3d40e40a133f9c916ee3f9f4fa2d9d63435b5fbe1bfc6d9dae0aa0ada1513"
|
|
3320
|
+
|
|
3321
|
+
[[package]]
|
|
3322
|
+
name = "zmij"
|
|
3323
|
+
version = "1.0.21"
|
|
3324
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3325
|
+
checksum = "b8848ee67ecc8aedbaf3e4122217aff892639231befc6a1b58d29fff4c2cabaa"
|
|
3326
|
+
|
|
3327
|
+
[[package]]
|
|
3328
|
+
name = "zopfli"
|
|
3329
|
+
version = "0.8.3"
|
|
3330
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3331
|
+
checksum = "f05cd8797d63865425ff89b5c4a48804f35ba0ce8d125800027ad6017d2b5249"
|
|
3332
|
+
dependencies = [
|
|
3333
|
+
"bumpalo",
|
|
3334
|
+
"crc32fast",
|
|
3335
|
+
"log",
|
|
3336
|
+
"simd-adler32",
|
|
3337
|
+
]
|