act-build 0.3.8__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.
- act_build-0.3.8/Cargo.lock +4969 -0
- act_build-0.3.8/Cargo.toml +18 -0
- act_build-0.3.8/PKG-INFO +126 -0
- act_build-0.3.8/README.md +108 -0
- act_build-0.3.8/act-build/Cargo.toml +33 -0
- act_build-0.3.8/act-build/LICENSE-APACHE +190 -0
- act_build-0.3.8/act-build/LICENSE-MIT +21 -0
- act_build-0.3.8/act-build/README.md +108 -0
- act_build-0.3.8/act-build/src/main.rs +45 -0
- act_build-0.3.8/act-build/src/manifest/cargo.rs +117 -0
- act_build-0.3.8/act-build/src/manifest/mod.rs +173 -0
- act_build-0.3.8/act-build/src/manifest/packagejson.rs +38 -0
- act_build-0.3.8/act-build/src/manifest/pyproject.rs +56 -0
- act_build-0.3.8/act-build/src/pack.rs +109 -0
- act_build-0.3.8/act-build/src/skill.rs +77 -0
- act_build-0.3.8/act-build/src/validate.rs +78 -0
- act_build-0.3.8/act-build/src/wasm.rs +173 -0
- act_build-0.3.8/pyproject.toml +28 -0
|
@@ -0,0 +1,4969 @@
|
|
|
1
|
+
# This file is automatically @generated by Cargo.
|
|
2
|
+
# It is not intended for manual editing.
|
|
3
|
+
version = 4
|
|
4
|
+
|
|
5
|
+
[[package]]
|
|
6
|
+
name = "act-build"
|
|
7
|
+
version = "0.3.8"
|
|
8
|
+
dependencies = [
|
|
9
|
+
"act-types",
|
|
10
|
+
"anyhow",
|
|
11
|
+
"ciborium",
|
|
12
|
+
"clap",
|
|
13
|
+
"json-patch",
|
|
14
|
+
"serde",
|
|
15
|
+
"serde_json",
|
|
16
|
+
"tar",
|
|
17
|
+
"tempfile",
|
|
18
|
+
"toml 1.1.2+spec-1.1.0",
|
|
19
|
+
"tracing",
|
|
20
|
+
"tracing-subscriber",
|
|
21
|
+
"wasm-encoder 0.246.2",
|
|
22
|
+
"wasmparser 0.246.2",
|
|
23
|
+
]
|
|
24
|
+
|
|
25
|
+
[[package]]
|
|
26
|
+
name = "act-cli"
|
|
27
|
+
version = "0.3.8"
|
|
28
|
+
dependencies = [
|
|
29
|
+
"act-types",
|
|
30
|
+
"anyhow",
|
|
31
|
+
"axum",
|
|
32
|
+
"base64",
|
|
33
|
+
"ciborium",
|
|
34
|
+
"clap",
|
|
35
|
+
"dirs",
|
|
36
|
+
"futures-util",
|
|
37
|
+
"indicatif",
|
|
38
|
+
"oci-client",
|
|
39
|
+
"regex",
|
|
40
|
+
"reqwest",
|
|
41
|
+
"serde",
|
|
42
|
+
"serde_json",
|
|
43
|
+
"serde_with",
|
|
44
|
+
"sha2 0.11.0",
|
|
45
|
+
"shellexpand",
|
|
46
|
+
"tar",
|
|
47
|
+
"tempfile",
|
|
48
|
+
"tokio",
|
|
49
|
+
"tokio-stream",
|
|
50
|
+
"toml 1.1.2+spec-1.1.0",
|
|
51
|
+
"tracing",
|
|
52
|
+
"tracing-subscriber",
|
|
53
|
+
"url",
|
|
54
|
+
"wasmparser 0.246.2",
|
|
55
|
+
"wasmtime",
|
|
56
|
+
"wasmtime-wasi",
|
|
57
|
+
"wasmtime-wasi-http",
|
|
58
|
+
]
|
|
59
|
+
|
|
60
|
+
[[package]]
|
|
61
|
+
name = "act-types"
|
|
62
|
+
version = "0.3.0"
|
|
63
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
64
|
+
checksum = "eb1b9061f74fb4c33ee284d590527a001462e999b8ab63f13ce9cf1bde1ecdf5"
|
|
65
|
+
dependencies = [
|
|
66
|
+
"base64",
|
|
67
|
+
"ciborium",
|
|
68
|
+
"serde",
|
|
69
|
+
"serde_json",
|
|
70
|
+
"serde_with",
|
|
71
|
+
]
|
|
72
|
+
|
|
73
|
+
[[package]]
|
|
74
|
+
name = "addr2line"
|
|
75
|
+
version = "0.26.1"
|
|
76
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
77
|
+
checksum = "59317f77929f0e679d39364702289274de2f0f0b22cbf50b2b8cff2169a0b27a"
|
|
78
|
+
dependencies = [
|
|
79
|
+
"gimli",
|
|
80
|
+
]
|
|
81
|
+
|
|
82
|
+
[[package]]
|
|
83
|
+
name = "aho-corasick"
|
|
84
|
+
version = "1.1.4"
|
|
85
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
86
|
+
checksum = "ddd31a130427c27518df266943a5308ed92d4b226cc639f5a8f1002816174301"
|
|
87
|
+
dependencies = [
|
|
88
|
+
"memchr",
|
|
89
|
+
]
|
|
90
|
+
|
|
91
|
+
[[package]]
|
|
92
|
+
name = "allocator-api2"
|
|
93
|
+
version = "0.2.21"
|
|
94
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
95
|
+
checksum = "683d7910e743518b0e34f1186f92494becacb047c7b6bf616c96772180fef923"
|
|
96
|
+
|
|
97
|
+
[[package]]
|
|
98
|
+
name = "ambient-authority"
|
|
99
|
+
version = "0.0.2"
|
|
100
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
101
|
+
checksum = "e9d4ee0d472d1cd2e28c97dfa124b3d8d992e10eb0a035f33f5d12e3a177ba3b"
|
|
102
|
+
|
|
103
|
+
[[package]]
|
|
104
|
+
name = "android_system_properties"
|
|
105
|
+
version = "0.1.5"
|
|
106
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
107
|
+
checksum = "819e7219dbd41043ac279b19830f2efc897156490d7fd6ea916720117ee66311"
|
|
108
|
+
dependencies = [
|
|
109
|
+
"libc",
|
|
110
|
+
]
|
|
111
|
+
|
|
112
|
+
[[package]]
|
|
113
|
+
name = "anstream"
|
|
114
|
+
version = "1.0.0"
|
|
115
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
116
|
+
checksum = "824a212faf96e9acacdbd09febd34438f8f711fb84e09a8916013cd7815ca28d"
|
|
117
|
+
dependencies = [
|
|
118
|
+
"anstyle",
|
|
119
|
+
"anstyle-parse",
|
|
120
|
+
"anstyle-query",
|
|
121
|
+
"anstyle-wincon",
|
|
122
|
+
"colorchoice",
|
|
123
|
+
"is_terminal_polyfill",
|
|
124
|
+
"utf8parse",
|
|
125
|
+
]
|
|
126
|
+
|
|
127
|
+
[[package]]
|
|
128
|
+
name = "anstyle"
|
|
129
|
+
version = "1.0.14"
|
|
130
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
131
|
+
checksum = "940b3a0ca603d1eade50a4846a2afffd5ef57a9feac2c0e2ec2e14f9ead76000"
|
|
132
|
+
|
|
133
|
+
[[package]]
|
|
134
|
+
name = "anstyle-parse"
|
|
135
|
+
version = "1.0.0"
|
|
136
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
137
|
+
checksum = "52ce7f38b242319f7cabaa6813055467063ecdc9d355bbb4ce0c68908cd8130e"
|
|
138
|
+
dependencies = [
|
|
139
|
+
"utf8parse",
|
|
140
|
+
]
|
|
141
|
+
|
|
142
|
+
[[package]]
|
|
143
|
+
name = "anstyle-query"
|
|
144
|
+
version = "1.1.5"
|
|
145
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
146
|
+
checksum = "40c48f72fd53cd289104fc64099abca73db4166ad86ea0b4341abe65af83dadc"
|
|
147
|
+
dependencies = [
|
|
148
|
+
"windows-sys 0.61.2",
|
|
149
|
+
]
|
|
150
|
+
|
|
151
|
+
[[package]]
|
|
152
|
+
name = "anstyle-wincon"
|
|
153
|
+
version = "3.0.11"
|
|
154
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
155
|
+
checksum = "291e6a250ff86cd4a820112fb8898808a366d8f9f58ce16d1f538353ad55747d"
|
|
156
|
+
dependencies = [
|
|
157
|
+
"anstyle",
|
|
158
|
+
"once_cell_polyfill",
|
|
159
|
+
"windows-sys 0.61.2",
|
|
160
|
+
]
|
|
161
|
+
|
|
162
|
+
[[package]]
|
|
163
|
+
name = "anyhow"
|
|
164
|
+
version = "1.0.102"
|
|
165
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
166
|
+
checksum = "7f202df86484c868dbad7eaa557ef785d5c66295e41b460ef922eca0723b842c"
|
|
167
|
+
|
|
168
|
+
[[package]]
|
|
169
|
+
name = "arbitrary"
|
|
170
|
+
version = "1.4.2"
|
|
171
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
172
|
+
checksum = "c3d036a3c4ab069c7b410a2ce876bd74808d2d0888a82667669f8e783a898bf1"
|
|
173
|
+
|
|
174
|
+
[[package]]
|
|
175
|
+
name = "async-trait"
|
|
176
|
+
version = "0.1.89"
|
|
177
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
178
|
+
checksum = "9035ad2d096bed7955a320ee7e2230574d28fd3c3a0f186cbea1ff3c7eed5dbb"
|
|
179
|
+
dependencies = [
|
|
180
|
+
"proc-macro2",
|
|
181
|
+
"quote",
|
|
182
|
+
"syn",
|
|
183
|
+
]
|
|
184
|
+
|
|
185
|
+
[[package]]
|
|
186
|
+
name = "atomic-waker"
|
|
187
|
+
version = "1.1.2"
|
|
188
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
189
|
+
checksum = "1505bd5d3d116872e7271a6d4e16d81d0c8570876c8de68093a09ac269d8aac0"
|
|
190
|
+
|
|
191
|
+
[[package]]
|
|
192
|
+
name = "autocfg"
|
|
193
|
+
version = "1.5.0"
|
|
194
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
195
|
+
checksum = "c08606f8c3cbf4ce6ec8e28fb0014a2c086708fe954eaa885384a6165172e7e8"
|
|
196
|
+
|
|
197
|
+
[[package]]
|
|
198
|
+
name = "aws-lc-rs"
|
|
199
|
+
version = "1.16.2"
|
|
200
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
201
|
+
checksum = "a054912289d18629dc78375ba2c3726a3afe3ff71b4edba9dedfca0e3446d1fc"
|
|
202
|
+
dependencies = [
|
|
203
|
+
"aws-lc-sys",
|
|
204
|
+
"zeroize",
|
|
205
|
+
]
|
|
206
|
+
|
|
207
|
+
[[package]]
|
|
208
|
+
name = "aws-lc-sys"
|
|
209
|
+
version = "0.39.1"
|
|
210
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
211
|
+
checksum = "83a25cf98105baa966497416dbd42565ce3a8cf8dbfd59803ec9ad46f3126399"
|
|
212
|
+
dependencies = [
|
|
213
|
+
"cc",
|
|
214
|
+
"cmake",
|
|
215
|
+
"dunce",
|
|
216
|
+
"fs_extra",
|
|
217
|
+
]
|
|
218
|
+
|
|
219
|
+
[[package]]
|
|
220
|
+
name = "axum"
|
|
221
|
+
version = "0.8.8"
|
|
222
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
223
|
+
checksum = "8b52af3cb4058c895d37317bb27508dccc8e5f2d39454016b297bf4a400597b8"
|
|
224
|
+
dependencies = [
|
|
225
|
+
"axum-core",
|
|
226
|
+
"bytes",
|
|
227
|
+
"form_urlencoded",
|
|
228
|
+
"futures-util",
|
|
229
|
+
"http",
|
|
230
|
+
"http-body",
|
|
231
|
+
"http-body-util",
|
|
232
|
+
"hyper",
|
|
233
|
+
"hyper-util",
|
|
234
|
+
"itoa",
|
|
235
|
+
"matchit",
|
|
236
|
+
"memchr",
|
|
237
|
+
"mime",
|
|
238
|
+
"percent-encoding",
|
|
239
|
+
"pin-project-lite",
|
|
240
|
+
"serde_core",
|
|
241
|
+
"serde_json",
|
|
242
|
+
"serde_path_to_error",
|
|
243
|
+
"serde_urlencoded",
|
|
244
|
+
"sync_wrapper",
|
|
245
|
+
"tokio",
|
|
246
|
+
"tower",
|
|
247
|
+
"tower-layer",
|
|
248
|
+
"tower-service",
|
|
249
|
+
"tracing",
|
|
250
|
+
]
|
|
251
|
+
|
|
252
|
+
[[package]]
|
|
253
|
+
name = "axum-core"
|
|
254
|
+
version = "0.5.6"
|
|
255
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
256
|
+
checksum = "08c78f31d7b1291f7ee735c1c6780ccde7785daae9a9206026862dab7d8792d1"
|
|
257
|
+
dependencies = [
|
|
258
|
+
"bytes",
|
|
259
|
+
"futures-core",
|
|
260
|
+
"http",
|
|
261
|
+
"http-body",
|
|
262
|
+
"http-body-util",
|
|
263
|
+
"mime",
|
|
264
|
+
"pin-project-lite",
|
|
265
|
+
"sync_wrapper",
|
|
266
|
+
"tower-layer",
|
|
267
|
+
"tower-service",
|
|
268
|
+
"tracing",
|
|
269
|
+
]
|
|
270
|
+
|
|
271
|
+
[[package]]
|
|
272
|
+
name = "base64"
|
|
273
|
+
version = "0.22.1"
|
|
274
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
275
|
+
checksum = "72b3254f16251a8381aa12e40e3c4d2f0199f8c6508fbecb9d91f575e0fbb8c6"
|
|
276
|
+
|
|
277
|
+
[[package]]
|
|
278
|
+
name = "bitflags"
|
|
279
|
+
version = "2.11.0"
|
|
280
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
281
|
+
checksum = "843867be96c8daad0d758b57df9392b6d8d271134fce549de6ce169ff98a92af"
|
|
282
|
+
|
|
283
|
+
[[package]]
|
|
284
|
+
name = "bitmaps"
|
|
285
|
+
version = "2.1.0"
|
|
286
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
287
|
+
checksum = "031043d04099746d8db04daf1fa424b2bc8bd69d92b25962dcde24da39ab64a2"
|
|
288
|
+
dependencies = [
|
|
289
|
+
"typenum",
|
|
290
|
+
]
|
|
291
|
+
|
|
292
|
+
[[package]]
|
|
293
|
+
name = "block-buffer"
|
|
294
|
+
version = "0.10.4"
|
|
295
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
296
|
+
checksum = "3078c7629b62d3f0439517fa394996acacc5cbc91c5a20d8c658e77abd503a71"
|
|
297
|
+
dependencies = [
|
|
298
|
+
"generic-array",
|
|
299
|
+
]
|
|
300
|
+
|
|
301
|
+
[[package]]
|
|
302
|
+
name = "block-buffer"
|
|
303
|
+
version = "0.12.0"
|
|
304
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
305
|
+
checksum = "cdd35008169921d80bc60d3d0ab416eecb028c4cd653352907921d95084790be"
|
|
306
|
+
dependencies = [
|
|
307
|
+
"hybrid-array",
|
|
308
|
+
]
|
|
309
|
+
|
|
310
|
+
[[package]]
|
|
311
|
+
name = "bumpalo"
|
|
312
|
+
version = "3.20.2"
|
|
313
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
314
|
+
checksum = "5d20789868f4b01b2f2caec9f5c4e0213b41e3e5702a50157d699ae31ced2fcb"
|
|
315
|
+
dependencies = [
|
|
316
|
+
"allocator-api2",
|
|
317
|
+
]
|
|
318
|
+
|
|
319
|
+
[[package]]
|
|
320
|
+
name = "bytes"
|
|
321
|
+
version = "1.11.1"
|
|
322
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
323
|
+
checksum = "1e748733b7cbc798e1434b6ac524f0c1ff2ab456fe201501e6497c8417a4fc33"
|
|
324
|
+
|
|
325
|
+
[[package]]
|
|
326
|
+
name = "cap-fs-ext"
|
|
327
|
+
version = "3.4.5"
|
|
328
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
329
|
+
checksum = "d5528f85b1e134ae811704e41ef80930f56e795923f866813255bc342cc20654"
|
|
330
|
+
dependencies = [
|
|
331
|
+
"cap-primitives",
|
|
332
|
+
"cap-std",
|
|
333
|
+
"io-lifetimes",
|
|
334
|
+
"windows-sys 0.59.0",
|
|
335
|
+
]
|
|
336
|
+
|
|
337
|
+
[[package]]
|
|
338
|
+
name = "cap-net-ext"
|
|
339
|
+
version = "3.4.5"
|
|
340
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
341
|
+
checksum = "20a158160765c6a7d0d8c072a53d772e4cb243f38b04bfcf6b4939cfbe7482e7"
|
|
342
|
+
dependencies = [
|
|
343
|
+
"cap-primitives",
|
|
344
|
+
"cap-std",
|
|
345
|
+
"rustix 1.1.4",
|
|
346
|
+
"smallvec",
|
|
347
|
+
]
|
|
348
|
+
|
|
349
|
+
[[package]]
|
|
350
|
+
name = "cap-primitives"
|
|
351
|
+
version = "3.4.5"
|
|
352
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
353
|
+
checksum = "b6cf3aea8a5081171859ef57bc1606b1df6999df4f1110f8eef68b30098d1d3a"
|
|
354
|
+
dependencies = [
|
|
355
|
+
"ambient-authority",
|
|
356
|
+
"fs-set-times",
|
|
357
|
+
"io-extras",
|
|
358
|
+
"io-lifetimes",
|
|
359
|
+
"ipnet",
|
|
360
|
+
"maybe-owned",
|
|
361
|
+
"rustix 1.1.4",
|
|
362
|
+
"rustix-linux-procfs",
|
|
363
|
+
"windows-sys 0.59.0",
|
|
364
|
+
"winx",
|
|
365
|
+
]
|
|
366
|
+
|
|
367
|
+
[[package]]
|
|
368
|
+
name = "cap-rand"
|
|
369
|
+
version = "3.4.5"
|
|
370
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
371
|
+
checksum = "d8144c22e24bbcf26ade86cb6501a0916c46b7e4787abdb0045a467eb1645a1d"
|
|
372
|
+
dependencies = [
|
|
373
|
+
"ambient-authority",
|
|
374
|
+
"rand 0.8.5",
|
|
375
|
+
]
|
|
376
|
+
|
|
377
|
+
[[package]]
|
|
378
|
+
name = "cap-std"
|
|
379
|
+
version = "3.4.5"
|
|
380
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
381
|
+
checksum = "b6dc3090992a735d23219de5c204927163d922f42f575a0189b005c62d37549a"
|
|
382
|
+
dependencies = [
|
|
383
|
+
"cap-primitives",
|
|
384
|
+
"io-extras",
|
|
385
|
+
"io-lifetimes",
|
|
386
|
+
"rustix 1.1.4",
|
|
387
|
+
]
|
|
388
|
+
|
|
389
|
+
[[package]]
|
|
390
|
+
name = "cap-time-ext"
|
|
391
|
+
version = "3.4.5"
|
|
392
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
393
|
+
checksum = "def102506ce40c11710a9b16e614af0cde8e76ae51b1f48c04b8d79f4b671a80"
|
|
394
|
+
dependencies = [
|
|
395
|
+
"ambient-authority",
|
|
396
|
+
"cap-primitives",
|
|
397
|
+
"iana-time-zone",
|
|
398
|
+
"once_cell",
|
|
399
|
+
"rustix 1.1.4",
|
|
400
|
+
"winx",
|
|
401
|
+
]
|
|
402
|
+
|
|
403
|
+
[[package]]
|
|
404
|
+
name = "cc"
|
|
405
|
+
version = "1.2.59"
|
|
406
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
407
|
+
checksum = "b7a4d3ec6524d28a329fc53654bbadc9bdd7b0431f5d65f1a56ffb28a1ee5283"
|
|
408
|
+
dependencies = [
|
|
409
|
+
"find-msvc-tools",
|
|
410
|
+
"jobserver",
|
|
411
|
+
"libc",
|
|
412
|
+
"shlex",
|
|
413
|
+
]
|
|
414
|
+
|
|
415
|
+
[[package]]
|
|
416
|
+
name = "cesu8"
|
|
417
|
+
version = "1.1.0"
|
|
418
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
419
|
+
checksum = "6d43a04d8753f35258c91f8ec639f792891f748a1edbd759cf1dcea3382ad83c"
|
|
420
|
+
|
|
421
|
+
[[package]]
|
|
422
|
+
name = "cfg-if"
|
|
423
|
+
version = "1.0.4"
|
|
424
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
425
|
+
checksum = "9330f8b2ff13f34540b44e946ef35111825727b38d33286ef986142615121801"
|
|
426
|
+
|
|
427
|
+
[[package]]
|
|
428
|
+
name = "cfg_aliases"
|
|
429
|
+
version = "0.2.1"
|
|
430
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
431
|
+
checksum = "613afe47fcd5fac7ccf1db93babcb082c5994d996f20b8b159f2ad1658eb5724"
|
|
432
|
+
|
|
433
|
+
[[package]]
|
|
434
|
+
name = "chrono"
|
|
435
|
+
version = "0.4.44"
|
|
436
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
437
|
+
checksum = "c673075a2e0e5f4a1dde27ce9dee1ea4558c7ffe648f576438a20ca1d2acc4b0"
|
|
438
|
+
dependencies = [
|
|
439
|
+
"iana-time-zone",
|
|
440
|
+
"js-sys",
|
|
441
|
+
"num-traits",
|
|
442
|
+
"serde",
|
|
443
|
+
"wasm-bindgen",
|
|
444
|
+
"windows-link",
|
|
445
|
+
]
|
|
446
|
+
|
|
447
|
+
[[package]]
|
|
448
|
+
name = "ciborium"
|
|
449
|
+
version = "0.2.2"
|
|
450
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
451
|
+
checksum = "42e69ffd6f0917f5c029256a24d0161db17cea3997d185db0d35926308770f0e"
|
|
452
|
+
dependencies = [
|
|
453
|
+
"ciborium-io",
|
|
454
|
+
"ciborium-ll",
|
|
455
|
+
"serde",
|
|
456
|
+
]
|
|
457
|
+
|
|
458
|
+
[[package]]
|
|
459
|
+
name = "ciborium-io"
|
|
460
|
+
version = "0.2.2"
|
|
461
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
462
|
+
checksum = "05afea1e0a06c9be33d539b876f1ce3692f4afea2cb41f740e7743225ed1c757"
|
|
463
|
+
|
|
464
|
+
[[package]]
|
|
465
|
+
name = "ciborium-ll"
|
|
466
|
+
version = "0.2.2"
|
|
467
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
468
|
+
checksum = "57663b653d948a338bfb3eeba9bb2fd5fcfaecb9e199e87e1eda4d9e8b240fd9"
|
|
469
|
+
dependencies = [
|
|
470
|
+
"ciborium-io",
|
|
471
|
+
"half",
|
|
472
|
+
]
|
|
473
|
+
|
|
474
|
+
[[package]]
|
|
475
|
+
name = "clap"
|
|
476
|
+
version = "4.6.0"
|
|
477
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
478
|
+
checksum = "b193af5b67834b676abd72466a96c1024e6a6ad978a1f484bd90b85c94041351"
|
|
479
|
+
dependencies = [
|
|
480
|
+
"clap_builder",
|
|
481
|
+
"clap_derive",
|
|
482
|
+
]
|
|
483
|
+
|
|
484
|
+
[[package]]
|
|
485
|
+
name = "clap_builder"
|
|
486
|
+
version = "4.6.0"
|
|
487
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
488
|
+
checksum = "714a53001bf66416adb0e2ef5ac857140e7dc3a0c48fb28b2f10762fc4b5069f"
|
|
489
|
+
dependencies = [
|
|
490
|
+
"anstream",
|
|
491
|
+
"anstyle",
|
|
492
|
+
"clap_lex",
|
|
493
|
+
"strsim",
|
|
494
|
+
]
|
|
495
|
+
|
|
496
|
+
[[package]]
|
|
497
|
+
name = "clap_derive"
|
|
498
|
+
version = "4.6.0"
|
|
499
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
500
|
+
checksum = "1110bd8a634a1ab8cb04345d8d878267d57c3cf1b38d91b71af6686408bbca6a"
|
|
501
|
+
dependencies = [
|
|
502
|
+
"heck",
|
|
503
|
+
"proc-macro2",
|
|
504
|
+
"quote",
|
|
505
|
+
"syn",
|
|
506
|
+
]
|
|
507
|
+
|
|
508
|
+
[[package]]
|
|
509
|
+
name = "clap_lex"
|
|
510
|
+
version = "1.1.0"
|
|
511
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
512
|
+
checksum = "c8d4a3bb8b1e0c1050499d1815f5ab16d04f0959b233085fb31653fbfc9d98f9"
|
|
513
|
+
|
|
514
|
+
[[package]]
|
|
515
|
+
name = "cmake"
|
|
516
|
+
version = "0.1.58"
|
|
517
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
518
|
+
checksum = "c0f78a02292a74a88ac736019ab962ece0bc380e3f977bf72e376c5d78ff0678"
|
|
519
|
+
dependencies = [
|
|
520
|
+
"cc",
|
|
521
|
+
]
|
|
522
|
+
|
|
523
|
+
[[package]]
|
|
524
|
+
name = "cobs"
|
|
525
|
+
version = "0.3.0"
|
|
526
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
527
|
+
checksum = "0fa961b519f0b462e3a3b4a34b64d119eeaca1d59af726fe450bbba07a9fc0a1"
|
|
528
|
+
dependencies = [
|
|
529
|
+
"thiserror 2.0.18",
|
|
530
|
+
]
|
|
531
|
+
|
|
532
|
+
[[package]]
|
|
533
|
+
name = "colorchoice"
|
|
534
|
+
version = "1.0.5"
|
|
535
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
536
|
+
checksum = "1d07550c9036bf2ae0c684c4297d503f838287c83c53686d05370d0e139ae570"
|
|
537
|
+
|
|
538
|
+
[[package]]
|
|
539
|
+
name = "combine"
|
|
540
|
+
version = "4.6.7"
|
|
541
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
542
|
+
checksum = "ba5a308b75df32fe02788e748662718f03fde005016435c444eea572398219fd"
|
|
543
|
+
dependencies = [
|
|
544
|
+
"bytes",
|
|
545
|
+
"memchr",
|
|
546
|
+
]
|
|
547
|
+
|
|
548
|
+
[[package]]
|
|
549
|
+
name = "console"
|
|
550
|
+
version = "0.16.3"
|
|
551
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
552
|
+
checksum = "d64e8af5551369d19cf50138de61f1c42074ab970f74e99be916646777f8fc87"
|
|
553
|
+
dependencies = [
|
|
554
|
+
"encode_unicode",
|
|
555
|
+
"libc",
|
|
556
|
+
"unicode-width",
|
|
557
|
+
"windows-sys 0.61.2",
|
|
558
|
+
]
|
|
559
|
+
|
|
560
|
+
[[package]]
|
|
561
|
+
name = "const-oid"
|
|
562
|
+
version = "0.10.2"
|
|
563
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
564
|
+
checksum = "a6ef517f0926dd24a1582492c791b6a4818a4d94e789a334894aa15b0d12f55c"
|
|
565
|
+
|
|
566
|
+
[[package]]
|
|
567
|
+
name = "const_format"
|
|
568
|
+
version = "0.2.35"
|
|
569
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
570
|
+
checksum = "7faa7469a93a566e9ccc1c73fe783b4a65c274c5ace346038dca9c39fe0030ad"
|
|
571
|
+
dependencies = [
|
|
572
|
+
"const_format_proc_macros",
|
|
573
|
+
]
|
|
574
|
+
|
|
575
|
+
[[package]]
|
|
576
|
+
name = "const_format_proc_macros"
|
|
577
|
+
version = "0.2.34"
|
|
578
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
579
|
+
checksum = "1d57c2eccfb16dbac1f4e61e206105db5820c9d26c3c472bc17c774259ef7744"
|
|
580
|
+
dependencies = [
|
|
581
|
+
"proc-macro2",
|
|
582
|
+
"quote",
|
|
583
|
+
"unicode-xid",
|
|
584
|
+
]
|
|
585
|
+
|
|
586
|
+
[[package]]
|
|
587
|
+
name = "core-foundation"
|
|
588
|
+
version = "0.10.1"
|
|
589
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
590
|
+
checksum = "b2a6cd9ae233e7f62ba4e9353e81a88df7fc8a5987b8d445b4d90c879bd156f6"
|
|
591
|
+
dependencies = [
|
|
592
|
+
"core-foundation-sys",
|
|
593
|
+
"libc",
|
|
594
|
+
]
|
|
595
|
+
|
|
596
|
+
[[package]]
|
|
597
|
+
name = "core-foundation-sys"
|
|
598
|
+
version = "0.8.7"
|
|
599
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
600
|
+
checksum = "773648b94d0e5d620f64f280777445740e61fe701025087ec8b57f45c791888b"
|
|
601
|
+
|
|
602
|
+
[[package]]
|
|
603
|
+
name = "cpp_demangle"
|
|
604
|
+
version = "0.4.5"
|
|
605
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
606
|
+
checksum = "f2bb79cb74d735044c972aae58ed0aaa9a837e85b01106a54c39e42e97f62253"
|
|
607
|
+
dependencies = [
|
|
608
|
+
"cfg-if",
|
|
609
|
+
]
|
|
610
|
+
|
|
611
|
+
[[package]]
|
|
612
|
+
name = "cpufeatures"
|
|
613
|
+
version = "0.2.17"
|
|
614
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
615
|
+
checksum = "59ed5838eebb26a2bb2e58f6d5b5316989ae9d08bab10e0e6d103e656d1b0280"
|
|
616
|
+
dependencies = [
|
|
617
|
+
"libc",
|
|
618
|
+
]
|
|
619
|
+
|
|
620
|
+
[[package]]
|
|
621
|
+
name = "cpufeatures"
|
|
622
|
+
version = "0.3.0"
|
|
623
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
624
|
+
checksum = "8b2a41393f66f16b0823bb79094d54ac5fbd34ab292ddafb9a0456ac9f87d201"
|
|
625
|
+
dependencies = [
|
|
626
|
+
"libc",
|
|
627
|
+
]
|
|
628
|
+
|
|
629
|
+
[[package]]
|
|
630
|
+
name = "cranelift-assembler-x64"
|
|
631
|
+
version = "0.130.0"
|
|
632
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
633
|
+
checksum = "4f248321c6a7d4de5dcf2939368e96a397ad3f53b6a076e38d0104d1da326d37"
|
|
634
|
+
dependencies = [
|
|
635
|
+
"cranelift-assembler-x64-meta",
|
|
636
|
+
]
|
|
637
|
+
|
|
638
|
+
[[package]]
|
|
639
|
+
name = "cranelift-assembler-x64-meta"
|
|
640
|
+
version = "0.130.0"
|
|
641
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
642
|
+
checksum = "ab6d78ff1f7d9bf8b7e1afbedbf78ba49e38e9da479d4c8a2db094e22f64e2bc"
|
|
643
|
+
dependencies = [
|
|
644
|
+
"cranelift-srcgen",
|
|
645
|
+
]
|
|
646
|
+
|
|
647
|
+
[[package]]
|
|
648
|
+
name = "cranelift-bforest"
|
|
649
|
+
version = "0.130.0"
|
|
650
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
651
|
+
checksum = "6b6005ba640213a5b95382aeaf6b82bf028309581c8d7349778d66f27dc1180b"
|
|
652
|
+
dependencies = [
|
|
653
|
+
"cranelift-entity",
|
|
654
|
+
"wasmtime-internal-core",
|
|
655
|
+
]
|
|
656
|
+
|
|
657
|
+
[[package]]
|
|
658
|
+
name = "cranelift-bitset"
|
|
659
|
+
version = "0.130.0"
|
|
660
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
661
|
+
checksum = "81fb5b134a12b559ff0c0f5af0fcd755ad380723b5016c4e0d36f74d39485340"
|
|
662
|
+
dependencies = [
|
|
663
|
+
"serde",
|
|
664
|
+
"serde_derive",
|
|
665
|
+
"wasmtime-internal-core",
|
|
666
|
+
]
|
|
667
|
+
|
|
668
|
+
[[package]]
|
|
669
|
+
name = "cranelift-codegen"
|
|
670
|
+
version = "0.130.0"
|
|
671
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
672
|
+
checksum = "85837de8be7f17a4034a6b08816f05a3144345d2091937b39d415990daca28f4"
|
|
673
|
+
dependencies = [
|
|
674
|
+
"bumpalo",
|
|
675
|
+
"cranelift-assembler-x64",
|
|
676
|
+
"cranelift-bforest",
|
|
677
|
+
"cranelift-bitset",
|
|
678
|
+
"cranelift-codegen-meta",
|
|
679
|
+
"cranelift-codegen-shared",
|
|
680
|
+
"cranelift-control",
|
|
681
|
+
"cranelift-entity",
|
|
682
|
+
"cranelift-isle",
|
|
683
|
+
"gimli",
|
|
684
|
+
"hashbrown 0.16.1",
|
|
685
|
+
"libm",
|
|
686
|
+
"log",
|
|
687
|
+
"pulley-interpreter",
|
|
688
|
+
"regalloc2",
|
|
689
|
+
"rustc-hash",
|
|
690
|
+
"serde",
|
|
691
|
+
"smallvec",
|
|
692
|
+
"target-lexicon",
|
|
693
|
+
"wasmtime-internal-core",
|
|
694
|
+
]
|
|
695
|
+
|
|
696
|
+
[[package]]
|
|
697
|
+
name = "cranelift-codegen-meta"
|
|
698
|
+
version = "0.130.0"
|
|
699
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
700
|
+
checksum = "e433faa87d38e5b8ff469e44a26fea4f93e58abd7a7c10bad9810056139700c9"
|
|
701
|
+
dependencies = [
|
|
702
|
+
"cranelift-assembler-x64-meta",
|
|
703
|
+
"cranelift-codegen-shared",
|
|
704
|
+
"cranelift-srcgen",
|
|
705
|
+
"heck",
|
|
706
|
+
"pulley-interpreter",
|
|
707
|
+
]
|
|
708
|
+
|
|
709
|
+
[[package]]
|
|
710
|
+
name = "cranelift-codegen-shared"
|
|
711
|
+
version = "0.130.0"
|
|
712
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
713
|
+
checksum = "5397ba61976e13944ca71230775db13ee1cb62849701ed35b753f4761ed0a9b7"
|
|
714
|
+
|
|
715
|
+
[[package]]
|
|
716
|
+
name = "cranelift-control"
|
|
717
|
+
version = "0.130.0"
|
|
718
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
719
|
+
checksum = "cc81c88765580720eb30f4fc2c1bfdb75fcbf3094f87b3cd69cecca79d77a245"
|
|
720
|
+
dependencies = [
|
|
721
|
+
"arbitrary",
|
|
722
|
+
]
|
|
723
|
+
|
|
724
|
+
[[package]]
|
|
725
|
+
name = "cranelift-entity"
|
|
726
|
+
version = "0.130.0"
|
|
727
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
728
|
+
checksum = "463feed5d46cf8763f3ba3045284cf706dd161496e20ec9c14afbb4ba09b9e66"
|
|
729
|
+
dependencies = [
|
|
730
|
+
"cranelift-bitset",
|
|
731
|
+
"serde",
|
|
732
|
+
"serde_derive",
|
|
733
|
+
"wasmtime-internal-core",
|
|
734
|
+
]
|
|
735
|
+
|
|
736
|
+
[[package]]
|
|
737
|
+
name = "cranelift-frontend"
|
|
738
|
+
version = "0.130.0"
|
|
739
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
740
|
+
checksum = "a4c5eca7696c1c04ab4c7ed8d18eadbb47d6cc9f14ec86fe0881bf1d7e97e261"
|
|
741
|
+
dependencies = [
|
|
742
|
+
"cranelift-codegen",
|
|
743
|
+
"log",
|
|
744
|
+
"smallvec",
|
|
745
|
+
"target-lexicon",
|
|
746
|
+
]
|
|
747
|
+
|
|
748
|
+
[[package]]
|
|
749
|
+
name = "cranelift-isle"
|
|
750
|
+
version = "0.130.0"
|
|
751
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
752
|
+
checksum = "f1153844610cc9c6da8cf10ce205e45da1a585b7688ed558aa808bbe2e4e6d77"
|
|
753
|
+
|
|
754
|
+
[[package]]
|
|
755
|
+
name = "cranelift-native"
|
|
756
|
+
version = "0.130.0"
|
|
757
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
758
|
+
checksum = "a97b583fe9a60f06b0464cee6be5a17f623fd91b217aaac99b51b339d19911af"
|
|
759
|
+
dependencies = [
|
|
760
|
+
"cranelift-codegen",
|
|
761
|
+
"libc",
|
|
762
|
+
"target-lexicon",
|
|
763
|
+
]
|
|
764
|
+
|
|
765
|
+
[[package]]
|
|
766
|
+
name = "cranelift-srcgen"
|
|
767
|
+
version = "0.130.0"
|
|
768
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
769
|
+
checksum = "8594dc6bb4860fa8292f1814c76459dbfb933e1978d8222de6380efce45c7cee"
|
|
770
|
+
|
|
771
|
+
[[package]]
|
|
772
|
+
name = "crc32fast"
|
|
773
|
+
version = "1.5.0"
|
|
774
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
775
|
+
checksum = "9481c1c90cbf2ac953f07c8d4a58aa3945c425b7185c9154d67a65e4230da511"
|
|
776
|
+
dependencies = [
|
|
777
|
+
"cfg-if",
|
|
778
|
+
]
|
|
779
|
+
|
|
780
|
+
[[package]]
|
|
781
|
+
name = "crossbeam-deque"
|
|
782
|
+
version = "0.8.6"
|
|
783
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
784
|
+
checksum = "9dd111b7b7f7d55b72c0a6ae361660ee5853c9af73f70c3c2ef6858b950e2e51"
|
|
785
|
+
dependencies = [
|
|
786
|
+
"crossbeam-epoch",
|
|
787
|
+
"crossbeam-utils",
|
|
788
|
+
]
|
|
789
|
+
|
|
790
|
+
[[package]]
|
|
791
|
+
name = "crossbeam-epoch"
|
|
792
|
+
version = "0.9.18"
|
|
793
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
794
|
+
checksum = "5b82ac4a3c2ca9c3460964f020e1402edd5753411d7737aa39c3714ad1b5420e"
|
|
795
|
+
dependencies = [
|
|
796
|
+
"crossbeam-utils",
|
|
797
|
+
]
|
|
798
|
+
|
|
799
|
+
[[package]]
|
|
800
|
+
name = "crossbeam-utils"
|
|
801
|
+
version = "0.8.21"
|
|
802
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
803
|
+
checksum = "d0a5c400df2834b80a4c3327b3aad3a4c4cd4de0629063962b03235697506a28"
|
|
804
|
+
|
|
805
|
+
[[package]]
|
|
806
|
+
name = "crunchy"
|
|
807
|
+
version = "0.2.4"
|
|
808
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
809
|
+
checksum = "460fbee9c2c2f33933d720630a6a0bac33ba7053db5344fac858d4b8952d77d5"
|
|
810
|
+
|
|
811
|
+
[[package]]
|
|
812
|
+
name = "crypto-common"
|
|
813
|
+
version = "0.1.7"
|
|
814
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
815
|
+
checksum = "78c8292055d1c1df0cce5d180393dc8cce0abec0a7102adb6c7b1eef6016d60a"
|
|
816
|
+
dependencies = [
|
|
817
|
+
"generic-array",
|
|
818
|
+
"typenum",
|
|
819
|
+
]
|
|
820
|
+
|
|
821
|
+
[[package]]
|
|
822
|
+
name = "crypto-common"
|
|
823
|
+
version = "0.2.1"
|
|
824
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
825
|
+
checksum = "77727bb15fa921304124b128af125e7e3b968275d1b108b379190264f4423710"
|
|
826
|
+
dependencies = [
|
|
827
|
+
"hybrid-array",
|
|
828
|
+
]
|
|
829
|
+
|
|
830
|
+
[[package]]
|
|
831
|
+
name = "darling"
|
|
832
|
+
version = "0.20.11"
|
|
833
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
834
|
+
checksum = "fc7f46116c46ff9ab3eb1597a45688b6715c6e628b5c133e288e709a29bcb4ee"
|
|
835
|
+
dependencies = [
|
|
836
|
+
"darling_core 0.20.11",
|
|
837
|
+
"darling_macro 0.20.11",
|
|
838
|
+
]
|
|
839
|
+
|
|
840
|
+
[[package]]
|
|
841
|
+
name = "darling"
|
|
842
|
+
version = "0.23.0"
|
|
843
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
844
|
+
checksum = "25ae13da2f202d56bd7f91c25fba009e7717a1e4a1cc98a76d844b65ae912e9d"
|
|
845
|
+
dependencies = [
|
|
846
|
+
"darling_core 0.23.0",
|
|
847
|
+
"darling_macro 0.23.0",
|
|
848
|
+
]
|
|
849
|
+
|
|
850
|
+
[[package]]
|
|
851
|
+
name = "darling_core"
|
|
852
|
+
version = "0.20.11"
|
|
853
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
854
|
+
checksum = "0d00b9596d185e565c2207a0b01f8bd1a135483d02d9b7b0a54b11da8d53412e"
|
|
855
|
+
dependencies = [
|
|
856
|
+
"fnv",
|
|
857
|
+
"ident_case",
|
|
858
|
+
"proc-macro2",
|
|
859
|
+
"quote",
|
|
860
|
+
"strsim",
|
|
861
|
+
"syn",
|
|
862
|
+
]
|
|
863
|
+
|
|
864
|
+
[[package]]
|
|
865
|
+
name = "darling_core"
|
|
866
|
+
version = "0.23.0"
|
|
867
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
868
|
+
checksum = "9865a50f7c335f53564bb694ef660825eb8610e0a53d3e11bf1b0d3df31e03b0"
|
|
869
|
+
dependencies = [
|
|
870
|
+
"ident_case",
|
|
871
|
+
"proc-macro2",
|
|
872
|
+
"quote",
|
|
873
|
+
"strsim",
|
|
874
|
+
"syn",
|
|
875
|
+
]
|
|
876
|
+
|
|
877
|
+
[[package]]
|
|
878
|
+
name = "darling_macro"
|
|
879
|
+
version = "0.20.11"
|
|
880
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
881
|
+
checksum = "fc34b93ccb385b40dc71c6fceac4b2ad23662c7eeb248cf10d529b7e055b6ead"
|
|
882
|
+
dependencies = [
|
|
883
|
+
"darling_core 0.20.11",
|
|
884
|
+
"quote",
|
|
885
|
+
"syn",
|
|
886
|
+
]
|
|
887
|
+
|
|
888
|
+
[[package]]
|
|
889
|
+
name = "darling_macro"
|
|
890
|
+
version = "0.23.0"
|
|
891
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
892
|
+
checksum = "ac3984ec7bd6cfa798e62b4a642426a5be0e68f9401cfc2a01e3fa9ea2fcdb8d"
|
|
893
|
+
dependencies = [
|
|
894
|
+
"darling_core 0.23.0",
|
|
895
|
+
"quote",
|
|
896
|
+
"syn",
|
|
897
|
+
]
|
|
898
|
+
|
|
899
|
+
[[package]]
|
|
900
|
+
name = "debugid"
|
|
901
|
+
version = "0.8.0"
|
|
902
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
903
|
+
checksum = "bef552e6f588e446098f6ba40d89ac146c8c7b64aade83c051ee00bb5d2bc18d"
|
|
904
|
+
dependencies = [
|
|
905
|
+
"uuid",
|
|
906
|
+
]
|
|
907
|
+
|
|
908
|
+
[[package]]
|
|
909
|
+
name = "deranged"
|
|
910
|
+
version = "0.5.8"
|
|
911
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
912
|
+
checksum = "7cd812cc2bc1d69d4764bd80df88b4317eaef9e773c75226407d9bc0876b211c"
|
|
913
|
+
dependencies = [
|
|
914
|
+
"powerfmt",
|
|
915
|
+
"serde_core",
|
|
916
|
+
]
|
|
917
|
+
|
|
918
|
+
[[package]]
|
|
919
|
+
name = "derive_builder"
|
|
920
|
+
version = "0.20.2"
|
|
921
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
922
|
+
checksum = "507dfb09ea8b7fa618fcf76e953f4f5e192547945816d5358edffe39f6f94947"
|
|
923
|
+
dependencies = [
|
|
924
|
+
"derive_builder_macro",
|
|
925
|
+
]
|
|
926
|
+
|
|
927
|
+
[[package]]
|
|
928
|
+
name = "derive_builder_core"
|
|
929
|
+
version = "0.20.2"
|
|
930
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
931
|
+
checksum = "2d5bcf7b024d6835cfb3d473887cd966994907effbe9227e8c8219824d06c4e8"
|
|
932
|
+
dependencies = [
|
|
933
|
+
"darling 0.20.11",
|
|
934
|
+
"proc-macro2",
|
|
935
|
+
"quote",
|
|
936
|
+
"syn",
|
|
937
|
+
]
|
|
938
|
+
|
|
939
|
+
[[package]]
|
|
940
|
+
name = "derive_builder_macro"
|
|
941
|
+
version = "0.20.2"
|
|
942
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
943
|
+
checksum = "ab63b0e2bf4d5928aff72e83a7dace85d7bba5fe12dcc3c5a572d78caffd3f3c"
|
|
944
|
+
dependencies = [
|
|
945
|
+
"derive_builder_core",
|
|
946
|
+
"syn",
|
|
947
|
+
]
|
|
948
|
+
|
|
949
|
+
[[package]]
|
|
950
|
+
name = "digest"
|
|
951
|
+
version = "0.10.7"
|
|
952
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
953
|
+
checksum = "9ed9a281f7bc9b7576e61468ba615a66a5c8cfdff42420a70aa82701a3b1e292"
|
|
954
|
+
dependencies = [
|
|
955
|
+
"block-buffer 0.10.4",
|
|
956
|
+
"crypto-common 0.1.7",
|
|
957
|
+
]
|
|
958
|
+
|
|
959
|
+
[[package]]
|
|
960
|
+
name = "digest"
|
|
961
|
+
version = "0.11.2"
|
|
962
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
963
|
+
checksum = "4850db49bf08e663084f7fb5c87d202ef91a3907271aff24a94eb97ff039153c"
|
|
964
|
+
dependencies = [
|
|
965
|
+
"block-buffer 0.12.0",
|
|
966
|
+
"const-oid",
|
|
967
|
+
"crypto-common 0.2.1",
|
|
968
|
+
]
|
|
969
|
+
|
|
970
|
+
[[package]]
|
|
971
|
+
name = "directories-next"
|
|
972
|
+
version = "2.0.0"
|
|
973
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
974
|
+
checksum = "339ee130d97a610ea5a5872d2bbb130fdf68884ff09d3028b81bec8a1ac23bbc"
|
|
975
|
+
dependencies = [
|
|
976
|
+
"cfg-if",
|
|
977
|
+
"dirs-sys-next",
|
|
978
|
+
]
|
|
979
|
+
|
|
980
|
+
[[package]]
|
|
981
|
+
name = "dirs"
|
|
982
|
+
version = "6.0.0"
|
|
983
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
984
|
+
checksum = "c3e8aa94d75141228480295a7d0e7feb620b1a5ad9f12bc40be62411e38cce4e"
|
|
985
|
+
dependencies = [
|
|
986
|
+
"dirs-sys",
|
|
987
|
+
]
|
|
988
|
+
|
|
989
|
+
[[package]]
|
|
990
|
+
name = "dirs-sys"
|
|
991
|
+
version = "0.5.0"
|
|
992
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
993
|
+
checksum = "e01a3366d27ee9890022452ee61b2b63a67e6f13f58900b651ff5665f0bb1fab"
|
|
994
|
+
dependencies = [
|
|
995
|
+
"libc",
|
|
996
|
+
"option-ext",
|
|
997
|
+
"redox_users 0.5.2",
|
|
998
|
+
"windows-sys 0.61.2",
|
|
999
|
+
]
|
|
1000
|
+
|
|
1001
|
+
[[package]]
|
|
1002
|
+
name = "dirs-sys-next"
|
|
1003
|
+
version = "0.1.2"
|
|
1004
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1005
|
+
checksum = "4ebda144c4fe02d1f7ea1a7d9641b6fc6b580adcfa024ae48797ecdeb6825b4d"
|
|
1006
|
+
dependencies = [
|
|
1007
|
+
"libc",
|
|
1008
|
+
"redox_users 0.4.6",
|
|
1009
|
+
"winapi",
|
|
1010
|
+
]
|
|
1011
|
+
|
|
1012
|
+
[[package]]
|
|
1013
|
+
name = "displaydoc"
|
|
1014
|
+
version = "0.2.5"
|
|
1015
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1016
|
+
checksum = "97369cbbc041bc366949bc74d34658d6cda5621039731c6310521892a3a20ae0"
|
|
1017
|
+
dependencies = [
|
|
1018
|
+
"proc-macro2",
|
|
1019
|
+
"quote",
|
|
1020
|
+
"syn",
|
|
1021
|
+
]
|
|
1022
|
+
|
|
1023
|
+
[[package]]
|
|
1024
|
+
name = "dunce"
|
|
1025
|
+
version = "1.0.5"
|
|
1026
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1027
|
+
checksum = "92773504d58c093f6de2459af4af33faa518c13451eb8f2b5698ed3d36e7c813"
|
|
1028
|
+
|
|
1029
|
+
[[package]]
|
|
1030
|
+
name = "dyn-clone"
|
|
1031
|
+
version = "1.0.20"
|
|
1032
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1033
|
+
checksum = "d0881ea181b1df73ff77ffaaf9c7544ecc11e82fba9b5f27b262a3c73a332555"
|
|
1034
|
+
|
|
1035
|
+
[[package]]
|
|
1036
|
+
name = "either"
|
|
1037
|
+
version = "1.15.0"
|
|
1038
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1039
|
+
checksum = "48c757948c5ede0e46177b7add2e67155f70e33c07fea8284df6576da70b3719"
|
|
1040
|
+
|
|
1041
|
+
[[package]]
|
|
1042
|
+
name = "embedded-io"
|
|
1043
|
+
version = "0.4.0"
|
|
1044
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1045
|
+
checksum = "ef1a6892d9eef45c8fa6b9e0086428a2cca8491aca8f787c534a3d6d0bcb3ced"
|
|
1046
|
+
|
|
1047
|
+
[[package]]
|
|
1048
|
+
name = "embedded-io"
|
|
1049
|
+
version = "0.6.1"
|
|
1050
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1051
|
+
checksum = "edd0f118536f44f5ccd48bcb8b111bdc3de888b58c74639dfb034a357d0f206d"
|
|
1052
|
+
|
|
1053
|
+
[[package]]
|
|
1054
|
+
name = "encode_unicode"
|
|
1055
|
+
version = "1.0.0"
|
|
1056
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1057
|
+
checksum = "34aa73646ffb006b8f5147f3dc182bd4bcb190227ce861fc4a4844bf8e3cb2c0"
|
|
1058
|
+
|
|
1059
|
+
[[package]]
|
|
1060
|
+
name = "encoding_rs"
|
|
1061
|
+
version = "0.8.35"
|
|
1062
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1063
|
+
checksum = "75030f3c4f45dafd7586dd6780965a8c7e8e285a5ecb86713e63a79c5b2766f3"
|
|
1064
|
+
dependencies = [
|
|
1065
|
+
"cfg-if",
|
|
1066
|
+
]
|
|
1067
|
+
|
|
1068
|
+
[[package]]
|
|
1069
|
+
name = "equivalent"
|
|
1070
|
+
version = "1.0.2"
|
|
1071
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1072
|
+
checksum = "877a4ace8713b0bcf2a4e7eec82529c029f1d0619886d18145fea96c3ffe5c0f"
|
|
1073
|
+
|
|
1074
|
+
[[package]]
|
|
1075
|
+
name = "errno"
|
|
1076
|
+
version = "0.3.14"
|
|
1077
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1078
|
+
checksum = "39cab71617ae0d63f51a36d69f866391735b51691dbda63cf6f96d042b63efeb"
|
|
1079
|
+
dependencies = [
|
|
1080
|
+
"libc",
|
|
1081
|
+
"windows-sys 0.61.2",
|
|
1082
|
+
]
|
|
1083
|
+
|
|
1084
|
+
[[package]]
|
|
1085
|
+
name = "fastrand"
|
|
1086
|
+
version = "2.4.0"
|
|
1087
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1088
|
+
checksum = "a043dc74da1e37d6afe657061213aa6f425f855399a11d3463c6ecccc4dfda1f"
|
|
1089
|
+
|
|
1090
|
+
[[package]]
|
|
1091
|
+
name = "fd-lock"
|
|
1092
|
+
version = "4.0.4"
|
|
1093
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1094
|
+
checksum = "0ce92ff622d6dadf7349484f42c93271a0d49b7cc4d466a936405bacbe10aa78"
|
|
1095
|
+
dependencies = [
|
|
1096
|
+
"cfg-if",
|
|
1097
|
+
"rustix 1.1.4",
|
|
1098
|
+
"windows-sys 0.59.0",
|
|
1099
|
+
]
|
|
1100
|
+
|
|
1101
|
+
[[package]]
|
|
1102
|
+
name = "filetime"
|
|
1103
|
+
version = "0.2.27"
|
|
1104
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1105
|
+
checksum = "f98844151eee8917efc50bd9e8318cb963ae8b297431495d3f758616ea5c57db"
|
|
1106
|
+
dependencies = [
|
|
1107
|
+
"cfg-if",
|
|
1108
|
+
"libc",
|
|
1109
|
+
"libredox",
|
|
1110
|
+
]
|
|
1111
|
+
|
|
1112
|
+
[[package]]
|
|
1113
|
+
name = "find-msvc-tools"
|
|
1114
|
+
version = "0.1.9"
|
|
1115
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1116
|
+
checksum = "5baebc0774151f905a1a2cc41989300b1e6fbb29aff0ceffa1064fdd3088d582"
|
|
1117
|
+
|
|
1118
|
+
[[package]]
|
|
1119
|
+
name = "fixedbitset"
|
|
1120
|
+
version = "0.4.2"
|
|
1121
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1122
|
+
checksum = "0ce7134b9999ecaf8bcd65542e436736ef32ddca1b3e06094cb6ec5755203b80"
|
|
1123
|
+
|
|
1124
|
+
[[package]]
|
|
1125
|
+
name = "fnv"
|
|
1126
|
+
version = "1.0.7"
|
|
1127
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1128
|
+
checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1"
|
|
1129
|
+
|
|
1130
|
+
[[package]]
|
|
1131
|
+
name = "foldhash"
|
|
1132
|
+
version = "0.1.5"
|
|
1133
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1134
|
+
checksum = "d9c4f5dac5e15c24eb999c26181a6ca40b39fe946cbe4c263c7209467bc83af2"
|
|
1135
|
+
|
|
1136
|
+
[[package]]
|
|
1137
|
+
name = "foldhash"
|
|
1138
|
+
version = "0.2.0"
|
|
1139
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1140
|
+
checksum = "77ce24cb58228fbb8aa041425bb1050850ac19177686ea6e0f41a70416f56fdb"
|
|
1141
|
+
|
|
1142
|
+
[[package]]
|
|
1143
|
+
name = "form_urlencoded"
|
|
1144
|
+
version = "1.2.2"
|
|
1145
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1146
|
+
checksum = "cb4cb245038516f5f85277875cdaa4f7d2c9a0fa0468de06ed190163b1581fcf"
|
|
1147
|
+
dependencies = [
|
|
1148
|
+
"percent-encoding",
|
|
1149
|
+
]
|
|
1150
|
+
|
|
1151
|
+
[[package]]
|
|
1152
|
+
name = "fs-set-times"
|
|
1153
|
+
version = "0.20.3"
|
|
1154
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1155
|
+
checksum = "94e7099f6313ecacbe1256e8ff9d617b75d1bcb16a6fddef94866d225a01a14a"
|
|
1156
|
+
dependencies = [
|
|
1157
|
+
"io-lifetimes",
|
|
1158
|
+
"rustix 1.1.4",
|
|
1159
|
+
"windows-sys 0.59.0",
|
|
1160
|
+
]
|
|
1161
|
+
|
|
1162
|
+
[[package]]
|
|
1163
|
+
name = "fs_extra"
|
|
1164
|
+
version = "1.3.0"
|
|
1165
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1166
|
+
checksum = "42703706b716c37f96a77aea830392ad231f44c9e9a67872fa5548707e11b11c"
|
|
1167
|
+
|
|
1168
|
+
[[package]]
|
|
1169
|
+
name = "futures"
|
|
1170
|
+
version = "0.3.32"
|
|
1171
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1172
|
+
checksum = "8b147ee9d1f6d097cef9ce628cd2ee62288d963e16fb287bd9286455b241382d"
|
|
1173
|
+
dependencies = [
|
|
1174
|
+
"futures-channel",
|
|
1175
|
+
"futures-core",
|
|
1176
|
+
"futures-io",
|
|
1177
|
+
"futures-sink",
|
|
1178
|
+
"futures-task",
|
|
1179
|
+
"futures-util",
|
|
1180
|
+
]
|
|
1181
|
+
|
|
1182
|
+
[[package]]
|
|
1183
|
+
name = "futures-channel"
|
|
1184
|
+
version = "0.3.32"
|
|
1185
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1186
|
+
checksum = "07bbe89c50d7a535e539b8c17bc0b49bdb77747034daa8087407d655f3f7cc1d"
|
|
1187
|
+
dependencies = [
|
|
1188
|
+
"futures-core",
|
|
1189
|
+
"futures-sink",
|
|
1190
|
+
]
|
|
1191
|
+
|
|
1192
|
+
[[package]]
|
|
1193
|
+
name = "futures-core"
|
|
1194
|
+
version = "0.3.32"
|
|
1195
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1196
|
+
checksum = "7e3450815272ef58cec6d564423f6e755e25379b217b0bc688e295ba24df6b1d"
|
|
1197
|
+
|
|
1198
|
+
[[package]]
|
|
1199
|
+
name = "futures-io"
|
|
1200
|
+
version = "0.3.32"
|
|
1201
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1202
|
+
checksum = "cecba35d7ad927e23624b22ad55235f2239cfa44fd10428eecbeba6d6a717718"
|
|
1203
|
+
|
|
1204
|
+
[[package]]
|
|
1205
|
+
name = "futures-macro"
|
|
1206
|
+
version = "0.3.32"
|
|
1207
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1208
|
+
checksum = "e835b70203e41293343137df5c0664546da5745f82ec9b84d40be8336958447b"
|
|
1209
|
+
dependencies = [
|
|
1210
|
+
"proc-macro2",
|
|
1211
|
+
"quote",
|
|
1212
|
+
"syn",
|
|
1213
|
+
]
|
|
1214
|
+
|
|
1215
|
+
[[package]]
|
|
1216
|
+
name = "futures-sink"
|
|
1217
|
+
version = "0.3.32"
|
|
1218
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1219
|
+
checksum = "c39754e157331b013978ec91992bde1ac089843443c49cbc7f46150b0fad0893"
|
|
1220
|
+
|
|
1221
|
+
[[package]]
|
|
1222
|
+
name = "futures-task"
|
|
1223
|
+
version = "0.3.32"
|
|
1224
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1225
|
+
checksum = "037711b3d59c33004d3856fbdc83b99d4ff37a24768fa1be9ce3538a1cde4393"
|
|
1226
|
+
|
|
1227
|
+
[[package]]
|
|
1228
|
+
name = "futures-util"
|
|
1229
|
+
version = "0.3.32"
|
|
1230
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1231
|
+
checksum = "389ca41296e6190b48053de0321d02a77f32f8a5d2461dd38762c0593805c6d6"
|
|
1232
|
+
dependencies = [
|
|
1233
|
+
"futures-channel",
|
|
1234
|
+
"futures-core",
|
|
1235
|
+
"futures-io",
|
|
1236
|
+
"futures-macro",
|
|
1237
|
+
"futures-sink",
|
|
1238
|
+
"futures-task",
|
|
1239
|
+
"memchr",
|
|
1240
|
+
"pin-project-lite",
|
|
1241
|
+
"slab",
|
|
1242
|
+
]
|
|
1243
|
+
|
|
1244
|
+
[[package]]
|
|
1245
|
+
name = "fxprof-processed-profile"
|
|
1246
|
+
version = "0.8.1"
|
|
1247
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1248
|
+
checksum = "25234f20a3ec0a962a61770cfe39ecf03cb529a6e474ad8cff025ed497eda557"
|
|
1249
|
+
dependencies = [
|
|
1250
|
+
"bitflags",
|
|
1251
|
+
"debugid",
|
|
1252
|
+
"rustc-hash",
|
|
1253
|
+
"serde",
|
|
1254
|
+
"serde_derive",
|
|
1255
|
+
"serde_json",
|
|
1256
|
+
]
|
|
1257
|
+
|
|
1258
|
+
[[package]]
|
|
1259
|
+
name = "generic-array"
|
|
1260
|
+
version = "0.14.7"
|
|
1261
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1262
|
+
checksum = "85649ca51fd72272d7821adaf274ad91c288277713d9c18820d8499a7ff69e9a"
|
|
1263
|
+
dependencies = [
|
|
1264
|
+
"typenum",
|
|
1265
|
+
"version_check",
|
|
1266
|
+
]
|
|
1267
|
+
|
|
1268
|
+
[[package]]
|
|
1269
|
+
name = "getrandom"
|
|
1270
|
+
version = "0.2.17"
|
|
1271
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1272
|
+
checksum = "ff2abc00be7fca6ebc474524697ae276ad847ad0a6b3faa4bcb027e9a4614ad0"
|
|
1273
|
+
dependencies = [
|
|
1274
|
+
"cfg-if",
|
|
1275
|
+
"js-sys",
|
|
1276
|
+
"libc",
|
|
1277
|
+
"wasi",
|
|
1278
|
+
"wasm-bindgen",
|
|
1279
|
+
]
|
|
1280
|
+
|
|
1281
|
+
[[package]]
|
|
1282
|
+
name = "getrandom"
|
|
1283
|
+
version = "0.3.4"
|
|
1284
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1285
|
+
checksum = "899def5c37c4fd7b2664648c28120ecec138e4d395b459e5ca34f9cce2dd77fd"
|
|
1286
|
+
dependencies = [
|
|
1287
|
+
"cfg-if",
|
|
1288
|
+
"js-sys",
|
|
1289
|
+
"libc",
|
|
1290
|
+
"r-efi 5.3.0",
|
|
1291
|
+
"wasip2",
|
|
1292
|
+
"wasm-bindgen",
|
|
1293
|
+
]
|
|
1294
|
+
|
|
1295
|
+
[[package]]
|
|
1296
|
+
name = "getrandom"
|
|
1297
|
+
version = "0.4.2"
|
|
1298
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1299
|
+
checksum = "0de51e6874e94e7bf76d726fc5d13ba782deca734ff60d5bb2fb2607c7406555"
|
|
1300
|
+
dependencies = [
|
|
1301
|
+
"cfg-if",
|
|
1302
|
+
"libc",
|
|
1303
|
+
"r-efi 6.0.0",
|
|
1304
|
+
"wasip2",
|
|
1305
|
+
"wasip3",
|
|
1306
|
+
]
|
|
1307
|
+
|
|
1308
|
+
[[package]]
|
|
1309
|
+
name = "getset"
|
|
1310
|
+
version = "0.1.6"
|
|
1311
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1312
|
+
checksum = "9cf0fc11e47561d47397154977bc219f4cf809b2974facc3ccb3b89e2436f912"
|
|
1313
|
+
dependencies = [
|
|
1314
|
+
"proc-macro-error2",
|
|
1315
|
+
"proc-macro2",
|
|
1316
|
+
"quote",
|
|
1317
|
+
"syn",
|
|
1318
|
+
]
|
|
1319
|
+
|
|
1320
|
+
[[package]]
|
|
1321
|
+
name = "gimli"
|
|
1322
|
+
version = "0.33.1"
|
|
1323
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1324
|
+
checksum = "19e16c5073773ccf057c282be832a59ee53ef5ff98db3aeff7f8314f52ffc196"
|
|
1325
|
+
dependencies = [
|
|
1326
|
+
"fnv",
|
|
1327
|
+
"hashbrown 0.16.1",
|
|
1328
|
+
"indexmap 2.13.1",
|
|
1329
|
+
"stable_deref_trait",
|
|
1330
|
+
]
|
|
1331
|
+
|
|
1332
|
+
[[package]]
|
|
1333
|
+
name = "h2"
|
|
1334
|
+
version = "0.4.13"
|
|
1335
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1336
|
+
checksum = "2f44da3a8150a6703ed5d34e164b875fd14c2cdab9af1252a9a1020bde2bdc54"
|
|
1337
|
+
dependencies = [
|
|
1338
|
+
"atomic-waker",
|
|
1339
|
+
"bytes",
|
|
1340
|
+
"fnv",
|
|
1341
|
+
"futures-core",
|
|
1342
|
+
"futures-sink",
|
|
1343
|
+
"http",
|
|
1344
|
+
"indexmap 2.13.1",
|
|
1345
|
+
"slab",
|
|
1346
|
+
"tokio",
|
|
1347
|
+
"tokio-util",
|
|
1348
|
+
"tracing",
|
|
1349
|
+
]
|
|
1350
|
+
|
|
1351
|
+
[[package]]
|
|
1352
|
+
name = "half"
|
|
1353
|
+
version = "2.7.1"
|
|
1354
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1355
|
+
checksum = "6ea2d84b969582b4b1864a92dc5d27cd2b77b622a8d79306834f1be5ba20d84b"
|
|
1356
|
+
dependencies = [
|
|
1357
|
+
"cfg-if",
|
|
1358
|
+
"crunchy",
|
|
1359
|
+
"zerocopy",
|
|
1360
|
+
]
|
|
1361
|
+
|
|
1362
|
+
[[package]]
|
|
1363
|
+
name = "hashbrown"
|
|
1364
|
+
version = "0.12.3"
|
|
1365
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1366
|
+
checksum = "8a9ee70c43aaf417c914396645a0fa852624801b24ebb7ae78fe8272889ac888"
|
|
1367
|
+
|
|
1368
|
+
[[package]]
|
|
1369
|
+
name = "hashbrown"
|
|
1370
|
+
version = "0.15.5"
|
|
1371
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1372
|
+
checksum = "9229cfe53dfd69f0609a49f65461bd93001ea1ef889cd5529dd176593f5338a1"
|
|
1373
|
+
dependencies = [
|
|
1374
|
+
"foldhash 0.1.5",
|
|
1375
|
+
]
|
|
1376
|
+
|
|
1377
|
+
[[package]]
|
|
1378
|
+
name = "hashbrown"
|
|
1379
|
+
version = "0.16.1"
|
|
1380
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1381
|
+
checksum = "841d1cc9bed7f9236f321df977030373f4a4163ae1a7dbfe1a51a2c1a51d9100"
|
|
1382
|
+
dependencies = [
|
|
1383
|
+
"foldhash 0.2.0",
|
|
1384
|
+
"serde",
|
|
1385
|
+
"serde_core",
|
|
1386
|
+
]
|
|
1387
|
+
|
|
1388
|
+
[[package]]
|
|
1389
|
+
name = "heck"
|
|
1390
|
+
version = "0.5.0"
|
|
1391
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1392
|
+
checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea"
|
|
1393
|
+
|
|
1394
|
+
[[package]]
|
|
1395
|
+
name = "hex"
|
|
1396
|
+
version = "0.4.3"
|
|
1397
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1398
|
+
checksum = "7f24254aa9a54b5c858eaee2f5bccdb46aaf0e486a595ed5fd8f86ba55232a70"
|
|
1399
|
+
|
|
1400
|
+
[[package]]
|
|
1401
|
+
name = "http"
|
|
1402
|
+
version = "1.4.0"
|
|
1403
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1404
|
+
checksum = "e3ba2a386d7f85a81f119ad7498ebe444d2e22c2af0b86b069416ace48b3311a"
|
|
1405
|
+
dependencies = [
|
|
1406
|
+
"bytes",
|
|
1407
|
+
"itoa",
|
|
1408
|
+
]
|
|
1409
|
+
|
|
1410
|
+
[[package]]
|
|
1411
|
+
name = "http-auth"
|
|
1412
|
+
version = "0.1.10"
|
|
1413
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1414
|
+
checksum = "150fa4a9462ef926824cf4519c84ed652ca8f4fbae34cb8af045b5cbcaf98822"
|
|
1415
|
+
dependencies = [
|
|
1416
|
+
"memchr",
|
|
1417
|
+
]
|
|
1418
|
+
|
|
1419
|
+
[[package]]
|
|
1420
|
+
name = "http-body"
|
|
1421
|
+
version = "1.0.1"
|
|
1422
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1423
|
+
checksum = "1efedce1fb8e6913f23e0c92de8e62cd5b772a67e7b3946df930a62566c93184"
|
|
1424
|
+
dependencies = [
|
|
1425
|
+
"bytes",
|
|
1426
|
+
"http",
|
|
1427
|
+
]
|
|
1428
|
+
|
|
1429
|
+
[[package]]
|
|
1430
|
+
name = "http-body-util"
|
|
1431
|
+
version = "0.1.3"
|
|
1432
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1433
|
+
checksum = "b021d93e26becf5dc7e1b75b1bed1fd93124b374ceb73f43d4d4eafec896a64a"
|
|
1434
|
+
dependencies = [
|
|
1435
|
+
"bytes",
|
|
1436
|
+
"futures-core",
|
|
1437
|
+
"http",
|
|
1438
|
+
"http-body",
|
|
1439
|
+
"pin-project-lite",
|
|
1440
|
+
]
|
|
1441
|
+
|
|
1442
|
+
[[package]]
|
|
1443
|
+
name = "httparse"
|
|
1444
|
+
version = "1.10.1"
|
|
1445
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1446
|
+
checksum = "6dbf3de79e51f3d586ab4cb9d5c3e2c14aa28ed23d180cf89b4df0454a69cc87"
|
|
1447
|
+
|
|
1448
|
+
[[package]]
|
|
1449
|
+
name = "httpdate"
|
|
1450
|
+
version = "1.0.3"
|
|
1451
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1452
|
+
checksum = "df3b46402a9d5adb4c86a0cf463f42e19994e3ee891101b1841f30a545cb49a9"
|
|
1453
|
+
|
|
1454
|
+
[[package]]
|
|
1455
|
+
name = "hybrid-array"
|
|
1456
|
+
version = "0.4.10"
|
|
1457
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1458
|
+
checksum = "3944cf8cf766b40e2a1a333ee5e9b563f854d5fa49d6a8ca2764e97c6eddb214"
|
|
1459
|
+
dependencies = [
|
|
1460
|
+
"typenum",
|
|
1461
|
+
]
|
|
1462
|
+
|
|
1463
|
+
[[package]]
|
|
1464
|
+
name = "hyper"
|
|
1465
|
+
version = "1.9.0"
|
|
1466
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1467
|
+
checksum = "6299f016b246a94207e63da54dbe807655bf9e00044f73ded42c3ac5305fbcca"
|
|
1468
|
+
dependencies = [
|
|
1469
|
+
"atomic-waker",
|
|
1470
|
+
"bytes",
|
|
1471
|
+
"futures-channel",
|
|
1472
|
+
"futures-core",
|
|
1473
|
+
"h2",
|
|
1474
|
+
"http",
|
|
1475
|
+
"http-body",
|
|
1476
|
+
"httparse",
|
|
1477
|
+
"httpdate",
|
|
1478
|
+
"itoa",
|
|
1479
|
+
"pin-project-lite",
|
|
1480
|
+
"smallvec",
|
|
1481
|
+
"tokio",
|
|
1482
|
+
"want",
|
|
1483
|
+
]
|
|
1484
|
+
|
|
1485
|
+
[[package]]
|
|
1486
|
+
name = "hyper-rustls"
|
|
1487
|
+
version = "0.27.7"
|
|
1488
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1489
|
+
checksum = "e3c93eb611681b207e1fe55d5a71ecf91572ec8a6705cdb6857f7d8d5242cf58"
|
|
1490
|
+
dependencies = [
|
|
1491
|
+
"http",
|
|
1492
|
+
"hyper",
|
|
1493
|
+
"hyper-util",
|
|
1494
|
+
"rustls 0.23.37",
|
|
1495
|
+
"rustls-pki-types",
|
|
1496
|
+
"tokio",
|
|
1497
|
+
"tokio-rustls 0.26.4",
|
|
1498
|
+
"tower-service",
|
|
1499
|
+
]
|
|
1500
|
+
|
|
1501
|
+
[[package]]
|
|
1502
|
+
name = "hyper-util"
|
|
1503
|
+
version = "0.1.20"
|
|
1504
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1505
|
+
checksum = "96547c2556ec9d12fb1578c4eaf448b04993e7fb79cbaad930a656880a6bdfa0"
|
|
1506
|
+
dependencies = [
|
|
1507
|
+
"base64",
|
|
1508
|
+
"bytes",
|
|
1509
|
+
"futures-channel",
|
|
1510
|
+
"futures-util",
|
|
1511
|
+
"http",
|
|
1512
|
+
"http-body",
|
|
1513
|
+
"hyper",
|
|
1514
|
+
"ipnet",
|
|
1515
|
+
"libc",
|
|
1516
|
+
"percent-encoding",
|
|
1517
|
+
"pin-project-lite",
|
|
1518
|
+
"socket2",
|
|
1519
|
+
"tokio",
|
|
1520
|
+
"tower-service",
|
|
1521
|
+
"tracing",
|
|
1522
|
+
]
|
|
1523
|
+
|
|
1524
|
+
[[package]]
|
|
1525
|
+
name = "iana-time-zone"
|
|
1526
|
+
version = "0.1.65"
|
|
1527
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1528
|
+
checksum = "e31bc9ad994ba00e440a8aa5c9ef0ec67d5cb5e5cb0cc7f8b744a35b389cc470"
|
|
1529
|
+
dependencies = [
|
|
1530
|
+
"android_system_properties",
|
|
1531
|
+
"core-foundation-sys",
|
|
1532
|
+
"iana-time-zone-haiku",
|
|
1533
|
+
"js-sys",
|
|
1534
|
+
"log",
|
|
1535
|
+
"wasm-bindgen",
|
|
1536
|
+
"windows-core",
|
|
1537
|
+
]
|
|
1538
|
+
|
|
1539
|
+
[[package]]
|
|
1540
|
+
name = "iana-time-zone-haiku"
|
|
1541
|
+
version = "0.1.2"
|
|
1542
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1543
|
+
checksum = "f31827a206f56af32e590ba56d5d2d085f558508192593743f16b2306495269f"
|
|
1544
|
+
dependencies = [
|
|
1545
|
+
"cc",
|
|
1546
|
+
]
|
|
1547
|
+
|
|
1548
|
+
[[package]]
|
|
1549
|
+
name = "icu_collections"
|
|
1550
|
+
version = "2.2.0"
|
|
1551
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1552
|
+
checksum = "2984d1cd16c883d7935b9e07e44071dca8d917fd52ecc02c04d5fa0b5a3f191c"
|
|
1553
|
+
dependencies = [
|
|
1554
|
+
"displaydoc",
|
|
1555
|
+
"potential_utf",
|
|
1556
|
+
"utf8_iter",
|
|
1557
|
+
"yoke",
|
|
1558
|
+
"zerofrom",
|
|
1559
|
+
"zerovec",
|
|
1560
|
+
]
|
|
1561
|
+
|
|
1562
|
+
[[package]]
|
|
1563
|
+
name = "icu_locale_core"
|
|
1564
|
+
version = "2.2.0"
|
|
1565
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1566
|
+
checksum = "92219b62b3e2b4d88ac5119f8904c10f8f61bf7e95b640d25ba3075e6cac2c29"
|
|
1567
|
+
dependencies = [
|
|
1568
|
+
"displaydoc",
|
|
1569
|
+
"litemap",
|
|
1570
|
+
"tinystr",
|
|
1571
|
+
"writeable",
|
|
1572
|
+
"zerovec",
|
|
1573
|
+
]
|
|
1574
|
+
|
|
1575
|
+
[[package]]
|
|
1576
|
+
name = "icu_normalizer"
|
|
1577
|
+
version = "2.2.0"
|
|
1578
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1579
|
+
checksum = "c56e5ee99d6e3d33bd91c5d85458b6005a22140021cc324cea84dd0e72cff3b4"
|
|
1580
|
+
dependencies = [
|
|
1581
|
+
"icu_collections",
|
|
1582
|
+
"icu_normalizer_data",
|
|
1583
|
+
"icu_properties",
|
|
1584
|
+
"icu_provider",
|
|
1585
|
+
"smallvec",
|
|
1586
|
+
"zerovec",
|
|
1587
|
+
]
|
|
1588
|
+
|
|
1589
|
+
[[package]]
|
|
1590
|
+
name = "icu_normalizer_data"
|
|
1591
|
+
version = "2.2.0"
|
|
1592
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1593
|
+
checksum = "da3be0ae77ea334f4da67c12f149704f19f81d1adf7c51cf482943e84a2bad38"
|
|
1594
|
+
|
|
1595
|
+
[[package]]
|
|
1596
|
+
name = "icu_properties"
|
|
1597
|
+
version = "2.2.0"
|
|
1598
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1599
|
+
checksum = "bee3b67d0ea5c2cca5003417989af8996f8604e34fb9ddf96208a033901e70de"
|
|
1600
|
+
dependencies = [
|
|
1601
|
+
"icu_collections",
|
|
1602
|
+
"icu_locale_core",
|
|
1603
|
+
"icu_properties_data",
|
|
1604
|
+
"icu_provider",
|
|
1605
|
+
"zerotrie",
|
|
1606
|
+
"zerovec",
|
|
1607
|
+
]
|
|
1608
|
+
|
|
1609
|
+
[[package]]
|
|
1610
|
+
name = "icu_properties_data"
|
|
1611
|
+
version = "2.2.0"
|
|
1612
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1613
|
+
checksum = "8e2bbb201e0c04f7b4b3e14382af113e17ba4f63e2c9d2ee626b720cbce54a14"
|
|
1614
|
+
|
|
1615
|
+
[[package]]
|
|
1616
|
+
name = "icu_provider"
|
|
1617
|
+
version = "2.2.0"
|
|
1618
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1619
|
+
checksum = "139c4cf31c8b5f33d7e199446eff9c1e02decfc2f0eec2c8d71f65befa45b421"
|
|
1620
|
+
dependencies = [
|
|
1621
|
+
"displaydoc",
|
|
1622
|
+
"icu_locale_core",
|
|
1623
|
+
"writeable",
|
|
1624
|
+
"yoke",
|
|
1625
|
+
"zerofrom",
|
|
1626
|
+
"zerotrie",
|
|
1627
|
+
"zerovec",
|
|
1628
|
+
]
|
|
1629
|
+
|
|
1630
|
+
[[package]]
|
|
1631
|
+
name = "id-arena"
|
|
1632
|
+
version = "2.3.0"
|
|
1633
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1634
|
+
checksum = "3d3067d79b975e8844ca9eb072e16b31c3c1c36928edf9c6789548c524d0d954"
|
|
1635
|
+
|
|
1636
|
+
[[package]]
|
|
1637
|
+
name = "ident_case"
|
|
1638
|
+
version = "1.0.1"
|
|
1639
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1640
|
+
checksum = "b9e0384b61958566e926dc50660321d12159025e767c18e043daf26b70104c39"
|
|
1641
|
+
|
|
1642
|
+
[[package]]
|
|
1643
|
+
name = "idna"
|
|
1644
|
+
version = "1.1.0"
|
|
1645
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1646
|
+
checksum = "3b0875f23caa03898994f6ddc501886a45c7d3d62d04d2d90788d47be1b1e4de"
|
|
1647
|
+
dependencies = [
|
|
1648
|
+
"idna_adapter",
|
|
1649
|
+
"smallvec",
|
|
1650
|
+
"utf8_iter",
|
|
1651
|
+
]
|
|
1652
|
+
|
|
1653
|
+
[[package]]
|
|
1654
|
+
name = "idna_adapter"
|
|
1655
|
+
version = "1.2.1"
|
|
1656
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1657
|
+
checksum = "3acae9609540aa318d1bc588455225fb2085b9ed0c4f6bd0d9d5bcd86f1a0344"
|
|
1658
|
+
dependencies = [
|
|
1659
|
+
"icu_normalizer",
|
|
1660
|
+
"icu_properties",
|
|
1661
|
+
]
|
|
1662
|
+
|
|
1663
|
+
[[package]]
|
|
1664
|
+
name = "im-rc"
|
|
1665
|
+
version = "15.1.0"
|
|
1666
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1667
|
+
checksum = "af1955a75fa080c677d3972822ec4bad316169ab1cfc6c257a942c2265dbe5fe"
|
|
1668
|
+
dependencies = [
|
|
1669
|
+
"bitmaps",
|
|
1670
|
+
"rand_core 0.6.4",
|
|
1671
|
+
"rand_xoshiro",
|
|
1672
|
+
"sized-chunks",
|
|
1673
|
+
"typenum",
|
|
1674
|
+
"version_check",
|
|
1675
|
+
]
|
|
1676
|
+
|
|
1677
|
+
[[package]]
|
|
1678
|
+
name = "indexmap"
|
|
1679
|
+
version = "1.9.3"
|
|
1680
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1681
|
+
checksum = "bd070e393353796e801d209ad339e89596eb4c8d430d18ede6a1cced8fafbd99"
|
|
1682
|
+
dependencies = [
|
|
1683
|
+
"autocfg",
|
|
1684
|
+
"hashbrown 0.12.3",
|
|
1685
|
+
"serde",
|
|
1686
|
+
]
|
|
1687
|
+
|
|
1688
|
+
[[package]]
|
|
1689
|
+
name = "indexmap"
|
|
1690
|
+
version = "2.13.1"
|
|
1691
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1692
|
+
checksum = "45a8a2b9cb3e0b0c1803dbb0758ffac5de2f425b23c28f518faabd9d805342ff"
|
|
1693
|
+
dependencies = [
|
|
1694
|
+
"equivalent",
|
|
1695
|
+
"hashbrown 0.16.1",
|
|
1696
|
+
"serde",
|
|
1697
|
+
"serde_core",
|
|
1698
|
+
]
|
|
1699
|
+
|
|
1700
|
+
[[package]]
|
|
1701
|
+
name = "indicatif"
|
|
1702
|
+
version = "0.18.4"
|
|
1703
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1704
|
+
checksum = "25470f23803092da7d239834776d653104d551bc4d7eacaf31e6837854b8e9eb"
|
|
1705
|
+
dependencies = [
|
|
1706
|
+
"console",
|
|
1707
|
+
"portable-atomic",
|
|
1708
|
+
"unicode-width",
|
|
1709
|
+
"unit-prefix",
|
|
1710
|
+
"web-time",
|
|
1711
|
+
]
|
|
1712
|
+
|
|
1713
|
+
[[package]]
|
|
1714
|
+
name = "io-extras"
|
|
1715
|
+
version = "0.18.4"
|
|
1716
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1717
|
+
checksum = "2285ddfe3054097ef4b2fe909ef8c3bcd1ea52a8f0d274416caebeef39f04a65"
|
|
1718
|
+
dependencies = [
|
|
1719
|
+
"io-lifetimes",
|
|
1720
|
+
"windows-sys 0.59.0",
|
|
1721
|
+
]
|
|
1722
|
+
|
|
1723
|
+
[[package]]
|
|
1724
|
+
name = "io-lifetimes"
|
|
1725
|
+
version = "2.0.4"
|
|
1726
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1727
|
+
checksum = "06432fb54d3be7964ecd3649233cddf80db2832f47fec34c01f65b3d9d774983"
|
|
1728
|
+
|
|
1729
|
+
[[package]]
|
|
1730
|
+
name = "ipnet"
|
|
1731
|
+
version = "2.12.0"
|
|
1732
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1733
|
+
checksum = "d98f6fed1fde3f8c21bc40a1abb88dd75e67924f9cffc3ef95607bad8017f8e2"
|
|
1734
|
+
|
|
1735
|
+
[[package]]
|
|
1736
|
+
name = "iri-string"
|
|
1737
|
+
version = "0.7.12"
|
|
1738
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1739
|
+
checksum = "25e659a4bb38e810ebc252e53b5814ff908a8c58c2a9ce2fae1bbec24cbf4e20"
|
|
1740
|
+
dependencies = [
|
|
1741
|
+
"memchr",
|
|
1742
|
+
"serde",
|
|
1743
|
+
]
|
|
1744
|
+
|
|
1745
|
+
[[package]]
|
|
1746
|
+
name = "is_terminal_polyfill"
|
|
1747
|
+
version = "1.70.2"
|
|
1748
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1749
|
+
checksum = "a6cb138bb79a146c1bd460005623e142ef0181e3d0219cb493e02f7d08a35695"
|
|
1750
|
+
|
|
1751
|
+
[[package]]
|
|
1752
|
+
name = "itertools"
|
|
1753
|
+
version = "0.14.0"
|
|
1754
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1755
|
+
checksum = "2b192c782037fadd9cfa75548310488aabdbf3d2da73885b31bd0abd03351285"
|
|
1756
|
+
dependencies = [
|
|
1757
|
+
"either",
|
|
1758
|
+
]
|
|
1759
|
+
|
|
1760
|
+
[[package]]
|
|
1761
|
+
name = "itoa"
|
|
1762
|
+
version = "1.0.18"
|
|
1763
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1764
|
+
checksum = "8f42a60cbdf9a97f5d2305f08a87dc4e09308d1276d28c869c684d7777685682"
|
|
1765
|
+
|
|
1766
|
+
[[package]]
|
|
1767
|
+
name = "ittapi"
|
|
1768
|
+
version = "0.4.0"
|
|
1769
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1770
|
+
checksum = "6b996fe614c41395cdaedf3cf408a9534851090959d90d54a535f675550b64b1"
|
|
1771
|
+
dependencies = [
|
|
1772
|
+
"anyhow",
|
|
1773
|
+
"ittapi-sys",
|
|
1774
|
+
"log",
|
|
1775
|
+
]
|
|
1776
|
+
|
|
1777
|
+
[[package]]
|
|
1778
|
+
name = "ittapi-sys"
|
|
1779
|
+
version = "0.4.0"
|
|
1780
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1781
|
+
checksum = "52f5385394064fa2c886205dba02598013ce83d3e92d33dbdc0c52fe0e7bf4fc"
|
|
1782
|
+
dependencies = [
|
|
1783
|
+
"cc",
|
|
1784
|
+
]
|
|
1785
|
+
|
|
1786
|
+
[[package]]
|
|
1787
|
+
name = "jni"
|
|
1788
|
+
version = "0.21.1"
|
|
1789
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1790
|
+
checksum = "1a87aa2bb7d2af34197c04845522473242e1aa17c12f4935d5856491a7fb8c97"
|
|
1791
|
+
dependencies = [
|
|
1792
|
+
"cesu8",
|
|
1793
|
+
"cfg-if",
|
|
1794
|
+
"combine",
|
|
1795
|
+
"jni-sys 0.3.1",
|
|
1796
|
+
"log",
|
|
1797
|
+
"thiserror 1.0.69",
|
|
1798
|
+
"walkdir",
|
|
1799
|
+
"windows-sys 0.45.0",
|
|
1800
|
+
]
|
|
1801
|
+
|
|
1802
|
+
[[package]]
|
|
1803
|
+
name = "jni-sys"
|
|
1804
|
+
version = "0.3.1"
|
|
1805
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1806
|
+
checksum = "41a652e1f9b6e0275df1f15b32661cf0d4b78d4d87ddec5e0c3c20f097433258"
|
|
1807
|
+
dependencies = [
|
|
1808
|
+
"jni-sys 0.4.1",
|
|
1809
|
+
]
|
|
1810
|
+
|
|
1811
|
+
[[package]]
|
|
1812
|
+
name = "jni-sys"
|
|
1813
|
+
version = "0.4.1"
|
|
1814
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1815
|
+
checksum = "c6377a88cb3910bee9b0fa88d4f42e1d2da8e79915598f65fb0c7ee14c878af2"
|
|
1816
|
+
dependencies = [
|
|
1817
|
+
"jni-sys-macros",
|
|
1818
|
+
]
|
|
1819
|
+
|
|
1820
|
+
[[package]]
|
|
1821
|
+
name = "jni-sys-macros"
|
|
1822
|
+
version = "0.4.1"
|
|
1823
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1824
|
+
checksum = "38c0b942f458fe50cdac086d2f946512305e5631e720728f2a61aabcd47a6264"
|
|
1825
|
+
dependencies = [
|
|
1826
|
+
"quote",
|
|
1827
|
+
"syn",
|
|
1828
|
+
]
|
|
1829
|
+
|
|
1830
|
+
[[package]]
|
|
1831
|
+
name = "jobserver"
|
|
1832
|
+
version = "0.1.34"
|
|
1833
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1834
|
+
checksum = "9afb3de4395d6b3e67a780b6de64b51c978ecf11cb9a462c66be7d4ca9039d33"
|
|
1835
|
+
dependencies = [
|
|
1836
|
+
"getrandom 0.3.4",
|
|
1837
|
+
"libc",
|
|
1838
|
+
]
|
|
1839
|
+
|
|
1840
|
+
[[package]]
|
|
1841
|
+
name = "js-sys"
|
|
1842
|
+
version = "0.3.94"
|
|
1843
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1844
|
+
checksum = "2e04e2ef80ce82e13552136fabeef8a5ed1f985a96805761cbb9a2c34e7664d9"
|
|
1845
|
+
dependencies = [
|
|
1846
|
+
"cfg-if",
|
|
1847
|
+
"futures-util",
|
|
1848
|
+
"once_cell",
|
|
1849
|
+
"wasm-bindgen",
|
|
1850
|
+
]
|
|
1851
|
+
|
|
1852
|
+
[[package]]
|
|
1853
|
+
name = "json-patch"
|
|
1854
|
+
version = "4.1.0"
|
|
1855
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1856
|
+
checksum = "f300e415e2134745ef75f04562dd0145405c2f7fd92065db029ac4b16b57fe90"
|
|
1857
|
+
dependencies = [
|
|
1858
|
+
"jsonptr",
|
|
1859
|
+
"serde",
|
|
1860
|
+
"serde_json",
|
|
1861
|
+
"thiserror 1.0.69",
|
|
1862
|
+
]
|
|
1863
|
+
|
|
1864
|
+
[[package]]
|
|
1865
|
+
name = "jsonptr"
|
|
1866
|
+
version = "0.7.1"
|
|
1867
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1868
|
+
checksum = "a5a3cc660ba5d72bce0b3bb295bf20847ccbb40fd423f3f05b61273672e561fe"
|
|
1869
|
+
dependencies = [
|
|
1870
|
+
"serde",
|
|
1871
|
+
"serde_json",
|
|
1872
|
+
]
|
|
1873
|
+
|
|
1874
|
+
[[package]]
|
|
1875
|
+
name = "jsonwebtoken"
|
|
1876
|
+
version = "10.3.0"
|
|
1877
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1878
|
+
checksum = "0529410abe238729a60b108898784df8984c87f6054c9c4fcacc47e4803c1ce1"
|
|
1879
|
+
dependencies = [
|
|
1880
|
+
"base64",
|
|
1881
|
+
"getrandom 0.2.17",
|
|
1882
|
+
"js-sys",
|
|
1883
|
+
"serde",
|
|
1884
|
+
"serde_json",
|
|
1885
|
+
"signature",
|
|
1886
|
+
]
|
|
1887
|
+
|
|
1888
|
+
[[package]]
|
|
1889
|
+
name = "lazy_static"
|
|
1890
|
+
version = "1.5.0"
|
|
1891
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1892
|
+
checksum = "bbd2bcb4c963f2ddae06a2efc7e9f3591312473c50c6685e1f298068316e66fe"
|
|
1893
|
+
|
|
1894
|
+
[[package]]
|
|
1895
|
+
name = "leb128"
|
|
1896
|
+
version = "0.2.5"
|
|
1897
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1898
|
+
checksum = "884e2677b40cc8c339eaefcb701c32ef1fd2493d71118dc0ca4b6a736c93bd67"
|
|
1899
|
+
|
|
1900
|
+
[[package]]
|
|
1901
|
+
name = "leb128fmt"
|
|
1902
|
+
version = "0.1.0"
|
|
1903
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1904
|
+
checksum = "09edd9e8b54e49e587e4f6295a7d29c3ea94d469cb40ab8ca70b288248a81db2"
|
|
1905
|
+
|
|
1906
|
+
[[package]]
|
|
1907
|
+
name = "libc"
|
|
1908
|
+
version = "0.2.184"
|
|
1909
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1910
|
+
checksum = "48f5d2a454e16a5ea0f4ced81bd44e4cfc7bd3a507b61887c99fd3538b28e4af"
|
|
1911
|
+
|
|
1912
|
+
[[package]]
|
|
1913
|
+
name = "libm"
|
|
1914
|
+
version = "0.2.16"
|
|
1915
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1916
|
+
checksum = "b6d2cec3eae94f9f509c767b45932f1ada8350c4bdb85af2fcab4a3c14807981"
|
|
1917
|
+
|
|
1918
|
+
[[package]]
|
|
1919
|
+
name = "libredox"
|
|
1920
|
+
version = "0.1.15"
|
|
1921
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1922
|
+
checksum = "7ddbf48fd451246b1f8c2610bd3b4ac0cc6e149d89832867093ab69a17194f08"
|
|
1923
|
+
dependencies = [
|
|
1924
|
+
"bitflags",
|
|
1925
|
+
"libc",
|
|
1926
|
+
"plain",
|
|
1927
|
+
"redox_syscall 0.7.3",
|
|
1928
|
+
]
|
|
1929
|
+
|
|
1930
|
+
[[package]]
|
|
1931
|
+
name = "linux-raw-sys"
|
|
1932
|
+
version = "0.4.15"
|
|
1933
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1934
|
+
checksum = "d26c52dbd32dccf2d10cac7725f8eae5296885fb5703b261f7d0a0739ec807ab"
|
|
1935
|
+
|
|
1936
|
+
[[package]]
|
|
1937
|
+
name = "linux-raw-sys"
|
|
1938
|
+
version = "0.12.1"
|
|
1939
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1940
|
+
checksum = "32a66949e030da00e8c7d4434b251670a91556f4144941d37452769c25d58a53"
|
|
1941
|
+
|
|
1942
|
+
[[package]]
|
|
1943
|
+
name = "litemap"
|
|
1944
|
+
version = "0.8.2"
|
|
1945
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1946
|
+
checksum = "92daf443525c4cce67b150400bc2316076100ce0b3686209eb8cf3c31612e6f0"
|
|
1947
|
+
|
|
1948
|
+
[[package]]
|
|
1949
|
+
name = "lock_api"
|
|
1950
|
+
version = "0.4.14"
|
|
1951
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1952
|
+
checksum = "224399e74b87b5f3557511d98dff8b14089b3dadafcab6bb93eab67d3aace965"
|
|
1953
|
+
dependencies = [
|
|
1954
|
+
"scopeguard",
|
|
1955
|
+
]
|
|
1956
|
+
|
|
1957
|
+
[[package]]
|
|
1958
|
+
name = "log"
|
|
1959
|
+
version = "0.4.29"
|
|
1960
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1961
|
+
checksum = "5e5032e24019045c762d3c0f28f5b6b8bbf38563a65908389bf7978758920897"
|
|
1962
|
+
|
|
1963
|
+
[[package]]
|
|
1964
|
+
name = "lru-slab"
|
|
1965
|
+
version = "0.1.2"
|
|
1966
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1967
|
+
checksum = "112b39cec0b298b6c1999fee3e31427f74f676e4cb9879ed1a121b43661a4154"
|
|
1968
|
+
|
|
1969
|
+
[[package]]
|
|
1970
|
+
name = "mach2"
|
|
1971
|
+
version = "0.4.3"
|
|
1972
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1973
|
+
checksum = "d640282b302c0bb0a2a8e0233ead9035e3bed871f0b7e81fe4a1ec829765db44"
|
|
1974
|
+
dependencies = [
|
|
1975
|
+
"libc",
|
|
1976
|
+
]
|
|
1977
|
+
|
|
1978
|
+
[[package]]
|
|
1979
|
+
name = "matchers"
|
|
1980
|
+
version = "0.2.0"
|
|
1981
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1982
|
+
checksum = "d1525a2a28c7f4fa0fc98bb91ae755d1e2d1505079e05539e35bc876b5d65ae9"
|
|
1983
|
+
dependencies = [
|
|
1984
|
+
"regex-automata",
|
|
1985
|
+
]
|
|
1986
|
+
|
|
1987
|
+
[[package]]
|
|
1988
|
+
name = "matchit"
|
|
1989
|
+
version = "0.8.4"
|
|
1990
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1991
|
+
checksum = "47e1ffaa40ddd1f3ed91f717a33c8c0ee23fff369e3aa8772b9605cc1d22f4c3"
|
|
1992
|
+
|
|
1993
|
+
[[package]]
|
|
1994
|
+
name = "maybe-owned"
|
|
1995
|
+
version = "0.3.4"
|
|
1996
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1997
|
+
checksum = "4facc753ae494aeb6e3c22f839b158aebd4f9270f55cd3c79906c45476c47ab4"
|
|
1998
|
+
|
|
1999
|
+
[[package]]
|
|
2000
|
+
name = "memchr"
|
|
2001
|
+
version = "2.8.0"
|
|
2002
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2003
|
+
checksum = "f8ca58f447f06ed17d5fc4043ce1b10dd205e060fb3ce5b979b8ed8e59ff3f79"
|
|
2004
|
+
|
|
2005
|
+
[[package]]
|
|
2006
|
+
name = "memfd"
|
|
2007
|
+
version = "0.6.5"
|
|
2008
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2009
|
+
checksum = "ad38eb12aea514a0466ea40a80fd8cc83637065948eb4a426e4aa46261175227"
|
|
2010
|
+
dependencies = [
|
|
2011
|
+
"rustix 1.1.4",
|
|
2012
|
+
]
|
|
2013
|
+
|
|
2014
|
+
[[package]]
|
|
2015
|
+
name = "mime"
|
|
2016
|
+
version = "0.3.17"
|
|
2017
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2018
|
+
checksum = "6877bb514081ee2a7ff5ef9de3281f14a4dd4bceac4c09388074a6b5df8a139a"
|
|
2019
|
+
|
|
2020
|
+
[[package]]
|
|
2021
|
+
name = "mio"
|
|
2022
|
+
version = "1.2.0"
|
|
2023
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2024
|
+
checksum = "50b7e5b27aa02a74bac8c3f23f448f8d87ff11f92d3aac1a6ed369ee08cc56c1"
|
|
2025
|
+
dependencies = [
|
|
2026
|
+
"libc",
|
|
2027
|
+
"wasi",
|
|
2028
|
+
"windows-sys 0.61.2",
|
|
2029
|
+
]
|
|
2030
|
+
|
|
2031
|
+
[[package]]
|
|
2032
|
+
name = "nu-ansi-term"
|
|
2033
|
+
version = "0.50.3"
|
|
2034
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2035
|
+
checksum = "7957b9740744892f114936ab4a57b3f487491bbeafaf8083688b16841a4240e5"
|
|
2036
|
+
dependencies = [
|
|
2037
|
+
"windows-sys 0.61.2",
|
|
2038
|
+
]
|
|
2039
|
+
|
|
2040
|
+
[[package]]
|
|
2041
|
+
name = "num-conv"
|
|
2042
|
+
version = "0.2.1"
|
|
2043
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2044
|
+
checksum = "c6673768db2d862beb9b39a78fdcb1a69439615d5794a1be50caa9bc92c81967"
|
|
2045
|
+
|
|
2046
|
+
[[package]]
|
|
2047
|
+
name = "num-traits"
|
|
2048
|
+
version = "0.2.19"
|
|
2049
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2050
|
+
checksum = "071dfc062690e90b734c0b2273ce72ad0ffa95f0c74596bc250dcfd960262841"
|
|
2051
|
+
dependencies = [
|
|
2052
|
+
"autocfg",
|
|
2053
|
+
]
|
|
2054
|
+
|
|
2055
|
+
[[package]]
|
|
2056
|
+
name = "object"
|
|
2057
|
+
version = "0.38.1"
|
|
2058
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2059
|
+
checksum = "271638cd5fa9cca89c4c304675ca658efc4e64a66c716b7cfe1afb4b9611dbbc"
|
|
2060
|
+
dependencies = [
|
|
2061
|
+
"crc32fast",
|
|
2062
|
+
"hashbrown 0.16.1",
|
|
2063
|
+
"indexmap 2.13.1",
|
|
2064
|
+
"memchr",
|
|
2065
|
+
]
|
|
2066
|
+
|
|
2067
|
+
[[package]]
|
|
2068
|
+
name = "oci-client"
|
|
2069
|
+
version = "0.16.1"
|
|
2070
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2071
|
+
checksum = "1b7f8deaffcd3b0e3baf93dddcab3d18b91d46dc37d38a8b170089b234de5bb3"
|
|
2072
|
+
dependencies = [
|
|
2073
|
+
"bytes",
|
|
2074
|
+
"chrono",
|
|
2075
|
+
"futures-util",
|
|
2076
|
+
"http",
|
|
2077
|
+
"http-auth",
|
|
2078
|
+
"jsonwebtoken",
|
|
2079
|
+
"lazy_static",
|
|
2080
|
+
"oci-spec",
|
|
2081
|
+
"olpc-cjson",
|
|
2082
|
+
"regex",
|
|
2083
|
+
"reqwest",
|
|
2084
|
+
"serde",
|
|
2085
|
+
"serde_json",
|
|
2086
|
+
"sha2 0.10.9",
|
|
2087
|
+
"thiserror 2.0.18",
|
|
2088
|
+
"tokio",
|
|
2089
|
+
"tracing",
|
|
2090
|
+
"unicase",
|
|
2091
|
+
]
|
|
2092
|
+
|
|
2093
|
+
[[package]]
|
|
2094
|
+
name = "oci-spec"
|
|
2095
|
+
version = "0.9.0"
|
|
2096
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2097
|
+
checksum = "e8445a2631507cec628a15fdd6154b54a3ab3f20ed4fe9d73a3b8b7a4e1ba03a"
|
|
2098
|
+
dependencies = [
|
|
2099
|
+
"const_format",
|
|
2100
|
+
"derive_builder",
|
|
2101
|
+
"getset",
|
|
2102
|
+
"regex",
|
|
2103
|
+
"serde",
|
|
2104
|
+
"serde_json",
|
|
2105
|
+
"strum",
|
|
2106
|
+
"strum_macros",
|
|
2107
|
+
"thiserror 2.0.18",
|
|
2108
|
+
]
|
|
2109
|
+
|
|
2110
|
+
[[package]]
|
|
2111
|
+
name = "olpc-cjson"
|
|
2112
|
+
version = "0.1.4"
|
|
2113
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2114
|
+
checksum = "696183c9b5fe81a7715d074fd632e8bd46f4ccc0231a3ed7fc580a80de5f7083"
|
|
2115
|
+
dependencies = [
|
|
2116
|
+
"serde",
|
|
2117
|
+
"serde_json",
|
|
2118
|
+
"unicode-normalization",
|
|
2119
|
+
]
|
|
2120
|
+
|
|
2121
|
+
[[package]]
|
|
2122
|
+
name = "once_cell"
|
|
2123
|
+
version = "1.21.4"
|
|
2124
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2125
|
+
checksum = "9f7c3e4beb33f85d45ae3e3a1792185706c8e16d043238c593331cc7cd313b50"
|
|
2126
|
+
|
|
2127
|
+
[[package]]
|
|
2128
|
+
name = "once_cell_polyfill"
|
|
2129
|
+
version = "1.70.2"
|
|
2130
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2131
|
+
checksum = "384b8ab6d37215f3c5301a95a4accb5d64aa607f1fcb26a11b5303878451b4fe"
|
|
2132
|
+
|
|
2133
|
+
[[package]]
|
|
2134
|
+
name = "openssl-probe"
|
|
2135
|
+
version = "0.2.1"
|
|
2136
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2137
|
+
checksum = "7c87def4c32ab89d880effc9e097653c8da5d6ef28e6b539d313baaacfbafcbe"
|
|
2138
|
+
|
|
2139
|
+
[[package]]
|
|
2140
|
+
name = "option-ext"
|
|
2141
|
+
version = "0.2.0"
|
|
2142
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2143
|
+
checksum = "04744f49eae99ab78e0d5c0b603ab218f515ea8cfe5a456d7629ad883a3b6e7d"
|
|
2144
|
+
|
|
2145
|
+
[[package]]
|
|
2146
|
+
name = "parking_lot"
|
|
2147
|
+
version = "0.12.5"
|
|
2148
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2149
|
+
checksum = "93857453250e3077bd71ff98b6a65ea6621a19bb0f559a85248955ac12c45a1a"
|
|
2150
|
+
dependencies = [
|
|
2151
|
+
"lock_api",
|
|
2152
|
+
"parking_lot_core",
|
|
2153
|
+
]
|
|
2154
|
+
|
|
2155
|
+
[[package]]
|
|
2156
|
+
name = "parking_lot_core"
|
|
2157
|
+
version = "0.9.12"
|
|
2158
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2159
|
+
checksum = "2621685985a2ebf1c516881c026032ac7deafcda1a2c9b7850dc81e3dfcb64c1"
|
|
2160
|
+
dependencies = [
|
|
2161
|
+
"cfg-if",
|
|
2162
|
+
"libc",
|
|
2163
|
+
"redox_syscall 0.5.18",
|
|
2164
|
+
"smallvec",
|
|
2165
|
+
"windows-link",
|
|
2166
|
+
]
|
|
2167
|
+
|
|
2168
|
+
[[package]]
|
|
2169
|
+
name = "percent-encoding"
|
|
2170
|
+
version = "2.3.2"
|
|
2171
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2172
|
+
checksum = "9b4f627cb1b25917193a259e49bdad08f671f8d9708acfd5fe0a8c1455d87220"
|
|
2173
|
+
|
|
2174
|
+
[[package]]
|
|
2175
|
+
name = "petgraph"
|
|
2176
|
+
version = "0.6.5"
|
|
2177
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2178
|
+
checksum = "b4c5cc86750666a3ed20bdaf5ca2a0344f9c67674cae0515bec2da16fbaa47db"
|
|
2179
|
+
dependencies = [
|
|
2180
|
+
"fixedbitset",
|
|
2181
|
+
"indexmap 2.13.1",
|
|
2182
|
+
]
|
|
2183
|
+
|
|
2184
|
+
[[package]]
|
|
2185
|
+
name = "pin-project-lite"
|
|
2186
|
+
version = "0.2.17"
|
|
2187
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2188
|
+
checksum = "a89322df9ebe1c1578d689c92318e070967d1042b512afbe49518723f4e6d5cd"
|
|
2189
|
+
|
|
2190
|
+
[[package]]
|
|
2191
|
+
name = "pkg-config"
|
|
2192
|
+
version = "0.3.32"
|
|
2193
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2194
|
+
checksum = "7edddbd0b52d732b21ad9a5fab5c704c14cd949e5e9a1ec5929a24fded1b904c"
|
|
2195
|
+
|
|
2196
|
+
[[package]]
|
|
2197
|
+
name = "plain"
|
|
2198
|
+
version = "0.2.3"
|
|
2199
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2200
|
+
checksum = "b4596b6d070b27117e987119b4dac604f3c58cfb0b191112e24771b2faeac1a6"
|
|
2201
|
+
|
|
2202
|
+
[[package]]
|
|
2203
|
+
name = "portable-atomic"
|
|
2204
|
+
version = "1.13.1"
|
|
2205
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2206
|
+
checksum = "c33a9471896f1c69cecef8d20cbe2f7accd12527ce60845ff44c153bb2a21b49"
|
|
2207
|
+
|
|
2208
|
+
[[package]]
|
|
2209
|
+
name = "postcard"
|
|
2210
|
+
version = "1.1.3"
|
|
2211
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2212
|
+
checksum = "6764c3b5dd454e283a30e6dfe78e9b31096d9e32036b5d1eaac7a6119ccb9a24"
|
|
2213
|
+
dependencies = [
|
|
2214
|
+
"cobs",
|
|
2215
|
+
"embedded-io 0.4.0",
|
|
2216
|
+
"embedded-io 0.6.1",
|
|
2217
|
+
"serde",
|
|
2218
|
+
]
|
|
2219
|
+
|
|
2220
|
+
[[package]]
|
|
2221
|
+
name = "potential_utf"
|
|
2222
|
+
version = "0.1.5"
|
|
2223
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2224
|
+
checksum = "0103b1cef7ec0cf76490e969665504990193874ea05c85ff9bab8b911d0a0564"
|
|
2225
|
+
dependencies = [
|
|
2226
|
+
"zerovec",
|
|
2227
|
+
]
|
|
2228
|
+
|
|
2229
|
+
[[package]]
|
|
2230
|
+
name = "powerfmt"
|
|
2231
|
+
version = "0.2.0"
|
|
2232
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2233
|
+
checksum = "439ee305def115ba05938db6eb1644ff94165c5ab5e9420d1c1bcedbba909391"
|
|
2234
|
+
|
|
2235
|
+
[[package]]
|
|
2236
|
+
name = "ppv-lite86"
|
|
2237
|
+
version = "0.2.21"
|
|
2238
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2239
|
+
checksum = "85eae3c4ed2f50dcfe72643da4befc30deadb458a9b590d720cde2f2b1e97da9"
|
|
2240
|
+
dependencies = [
|
|
2241
|
+
"zerocopy",
|
|
2242
|
+
]
|
|
2243
|
+
|
|
2244
|
+
[[package]]
|
|
2245
|
+
name = "prettyplease"
|
|
2246
|
+
version = "0.2.37"
|
|
2247
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2248
|
+
checksum = "479ca8adacdd7ce8f1fb39ce9ecccbfe93a3f1344b3d0d97f20bc0196208f62b"
|
|
2249
|
+
dependencies = [
|
|
2250
|
+
"proc-macro2",
|
|
2251
|
+
"syn",
|
|
2252
|
+
]
|
|
2253
|
+
|
|
2254
|
+
[[package]]
|
|
2255
|
+
name = "proc-macro-error-attr2"
|
|
2256
|
+
version = "2.0.0"
|
|
2257
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2258
|
+
checksum = "96de42df36bb9bba5542fe9f1a054b8cc87e172759a1868aa05c1f3acc89dfc5"
|
|
2259
|
+
dependencies = [
|
|
2260
|
+
"proc-macro2",
|
|
2261
|
+
"quote",
|
|
2262
|
+
]
|
|
2263
|
+
|
|
2264
|
+
[[package]]
|
|
2265
|
+
name = "proc-macro-error2"
|
|
2266
|
+
version = "2.0.1"
|
|
2267
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2268
|
+
checksum = "11ec05c52be0a07b08061f7dd003e7d7092e0472bc731b4af7bb1ef876109802"
|
|
2269
|
+
dependencies = [
|
|
2270
|
+
"proc-macro-error-attr2",
|
|
2271
|
+
"proc-macro2",
|
|
2272
|
+
"quote",
|
|
2273
|
+
"syn",
|
|
2274
|
+
]
|
|
2275
|
+
|
|
2276
|
+
[[package]]
|
|
2277
|
+
name = "proc-macro2"
|
|
2278
|
+
version = "1.0.106"
|
|
2279
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2280
|
+
checksum = "8fd00f0bb2e90d81d1044c2b32617f68fcb9fa3bb7640c23e9c748e53fb30934"
|
|
2281
|
+
dependencies = [
|
|
2282
|
+
"unicode-ident",
|
|
2283
|
+
]
|
|
2284
|
+
|
|
2285
|
+
[[package]]
|
|
2286
|
+
name = "pulley-interpreter"
|
|
2287
|
+
version = "43.0.0"
|
|
2288
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2289
|
+
checksum = "7975f0975fa2c047bf47d617bdf716689e42ee82b159bd000ead7330d7697a1b"
|
|
2290
|
+
dependencies = [
|
|
2291
|
+
"cranelift-bitset",
|
|
2292
|
+
"log",
|
|
2293
|
+
"pulley-macros",
|
|
2294
|
+
"wasmtime-internal-core",
|
|
2295
|
+
]
|
|
2296
|
+
|
|
2297
|
+
[[package]]
|
|
2298
|
+
name = "pulley-macros"
|
|
2299
|
+
version = "43.0.0"
|
|
2300
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2301
|
+
checksum = "a210c0386ef0ddedb337ec99b91e560ae9c341415ef75958cb39ddb537bb0c84"
|
|
2302
|
+
dependencies = [
|
|
2303
|
+
"proc-macro2",
|
|
2304
|
+
"quote",
|
|
2305
|
+
"syn",
|
|
2306
|
+
]
|
|
2307
|
+
|
|
2308
|
+
[[package]]
|
|
2309
|
+
name = "quinn"
|
|
2310
|
+
version = "0.11.9"
|
|
2311
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2312
|
+
checksum = "b9e20a958963c291dc322d98411f541009df2ced7b5a4f2bd52337638cfccf20"
|
|
2313
|
+
dependencies = [
|
|
2314
|
+
"bytes",
|
|
2315
|
+
"cfg_aliases",
|
|
2316
|
+
"pin-project-lite",
|
|
2317
|
+
"quinn-proto",
|
|
2318
|
+
"quinn-udp",
|
|
2319
|
+
"rustc-hash",
|
|
2320
|
+
"rustls 0.23.37",
|
|
2321
|
+
"socket2",
|
|
2322
|
+
"thiserror 2.0.18",
|
|
2323
|
+
"tokio",
|
|
2324
|
+
"tracing",
|
|
2325
|
+
"web-time",
|
|
2326
|
+
]
|
|
2327
|
+
|
|
2328
|
+
[[package]]
|
|
2329
|
+
name = "quinn-proto"
|
|
2330
|
+
version = "0.11.14"
|
|
2331
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2332
|
+
checksum = "434b42fec591c96ef50e21e886936e66d3cc3f737104fdb9b737c40ffb94c098"
|
|
2333
|
+
dependencies = [
|
|
2334
|
+
"aws-lc-rs",
|
|
2335
|
+
"bytes",
|
|
2336
|
+
"getrandom 0.3.4",
|
|
2337
|
+
"lru-slab",
|
|
2338
|
+
"rand 0.9.2",
|
|
2339
|
+
"ring",
|
|
2340
|
+
"rustc-hash",
|
|
2341
|
+
"rustls 0.23.37",
|
|
2342
|
+
"rustls-pki-types",
|
|
2343
|
+
"slab",
|
|
2344
|
+
"thiserror 2.0.18",
|
|
2345
|
+
"tinyvec",
|
|
2346
|
+
"tracing",
|
|
2347
|
+
"web-time",
|
|
2348
|
+
]
|
|
2349
|
+
|
|
2350
|
+
[[package]]
|
|
2351
|
+
name = "quinn-udp"
|
|
2352
|
+
version = "0.5.14"
|
|
2353
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2354
|
+
checksum = "addec6a0dcad8a8d96a771f815f0eaf55f9d1805756410b39f5fa81332574cbd"
|
|
2355
|
+
dependencies = [
|
|
2356
|
+
"cfg_aliases",
|
|
2357
|
+
"libc",
|
|
2358
|
+
"once_cell",
|
|
2359
|
+
"socket2",
|
|
2360
|
+
"tracing",
|
|
2361
|
+
"windows-sys 0.60.2",
|
|
2362
|
+
]
|
|
2363
|
+
|
|
2364
|
+
[[package]]
|
|
2365
|
+
name = "quote"
|
|
2366
|
+
version = "1.0.45"
|
|
2367
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2368
|
+
checksum = "41f2619966050689382d2b44f664f4bc593e129785a36d6ee376ddf37259b924"
|
|
2369
|
+
dependencies = [
|
|
2370
|
+
"proc-macro2",
|
|
2371
|
+
]
|
|
2372
|
+
|
|
2373
|
+
[[package]]
|
|
2374
|
+
name = "r-efi"
|
|
2375
|
+
version = "5.3.0"
|
|
2376
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2377
|
+
checksum = "69cdb34c158ceb288df11e18b4bd39de994f6657d83847bdffdbd7f346754b0f"
|
|
2378
|
+
|
|
2379
|
+
[[package]]
|
|
2380
|
+
name = "r-efi"
|
|
2381
|
+
version = "6.0.0"
|
|
2382
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2383
|
+
checksum = "f8dcc9c7d52a811697d2151c701e0d08956f92b0e24136cf4cf27b57a6a0d9bf"
|
|
2384
|
+
|
|
2385
|
+
[[package]]
|
|
2386
|
+
name = "rand"
|
|
2387
|
+
version = "0.8.5"
|
|
2388
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2389
|
+
checksum = "34af8d1a0e25924bc5b7c43c079c942339d8f0a8b57c39049bef581b46327404"
|
|
2390
|
+
dependencies = [
|
|
2391
|
+
"libc",
|
|
2392
|
+
"rand_chacha 0.3.1",
|
|
2393
|
+
"rand_core 0.6.4",
|
|
2394
|
+
]
|
|
2395
|
+
|
|
2396
|
+
[[package]]
|
|
2397
|
+
name = "rand"
|
|
2398
|
+
version = "0.9.2"
|
|
2399
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2400
|
+
checksum = "6db2770f06117d490610c7488547d543617b21bfa07796d7a12f6f1bd53850d1"
|
|
2401
|
+
dependencies = [
|
|
2402
|
+
"rand_chacha 0.9.0",
|
|
2403
|
+
"rand_core 0.9.5",
|
|
2404
|
+
]
|
|
2405
|
+
|
|
2406
|
+
[[package]]
|
|
2407
|
+
name = "rand_chacha"
|
|
2408
|
+
version = "0.3.1"
|
|
2409
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2410
|
+
checksum = "e6c10a63a0fa32252be49d21e7709d4d4baf8d231c2dbce1eaa8141b9b127d88"
|
|
2411
|
+
dependencies = [
|
|
2412
|
+
"ppv-lite86",
|
|
2413
|
+
"rand_core 0.6.4",
|
|
2414
|
+
]
|
|
2415
|
+
|
|
2416
|
+
[[package]]
|
|
2417
|
+
name = "rand_chacha"
|
|
2418
|
+
version = "0.9.0"
|
|
2419
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2420
|
+
checksum = "d3022b5f1df60f26e1ffddd6c66e8aa15de382ae63b3a0c1bfc0e4d3e3f325cb"
|
|
2421
|
+
dependencies = [
|
|
2422
|
+
"ppv-lite86",
|
|
2423
|
+
"rand_core 0.9.5",
|
|
2424
|
+
]
|
|
2425
|
+
|
|
2426
|
+
[[package]]
|
|
2427
|
+
name = "rand_core"
|
|
2428
|
+
version = "0.6.4"
|
|
2429
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2430
|
+
checksum = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c"
|
|
2431
|
+
dependencies = [
|
|
2432
|
+
"getrandom 0.2.17",
|
|
2433
|
+
]
|
|
2434
|
+
|
|
2435
|
+
[[package]]
|
|
2436
|
+
name = "rand_core"
|
|
2437
|
+
version = "0.9.5"
|
|
2438
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2439
|
+
checksum = "76afc826de14238e6e8c374ddcc1fa19e374fd8dd986b0d2af0d02377261d83c"
|
|
2440
|
+
dependencies = [
|
|
2441
|
+
"getrandom 0.3.4",
|
|
2442
|
+
]
|
|
2443
|
+
|
|
2444
|
+
[[package]]
|
|
2445
|
+
name = "rand_xoshiro"
|
|
2446
|
+
version = "0.6.0"
|
|
2447
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2448
|
+
checksum = "6f97cdb2a36ed4183de61b2f824cc45c9f1037f28afe0a322e9fff4c108b5aaa"
|
|
2449
|
+
dependencies = [
|
|
2450
|
+
"rand_core 0.6.4",
|
|
2451
|
+
]
|
|
2452
|
+
|
|
2453
|
+
[[package]]
|
|
2454
|
+
name = "rayon"
|
|
2455
|
+
version = "1.11.0"
|
|
2456
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2457
|
+
checksum = "368f01d005bf8fd9b1206fb6fa653e6c4a81ceb1466406b81792d87c5677a58f"
|
|
2458
|
+
dependencies = [
|
|
2459
|
+
"either",
|
|
2460
|
+
"rayon-core",
|
|
2461
|
+
]
|
|
2462
|
+
|
|
2463
|
+
[[package]]
|
|
2464
|
+
name = "rayon-core"
|
|
2465
|
+
version = "1.13.0"
|
|
2466
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2467
|
+
checksum = "22e18b0f0062d30d4230b2e85ff77fdfe4326feb054b9783a3460d8435c8ab91"
|
|
2468
|
+
dependencies = [
|
|
2469
|
+
"crossbeam-deque",
|
|
2470
|
+
"crossbeam-utils",
|
|
2471
|
+
]
|
|
2472
|
+
|
|
2473
|
+
[[package]]
|
|
2474
|
+
name = "redox_syscall"
|
|
2475
|
+
version = "0.5.18"
|
|
2476
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2477
|
+
checksum = "ed2bf2547551a7053d6fdfafda3f938979645c44812fbfcda098faae3f1a362d"
|
|
2478
|
+
dependencies = [
|
|
2479
|
+
"bitflags",
|
|
2480
|
+
]
|
|
2481
|
+
|
|
2482
|
+
[[package]]
|
|
2483
|
+
name = "redox_syscall"
|
|
2484
|
+
version = "0.7.3"
|
|
2485
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2486
|
+
checksum = "6ce70a74e890531977d37e532c34d45e9055d2409ed08ddba14529471ed0be16"
|
|
2487
|
+
dependencies = [
|
|
2488
|
+
"bitflags",
|
|
2489
|
+
]
|
|
2490
|
+
|
|
2491
|
+
[[package]]
|
|
2492
|
+
name = "redox_users"
|
|
2493
|
+
version = "0.4.6"
|
|
2494
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2495
|
+
checksum = "ba009ff324d1fc1b900bd1fdb31564febe58a8ccc8a6fdbb93b543d33b13ca43"
|
|
2496
|
+
dependencies = [
|
|
2497
|
+
"getrandom 0.2.17",
|
|
2498
|
+
"libredox",
|
|
2499
|
+
"thiserror 1.0.69",
|
|
2500
|
+
]
|
|
2501
|
+
|
|
2502
|
+
[[package]]
|
|
2503
|
+
name = "redox_users"
|
|
2504
|
+
version = "0.5.2"
|
|
2505
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2506
|
+
checksum = "a4e608c6638b9c18977b00b475ac1f28d14e84b27d8d42f70e0bf1e3dec127ac"
|
|
2507
|
+
dependencies = [
|
|
2508
|
+
"getrandom 0.2.17",
|
|
2509
|
+
"libredox",
|
|
2510
|
+
"thiserror 2.0.18",
|
|
2511
|
+
]
|
|
2512
|
+
|
|
2513
|
+
[[package]]
|
|
2514
|
+
name = "ref-cast"
|
|
2515
|
+
version = "1.0.25"
|
|
2516
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2517
|
+
checksum = "f354300ae66f76f1c85c5f84693f0ce81d747e2c3f21a45fef496d89c960bf7d"
|
|
2518
|
+
dependencies = [
|
|
2519
|
+
"ref-cast-impl",
|
|
2520
|
+
]
|
|
2521
|
+
|
|
2522
|
+
[[package]]
|
|
2523
|
+
name = "ref-cast-impl"
|
|
2524
|
+
version = "1.0.25"
|
|
2525
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2526
|
+
checksum = "b7186006dcb21920990093f30e3dea63b7d6e977bf1256be20c3563a5db070da"
|
|
2527
|
+
dependencies = [
|
|
2528
|
+
"proc-macro2",
|
|
2529
|
+
"quote",
|
|
2530
|
+
"syn",
|
|
2531
|
+
]
|
|
2532
|
+
|
|
2533
|
+
[[package]]
|
|
2534
|
+
name = "regalloc2"
|
|
2535
|
+
version = "0.15.0"
|
|
2536
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2537
|
+
checksum = "952ddbfc6f9f64d006c3efd8c9851a6ba2f2b944ba94730db255d55006e0ffda"
|
|
2538
|
+
dependencies = [
|
|
2539
|
+
"allocator-api2",
|
|
2540
|
+
"bumpalo",
|
|
2541
|
+
"hashbrown 0.15.5",
|
|
2542
|
+
"log",
|
|
2543
|
+
"rustc-hash",
|
|
2544
|
+
"smallvec",
|
|
2545
|
+
]
|
|
2546
|
+
|
|
2547
|
+
[[package]]
|
|
2548
|
+
name = "regex"
|
|
2549
|
+
version = "1.12.3"
|
|
2550
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2551
|
+
checksum = "e10754a14b9137dd7b1e3e5b0493cc9171fdd105e0ab477f51b72e7f3ac0e276"
|
|
2552
|
+
dependencies = [
|
|
2553
|
+
"aho-corasick",
|
|
2554
|
+
"memchr",
|
|
2555
|
+
"regex-automata",
|
|
2556
|
+
"regex-syntax",
|
|
2557
|
+
]
|
|
2558
|
+
|
|
2559
|
+
[[package]]
|
|
2560
|
+
name = "regex-automata"
|
|
2561
|
+
version = "0.4.14"
|
|
2562
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2563
|
+
checksum = "6e1dd4122fc1595e8162618945476892eefca7b88c52820e74af6262213cae8f"
|
|
2564
|
+
dependencies = [
|
|
2565
|
+
"aho-corasick",
|
|
2566
|
+
"memchr",
|
|
2567
|
+
"regex-syntax",
|
|
2568
|
+
]
|
|
2569
|
+
|
|
2570
|
+
[[package]]
|
|
2571
|
+
name = "regex-syntax"
|
|
2572
|
+
version = "0.8.10"
|
|
2573
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2574
|
+
checksum = "dc897dd8d9e8bd1ed8cdad82b5966c3e0ecae09fb1907d58efaa013543185d0a"
|
|
2575
|
+
|
|
2576
|
+
[[package]]
|
|
2577
|
+
name = "reqwest"
|
|
2578
|
+
version = "0.13.2"
|
|
2579
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2580
|
+
checksum = "ab3f43e3283ab1488b624b44b0e988d0acea0b3214e694730a055cb6b2efa801"
|
|
2581
|
+
dependencies = [
|
|
2582
|
+
"base64",
|
|
2583
|
+
"bytes",
|
|
2584
|
+
"futures-core",
|
|
2585
|
+
"futures-util",
|
|
2586
|
+
"http",
|
|
2587
|
+
"http-body",
|
|
2588
|
+
"http-body-util",
|
|
2589
|
+
"hyper",
|
|
2590
|
+
"hyper-rustls",
|
|
2591
|
+
"hyper-util",
|
|
2592
|
+
"js-sys",
|
|
2593
|
+
"log",
|
|
2594
|
+
"percent-encoding",
|
|
2595
|
+
"pin-project-lite",
|
|
2596
|
+
"quinn",
|
|
2597
|
+
"rustls 0.23.37",
|
|
2598
|
+
"rustls-pki-types",
|
|
2599
|
+
"rustls-platform-verifier",
|
|
2600
|
+
"serde",
|
|
2601
|
+
"serde_json",
|
|
2602
|
+
"serde_urlencoded",
|
|
2603
|
+
"sync_wrapper",
|
|
2604
|
+
"tokio",
|
|
2605
|
+
"tokio-rustls 0.26.4",
|
|
2606
|
+
"tokio-util",
|
|
2607
|
+
"tower",
|
|
2608
|
+
"tower-http",
|
|
2609
|
+
"tower-service",
|
|
2610
|
+
"url",
|
|
2611
|
+
"wasm-bindgen",
|
|
2612
|
+
"wasm-bindgen-futures",
|
|
2613
|
+
"wasm-streams",
|
|
2614
|
+
"web-sys",
|
|
2615
|
+
]
|
|
2616
|
+
|
|
2617
|
+
[[package]]
|
|
2618
|
+
name = "ring"
|
|
2619
|
+
version = "0.17.14"
|
|
2620
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2621
|
+
checksum = "a4689e6c2294d81e88dc6261c768b63bc4fcdb852be6d1352498b114f61383b7"
|
|
2622
|
+
dependencies = [
|
|
2623
|
+
"cc",
|
|
2624
|
+
"cfg-if",
|
|
2625
|
+
"getrandom 0.2.17",
|
|
2626
|
+
"libc",
|
|
2627
|
+
"untrusted",
|
|
2628
|
+
"windows-sys 0.52.0",
|
|
2629
|
+
]
|
|
2630
|
+
|
|
2631
|
+
[[package]]
|
|
2632
|
+
name = "rustc-demangle"
|
|
2633
|
+
version = "0.1.27"
|
|
2634
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2635
|
+
checksum = "b50b8869d9fc858ce7266cce0194bd74df58b9d0e3f6df3a9fc8eb470d95c09d"
|
|
2636
|
+
|
|
2637
|
+
[[package]]
|
|
2638
|
+
name = "rustc-hash"
|
|
2639
|
+
version = "2.1.2"
|
|
2640
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2641
|
+
checksum = "94300abf3f1ae2e2b8ffb7b58043de3d399c73fa6f4b73826402a5c457614dbe"
|
|
2642
|
+
|
|
2643
|
+
[[package]]
|
|
2644
|
+
name = "rustix"
|
|
2645
|
+
version = "0.38.44"
|
|
2646
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2647
|
+
checksum = "fdb5bc1ae2baa591800df16c9ca78619bf65c0488b41b96ccec5d11220d8c154"
|
|
2648
|
+
dependencies = [
|
|
2649
|
+
"bitflags",
|
|
2650
|
+
"errno",
|
|
2651
|
+
"libc",
|
|
2652
|
+
"linux-raw-sys 0.4.15",
|
|
2653
|
+
"windows-sys 0.59.0",
|
|
2654
|
+
]
|
|
2655
|
+
|
|
2656
|
+
[[package]]
|
|
2657
|
+
name = "rustix"
|
|
2658
|
+
version = "1.1.4"
|
|
2659
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2660
|
+
checksum = "b6fe4565b9518b83ef4f91bb47ce29620ca828bd32cb7e408f0062e9930ba190"
|
|
2661
|
+
dependencies = [
|
|
2662
|
+
"bitflags",
|
|
2663
|
+
"errno",
|
|
2664
|
+
"libc",
|
|
2665
|
+
"linux-raw-sys 0.12.1",
|
|
2666
|
+
"windows-sys 0.61.2",
|
|
2667
|
+
]
|
|
2668
|
+
|
|
2669
|
+
[[package]]
|
|
2670
|
+
name = "rustix-linux-procfs"
|
|
2671
|
+
version = "0.1.1"
|
|
2672
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2673
|
+
checksum = "2fc84bf7e9aa16c4f2c758f27412dc9841341e16aa682d9c7ac308fe3ee12056"
|
|
2674
|
+
dependencies = [
|
|
2675
|
+
"once_cell",
|
|
2676
|
+
"rustix 1.1.4",
|
|
2677
|
+
]
|
|
2678
|
+
|
|
2679
|
+
[[package]]
|
|
2680
|
+
name = "rustls"
|
|
2681
|
+
version = "0.22.4"
|
|
2682
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2683
|
+
checksum = "bf4ef73721ac7bcd79b2b315da7779d8fc09718c6b3d2d1b2d94850eb8c18432"
|
|
2684
|
+
dependencies = [
|
|
2685
|
+
"log",
|
|
2686
|
+
"ring",
|
|
2687
|
+
"rustls-pki-types",
|
|
2688
|
+
"rustls-webpki 0.102.8",
|
|
2689
|
+
"subtle",
|
|
2690
|
+
"zeroize",
|
|
2691
|
+
]
|
|
2692
|
+
|
|
2693
|
+
[[package]]
|
|
2694
|
+
name = "rustls"
|
|
2695
|
+
version = "0.23.37"
|
|
2696
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2697
|
+
checksum = "758025cb5fccfd3bc2fd74708fd4682be41d99e5dff73c377c0646c6012c73a4"
|
|
2698
|
+
dependencies = [
|
|
2699
|
+
"aws-lc-rs",
|
|
2700
|
+
"once_cell",
|
|
2701
|
+
"rustls-pki-types",
|
|
2702
|
+
"rustls-webpki 0.103.10",
|
|
2703
|
+
"subtle",
|
|
2704
|
+
"zeroize",
|
|
2705
|
+
]
|
|
2706
|
+
|
|
2707
|
+
[[package]]
|
|
2708
|
+
name = "rustls-native-certs"
|
|
2709
|
+
version = "0.8.3"
|
|
2710
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2711
|
+
checksum = "612460d5f7bea540c490b2b6395d8e34a953e52b491accd6c86c8164c5932a63"
|
|
2712
|
+
dependencies = [
|
|
2713
|
+
"openssl-probe",
|
|
2714
|
+
"rustls-pki-types",
|
|
2715
|
+
"schannel",
|
|
2716
|
+
"security-framework",
|
|
2717
|
+
]
|
|
2718
|
+
|
|
2719
|
+
[[package]]
|
|
2720
|
+
name = "rustls-pki-types"
|
|
2721
|
+
version = "1.14.0"
|
|
2722
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2723
|
+
checksum = "be040f8b0a225e40375822a563fa9524378b9d63112f53e19ffff34df5d33fdd"
|
|
2724
|
+
dependencies = [
|
|
2725
|
+
"web-time",
|
|
2726
|
+
"zeroize",
|
|
2727
|
+
]
|
|
2728
|
+
|
|
2729
|
+
[[package]]
|
|
2730
|
+
name = "rustls-platform-verifier"
|
|
2731
|
+
version = "0.6.2"
|
|
2732
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2733
|
+
checksum = "1d99feebc72bae7ab76ba994bb5e121b8d83d910ca40b36e0921f53becc41784"
|
|
2734
|
+
dependencies = [
|
|
2735
|
+
"core-foundation",
|
|
2736
|
+
"core-foundation-sys",
|
|
2737
|
+
"jni",
|
|
2738
|
+
"log",
|
|
2739
|
+
"once_cell",
|
|
2740
|
+
"rustls 0.23.37",
|
|
2741
|
+
"rustls-native-certs",
|
|
2742
|
+
"rustls-platform-verifier-android",
|
|
2743
|
+
"rustls-webpki 0.103.10",
|
|
2744
|
+
"security-framework",
|
|
2745
|
+
"security-framework-sys",
|
|
2746
|
+
"webpki-root-certs",
|
|
2747
|
+
"windows-sys 0.61.2",
|
|
2748
|
+
]
|
|
2749
|
+
|
|
2750
|
+
[[package]]
|
|
2751
|
+
name = "rustls-platform-verifier-android"
|
|
2752
|
+
version = "0.1.1"
|
|
2753
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2754
|
+
checksum = "f87165f0995f63a9fbeea62b64d10b4d9d8e78ec6d7d51fb2125fda7bb36788f"
|
|
2755
|
+
|
|
2756
|
+
[[package]]
|
|
2757
|
+
name = "rustls-webpki"
|
|
2758
|
+
version = "0.102.8"
|
|
2759
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2760
|
+
checksum = "64ca1bc8749bd4cf37b5ce386cc146580777b4e8572c7b97baf22c83f444bee9"
|
|
2761
|
+
dependencies = [
|
|
2762
|
+
"ring",
|
|
2763
|
+
"rustls-pki-types",
|
|
2764
|
+
"untrusted",
|
|
2765
|
+
]
|
|
2766
|
+
|
|
2767
|
+
[[package]]
|
|
2768
|
+
name = "rustls-webpki"
|
|
2769
|
+
version = "0.103.10"
|
|
2770
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2771
|
+
checksum = "df33b2b81ac578cabaf06b89b0631153a3f416b0a886e8a7a1707fb51abbd1ef"
|
|
2772
|
+
dependencies = [
|
|
2773
|
+
"aws-lc-rs",
|
|
2774
|
+
"ring",
|
|
2775
|
+
"rustls-pki-types",
|
|
2776
|
+
"untrusted",
|
|
2777
|
+
]
|
|
2778
|
+
|
|
2779
|
+
[[package]]
|
|
2780
|
+
name = "rustversion"
|
|
2781
|
+
version = "1.0.22"
|
|
2782
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2783
|
+
checksum = "b39cdef0fa800fc44525c84ccb54a029961a8215f9619753635a9c0d2538d46d"
|
|
2784
|
+
|
|
2785
|
+
[[package]]
|
|
2786
|
+
name = "ryu"
|
|
2787
|
+
version = "1.0.23"
|
|
2788
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2789
|
+
checksum = "9774ba4a74de5f7b1c1451ed6cd5285a32eddb5cccb8cc655a4e50009e06477f"
|
|
2790
|
+
|
|
2791
|
+
[[package]]
|
|
2792
|
+
name = "same-file"
|
|
2793
|
+
version = "1.0.6"
|
|
2794
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2795
|
+
checksum = "93fc1dc3aaa9bfed95e02e6eadabb4baf7e3078b0bd1b4d7b6b0b68378900502"
|
|
2796
|
+
dependencies = [
|
|
2797
|
+
"winapi-util",
|
|
2798
|
+
]
|
|
2799
|
+
|
|
2800
|
+
[[package]]
|
|
2801
|
+
name = "schannel"
|
|
2802
|
+
version = "0.1.29"
|
|
2803
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2804
|
+
checksum = "91c1b7e4904c873ef0710c1f407dde2e6287de2bebc1bbbf7d430bb7cbffd939"
|
|
2805
|
+
dependencies = [
|
|
2806
|
+
"windows-sys 0.61.2",
|
|
2807
|
+
]
|
|
2808
|
+
|
|
2809
|
+
[[package]]
|
|
2810
|
+
name = "schemars"
|
|
2811
|
+
version = "0.9.0"
|
|
2812
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2813
|
+
checksum = "4cd191f9397d57d581cddd31014772520aa448f65ef991055d7f61582c65165f"
|
|
2814
|
+
dependencies = [
|
|
2815
|
+
"dyn-clone",
|
|
2816
|
+
"ref-cast",
|
|
2817
|
+
"serde",
|
|
2818
|
+
"serde_json",
|
|
2819
|
+
]
|
|
2820
|
+
|
|
2821
|
+
[[package]]
|
|
2822
|
+
name = "schemars"
|
|
2823
|
+
version = "1.2.1"
|
|
2824
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2825
|
+
checksum = "a2b42f36aa1cd011945615b92222f6bf73c599a102a300334cd7f8dbeec726cc"
|
|
2826
|
+
dependencies = [
|
|
2827
|
+
"dyn-clone",
|
|
2828
|
+
"ref-cast",
|
|
2829
|
+
"serde",
|
|
2830
|
+
"serde_json",
|
|
2831
|
+
]
|
|
2832
|
+
|
|
2833
|
+
[[package]]
|
|
2834
|
+
name = "scopeguard"
|
|
2835
|
+
version = "1.2.0"
|
|
2836
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2837
|
+
checksum = "94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49"
|
|
2838
|
+
|
|
2839
|
+
[[package]]
|
|
2840
|
+
name = "security-framework"
|
|
2841
|
+
version = "3.7.0"
|
|
2842
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2843
|
+
checksum = "b7f4bc775c73d9a02cde8bf7b2ec4c9d12743edf609006c7facc23998404cd1d"
|
|
2844
|
+
dependencies = [
|
|
2845
|
+
"bitflags",
|
|
2846
|
+
"core-foundation",
|
|
2847
|
+
"core-foundation-sys",
|
|
2848
|
+
"libc",
|
|
2849
|
+
"security-framework-sys",
|
|
2850
|
+
]
|
|
2851
|
+
|
|
2852
|
+
[[package]]
|
|
2853
|
+
name = "security-framework-sys"
|
|
2854
|
+
version = "2.17.0"
|
|
2855
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2856
|
+
checksum = "6ce2691df843ecc5d231c0b14ece2acc3efb62c0a398c7e1d875f3983ce020e3"
|
|
2857
|
+
dependencies = [
|
|
2858
|
+
"core-foundation-sys",
|
|
2859
|
+
"libc",
|
|
2860
|
+
]
|
|
2861
|
+
|
|
2862
|
+
[[package]]
|
|
2863
|
+
name = "semver"
|
|
2864
|
+
version = "1.0.28"
|
|
2865
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2866
|
+
checksum = "8a7852d02fc848982e0c167ef163aaff9cd91dc640ba85e263cb1ce46fae51cd"
|
|
2867
|
+
dependencies = [
|
|
2868
|
+
"serde",
|
|
2869
|
+
"serde_core",
|
|
2870
|
+
]
|
|
2871
|
+
|
|
2872
|
+
[[package]]
|
|
2873
|
+
name = "serde"
|
|
2874
|
+
version = "1.0.228"
|
|
2875
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2876
|
+
checksum = "9a8e94ea7f378bd32cbbd37198a4a91436180c5bb472411e48b5ec2e2124ae9e"
|
|
2877
|
+
dependencies = [
|
|
2878
|
+
"serde_core",
|
|
2879
|
+
"serde_derive",
|
|
2880
|
+
]
|
|
2881
|
+
|
|
2882
|
+
[[package]]
|
|
2883
|
+
name = "serde_core"
|
|
2884
|
+
version = "1.0.228"
|
|
2885
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2886
|
+
checksum = "41d385c7d4ca58e59fc732af25c3983b67ac852c1a25000afe1175de458b67ad"
|
|
2887
|
+
dependencies = [
|
|
2888
|
+
"serde_derive",
|
|
2889
|
+
]
|
|
2890
|
+
|
|
2891
|
+
[[package]]
|
|
2892
|
+
name = "serde_derive"
|
|
2893
|
+
version = "1.0.228"
|
|
2894
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2895
|
+
checksum = "d540f220d3187173da220f885ab66608367b6574e925011a9353e4badda91d79"
|
|
2896
|
+
dependencies = [
|
|
2897
|
+
"proc-macro2",
|
|
2898
|
+
"quote",
|
|
2899
|
+
"syn",
|
|
2900
|
+
]
|
|
2901
|
+
|
|
2902
|
+
[[package]]
|
|
2903
|
+
name = "serde_json"
|
|
2904
|
+
version = "1.0.149"
|
|
2905
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2906
|
+
checksum = "83fc039473c5595ace860d8c4fafa220ff474b3fc6bfdb4293327f1a37e94d86"
|
|
2907
|
+
dependencies = [
|
|
2908
|
+
"itoa",
|
|
2909
|
+
"memchr",
|
|
2910
|
+
"serde",
|
|
2911
|
+
"serde_core",
|
|
2912
|
+
"zmij",
|
|
2913
|
+
]
|
|
2914
|
+
|
|
2915
|
+
[[package]]
|
|
2916
|
+
name = "serde_path_to_error"
|
|
2917
|
+
version = "0.1.20"
|
|
2918
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2919
|
+
checksum = "10a9ff822e371bb5403e391ecd83e182e0e77ba7f6fe0160b795797109d1b457"
|
|
2920
|
+
dependencies = [
|
|
2921
|
+
"itoa",
|
|
2922
|
+
"serde",
|
|
2923
|
+
"serde_core",
|
|
2924
|
+
]
|
|
2925
|
+
|
|
2926
|
+
[[package]]
|
|
2927
|
+
name = "serde_spanned"
|
|
2928
|
+
version = "1.1.1"
|
|
2929
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2930
|
+
checksum = "6662b5879511e06e8999a8a235d848113e942c9124f211511b16466ee2995f26"
|
|
2931
|
+
dependencies = [
|
|
2932
|
+
"serde_core",
|
|
2933
|
+
]
|
|
2934
|
+
|
|
2935
|
+
[[package]]
|
|
2936
|
+
name = "serde_urlencoded"
|
|
2937
|
+
version = "0.7.1"
|
|
2938
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2939
|
+
checksum = "d3491c14715ca2294c4d6a88f15e84739788c1d030eed8c110436aafdaa2f3fd"
|
|
2940
|
+
dependencies = [
|
|
2941
|
+
"form_urlencoded",
|
|
2942
|
+
"itoa",
|
|
2943
|
+
"ryu",
|
|
2944
|
+
"serde",
|
|
2945
|
+
]
|
|
2946
|
+
|
|
2947
|
+
[[package]]
|
|
2948
|
+
name = "serde_with"
|
|
2949
|
+
version = "3.18.0"
|
|
2950
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2951
|
+
checksum = "dd5414fad8e6907dbdd5bc441a50ae8d6e26151a03b1de04d89a5576de61d01f"
|
|
2952
|
+
dependencies = [
|
|
2953
|
+
"base64",
|
|
2954
|
+
"chrono",
|
|
2955
|
+
"hex",
|
|
2956
|
+
"indexmap 1.9.3",
|
|
2957
|
+
"indexmap 2.13.1",
|
|
2958
|
+
"schemars 0.9.0",
|
|
2959
|
+
"schemars 1.2.1",
|
|
2960
|
+
"serde_core",
|
|
2961
|
+
"serde_json",
|
|
2962
|
+
"serde_with_macros",
|
|
2963
|
+
"time",
|
|
2964
|
+
]
|
|
2965
|
+
|
|
2966
|
+
[[package]]
|
|
2967
|
+
name = "serde_with_macros"
|
|
2968
|
+
version = "3.18.0"
|
|
2969
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2970
|
+
checksum = "d3db8978e608f1fe7357e211969fd9abdcae80bac1ba7a3369bb7eb6b404eb65"
|
|
2971
|
+
dependencies = [
|
|
2972
|
+
"darling 0.23.0",
|
|
2973
|
+
"proc-macro2",
|
|
2974
|
+
"quote",
|
|
2975
|
+
"syn",
|
|
2976
|
+
]
|
|
2977
|
+
|
|
2978
|
+
[[package]]
|
|
2979
|
+
name = "serde_yaml"
|
|
2980
|
+
version = "0.9.34+deprecated"
|
|
2981
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2982
|
+
checksum = "6a8b1a1a2ebf674015cc02edccce75287f1a0130d394307b36743c2f5d504b47"
|
|
2983
|
+
dependencies = [
|
|
2984
|
+
"indexmap 2.13.1",
|
|
2985
|
+
"itoa",
|
|
2986
|
+
"ryu",
|
|
2987
|
+
"serde",
|
|
2988
|
+
"unsafe-libyaml",
|
|
2989
|
+
]
|
|
2990
|
+
|
|
2991
|
+
[[package]]
|
|
2992
|
+
name = "sha2"
|
|
2993
|
+
version = "0.10.9"
|
|
2994
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2995
|
+
checksum = "a7507d819769d01a365ab707794a4084392c824f54a7a6a7862f8c3d0892b283"
|
|
2996
|
+
dependencies = [
|
|
2997
|
+
"cfg-if",
|
|
2998
|
+
"cpufeatures 0.2.17",
|
|
2999
|
+
"digest 0.10.7",
|
|
3000
|
+
]
|
|
3001
|
+
|
|
3002
|
+
[[package]]
|
|
3003
|
+
name = "sha2"
|
|
3004
|
+
version = "0.11.0"
|
|
3005
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3006
|
+
checksum = "446ba717509524cb3f22f17ecc096f10f4822d76ab5c0b9822c5f9c284e825f4"
|
|
3007
|
+
dependencies = [
|
|
3008
|
+
"cfg-if",
|
|
3009
|
+
"cpufeatures 0.3.0",
|
|
3010
|
+
"digest 0.11.2",
|
|
3011
|
+
]
|
|
3012
|
+
|
|
3013
|
+
[[package]]
|
|
3014
|
+
name = "sharded-slab"
|
|
3015
|
+
version = "0.1.7"
|
|
3016
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3017
|
+
checksum = "f40ca3c46823713e0d4209592e8d6e826aa57e928f09752619fc696c499637f6"
|
|
3018
|
+
dependencies = [
|
|
3019
|
+
"lazy_static",
|
|
3020
|
+
]
|
|
3021
|
+
|
|
3022
|
+
[[package]]
|
|
3023
|
+
name = "shellexpand"
|
|
3024
|
+
version = "3.1.2"
|
|
3025
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3026
|
+
checksum = "32824fab5e16e6c4d86dc1ba84489390419a39f97699852b66480bb87d297ed8"
|
|
3027
|
+
dependencies = [
|
|
3028
|
+
"dirs",
|
|
3029
|
+
]
|
|
3030
|
+
|
|
3031
|
+
[[package]]
|
|
3032
|
+
name = "shlex"
|
|
3033
|
+
version = "1.3.0"
|
|
3034
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3035
|
+
checksum = "0fda2ff0d084019ba4d7c6f371c95d8fd75ce3524c3cb8fb653a3023f6323e64"
|
|
3036
|
+
|
|
3037
|
+
[[package]]
|
|
3038
|
+
name = "signal-hook-registry"
|
|
3039
|
+
version = "1.4.8"
|
|
3040
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3041
|
+
checksum = "c4db69cba1110affc0e9f7bcd48bbf87b3f4fc7c61fc9155afd4c469eb3d6c1b"
|
|
3042
|
+
dependencies = [
|
|
3043
|
+
"errno",
|
|
3044
|
+
"libc",
|
|
3045
|
+
]
|
|
3046
|
+
|
|
3047
|
+
[[package]]
|
|
3048
|
+
name = "signature"
|
|
3049
|
+
version = "2.2.0"
|
|
3050
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3051
|
+
checksum = "77549399552de45a898a580c1b41d445bf730df867cc44e6c0233bbc4b8329de"
|
|
3052
|
+
dependencies = [
|
|
3053
|
+
"rand_core 0.6.4",
|
|
3054
|
+
]
|
|
3055
|
+
|
|
3056
|
+
[[package]]
|
|
3057
|
+
name = "sized-chunks"
|
|
3058
|
+
version = "0.6.5"
|
|
3059
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3060
|
+
checksum = "16d69225bde7a69b235da73377861095455d298f2b970996eec25ddbb42b3d1e"
|
|
3061
|
+
dependencies = [
|
|
3062
|
+
"bitmaps",
|
|
3063
|
+
"typenum",
|
|
3064
|
+
]
|
|
3065
|
+
|
|
3066
|
+
[[package]]
|
|
3067
|
+
name = "slab"
|
|
3068
|
+
version = "0.4.12"
|
|
3069
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3070
|
+
checksum = "0c790de23124f9ab44544d7ac05d60440adc586479ce501c1d6d7da3cd8c9cf5"
|
|
3071
|
+
|
|
3072
|
+
[[package]]
|
|
3073
|
+
name = "smallvec"
|
|
3074
|
+
version = "1.15.1"
|
|
3075
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3076
|
+
checksum = "67b1b7a3b5fe4f1376887184045fcf45c69e92af734b7aaddc05fb777b6fbd03"
|
|
3077
|
+
dependencies = [
|
|
3078
|
+
"serde",
|
|
3079
|
+
]
|
|
3080
|
+
|
|
3081
|
+
[[package]]
|
|
3082
|
+
name = "socket2"
|
|
3083
|
+
version = "0.6.3"
|
|
3084
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3085
|
+
checksum = "3a766e1110788c36f4fa1c2b71b387a7815aa65f88ce0229841826633d93723e"
|
|
3086
|
+
dependencies = [
|
|
3087
|
+
"libc",
|
|
3088
|
+
"windows-sys 0.61.2",
|
|
3089
|
+
]
|
|
3090
|
+
|
|
3091
|
+
[[package]]
|
|
3092
|
+
name = "stable_deref_trait"
|
|
3093
|
+
version = "1.2.1"
|
|
3094
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3095
|
+
checksum = "6ce2be8dc25455e1f91df71bfa12ad37d7af1092ae736f3a6cd0e37bc7810596"
|
|
3096
|
+
|
|
3097
|
+
[[package]]
|
|
3098
|
+
name = "strsim"
|
|
3099
|
+
version = "0.11.1"
|
|
3100
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3101
|
+
checksum = "7da8b5736845d9f2fcb837ea5d9e2628564b3b043a70948a3f0b778838c5fb4f"
|
|
3102
|
+
|
|
3103
|
+
[[package]]
|
|
3104
|
+
name = "strum"
|
|
3105
|
+
version = "0.27.2"
|
|
3106
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3107
|
+
checksum = "af23d6f6c1a224baef9d3f61e287d2761385a5b88fdab4eb4c6f11aeb54c4bcf"
|
|
3108
|
+
|
|
3109
|
+
[[package]]
|
|
3110
|
+
name = "strum_macros"
|
|
3111
|
+
version = "0.27.2"
|
|
3112
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3113
|
+
checksum = "7695ce3845ea4b33927c055a39dc438a45b059f7c1b3d91d38d10355fb8cbca7"
|
|
3114
|
+
dependencies = [
|
|
3115
|
+
"heck",
|
|
3116
|
+
"proc-macro2",
|
|
3117
|
+
"quote",
|
|
3118
|
+
"syn",
|
|
3119
|
+
]
|
|
3120
|
+
|
|
3121
|
+
[[package]]
|
|
3122
|
+
name = "subtle"
|
|
3123
|
+
version = "2.6.1"
|
|
3124
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3125
|
+
checksum = "13c2bddecc57b384dee18652358fb23172facb8a2c51ccc10d74c157bdea3292"
|
|
3126
|
+
|
|
3127
|
+
[[package]]
|
|
3128
|
+
name = "syn"
|
|
3129
|
+
version = "2.0.117"
|
|
3130
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3131
|
+
checksum = "e665b8803e7b1d2a727f4023456bbbbe74da67099c585258af0ad9c5013b9b99"
|
|
3132
|
+
dependencies = [
|
|
3133
|
+
"proc-macro2",
|
|
3134
|
+
"quote",
|
|
3135
|
+
"unicode-ident",
|
|
3136
|
+
]
|
|
3137
|
+
|
|
3138
|
+
[[package]]
|
|
3139
|
+
name = "sync_wrapper"
|
|
3140
|
+
version = "1.0.2"
|
|
3141
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3142
|
+
checksum = "0bf256ce5efdfa370213c1dabab5935a12e49f2c58d15e9eac2870d3b4f27263"
|
|
3143
|
+
dependencies = [
|
|
3144
|
+
"futures-core",
|
|
3145
|
+
]
|
|
3146
|
+
|
|
3147
|
+
[[package]]
|
|
3148
|
+
name = "synstructure"
|
|
3149
|
+
version = "0.13.2"
|
|
3150
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3151
|
+
checksum = "728a70f3dbaf5bab7f0c4b1ac8d7ae5ea60a4b5549c8a5914361c99147a709d2"
|
|
3152
|
+
dependencies = [
|
|
3153
|
+
"proc-macro2",
|
|
3154
|
+
"quote",
|
|
3155
|
+
"syn",
|
|
3156
|
+
]
|
|
3157
|
+
|
|
3158
|
+
[[package]]
|
|
3159
|
+
name = "system-interface"
|
|
3160
|
+
version = "0.27.3"
|
|
3161
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3162
|
+
checksum = "cc4592f674ce18521c2a81483873a49596655b179f71c5e05d10c1fe66c78745"
|
|
3163
|
+
dependencies = [
|
|
3164
|
+
"bitflags",
|
|
3165
|
+
"cap-fs-ext",
|
|
3166
|
+
"cap-std",
|
|
3167
|
+
"fd-lock",
|
|
3168
|
+
"io-lifetimes",
|
|
3169
|
+
"rustix 0.38.44",
|
|
3170
|
+
"windows-sys 0.59.0",
|
|
3171
|
+
"winx",
|
|
3172
|
+
]
|
|
3173
|
+
|
|
3174
|
+
[[package]]
|
|
3175
|
+
name = "tar"
|
|
3176
|
+
version = "0.4.45"
|
|
3177
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3178
|
+
checksum = "22692a6476a21fa75fdfc11d452fda482af402c008cdbaf3476414e122040973"
|
|
3179
|
+
dependencies = [
|
|
3180
|
+
"filetime",
|
|
3181
|
+
"libc",
|
|
3182
|
+
"xattr",
|
|
3183
|
+
]
|
|
3184
|
+
|
|
3185
|
+
[[package]]
|
|
3186
|
+
name = "target-lexicon"
|
|
3187
|
+
version = "0.13.5"
|
|
3188
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3189
|
+
checksum = "adb6935a6f5c20170eeceb1a3835a49e12e19d792f6dd344ccc76a985ca5a6ca"
|
|
3190
|
+
|
|
3191
|
+
[[package]]
|
|
3192
|
+
name = "tempfile"
|
|
3193
|
+
version = "3.27.0"
|
|
3194
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3195
|
+
checksum = "32497e9a4c7b38532efcdebeef879707aa9f794296a4f0244f6f69e9bc8574bd"
|
|
3196
|
+
dependencies = [
|
|
3197
|
+
"fastrand",
|
|
3198
|
+
"getrandom 0.4.2",
|
|
3199
|
+
"once_cell",
|
|
3200
|
+
"rustix 1.1.4",
|
|
3201
|
+
"windows-sys 0.61.2",
|
|
3202
|
+
]
|
|
3203
|
+
|
|
3204
|
+
[[package]]
|
|
3205
|
+
name = "termcolor"
|
|
3206
|
+
version = "1.4.1"
|
|
3207
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3208
|
+
checksum = "06794f8f6c5c898b3275aebefa6b8a1cb24cd2c6c79397ab15774837a0bc5755"
|
|
3209
|
+
dependencies = [
|
|
3210
|
+
"winapi-util",
|
|
3211
|
+
]
|
|
3212
|
+
|
|
3213
|
+
[[package]]
|
|
3214
|
+
name = "thiserror"
|
|
3215
|
+
version = "1.0.69"
|
|
3216
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3217
|
+
checksum = "b6aaf5339b578ea85b50e080feb250a3e8ae8cfcdff9a461c9ec2904bc923f52"
|
|
3218
|
+
dependencies = [
|
|
3219
|
+
"thiserror-impl 1.0.69",
|
|
3220
|
+
]
|
|
3221
|
+
|
|
3222
|
+
[[package]]
|
|
3223
|
+
name = "thiserror"
|
|
3224
|
+
version = "2.0.18"
|
|
3225
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3226
|
+
checksum = "4288b5bcbc7920c07a1149a35cf9590a2aa808e0bc1eafaade0b80947865fbc4"
|
|
3227
|
+
dependencies = [
|
|
3228
|
+
"thiserror-impl 2.0.18",
|
|
3229
|
+
]
|
|
3230
|
+
|
|
3231
|
+
[[package]]
|
|
3232
|
+
name = "thiserror-impl"
|
|
3233
|
+
version = "1.0.69"
|
|
3234
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3235
|
+
checksum = "4fee6c4efc90059e10f81e6d42c60a18f76588c3d74cb83a0b242a2b6c7504c1"
|
|
3236
|
+
dependencies = [
|
|
3237
|
+
"proc-macro2",
|
|
3238
|
+
"quote",
|
|
3239
|
+
"syn",
|
|
3240
|
+
]
|
|
3241
|
+
|
|
3242
|
+
[[package]]
|
|
3243
|
+
name = "thiserror-impl"
|
|
3244
|
+
version = "2.0.18"
|
|
3245
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3246
|
+
checksum = "ebc4ee7f67670e9b64d05fa4253e753e016c6c95ff35b89b7941d6b856dec1d5"
|
|
3247
|
+
dependencies = [
|
|
3248
|
+
"proc-macro2",
|
|
3249
|
+
"quote",
|
|
3250
|
+
"syn",
|
|
3251
|
+
]
|
|
3252
|
+
|
|
3253
|
+
[[package]]
|
|
3254
|
+
name = "thread_local"
|
|
3255
|
+
version = "1.1.9"
|
|
3256
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3257
|
+
checksum = "f60246a4944f24f6e018aa17cdeffb7818b76356965d03b07d6a9886e8962185"
|
|
3258
|
+
dependencies = [
|
|
3259
|
+
"cfg-if",
|
|
3260
|
+
]
|
|
3261
|
+
|
|
3262
|
+
[[package]]
|
|
3263
|
+
name = "time"
|
|
3264
|
+
version = "0.3.47"
|
|
3265
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3266
|
+
checksum = "743bd48c283afc0388f9b8827b976905fb217ad9e647fae3a379a9283c4def2c"
|
|
3267
|
+
dependencies = [
|
|
3268
|
+
"deranged",
|
|
3269
|
+
"itoa",
|
|
3270
|
+
"num-conv",
|
|
3271
|
+
"powerfmt",
|
|
3272
|
+
"serde_core",
|
|
3273
|
+
"time-core",
|
|
3274
|
+
"time-macros",
|
|
3275
|
+
]
|
|
3276
|
+
|
|
3277
|
+
[[package]]
|
|
3278
|
+
name = "time-core"
|
|
3279
|
+
version = "0.1.8"
|
|
3280
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3281
|
+
checksum = "7694e1cfe791f8d31026952abf09c69ca6f6fa4e1a1229e18988f06a04a12dca"
|
|
3282
|
+
|
|
3283
|
+
[[package]]
|
|
3284
|
+
name = "time-macros"
|
|
3285
|
+
version = "0.2.27"
|
|
3286
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3287
|
+
checksum = "2e70e4c5a0e0a8a4823ad65dfe1a6930e4f4d756dcd9dd7939022b5e8c501215"
|
|
3288
|
+
dependencies = [
|
|
3289
|
+
"num-conv",
|
|
3290
|
+
"time-core",
|
|
3291
|
+
]
|
|
3292
|
+
|
|
3293
|
+
[[package]]
|
|
3294
|
+
name = "tinystr"
|
|
3295
|
+
version = "0.8.3"
|
|
3296
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3297
|
+
checksum = "c8323304221c2a851516f22236c5722a72eaa19749016521d6dff0824447d96d"
|
|
3298
|
+
dependencies = [
|
|
3299
|
+
"displaydoc",
|
|
3300
|
+
"zerovec",
|
|
3301
|
+
]
|
|
3302
|
+
|
|
3303
|
+
[[package]]
|
|
3304
|
+
name = "tinyvec"
|
|
3305
|
+
version = "1.11.0"
|
|
3306
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3307
|
+
checksum = "3e61e67053d25a4e82c844e8424039d9745781b3fc4f32b8d55ed50f5f667ef3"
|
|
3308
|
+
dependencies = [
|
|
3309
|
+
"tinyvec_macros",
|
|
3310
|
+
]
|
|
3311
|
+
|
|
3312
|
+
[[package]]
|
|
3313
|
+
name = "tinyvec_macros"
|
|
3314
|
+
version = "0.1.1"
|
|
3315
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3316
|
+
checksum = "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20"
|
|
3317
|
+
|
|
3318
|
+
[[package]]
|
|
3319
|
+
name = "tokio"
|
|
3320
|
+
version = "1.51.0"
|
|
3321
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3322
|
+
checksum = "2bd1c4c0fc4a7ab90fc15ef6daaa3ec3b893f004f915f2392557ed23237820cd"
|
|
3323
|
+
dependencies = [
|
|
3324
|
+
"bytes",
|
|
3325
|
+
"libc",
|
|
3326
|
+
"mio",
|
|
3327
|
+
"parking_lot",
|
|
3328
|
+
"pin-project-lite",
|
|
3329
|
+
"signal-hook-registry",
|
|
3330
|
+
"socket2",
|
|
3331
|
+
"tokio-macros",
|
|
3332
|
+
"windows-sys 0.61.2",
|
|
3333
|
+
]
|
|
3334
|
+
|
|
3335
|
+
[[package]]
|
|
3336
|
+
name = "tokio-macros"
|
|
3337
|
+
version = "2.7.0"
|
|
3338
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3339
|
+
checksum = "385a6cb71ab9ab790c5fe8d67f1645e6c450a7ce006a33de03daa956cf70a496"
|
|
3340
|
+
dependencies = [
|
|
3341
|
+
"proc-macro2",
|
|
3342
|
+
"quote",
|
|
3343
|
+
"syn",
|
|
3344
|
+
]
|
|
3345
|
+
|
|
3346
|
+
[[package]]
|
|
3347
|
+
name = "tokio-rustls"
|
|
3348
|
+
version = "0.25.0"
|
|
3349
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3350
|
+
checksum = "775e0c0f0adb3a2f22a00c4745d728b479985fc15ee7ca6a2608388c5569860f"
|
|
3351
|
+
dependencies = [
|
|
3352
|
+
"rustls 0.22.4",
|
|
3353
|
+
"rustls-pki-types",
|
|
3354
|
+
"tokio",
|
|
3355
|
+
]
|
|
3356
|
+
|
|
3357
|
+
[[package]]
|
|
3358
|
+
name = "tokio-rustls"
|
|
3359
|
+
version = "0.26.4"
|
|
3360
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3361
|
+
checksum = "1729aa945f29d91ba541258c8df89027d5792d85a8841fb65e8bf0f4ede4ef61"
|
|
3362
|
+
dependencies = [
|
|
3363
|
+
"rustls 0.23.37",
|
|
3364
|
+
"tokio",
|
|
3365
|
+
]
|
|
3366
|
+
|
|
3367
|
+
[[package]]
|
|
3368
|
+
name = "tokio-stream"
|
|
3369
|
+
version = "0.1.18"
|
|
3370
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3371
|
+
checksum = "32da49809aab5c3bc678af03902d4ccddea2a87d028d86392a4b1560c6906c70"
|
|
3372
|
+
dependencies = [
|
|
3373
|
+
"futures-core",
|
|
3374
|
+
"pin-project-lite",
|
|
3375
|
+
"tokio",
|
|
3376
|
+
]
|
|
3377
|
+
|
|
3378
|
+
[[package]]
|
|
3379
|
+
name = "tokio-util"
|
|
3380
|
+
version = "0.7.18"
|
|
3381
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3382
|
+
checksum = "9ae9cec805b01e8fc3fd2fe289f89149a9b66dd16786abd8b19cfa7b48cb0098"
|
|
3383
|
+
dependencies = [
|
|
3384
|
+
"bytes",
|
|
3385
|
+
"futures-core",
|
|
3386
|
+
"futures-sink",
|
|
3387
|
+
"pin-project-lite",
|
|
3388
|
+
"tokio",
|
|
3389
|
+
]
|
|
3390
|
+
|
|
3391
|
+
[[package]]
|
|
3392
|
+
name = "toml"
|
|
3393
|
+
version = "0.9.12+spec-1.1.0"
|
|
3394
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3395
|
+
checksum = "cf92845e79fc2e2def6a5d828f0801e29a2f8acc037becc5ab08595c7d5e9863"
|
|
3396
|
+
dependencies = [
|
|
3397
|
+
"indexmap 2.13.1",
|
|
3398
|
+
"serde_core",
|
|
3399
|
+
"serde_spanned",
|
|
3400
|
+
"toml_datetime 0.7.5+spec-1.1.0",
|
|
3401
|
+
"toml_parser",
|
|
3402
|
+
"toml_writer",
|
|
3403
|
+
"winnow 0.7.15",
|
|
3404
|
+
]
|
|
3405
|
+
|
|
3406
|
+
[[package]]
|
|
3407
|
+
name = "toml"
|
|
3408
|
+
version = "1.1.2+spec-1.1.0"
|
|
3409
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3410
|
+
checksum = "81f3d15e84cbcd896376e6730314d59fb5a87f31e4b038454184435cd57defee"
|
|
3411
|
+
dependencies = [
|
|
3412
|
+
"indexmap 2.13.1",
|
|
3413
|
+
"serde_core",
|
|
3414
|
+
"serde_spanned",
|
|
3415
|
+
"toml_datetime 1.1.1+spec-1.1.0",
|
|
3416
|
+
"toml_parser",
|
|
3417
|
+
"toml_writer",
|
|
3418
|
+
"winnow 1.0.1",
|
|
3419
|
+
]
|
|
3420
|
+
|
|
3421
|
+
[[package]]
|
|
3422
|
+
name = "toml_datetime"
|
|
3423
|
+
version = "0.7.5+spec-1.1.0"
|
|
3424
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3425
|
+
checksum = "92e1cfed4a3038bc5a127e35a2d360f145e1f4b971b551a2ba5fd7aedf7e1347"
|
|
3426
|
+
dependencies = [
|
|
3427
|
+
"serde_core",
|
|
3428
|
+
]
|
|
3429
|
+
|
|
3430
|
+
[[package]]
|
|
3431
|
+
name = "toml_datetime"
|
|
3432
|
+
version = "1.1.1+spec-1.1.0"
|
|
3433
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3434
|
+
checksum = "3165f65f62e28e0115a00b2ebdd37eb6f3b641855f9d636d3cd4103767159ad7"
|
|
3435
|
+
dependencies = [
|
|
3436
|
+
"serde_core",
|
|
3437
|
+
]
|
|
3438
|
+
|
|
3439
|
+
[[package]]
|
|
3440
|
+
name = "toml_parser"
|
|
3441
|
+
version = "1.1.2+spec-1.1.0"
|
|
3442
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3443
|
+
checksum = "a2abe9b86193656635d2411dc43050282ca48aa31c2451210f4202550afb7526"
|
|
3444
|
+
dependencies = [
|
|
3445
|
+
"winnow 1.0.1",
|
|
3446
|
+
]
|
|
3447
|
+
|
|
3448
|
+
[[package]]
|
|
3449
|
+
name = "toml_writer"
|
|
3450
|
+
version = "1.1.1+spec-1.1.0"
|
|
3451
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3452
|
+
checksum = "756daf9b1013ebe47a8776667b466417e2d4c5679d441c26230efd9ef78692db"
|
|
3453
|
+
|
|
3454
|
+
[[package]]
|
|
3455
|
+
name = "tower"
|
|
3456
|
+
version = "0.5.3"
|
|
3457
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3458
|
+
checksum = "ebe5ef63511595f1344e2d5cfa636d973292adc0eec1f0ad45fae9f0851ab1d4"
|
|
3459
|
+
dependencies = [
|
|
3460
|
+
"futures-core",
|
|
3461
|
+
"futures-util",
|
|
3462
|
+
"pin-project-lite",
|
|
3463
|
+
"sync_wrapper",
|
|
3464
|
+
"tokio",
|
|
3465
|
+
"tower-layer",
|
|
3466
|
+
"tower-service",
|
|
3467
|
+
"tracing",
|
|
3468
|
+
]
|
|
3469
|
+
|
|
3470
|
+
[[package]]
|
|
3471
|
+
name = "tower-http"
|
|
3472
|
+
version = "0.6.8"
|
|
3473
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3474
|
+
checksum = "d4e6559d53cc268e5031cd8429d05415bc4cb4aefc4aa5d6cc35fbf5b924a1f8"
|
|
3475
|
+
dependencies = [
|
|
3476
|
+
"bitflags",
|
|
3477
|
+
"bytes",
|
|
3478
|
+
"futures-util",
|
|
3479
|
+
"http",
|
|
3480
|
+
"http-body",
|
|
3481
|
+
"iri-string",
|
|
3482
|
+
"pin-project-lite",
|
|
3483
|
+
"tower",
|
|
3484
|
+
"tower-layer",
|
|
3485
|
+
"tower-service",
|
|
3486
|
+
]
|
|
3487
|
+
|
|
3488
|
+
[[package]]
|
|
3489
|
+
name = "tower-layer"
|
|
3490
|
+
version = "0.3.3"
|
|
3491
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3492
|
+
checksum = "121c2a6cda46980bb0fcd1647ffaf6cd3fc79a013de288782836f6df9c48780e"
|
|
3493
|
+
|
|
3494
|
+
[[package]]
|
|
3495
|
+
name = "tower-service"
|
|
3496
|
+
version = "0.3.3"
|
|
3497
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3498
|
+
checksum = "8df9b6e13f2d32c91b9bd719c00d1958837bc7dec474d94952798cc8e69eeec3"
|
|
3499
|
+
|
|
3500
|
+
[[package]]
|
|
3501
|
+
name = "tracing"
|
|
3502
|
+
version = "0.1.44"
|
|
3503
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3504
|
+
checksum = "63e71662fa4b2a2c3a26f570f037eb95bb1f85397f3cd8076caed2f026a6d100"
|
|
3505
|
+
dependencies = [
|
|
3506
|
+
"log",
|
|
3507
|
+
"pin-project-lite",
|
|
3508
|
+
"tracing-attributes",
|
|
3509
|
+
"tracing-core",
|
|
3510
|
+
]
|
|
3511
|
+
|
|
3512
|
+
[[package]]
|
|
3513
|
+
name = "tracing-attributes"
|
|
3514
|
+
version = "0.1.31"
|
|
3515
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3516
|
+
checksum = "7490cfa5ec963746568740651ac6781f701c9c5ea257c58e057f3ba8cf69e8da"
|
|
3517
|
+
dependencies = [
|
|
3518
|
+
"proc-macro2",
|
|
3519
|
+
"quote",
|
|
3520
|
+
"syn",
|
|
3521
|
+
]
|
|
3522
|
+
|
|
3523
|
+
[[package]]
|
|
3524
|
+
name = "tracing-core"
|
|
3525
|
+
version = "0.1.36"
|
|
3526
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3527
|
+
checksum = "db97caf9d906fbde555dd62fa95ddba9eecfd14cb388e4f491a66d74cd5fb79a"
|
|
3528
|
+
dependencies = [
|
|
3529
|
+
"once_cell",
|
|
3530
|
+
"valuable",
|
|
3531
|
+
]
|
|
3532
|
+
|
|
3533
|
+
[[package]]
|
|
3534
|
+
name = "tracing-log"
|
|
3535
|
+
version = "0.2.0"
|
|
3536
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3537
|
+
checksum = "ee855f1f400bd0e5c02d150ae5de3840039a3f54b025156404e34c23c03f47c3"
|
|
3538
|
+
dependencies = [
|
|
3539
|
+
"log",
|
|
3540
|
+
"once_cell",
|
|
3541
|
+
"tracing-core",
|
|
3542
|
+
]
|
|
3543
|
+
|
|
3544
|
+
[[package]]
|
|
3545
|
+
name = "tracing-subscriber"
|
|
3546
|
+
version = "0.3.23"
|
|
3547
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3548
|
+
checksum = "cb7f578e5945fb242538965c2d0b04418d38ec25c79d160cd279bf0731c8d319"
|
|
3549
|
+
dependencies = [
|
|
3550
|
+
"matchers",
|
|
3551
|
+
"nu-ansi-term",
|
|
3552
|
+
"once_cell",
|
|
3553
|
+
"regex-automata",
|
|
3554
|
+
"sharded-slab",
|
|
3555
|
+
"smallvec",
|
|
3556
|
+
"thread_local",
|
|
3557
|
+
"tracing",
|
|
3558
|
+
"tracing-core",
|
|
3559
|
+
"tracing-log",
|
|
3560
|
+
]
|
|
3561
|
+
|
|
3562
|
+
[[package]]
|
|
3563
|
+
name = "try-lock"
|
|
3564
|
+
version = "0.2.5"
|
|
3565
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3566
|
+
checksum = "e421abadd41a4225275504ea4d6566923418b7f05506fbc9c0fe86ba7396114b"
|
|
3567
|
+
|
|
3568
|
+
[[package]]
|
|
3569
|
+
name = "typenum"
|
|
3570
|
+
version = "1.19.0"
|
|
3571
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3572
|
+
checksum = "562d481066bde0658276a35467c4af00bdc6ee726305698a55b86e61d7ad82bb"
|
|
3573
|
+
|
|
3574
|
+
[[package]]
|
|
3575
|
+
name = "unicase"
|
|
3576
|
+
version = "2.9.0"
|
|
3577
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3578
|
+
checksum = "dbc4bc3a9f746d862c45cb89d705aa10f187bb96c76001afab07a0d35ce60142"
|
|
3579
|
+
|
|
3580
|
+
[[package]]
|
|
3581
|
+
name = "unicode-ident"
|
|
3582
|
+
version = "1.0.24"
|
|
3583
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3584
|
+
checksum = "e6e4313cd5fcd3dad5cafa179702e2b244f760991f45397d14d4ebf38247da75"
|
|
3585
|
+
|
|
3586
|
+
[[package]]
|
|
3587
|
+
name = "unicode-normalization"
|
|
3588
|
+
version = "0.1.25"
|
|
3589
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3590
|
+
checksum = "5fd4f6878c9cb28d874b009da9e8d183b5abc80117c40bbd187a1fde336be6e8"
|
|
3591
|
+
dependencies = [
|
|
3592
|
+
"tinyvec",
|
|
3593
|
+
]
|
|
3594
|
+
|
|
3595
|
+
[[package]]
|
|
3596
|
+
name = "unicode-width"
|
|
3597
|
+
version = "0.2.2"
|
|
3598
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3599
|
+
checksum = "b4ac048d71ede7ee76d585517add45da530660ef4390e49b098733c6e897f254"
|
|
3600
|
+
|
|
3601
|
+
[[package]]
|
|
3602
|
+
name = "unicode-xid"
|
|
3603
|
+
version = "0.2.6"
|
|
3604
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3605
|
+
checksum = "ebc1c04c71510c7f702b52b7c350734c9ff1295c464a03335b00bb84fc54f853"
|
|
3606
|
+
|
|
3607
|
+
[[package]]
|
|
3608
|
+
name = "unit-prefix"
|
|
3609
|
+
version = "0.5.2"
|
|
3610
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3611
|
+
checksum = "81e544489bf3d8ef66c953931f56617f423cd4b5494be343d9b9d3dda037b9a3"
|
|
3612
|
+
|
|
3613
|
+
[[package]]
|
|
3614
|
+
name = "unsafe-libyaml"
|
|
3615
|
+
version = "0.2.11"
|
|
3616
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3617
|
+
checksum = "673aac59facbab8a9007c7f6108d11f63b603f7cabff99fabf650fea5c32b861"
|
|
3618
|
+
|
|
3619
|
+
[[package]]
|
|
3620
|
+
name = "untrusted"
|
|
3621
|
+
version = "0.9.0"
|
|
3622
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3623
|
+
checksum = "8ecb6da28b8a351d773b68d5825ac39017e680750f980f3a1a85cd8dd28a47c1"
|
|
3624
|
+
|
|
3625
|
+
[[package]]
|
|
3626
|
+
name = "url"
|
|
3627
|
+
version = "2.5.8"
|
|
3628
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3629
|
+
checksum = "ff67a8a4397373c3ef660812acab3268222035010ab8680ec4215f38ba3d0eed"
|
|
3630
|
+
dependencies = [
|
|
3631
|
+
"form_urlencoded",
|
|
3632
|
+
"idna",
|
|
3633
|
+
"percent-encoding",
|
|
3634
|
+
"serde",
|
|
3635
|
+
]
|
|
3636
|
+
|
|
3637
|
+
[[package]]
|
|
3638
|
+
name = "utf8_iter"
|
|
3639
|
+
version = "1.0.4"
|
|
3640
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3641
|
+
checksum = "b6c140620e7ffbb22c2dee59cafe6084a59b5ffc27a8859a5f0d494b5d52b6be"
|
|
3642
|
+
|
|
3643
|
+
[[package]]
|
|
3644
|
+
name = "utf8parse"
|
|
3645
|
+
version = "0.2.2"
|
|
3646
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3647
|
+
checksum = "06abde3611657adf66d383f00b093d7faecc7fa57071cce2578660c9f1010821"
|
|
3648
|
+
|
|
3649
|
+
[[package]]
|
|
3650
|
+
name = "uuid"
|
|
3651
|
+
version = "1.23.0"
|
|
3652
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3653
|
+
checksum = "5ac8b6f42ead25368cf5b098aeb3dc8a1a2c05a3eee8a9a1a68c640edbfc79d9"
|
|
3654
|
+
dependencies = [
|
|
3655
|
+
"js-sys",
|
|
3656
|
+
"wasm-bindgen",
|
|
3657
|
+
]
|
|
3658
|
+
|
|
3659
|
+
[[package]]
|
|
3660
|
+
name = "valuable"
|
|
3661
|
+
version = "0.1.1"
|
|
3662
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3663
|
+
checksum = "ba73ea9cf16a25df0c8caa16c51acb937d5712a8429db78a3ee29d5dcacd3a65"
|
|
3664
|
+
|
|
3665
|
+
[[package]]
|
|
3666
|
+
name = "version_check"
|
|
3667
|
+
version = "0.9.5"
|
|
3668
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3669
|
+
checksum = "0b928f33d975fc6ad9f86c8f283853ad26bdd5b10b7f1542aa2fa15e2289105a"
|
|
3670
|
+
|
|
3671
|
+
[[package]]
|
|
3672
|
+
name = "walkdir"
|
|
3673
|
+
version = "2.5.0"
|
|
3674
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3675
|
+
checksum = "29790946404f91d9c5d06f9874efddea1dc06c5efe94541a7d6863108e3a5e4b"
|
|
3676
|
+
dependencies = [
|
|
3677
|
+
"same-file",
|
|
3678
|
+
"winapi-util",
|
|
3679
|
+
]
|
|
3680
|
+
|
|
3681
|
+
[[package]]
|
|
3682
|
+
name = "want"
|
|
3683
|
+
version = "0.3.1"
|
|
3684
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3685
|
+
checksum = "bfa7760aed19e106de2c7c0b581b509f2f25d3dacaf737cb82ac61bc6d760b0e"
|
|
3686
|
+
dependencies = [
|
|
3687
|
+
"try-lock",
|
|
3688
|
+
]
|
|
3689
|
+
|
|
3690
|
+
[[package]]
|
|
3691
|
+
name = "wasi"
|
|
3692
|
+
version = "0.11.1+wasi-snapshot-preview1"
|
|
3693
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3694
|
+
checksum = "ccf3ec651a847eb01de73ccad15eb7d99f80485de043efb2f370cd654f4ea44b"
|
|
3695
|
+
|
|
3696
|
+
[[package]]
|
|
3697
|
+
name = "wasip2"
|
|
3698
|
+
version = "1.0.2+wasi-0.2.9"
|
|
3699
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3700
|
+
checksum = "9517f9239f02c069db75e65f174b3da828fe5f5b945c4dd26bd25d89c03ebcf5"
|
|
3701
|
+
dependencies = [
|
|
3702
|
+
"wit-bindgen",
|
|
3703
|
+
]
|
|
3704
|
+
|
|
3705
|
+
[[package]]
|
|
3706
|
+
name = "wasip3"
|
|
3707
|
+
version = "0.4.0+wasi-0.3.0-rc-2026-01-06"
|
|
3708
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3709
|
+
checksum = "5428f8bf88ea5ddc08faddef2ac4a67e390b88186c703ce6dbd955e1c145aca5"
|
|
3710
|
+
dependencies = [
|
|
3711
|
+
"wit-bindgen",
|
|
3712
|
+
]
|
|
3713
|
+
|
|
3714
|
+
[[package]]
|
|
3715
|
+
name = "wasm-bindgen"
|
|
3716
|
+
version = "0.2.117"
|
|
3717
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3718
|
+
checksum = "0551fc1bb415591e3372d0bc4780db7e587d84e2a7e79da121051c5c4b89d0b0"
|
|
3719
|
+
dependencies = [
|
|
3720
|
+
"cfg-if",
|
|
3721
|
+
"once_cell",
|
|
3722
|
+
"rustversion",
|
|
3723
|
+
"wasm-bindgen-macro",
|
|
3724
|
+
"wasm-bindgen-shared",
|
|
3725
|
+
]
|
|
3726
|
+
|
|
3727
|
+
[[package]]
|
|
3728
|
+
name = "wasm-bindgen-futures"
|
|
3729
|
+
version = "0.4.67"
|
|
3730
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3731
|
+
checksum = "03623de6905b7206edd0a75f69f747f134b7f0a2323392d664448bf2d3c5d87e"
|
|
3732
|
+
dependencies = [
|
|
3733
|
+
"js-sys",
|
|
3734
|
+
"wasm-bindgen",
|
|
3735
|
+
]
|
|
3736
|
+
|
|
3737
|
+
[[package]]
|
|
3738
|
+
name = "wasm-bindgen-macro"
|
|
3739
|
+
version = "0.2.117"
|
|
3740
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3741
|
+
checksum = "7fbdf9a35adf44786aecd5ff89b4563a90325f9da0923236f6104e603c7e86be"
|
|
3742
|
+
dependencies = [
|
|
3743
|
+
"quote",
|
|
3744
|
+
"wasm-bindgen-macro-support",
|
|
3745
|
+
]
|
|
3746
|
+
|
|
3747
|
+
[[package]]
|
|
3748
|
+
name = "wasm-bindgen-macro-support"
|
|
3749
|
+
version = "0.2.117"
|
|
3750
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3751
|
+
checksum = "dca9693ef2bab6d4e6707234500350d8dad079eb508dca05530c85dc3a529ff2"
|
|
3752
|
+
dependencies = [
|
|
3753
|
+
"bumpalo",
|
|
3754
|
+
"proc-macro2",
|
|
3755
|
+
"quote",
|
|
3756
|
+
"syn",
|
|
3757
|
+
"wasm-bindgen-shared",
|
|
3758
|
+
]
|
|
3759
|
+
|
|
3760
|
+
[[package]]
|
|
3761
|
+
name = "wasm-bindgen-shared"
|
|
3762
|
+
version = "0.2.117"
|
|
3763
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3764
|
+
checksum = "39129a682a6d2d841b6c429d0c51e5cb0ed1a03829d8b3d1e69a011e62cb3d3b"
|
|
3765
|
+
dependencies = [
|
|
3766
|
+
"unicode-ident",
|
|
3767
|
+
]
|
|
3768
|
+
|
|
3769
|
+
[[package]]
|
|
3770
|
+
name = "wasm-compose"
|
|
3771
|
+
version = "0.245.1"
|
|
3772
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3773
|
+
checksum = "5fd23d12cc95c451c1306db5bc63075fbebb612bb70c53b4237b1ce5bc178343"
|
|
3774
|
+
dependencies = [
|
|
3775
|
+
"anyhow",
|
|
3776
|
+
"heck",
|
|
3777
|
+
"im-rc",
|
|
3778
|
+
"indexmap 2.13.1",
|
|
3779
|
+
"log",
|
|
3780
|
+
"petgraph",
|
|
3781
|
+
"serde",
|
|
3782
|
+
"serde_derive",
|
|
3783
|
+
"serde_yaml",
|
|
3784
|
+
"smallvec",
|
|
3785
|
+
"wasm-encoder 0.245.1",
|
|
3786
|
+
"wasmparser 0.245.1",
|
|
3787
|
+
"wat",
|
|
3788
|
+
]
|
|
3789
|
+
|
|
3790
|
+
[[package]]
|
|
3791
|
+
name = "wasm-encoder"
|
|
3792
|
+
version = "0.244.0"
|
|
3793
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3794
|
+
checksum = "990065f2fe63003fe337b932cfb5e3b80e0b4d0f5ff650e6985b1048f62c8319"
|
|
3795
|
+
dependencies = [
|
|
3796
|
+
"leb128fmt",
|
|
3797
|
+
"wasmparser 0.244.0",
|
|
3798
|
+
]
|
|
3799
|
+
|
|
3800
|
+
[[package]]
|
|
3801
|
+
name = "wasm-encoder"
|
|
3802
|
+
version = "0.245.1"
|
|
3803
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3804
|
+
checksum = "3f9dca005e69bf015e45577e415b9af8c67e8ee3c0e38b5b0add5aa92581ed5c"
|
|
3805
|
+
dependencies = [
|
|
3806
|
+
"leb128fmt",
|
|
3807
|
+
"wasmparser 0.245.1",
|
|
3808
|
+
]
|
|
3809
|
+
|
|
3810
|
+
[[package]]
|
|
3811
|
+
name = "wasm-encoder"
|
|
3812
|
+
version = "0.246.2"
|
|
3813
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3814
|
+
checksum = "61fb705ce81adde29d2a8e99d87995e39a6e927358c91398f374474746070ef7"
|
|
3815
|
+
dependencies = [
|
|
3816
|
+
"leb128fmt",
|
|
3817
|
+
"wasmparser 0.246.2",
|
|
3818
|
+
]
|
|
3819
|
+
|
|
3820
|
+
[[package]]
|
|
3821
|
+
name = "wasm-metadata"
|
|
3822
|
+
version = "0.244.0"
|
|
3823
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3824
|
+
checksum = "bb0e353e6a2fbdc176932bbaab493762eb1255a7900fe0fea1a2f96c296cc909"
|
|
3825
|
+
dependencies = [
|
|
3826
|
+
"anyhow",
|
|
3827
|
+
"indexmap 2.13.1",
|
|
3828
|
+
"wasm-encoder 0.244.0",
|
|
3829
|
+
"wasmparser 0.244.0",
|
|
3830
|
+
]
|
|
3831
|
+
|
|
3832
|
+
[[package]]
|
|
3833
|
+
name = "wasm-streams"
|
|
3834
|
+
version = "0.5.0"
|
|
3835
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3836
|
+
checksum = "9d1ec4f6517c9e11ae630e200b2b65d193279042e28edd4a2cda233e46670bbb"
|
|
3837
|
+
dependencies = [
|
|
3838
|
+
"futures-util",
|
|
3839
|
+
"js-sys",
|
|
3840
|
+
"wasm-bindgen",
|
|
3841
|
+
"wasm-bindgen-futures",
|
|
3842
|
+
"web-sys",
|
|
3843
|
+
]
|
|
3844
|
+
|
|
3845
|
+
[[package]]
|
|
3846
|
+
name = "wasmparser"
|
|
3847
|
+
version = "0.244.0"
|
|
3848
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3849
|
+
checksum = "47b807c72e1bac69382b3a6fb3dbe8ea4c0ed87ff5629b8685ae6b9a611028fe"
|
|
3850
|
+
dependencies = [
|
|
3851
|
+
"bitflags",
|
|
3852
|
+
"hashbrown 0.15.5",
|
|
3853
|
+
"indexmap 2.13.1",
|
|
3854
|
+
"semver",
|
|
3855
|
+
]
|
|
3856
|
+
|
|
3857
|
+
[[package]]
|
|
3858
|
+
name = "wasmparser"
|
|
3859
|
+
version = "0.245.1"
|
|
3860
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3861
|
+
checksum = "4f08c9adee0428b7bddf3890fc27e015ac4b761cc608c822667102b8bfd6995e"
|
|
3862
|
+
dependencies = [
|
|
3863
|
+
"bitflags",
|
|
3864
|
+
"hashbrown 0.16.1",
|
|
3865
|
+
"indexmap 2.13.1",
|
|
3866
|
+
"semver",
|
|
3867
|
+
"serde",
|
|
3868
|
+
]
|
|
3869
|
+
|
|
3870
|
+
[[package]]
|
|
3871
|
+
name = "wasmparser"
|
|
3872
|
+
version = "0.246.2"
|
|
3873
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3874
|
+
checksum = "71cde4757396defafd25417cfb36aa3161027d06d865b0c24baaae229aac005d"
|
|
3875
|
+
dependencies = [
|
|
3876
|
+
"bitflags",
|
|
3877
|
+
"hashbrown 0.16.1",
|
|
3878
|
+
"indexmap 2.13.1",
|
|
3879
|
+
"semver",
|
|
3880
|
+
"serde",
|
|
3881
|
+
]
|
|
3882
|
+
|
|
3883
|
+
[[package]]
|
|
3884
|
+
name = "wasmprinter"
|
|
3885
|
+
version = "0.245.1"
|
|
3886
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3887
|
+
checksum = "5f41517a3716fbb8ccf46daa9c1325f760fcbff5168e75c7392288e410b91ac8"
|
|
3888
|
+
dependencies = [
|
|
3889
|
+
"anyhow",
|
|
3890
|
+
"termcolor",
|
|
3891
|
+
"wasmparser 0.245.1",
|
|
3892
|
+
]
|
|
3893
|
+
|
|
3894
|
+
[[package]]
|
|
3895
|
+
name = "wasmtime"
|
|
3896
|
+
version = "43.0.0"
|
|
3897
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3898
|
+
checksum = "54fa9f298901a64ed3eae16b130f0b30c80dbb74a9e7f129a791f4e74649b917"
|
|
3899
|
+
dependencies = [
|
|
3900
|
+
"addr2line",
|
|
3901
|
+
"async-trait",
|
|
3902
|
+
"bitflags",
|
|
3903
|
+
"bumpalo",
|
|
3904
|
+
"bytes",
|
|
3905
|
+
"cc",
|
|
3906
|
+
"cfg-if",
|
|
3907
|
+
"encoding_rs",
|
|
3908
|
+
"futures",
|
|
3909
|
+
"fxprof-processed-profile",
|
|
3910
|
+
"gimli",
|
|
3911
|
+
"ittapi",
|
|
3912
|
+
"libc",
|
|
3913
|
+
"log",
|
|
3914
|
+
"mach2",
|
|
3915
|
+
"memfd",
|
|
3916
|
+
"object",
|
|
3917
|
+
"once_cell",
|
|
3918
|
+
"postcard",
|
|
3919
|
+
"pulley-interpreter",
|
|
3920
|
+
"rayon",
|
|
3921
|
+
"rustix 1.1.4",
|
|
3922
|
+
"semver",
|
|
3923
|
+
"serde",
|
|
3924
|
+
"serde_derive",
|
|
3925
|
+
"serde_json",
|
|
3926
|
+
"smallvec",
|
|
3927
|
+
"target-lexicon",
|
|
3928
|
+
"tempfile",
|
|
3929
|
+
"wasm-compose",
|
|
3930
|
+
"wasm-encoder 0.245.1",
|
|
3931
|
+
"wasmparser 0.245.1",
|
|
3932
|
+
"wasmtime-environ",
|
|
3933
|
+
"wasmtime-internal-cache",
|
|
3934
|
+
"wasmtime-internal-component-macro",
|
|
3935
|
+
"wasmtime-internal-component-util",
|
|
3936
|
+
"wasmtime-internal-core",
|
|
3937
|
+
"wasmtime-internal-cranelift",
|
|
3938
|
+
"wasmtime-internal-fiber",
|
|
3939
|
+
"wasmtime-internal-jit-debug",
|
|
3940
|
+
"wasmtime-internal-jit-icache-coherence",
|
|
3941
|
+
"wasmtime-internal-unwinder",
|
|
3942
|
+
"wasmtime-internal-versioned-export-macros",
|
|
3943
|
+
"wasmtime-internal-winch",
|
|
3944
|
+
"wat",
|
|
3945
|
+
"windows-sys 0.61.2",
|
|
3946
|
+
]
|
|
3947
|
+
|
|
3948
|
+
[[package]]
|
|
3949
|
+
name = "wasmtime-environ"
|
|
3950
|
+
version = "43.0.0"
|
|
3951
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3952
|
+
checksum = "75a3aaaa3a522f443af67a7ed8d4efa20b0c3784e1031980537fbfcb497f70a7"
|
|
3953
|
+
dependencies = [
|
|
3954
|
+
"anyhow",
|
|
3955
|
+
"cpp_demangle",
|
|
3956
|
+
"cranelift-bforest",
|
|
3957
|
+
"cranelift-bitset",
|
|
3958
|
+
"cranelift-entity",
|
|
3959
|
+
"gimli",
|
|
3960
|
+
"hashbrown 0.16.1",
|
|
3961
|
+
"indexmap 2.13.1",
|
|
3962
|
+
"log",
|
|
3963
|
+
"object",
|
|
3964
|
+
"postcard",
|
|
3965
|
+
"rustc-demangle",
|
|
3966
|
+
"semver",
|
|
3967
|
+
"serde",
|
|
3968
|
+
"serde_derive",
|
|
3969
|
+
"sha2 0.10.9",
|
|
3970
|
+
"smallvec",
|
|
3971
|
+
"target-lexicon",
|
|
3972
|
+
"wasm-encoder 0.245.1",
|
|
3973
|
+
"wasmparser 0.245.1",
|
|
3974
|
+
"wasmprinter",
|
|
3975
|
+
"wasmtime-internal-component-util",
|
|
3976
|
+
"wasmtime-internal-core",
|
|
3977
|
+
]
|
|
3978
|
+
|
|
3979
|
+
[[package]]
|
|
3980
|
+
name = "wasmtime-internal-cache"
|
|
3981
|
+
version = "43.0.0"
|
|
3982
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3983
|
+
checksum = "0454f53d6c91d9a3b30be6d5dbd27e8ff595fddaafe69665df908fc385bbd836"
|
|
3984
|
+
dependencies = [
|
|
3985
|
+
"base64",
|
|
3986
|
+
"directories-next",
|
|
3987
|
+
"log",
|
|
3988
|
+
"postcard",
|
|
3989
|
+
"rustix 1.1.4",
|
|
3990
|
+
"serde",
|
|
3991
|
+
"serde_derive",
|
|
3992
|
+
"sha2 0.10.9",
|
|
3993
|
+
"toml 0.9.12+spec-1.1.0",
|
|
3994
|
+
"wasmtime-environ",
|
|
3995
|
+
"windows-sys 0.61.2",
|
|
3996
|
+
"zstd",
|
|
3997
|
+
]
|
|
3998
|
+
|
|
3999
|
+
[[package]]
|
|
4000
|
+
name = "wasmtime-internal-component-macro"
|
|
4001
|
+
version = "43.0.0"
|
|
4002
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4003
|
+
checksum = "3e0d00d29ed90a63d2445072860a8a42d7151390157236a69bc3ae056786e9c9"
|
|
4004
|
+
dependencies = [
|
|
4005
|
+
"anyhow",
|
|
4006
|
+
"proc-macro2",
|
|
4007
|
+
"quote",
|
|
4008
|
+
"syn",
|
|
4009
|
+
"wasmtime-internal-component-util",
|
|
4010
|
+
"wasmtime-internal-wit-bindgen",
|
|
4011
|
+
"wit-parser 0.245.1",
|
|
4012
|
+
]
|
|
4013
|
+
|
|
4014
|
+
[[package]]
|
|
4015
|
+
name = "wasmtime-internal-component-util"
|
|
4016
|
+
version = "43.0.0"
|
|
4017
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4018
|
+
checksum = "7acfd639ca7ab9e1cc37f053edd95bed6a7bed16370a8b2643dc7d9ef3047935"
|
|
4019
|
+
|
|
4020
|
+
[[package]]
|
|
4021
|
+
name = "wasmtime-internal-core"
|
|
4022
|
+
version = "43.0.0"
|
|
4023
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4024
|
+
checksum = "e671917bb6856ae360cb59d7aaf26f1cfd042c7b924319dd06fd380739fc0b2e"
|
|
4025
|
+
dependencies = [
|
|
4026
|
+
"anyhow",
|
|
4027
|
+
"hashbrown 0.16.1",
|
|
4028
|
+
"libm",
|
|
4029
|
+
"serde",
|
|
4030
|
+
]
|
|
4031
|
+
|
|
4032
|
+
[[package]]
|
|
4033
|
+
name = "wasmtime-internal-cranelift"
|
|
4034
|
+
version = "43.0.0"
|
|
4035
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4036
|
+
checksum = "f2dfd752e1dcf79eeeadc6f2681e2fb4a9f0b5534d18c5b9b93faccd0de2c80c"
|
|
4037
|
+
dependencies = [
|
|
4038
|
+
"cfg-if",
|
|
4039
|
+
"cranelift-codegen",
|
|
4040
|
+
"cranelift-control",
|
|
4041
|
+
"cranelift-entity",
|
|
4042
|
+
"cranelift-frontend",
|
|
4043
|
+
"cranelift-native",
|
|
4044
|
+
"gimli",
|
|
4045
|
+
"itertools",
|
|
4046
|
+
"log",
|
|
4047
|
+
"object",
|
|
4048
|
+
"pulley-interpreter",
|
|
4049
|
+
"smallvec",
|
|
4050
|
+
"target-lexicon",
|
|
4051
|
+
"thiserror 2.0.18",
|
|
4052
|
+
"wasmparser 0.245.1",
|
|
4053
|
+
"wasmtime-environ",
|
|
4054
|
+
"wasmtime-internal-core",
|
|
4055
|
+
"wasmtime-internal-unwinder",
|
|
4056
|
+
"wasmtime-internal-versioned-export-macros",
|
|
4057
|
+
]
|
|
4058
|
+
|
|
4059
|
+
[[package]]
|
|
4060
|
+
name = "wasmtime-internal-fiber"
|
|
4061
|
+
version = "43.0.0"
|
|
4062
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4063
|
+
checksum = "d1e9171af643316c11d6ebe52f31f6e2a5d6d1d270de9167a7b7b6f0e3f72982"
|
|
4064
|
+
dependencies = [
|
|
4065
|
+
"cc",
|
|
4066
|
+
"cfg-if",
|
|
4067
|
+
"libc",
|
|
4068
|
+
"rustix 1.1.4",
|
|
4069
|
+
"wasmtime-environ",
|
|
4070
|
+
"wasmtime-internal-versioned-export-macros",
|
|
4071
|
+
"windows-sys 0.61.2",
|
|
4072
|
+
]
|
|
4073
|
+
|
|
4074
|
+
[[package]]
|
|
4075
|
+
name = "wasmtime-internal-jit-debug"
|
|
4076
|
+
version = "43.0.0"
|
|
4077
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4078
|
+
checksum = "1fe23134536b9883ffc2afcffae23f7ffbcb1791e2d9fac6d6464a37ea4c8fdd"
|
|
4079
|
+
dependencies = [
|
|
4080
|
+
"cc",
|
|
4081
|
+
"object",
|
|
4082
|
+
"rustix 1.1.4",
|
|
4083
|
+
"wasmtime-internal-versioned-export-macros",
|
|
4084
|
+
]
|
|
4085
|
+
|
|
4086
|
+
[[package]]
|
|
4087
|
+
name = "wasmtime-internal-jit-icache-coherence"
|
|
4088
|
+
version = "43.0.0"
|
|
4089
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4090
|
+
checksum = "9b3112806515fac8495883885eb8dbdde849988ae91fe6beb544c0d7c0f4c9aa"
|
|
4091
|
+
dependencies = [
|
|
4092
|
+
"cfg-if",
|
|
4093
|
+
"libc",
|
|
4094
|
+
"wasmtime-internal-core",
|
|
4095
|
+
"windows-sys 0.61.2",
|
|
4096
|
+
]
|
|
4097
|
+
|
|
4098
|
+
[[package]]
|
|
4099
|
+
name = "wasmtime-internal-unwinder"
|
|
4100
|
+
version = "43.0.0"
|
|
4101
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4102
|
+
checksum = "dafc29c6e538273fda8409335137654751bdf24beab65702b7866b0a85ee108a"
|
|
4103
|
+
dependencies = [
|
|
4104
|
+
"cfg-if",
|
|
4105
|
+
"cranelift-codegen",
|
|
4106
|
+
"log",
|
|
4107
|
+
"object",
|
|
4108
|
+
"wasmtime-environ",
|
|
4109
|
+
]
|
|
4110
|
+
|
|
4111
|
+
[[package]]
|
|
4112
|
+
name = "wasmtime-internal-versioned-export-macros"
|
|
4113
|
+
version = "43.0.0"
|
|
4114
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4115
|
+
checksum = "772f2b105b7fdd3dfb2cdf70c297baaeb96fe76a95cdc6fa516f713f04090c73"
|
|
4116
|
+
dependencies = [
|
|
4117
|
+
"proc-macro2",
|
|
4118
|
+
"quote",
|
|
4119
|
+
"syn",
|
|
4120
|
+
]
|
|
4121
|
+
|
|
4122
|
+
[[package]]
|
|
4123
|
+
name = "wasmtime-internal-winch"
|
|
4124
|
+
version = "43.0.0"
|
|
4125
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4126
|
+
checksum = "d556c3b176aba3cce565b2bafcdc049e7410ac1d86bf1ef663a035d9ded0dddc"
|
|
4127
|
+
dependencies = [
|
|
4128
|
+
"cranelift-codegen",
|
|
4129
|
+
"gimli",
|
|
4130
|
+
"log",
|
|
4131
|
+
"object",
|
|
4132
|
+
"target-lexicon",
|
|
4133
|
+
"wasmparser 0.245.1",
|
|
4134
|
+
"wasmtime-environ",
|
|
4135
|
+
"wasmtime-internal-cranelift",
|
|
4136
|
+
"winch-codegen",
|
|
4137
|
+
]
|
|
4138
|
+
|
|
4139
|
+
[[package]]
|
|
4140
|
+
name = "wasmtime-internal-wit-bindgen"
|
|
4141
|
+
version = "43.0.0"
|
|
4142
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4143
|
+
checksum = "c47507f09e68462a0ed9f351ef410584a52e01d7ec92bc588bf7fa597ce528ef"
|
|
4144
|
+
dependencies = [
|
|
4145
|
+
"anyhow",
|
|
4146
|
+
"bitflags",
|
|
4147
|
+
"heck",
|
|
4148
|
+
"indexmap 2.13.1",
|
|
4149
|
+
"wit-parser 0.245.1",
|
|
4150
|
+
]
|
|
4151
|
+
|
|
4152
|
+
[[package]]
|
|
4153
|
+
name = "wasmtime-wasi"
|
|
4154
|
+
version = "43.0.0"
|
|
4155
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4156
|
+
checksum = "cf7fc1eb83dd0d5a368c78d2bad2660f69c03e3c07ce2dd6d1e50fc2b9ff14db"
|
|
4157
|
+
dependencies = [
|
|
4158
|
+
"async-trait",
|
|
4159
|
+
"bitflags",
|
|
4160
|
+
"bytes",
|
|
4161
|
+
"cap-fs-ext",
|
|
4162
|
+
"cap-net-ext",
|
|
4163
|
+
"cap-rand",
|
|
4164
|
+
"cap-std",
|
|
4165
|
+
"cap-time-ext",
|
|
4166
|
+
"fs-set-times",
|
|
4167
|
+
"futures",
|
|
4168
|
+
"io-extras",
|
|
4169
|
+
"io-lifetimes",
|
|
4170
|
+
"rustix 1.1.4",
|
|
4171
|
+
"system-interface",
|
|
4172
|
+
"thiserror 2.0.18",
|
|
4173
|
+
"tokio",
|
|
4174
|
+
"tracing",
|
|
4175
|
+
"url",
|
|
4176
|
+
"wasmtime",
|
|
4177
|
+
"wasmtime-wasi-io",
|
|
4178
|
+
"wiggle",
|
|
4179
|
+
"windows-sys 0.61.2",
|
|
4180
|
+
]
|
|
4181
|
+
|
|
4182
|
+
[[package]]
|
|
4183
|
+
name = "wasmtime-wasi-http"
|
|
4184
|
+
version = "43.0.0"
|
|
4185
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4186
|
+
checksum = "2922113f8766db31dbd93ed58ff8c056a35ac8246738c373ad37e6577140c62d"
|
|
4187
|
+
dependencies = [
|
|
4188
|
+
"async-trait",
|
|
4189
|
+
"bytes",
|
|
4190
|
+
"futures",
|
|
4191
|
+
"http",
|
|
4192
|
+
"http-body",
|
|
4193
|
+
"http-body-util",
|
|
4194
|
+
"hyper",
|
|
4195
|
+
"rustls 0.22.4",
|
|
4196
|
+
"tokio",
|
|
4197
|
+
"tokio-rustls 0.25.0",
|
|
4198
|
+
"tokio-util",
|
|
4199
|
+
"tracing",
|
|
4200
|
+
"wasmtime",
|
|
4201
|
+
"wasmtime-wasi",
|
|
4202
|
+
"wasmtime-wasi-io",
|
|
4203
|
+
"webpki-roots 0.26.11",
|
|
4204
|
+
]
|
|
4205
|
+
|
|
4206
|
+
[[package]]
|
|
4207
|
+
name = "wasmtime-wasi-io"
|
|
4208
|
+
version = "43.0.0"
|
|
4209
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4210
|
+
checksum = "315fd7192148233c2c61753b5e8e2456e0ff96dd649f079148977554139ea4dc"
|
|
4211
|
+
dependencies = [
|
|
4212
|
+
"async-trait",
|
|
4213
|
+
"bytes",
|
|
4214
|
+
"futures",
|
|
4215
|
+
"tracing",
|
|
4216
|
+
"wasmtime",
|
|
4217
|
+
]
|
|
4218
|
+
|
|
4219
|
+
[[package]]
|
|
4220
|
+
name = "wast"
|
|
4221
|
+
version = "35.0.2"
|
|
4222
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4223
|
+
checksum = "2ef140f1b49946586078353a453a1d28ba90adfc54dde75710bc1931de204d68"
|
|
4224
|
+
dependencies = [
|
|
4225
|
+
"leb128",
|
|
4226
|
+
]
|
|
4227
|
+
|
|
4228
|
+
[[package]]
|
|
4229
|
+
name = "wast"
|
|
4230
|
+
version = "246.0.2"
|
|
4231
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4232
|
+
checksum = "fe3fe8e3bf88ad96d031b4181ddbd64634b17cb0d06dfc3de589ef43591a9a62"
|
|
4233
|
+
dependencies = [
|
|
4234
|
+
"bumpalo",
|
|
4235
|
+
"leb128fmt",
|
|
4236
|
+
"memchr",
|
|
4237
|
+
"unicode-width",
|
|
4238
|
+
"wasm-encoder 0.246.2",
|
|
4239
|
+
]
|
|
4240
|
+
|
|
4241
|
+
[[package]]
|
|
4242
|
+
name = "wat"
|
|
4243
|
+
version = "1.246.2"
|
|
4244
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4245
|
+
checksum = "4bd7fda1199b94fff395c2d19a153f05dbe7807630316fa9673367666fd2ad8c"
|
|
4246
|
+
dependencies = [
|
|
4247
|
+
"wast 246.0.2",
|
|
4248
|
+
]
|
|
4249
|
+
|
|
4250
|
+
[[package]]
|
|
4251
|
+
name = "web-sys"
|
|
4252
|
+
version = "0.3.94"
|
|
4253
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4254
|
+
checksum = "cd70027e39b12f0849461e08ffc50b9cd7688d942c1c8e3c7b22273236b4dd0a"
|
|
4255
|
+
dependencies = [
|
|
4256
|
+
"js-sys",
|
|
4257
|
+
"wasm-bindgen",
|
|
4258
|
+
]
|
|
4259
|
+
|
|
4260
|
+
[[package]]
|
|
4261
|
+
name = "web-time"
|
|
4262
|
+
version = "1.1.0"
|
|
4263
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4264
|
+
checksum = "5a6580f308b1fad9207618087a65c04e7a10bc77e02c8e84e9b00dd4b12fa0bb"
|
|
4265
|
+
dependencies = [
|
|
4266
|
+
"js-sys",
|
|
4267
|
+
"wasm-bindgen",
|
|
4268
|
+
]
|
|
4269
|
+
|
|
4270
|
+
[[package]]
|
|
4271
|
+
name = "webpki-root-certs"
|
|
4272
|
+
version = "1.0.6"
|
|
4273
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4274
|
+
checksum = "804f18a4ac2676ffb4e8b5b5fa9ae38af06df08162314f96a68d2a363e21a8ca"
|
|
4275
|
+
dependencies = [
|
|
4276
|
+
"rustls-pki-types",
|
|
4277
|
+
]
|
|
4278
|
+
|
|
4279
|
+
[[package]]
|
|
4280
|
+
name = "webpki-roots"
|
|
4281
|
+
version = "0.26.11"
|
|
4282
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4283
|
+
checksum = "521bc38abb08001b01866da9f51eb7c5d647a19260e00054a8c7fd5f9e57f7a9"
|
|
4284
|
+
dependencies = [
|
|
4285
|
+
"webpki-roots 1.0.6",
|
|
4286
|
+
]
|
|
4287
|
+
|
|
4288
|
+
[[package]]
|
|
4289
|
+
name = "webpki-roots"
|
|
4290
|
+
version = "1.0.6"
|
|
4291
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4292
|
+
checksum = "22cfaf3c063993ff62e73cb4311efde4db1efb31ab78a3e5c457939ad5cc0bed"
|
|
4293
|
+
dependencies = [
|
|
4294
|
+
"rustls-pki-types",
|
|
4295
|
+
]
|
|
4296
|
+
|
|
4297
|
+
[[package]]
|
|
4298
|
+
name = "wiggle"
|
|
4299
|
+
version = "43.0.0"
|
|
4300
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4301
|
+
checksum = "c4e79079e7f5a8c034307bb5e61b2e63bc668e17d139705a7dea5afceab02510"
|
|
4302
|
+
dependencies = [
|
|
4303
|
+
"bitflags",
|
|
4304
|
+
"thiserror 2.0.18",
|
|
4305
|
+
"tracing",
|
|
4306
|
+
"wasmtime",
|
|
4307
|
+
"wasmtime-environ",
|
|
4308
|
+
"wiggle-macro",
|
|
4309
|
+
]
|
|
4310
|
+
|
|
4311
|
+
[[package]]
|
|
4312
|
+
name = "wiggle-generate"
|
|
4313
|
+
version = "43.0.0"
|
|
4314
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4315
|
+
checksum = "9165e5b08a6463d247b5c1292aaab16b103d0d8f5941b60d7bc0c38125eb9ffe"
|
|
4316
|
+
dependencies = [
|
|
4317
|
+
"heck",
|
|
4318
|
+
"proc-macro2",
|
|
4319
|
+
"quote",
|
|
4320
|
+
"syn",
|
|
4321
|
+
"wasmtime-environ",
|
|
4322
|
+
"witx",
|
|
4323
|
+
]
|
|
4324
|
+
|
|
4325
|
+
[[package]]
|
|
4326
|
+
name = "wiggle-macro"
|
|
4327
|
+
version = "43.0.0"
|
|
4328
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4329
|
+
checksum = "5fb0a5b9476150428eead9ce1a5c83e8fd6aac29806f48c6dbf77d50a067473a"
|
|
4330
|
+
dependencies = [
|
|
4331
|
+
"proc-macro2",
|
|
4332
|
+
"quote",
|
|
4333
|
+
"syn",
|
|
4334
|
+
"wiggle-generate",
|
|
4335
|
+
]
|
|
4336
|
+
|
|
4337
|
+
[[package]]
|
|
4338
|
+
name = "winapi"
|
|
4339
|
+
version = "0.3.9"
|
|
4340
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4341
|
+
checksum = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419"
|
|
4342
|
+
dependencies = [
|
|
4343
|
+
"winapi-i686-pc-windows-gnu",
|
|
4344
|
+
"winapi-x86_64-pc-windows-gnu",
|
|
4345
|
+
]
|
|
4346
|
+
|
|
4347
|
+
[[package]]
|
|
4348
|
+
name = "winapi-i686-pc-windows-gnu"
|
|
4349
|
+
version = "0.4.0"
|
|
4350
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4351
|
+
checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6"
|
|
4352
|
+
|
|
4353
|
+
[[package]]
|
|
4354
|
+
name = "winapi-util"
|
|
4355
|
+
version = "0.1.11"
|
|
4356
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4357
|
+
checksum = "c2a7b1c03c876122aa43f3020e6c3c3ee5c05081c9a00739faf7503aeba10d22"
|
|
4358
|
+
dependencies = [
|
|
4359
|
+
"windows-sys 0.61.2",
|
|
4360
|
+
]
|
|
4361
|
+
|
|
4362
|
+
[[package]]
|
|
4363
|
+
name = "winapi-x86_64-pc-windows-gnu"
|
|
4364
|
+
version = "0.4.0"
|
|
4365
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4366
|
+
checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f"
|
|
4367
|
+
|
|
4368
|
+
[[package]]
|
|
4369
|
+
name = "winch-codegen"
|
|
4370
|
+
version = "43.0.0"
|
|
4371
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4372
|
+
checksum = "1ca3d76763e4ddc48ede73792d067396ba5ee74c3c581db90e6638fe6b46bf52"
|
|
4373
|
+
dependencies = [
|
|
4374
|
+
"cranelift-assembler-x64",
|
|
4375
|
+
"cranelift-codegen",
|
|
4376
|
+
"gimli",
|
|
4377
|
+
"regalloc2",
|
|
4378
|
+
"smallvec",
|
|
4379
|
+
"target-lexicon",
|
|
4380
|
+
"thiserror 2.0.18",
|
|
4381
|
+
"wasmparser 0.245.1",
|
|
4382
|
+
"wasmtime-environ",
|
|
4383
|
+
"wasmtime-internal-core",
|
|
4384
|
+
"wasmtime-internal-cranelift",
|
|
4385
|
+
]
|
|
4386
|
+
|
|
4387
|
+
[[package]]
|
|
4388
|
+
name = "windows-core"
|
|
4389
|
+
version = "0.62.2"
|
|
4390
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4391
|
+
checksum = "b8e83a14d34d0623b51dce9581199302a221863196a1dde71a7663a4c2be9deb"
|
|
4392
|
+
dependencies = [
|
|
4393
|
+
"windows-implement",
|
|
4394
|
+
"windows-interface",
|
|
4395
|
+
"windows-link",
|
|
4396
|
+
"windows-result",
|
|
4397
|
+
"windows-strings",
|
|
4398
|
+
]
|
|
4399
|
+
|
|
4400
|
+
[[package]]
|
|
4401
|
+
name = "windows-implement"
|
|
4402
|
+
version = "0.60.2"
|
|
4403
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4404
|
+
checksum = "053e2e040ab57b9dc951b72c264860db7eb3b0200ba345b4e4c3b14f67855ddf"
|
|
4405
|
+
dependencies = [
|
|
4406
|
+
"proc-macro2",
|
|
4407
|
+
"quote",
|
|
4408
|
+
"syn",
|
|
4409
|
+
]
|
|
4410
|
+
|
|
4411
|
+
[[package]]
|
|
4412
|
+
name = "windows-interface"
|
|
4413
|
+
version = "0.59.3"
|
|
4414
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4415
|
+
checksum = "3f316c4a2570ba26bbec722032c4099d8c8bc095efccdc15688708623367e358"
|
|
4416
|
+
dependencies = [
|
|
4417
|
+
"proc-macro2",
|
|
4418
|
+
"quote",
|
|
4419
|
+
"syn",
|
|
4420
|
+
]
|
|
4421
|
+
|
|
4422
|
+
[[package]]
|
|
4423
|
+
name = "windows-link"
|
|
4424
|
+
version = "0.2.1"
|
|
4425
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4426
|
+
checksum = "f0805222e57f7521d6a62e36fa9163bc891acd422f971defe97d64e70d0a4fe5"
|
|
4427
|
+
|
|
4428
|
+
[[package]]
|
|
4429
|
+
name = "windows-result"
|
|
4430
|
+
version = "0.4.1"
|
|
4431
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4432
|
+
checksum = "7781fa89eaf60850ac3d2da7af8e5242a5ea78d1a11c49bf2910bb5a73853eb5"
|
|
4433
|
+
dependencies = [
|
|
4434
|
+
"windows-link",
|
|
4435
|
+
]
|
|
4436
|
+
|
|
4437
|
+
[[package]]
|
|
4438
|
+
name = "windows-strings"
|
|
4439
|
+
version = "0.5.1"
|
|
4440
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4441
|
+
checksum = "7837d08f69c77cf6b07689544538e017c1bfcf57e34b4c0ff58e6c2cd3b37091"
|
|
4442
|
+
dependencies = [
|
|
4443
|
+
"windows-link",
|
|
4444
|
+
]
|
|
4445
|
+
|
|
4446
|
+
[[package]]
|
|
4447
|
+
name = "windows-sys"
|
|
4448
|
+
version = "0.45.0"
|
|
4449
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4450
|
+
checksum = "75283be5efb2831d37ea142365f009c02ec203cd29a3ebecbc093d52315b66d0"
|
|
4451
|
+
dependencies = [
|
|
4452
|
+
"windows-targets 0.42.2",
|
|
4453
|
+
]
|
|
4454
|
+
|
|
4455
|
+
[[package]]
|
|
4456
|
+
name = "windows-sys"
|
|
4457
|
+
version = "0.52.0"
|
|
4458
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4459
|
+
checksum = "282be5f36a8ce781fad8c8ae18fa3f9beff57ec1b52cb3de0789201425d9a33d"
|
|
4460
|
+
dependencies = [
|
|
4461
|
+
"windows-targets 0.52.6",
|
|
4462
|
+
]
|
|
4463
|
+
|
|
4464
|
+
[[package]]
|
|
4465
|
+
name = "windows-sys"
|
|
4466
|
+
version = "0.59.0"
|
|
4467
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4468
|
+
checksum = "1e38bc4d79ed67fd075bcc251a1c39b32a1776bbe92e5bef1f0bf1f8c531853b"
|
|
4469
|
+
dependencies = [
|
|
4470
|
+
"windows-targets 0.52.6",
|
|
4471
|
+
]
|
|
4472
|
+
|
|
4473
|
+
[[package]]
|
|
4474
|
+
name = "windows-sys"
|
|
4475
|
+
version = "0.60.2"
|
|
4476
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4477
|
+
checksum = "f2f500e4d28234f72040990ec9d39e3a6b950f9f22d3dba18416c35882612bcb"
|
|
4478
|
+
dependencies = [
|
|
4479
|
+
"windows-targets 0.53.5",
|
|
4480
|
+
]
|
|
4481
|
+
|
|
4482
|
+
[[package]]
|
|
4483
|
+
name = "windows-sys"
|
|
4484
|
+
version = "0.61.2"
|
|
4485
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4486
|
+
checksum = "ae137229bcbd6cdf0f7b80a31df61766145077ddf49416a728b02cb3921ff3fc"
|
|
4487
|
+
dependencies = [
|
|
4488
|
+
"windows-link",
|
|
4489
|
+
]
|
|
4490
|
+
|
|
4491
|
+
[[package]]
|
|
4492
|
+
name = "windows-targets"
|
|
4493
|
+
version = "0.42.2"
|
|
4494
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4495
|
+
checksum = "8e5180c00cd44c9b1c88adb3693291f1cd93605ded80c250a75d472756b4d071"
|
|
4496
|
+
dependencies = [
|
|
4497
|
+
"windows_aarch64_gnullvm 0.42.2",
|
|
4498
|
+
"windows_aarch64_msvc 0.42.2",
|
|
4499
|
+
"windows_i686_gnu 0.42.2",
|
|
4500
|
+
"windows_i686_msvc 0.42.2",
|
|
4501
|
+
"windows_x86_64_gnu 0.42.2",
|
|
4502
|
+
"windows_x86_64_gnullvm 0.42.2",
|
|
4503
|
+
"windows_x86_64_msvc 0.42.2",
|
|
4504
|
+
]
|
|
4505
|
+
|
|
4506
|
+
[[package]]
|
|
4507
|
+
name = "windows-targets"
|
|
4508
|
+
version = "0.52.6"
|
|
4509
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4510
|
+
checksum = "9b724f72796e036ab90c1021d4780d4d3d648aca59e491e6b98e725b84e99973"
|
|
4511
|
+
dependencies = [
|
|
4512
|
+
"windows_aarch64_gnullvm 0.52.6",
|
|
4513
|
+
"windows_aarch64_msvc 0.52.6",
|
|
4514
|
+
"windows_i686_gnu 0.52.6",
|
|
4515
|
+
"windows_i686_gnullvm 0.52.6",
|
|
4516
|
+
"windows_i686_msvc 0.52.6",
|
|
4517
|
+
"windows_x86_64_gnu 0.52.6",
|
|
4518
|
+
"windows_x86_64_gnullvm 0.52.6",
|
|
4519
|
+
"windows_x86_64_msvc 0.52.6",
|
|
4520
|
+
]
|
|
4521
|
+
|
|
4522
|
+
[[package]]
|
|
4523
|
+
name = "windows-targets"
|
|
4524
|
+
version = "0.53.5"
|
|
4525
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4526
|
+
checksum = "4945f9f551b88e0d65f3db0bc25c33b8acea4d9e41163edf90dcd0b19f9069f3"
|
|
4527
|
+
dependencies = [
|
|
4528
|
+
"windows-link",
|
|
4529
|
+
"windows_aarch64_gnullvm 0.53.1",
|
|
4530
|
+
"windows_aarch64_msvc 0.53.1",
|
|
4531
|
+
"windows_i686_gnu 0.53.1",
|
|
4532
|
+
"windows_i686_gnullvm 0.53.1",
|
|
4533
|
+
"windows_i686_msvc 0.53.1",
|
|
4534
|
+
"windows_x86_64_gnu 0.53.1",
|
|
4535
|
+
"windows_x86_64_gnullvm 0.53.1",
|
|
4536
|
+
"windows_x86_64_msvc 0.53.1",
|
|
4537
|
+
]
|
|
4538
|
+
|
|
4539
|
+
[[package]]
|
|
4540
|
+
name = "windows_aarch64_gnullvm"
|
|
4541
|
+
version = "0.42.2"
|
|
4542
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4543
|
+
checksum = "597a5118570b68bc08d8d59125332c54f1ba9d9adeedeef5b99b02ba2b0698f8"
|
|
4544
|
+
|
|
4545
|
+
[[package]]
|
|
4546
|
+
name = "windows_aarch64_gnullvm"
|
|
4547
|
+
version = "0.52.6"
|
|
4548
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4549
|
+
checksum = "32a4622180e7a0ec044bb555404c800bc9fd9ec262ec147edd5989ccd0c02cd3"
|
|
4550
|
+
|
|
4551
|
+
[[package]]
|
|
4552
|
+
name = "windows_aarch64_gnullvm"
|
|
4553
|
+
version = "0.53.1"
|
|
4554
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4555
|
+
checksum = "a9d8416fa8b42f5c947f8482c43e7d89e73a173cead56d044f6a56104a6d1b53"
|
|
4556
|
+
|
|
4557
|
+
[[package]]
|
|
4558
|
+
name = "windows_aarch64_msvc"
|
|
4559
|
+
version = "0.42.2"
|
|
4560
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4561
|
+
checksum = "e08e8864a60f06ef0d0ff4ba04124db8b0fb3be5776a5cd47641e942e58c4d43"
|
|
4562
|
+
|
|
4563
|
+
[[package]]
|
|
4564
|
+
name = "windows_aarch64_msvc"
|
|
4565
|
+
version = "0.52.6"
|
|
4566
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4567
|
+
checksum = "09ec2a7bb152e2252b53fa7803150007879548bc709c039df7627cabbd05d469"
|
|
4568
|
+
|
|
4569
|
+
[[package]]
|
|
4570
|
+
name = "windows_aarch64_msvc"
|
|
4571
|
+
version = "0.53.1"
|
|
4572
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4573
|
+
checksum = "b9d782e804c2f632e395708e99a94275910eb9100b2114651e04744e9b125006"
|
|
4574
|
+
|
|
4575
|
+
[[package]]
|
|
4576
|
+
name = "windows_i686_gnu"
|
|
4577
|
+
version = "0.42.2"
|
|
4578
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4579
|
+
checksum = "c61d927d8da41da96a81f029489353e68739737d3beca43145c8afec9a31a84f"
|
|
4580
|
+
|
|
4581
|
+
[[package]]
|
|
4582
|
+
name = "windows_i686_gnu"
|
|
4583
|
+
version = "0.52.6"
|
|
4584
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4585
|
+
checksum = "8e9b5ad5ab802e97eb8e295ac6720e509ee4c243f69d781394014ebfe8bbfa0b"
|
|
4586
|
+
|
|
4587
|
+
[[package]]
|
|
4588
|
+
name = "windows_i686_gnu"
|
|
4589
|
+
version = "0.53.1"
|
|
4590
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4591
|
+
checksum = "960e6da069d81e09becb0ca57a65220ddff016ff2d6af6a223cf372a506593a3"
|
|
4592
|
+
|
|
4593
|
+
[[package]]
|
|
4594
|
+
name = "windows_i686_gnullvm"
|
|
4595
|
+
version = "0.52.6"
|
|
4596
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4597
|
+
checksum = "0eee52d38c090b3caa76c563b86c3a4bd71ef1a819287c19d586d7334ae8ed66"
|
|
4598
|
+
|
|
4599
|
+
[[package]]
|
|
4600
|
+
name = "windows_i686_gnullvm"
|
|
4601
|
+
version = "0.53.1"
|
|
4602
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4603
|
+
checksum = "fa7359d10048f68ab8b09fa71c3daccfb0e9b559aed648a8f95469c27057180c"
|
|
4604
|
+
|
|
4605
|
+
[[package]]
|
|
4606
|
+
name = "windows_i686_msvc"
|
|
4607
|
+
version = "0.42.2"
|
|
4608
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4609
|
+
checksum = "44d840b6ec649f480a41c8d80f9c65108b92d89345dd94027bfe06ac444d1060"
|
|
4610
|
+
|
|
4611
|
+
[[package]]
|
|
4612
|
+
name = "windows_i686_msvc"
|
|
4613
|
+
version = "0.52.6"
|
|
4614
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4615
|
+
checksum = "240948bc05c5e7c6dabba28bf89d89ffce3e303022809e73deaefe4f6ec56c66"
|
|
4616
|
+
|
|
4617
|
+
[[package]]
|
|
4618
|
+
name = "windows_i686_msvc"
|
|
4619
|
+
version = "0.53.1"
|
|
4620
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4621
|
+
checksum = "1e7ac75179f18232fe9c285163565a57ef8d3c89254a30685b57d83a38d326c2"
|
|
4622
|
+
|
|
4623
|
+
[[package]]
|
|
4624
|
+
name = "windows_x86_64_gnu"
|
|
4625
|
+
version = "0.42.2"
|
|
4626
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4627
|
+
checksum = "8de912b8b8feb55c064867cf047dda097f92d51efad5b491dfb98f6bbb70cb36"
|
|
4628
|
+
|
|
4629
|
+
[[package]]
|
|
4630
|
+
name = "windows_x86_64_gnu"
|
|
4631
|
+
version = "0.52.6"
|
|
4632
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4633
|
+
checksum = "147a5c80aabfbf0c7d901cb5895d1de30ef2907eb21fbbab29ca94c5b08b1a78"
|
|
4634
|
+
|
|
4635
|
+
[[package]]
|
|
4636
|
+
name = "windows_x86_64_gnu"
|
|
4637
|
+
version = "0.53.1"
|
|
4638
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4639
|
+
checksum = "9c3842cdd74a865a8066ab39c8a7a473c0778a3f29370b5fd6b4b9aa7df4a499"
|
|
4640
|
+
|
|
4641
|
+
[[package]]
|
|
4642
|
+
name = "windows_x86_64_gnullvm"
|
|
4643
|
+
version = "0.42.2"
|
|
4644
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4645
|
+
checksum = "26d41b46a36d453748aedef1486d5c7a85db22e56aff34643984ea85514e94a3"
|
|
4646
|
+
|
|
4647
|
+
[[package]]
|
|
4648
|
+
name = "windows_x86_64_gnullvm"
|
|
4649
|
+
version = "0.52.6"
|
|
4650
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4651
|
+
checksum = "24d5b23dc417412679681396f2b49f3de8c1473deb516bd34410872eff51ed0d"
|
|
4652
|
+
|
|
4653
|
+
[[package]]
|
|
4654
|
+
name = "windows_x86_64_gnullvm"
|
|
4655
|
+
version = "0.53.1"
|
|
4656
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4657
|
+
checksum = "0ffa179e2d07eee8ad8f57493436566c7cc30ac536a3379fdf008f47f6bb7ae1"
|
|
4658
|
+
|
|
4659
|
+
[[package]]
|
|
4660
|
+
name = "windows_x86_64_msvc"
|
|
4661
|
+
version = "0.42.2"
|
|
4662
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4663
|
+
checksum = "9aec5da331524158c6d1a4ac0ab1541149c0b9505fde06423b02f5ef0106b9f0"
|
|
4664
|
+
|
|
4665
|
+
[[package]]
|
|
4666
|
+
name = "windows_x86_64_msvc"
|
|
4667
|
+
version = "0.52.6"
|
|
4668
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4669
|
+
checksum = "589f6da84c646204747d1270a2a5661ea66ed1cced2631d546fdfb155959f9ec"
|
|
4670
|
+
|
|
4671
|
+
[[package]]
|
|
4672
|
+
name = "windows_x86_64_msvc"
|
|
4673
|
+
version = "0.53.1"
|
|
4674
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4675
|
+
checksum = "d6bbff5f0aada427a1e5a6da5f1f98158182f26556f345ac9e04d36d0ebed650"
|
|
4676
|
+
|
|
4677
|
+
[[package]]
|
|
4678
|
+
name = "winnow"
|
|
4679
|
+
version = "0.7.15"
|
|
4680
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4681
|
+
checksum = "df79d97927682d2fd8adb29682d1140b343be4ac0f08fd68b7765d9c059d3945"
|
|
4682
|
+
|
|
4683
|
+
[[package]]
|
|
4684
|
+
name = "winnow"
|
|
4685
|
+
version = "1.0.1"
|
|
4686
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4687
|
+
checksum = "09dac053f1cd375980747450bfc7250c264eaae0583872e845c0c7cd578872b5"
|
|
4688
|
+
|
|
4689
|
+
[[package]]
|
|
4690
|
+
name = "winx"
|
|
4691
|
+
version = "0.36.4"
|
|
4692
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4693
|
+
checksum = "3f3fd376f71958b862e7afb20cfe5a22830e1963462f3a17f49d82a6c1d1f42d"
|
|
4694
|
+
dependencies = [
|
|
4695
|
+
"bitflags",
|
|
4696
|
+
"windows-sys 0.59.0",
|
|
4697
|
+
]
|
|
4698
|
+
|
|
4699
|
+
[[package]]
|
|
4700
|
+
name = "wit-bindgen"
|
|
4701
|
+
version = "0.51.0"
|
|
4702
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4703
|
+
checksum = "d7249219f66ced02969388cf2bb044a09756a083d0fab1e566056b04d9fbcaa5"
|
|
4704
|
+
dependencies = [
|
|
4705
|
+
"wit-bindgen-rust-macro",
|
|
4706
|
+
]
|
|
4707
|
+
|
|
4708
|
+
[[package]]
|
|
4709
|
+
name = "wit-bindgen-core"
|
|
4710
|
+
version = "0.51.0"
|
|
4711
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4712
|
+
checksum = "ea61de684c3ea68cb082b7a88508a8b27fcc8b797d738bfc99a82facf1d752dc"
|
|
4713
|
+
dependencies = [
|
|
4714
|
+
"anyhow",
|
|
4715
|
+
"heck",
|
|
4716
|
+
"wit-parser 0.244.0",
|
|
4717
|
+
]
|
|
4718
|
+
|
|
4719
|
+
[[package]]
|
|
4720
|
+
name = "wit-bindgen-rust"
|
|
4721
|
+
version = "0.51.0"
|
|
4722
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4723
|
+
checksum = "b7c566e0f4b284dd6561c786d9cb0142da491f46a9fbed79ea69cdad5db17f21"
|
|
4724
|
+
dependencies = [
|
|
4725
|
+
"anyhow",
|
|
4726
|
+
"heck",
|
|
4727
|
+
"indexmap 2.13.1",
|
|
4728
|
+
"prettyplease",
|
|
4729
|
+
"syn",
|
|
4730
|
+
"wasm-metadata",
|
|
4731
|
+
"wit-bindgen-core",
|
|
4732
|
+
"wit-component",
|
|
4733
|
+
]
|
|
4734
|
+
|
|
4735
|
+
[[package]]
|
|
4736
|
+
name = "wit-bindgen-rust-macro"
|
|
4737
|
+
version = "0.51.0"
|
|
4738
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4739
|
+
checksum = "0c0f9bfd77e6a48eccf51359e3ae77140a7f50b1e2ebfe62422d8afdaffab17a"
|
|
4740
|
+
dependencies = [
|
|
4741
|
+
"anyhow",
|
|
4742
|
+
"prettyplease",
|
|
4743
|
+
"proc-macro2",
|
|
4744
|
+
"quote",
|
|
4745
|
+
"syn",
|
|
4746
|
+
"wit-bindgen-core",
|
|
4747
|
+
"wit-bindgen-rust",
|
|
4748
|
+
]
|
|
4749
|
+
|
|
4750
|
+
[[package]]
|
|
4751
|
+
name = "wit-component"
|
|
4752
|
+
version = "0.244.0"
|
|
4753
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4754
|
+
checksum = "9d66ea20e9553b30172b5e831994e35fbde2d165325bec84fc43dbf6f4eb9cb2"
|
|
4755
|
+
dependencies = [
|
|
4756
|
+
"anyhow",
|
|
4757
|
+
"bitflags",
|
|
4758
|
+
"indexmap 2.13.1",
|
|
4759
|
+
"log",
|
|
4760
|
+
"serde",
|
|
4761
|
+
"serde_derive",
|
|
4762
|
+
"serde_json",
|
|
4763
|
+
"wasm-encoder 0.244.0",
|
|
4764
|
+
"wasm-metadata",
|
|
4765
|
+
"wasmparser 0.244.0",
|
|
4766
|
+
"wit-parser 0.244.0",
|
|
4767
|
+
]
|
|
4768
|
+
|
|
4769
|
+
[[package]]
|
|
4770
|
+
name = "wit-parser"
|
|
4771
|
+
version = "0.244.0"
|
|
4772
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4773
|
+
checksum = "ecc8ac4bc1dc3381b7f59c34f00b67e18f910c2c0f50015669dde7def656a736"
|
|
4774
|
+
dependencies = [
|
|
4775
|
+
"anyhow",
|
|
4776
|
+
"id-arena",
|
|
4777
|
+
"indexmap 2.13.1",
|
|
4778
|
+
"log",
|
|
4779
|
+
"semver",
|
|
4780
|
+
"serde",
|
|
4781
|
+
"serde_derive",
|
|
4782
|
+
"serde_json",
|
|
4783
|
+
"unicode-xid",
|
|
4784
|
+
"wasmparser 0.244.0",
|
|
4785
|
+
]
|
|
4786
|
+
|
|
4787
|
+
[[package]]
|
|
4788
|
+
name = "wit-parser"
|
|
4789
|
+
version = "0.245.1"
|
|
4790
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4791
|
+
checksum = "330698718e82983499419494dd1e3d7811a457a9bf9f69734e8c5f07a2547929"
|
|
4792
|
+
dependencies = [
|
|
4793
|
+
"anyhow",
|
|
4794
|
+
"hashbrown 0.16.1",
|
|
4795
|
+
"id-arena",
|
|
4796
|
+
"indexmap 2.13.1",
|
|
4797
|
+
"log",
|
|
4798
|
+
"semver",
|
|
4799
|
+
"serde",
|
|
4800
|
+
"serde_derive",
|
|
4801
|
+
"serde_json",
|
|
4802
|
+
"unicode-xid",
|
|
4803
|
+
"wasmparser 0.245.1",
|
|
4804
|
+
]
|
|
4805
|
+
|
|
4806
|
+
[[package]]
|
|
4807
|
+
name = "witx"
|
|
4808
|
+
version = "0.9.1"
|
|
4809
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4810
|
+
checksum = "e366f27a5cabcddb2706a78296a40b8fcc451e1a6aba2fc1d94b4a01bdaaef4b"
|
|
4811
|
+
dependencies = [
|
|
4812
|
+
"anyhow",
|
|
4813
|
+
"log",
|
|
4814
|
+
"thiserror 1.0.69",
|
|
4815
|
+
"wast 35.0.2",
|
|
4816
|
+
]
|
|
4817
|
+
|
|
4818
|
+
[[package]]
|
|
4819
|
+
name = "writeable"
|
|
4820
|
+
version = "0.6.3"
|
|
4821
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4822
|
+
checksum = "1ffae5123b2d3fc086436f8834ae3ab053a283cfac8fe0a0b8eaae044768a4c4"
|
|
4823
|
+
|
|
4824
|
+
[[package]]
|
|
4825
|
+
name = "xattr"
|
|
4826
|
+
version = "1.6.1"
|
|
4827
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4828
|
+
checksum = "32e45ad4206f6d2479085147f02bc2ef834ac85886624a23575ae137c8aa8156"
|
|
4829
|
+
dependencies = [
|
|
4830
|
+
"libc",
|
|
4831
|
+
"rustix 1.1.4",
|
|
4832
|
+
]
|
|
4833
|
+
|
|
4834
|
+
[[package]]
|
|
4835
|
+
name = "yoke"
|
|
4836
|
+
version = "0.8.2"
|
|
4837
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4838
|
+
checksum = "abe8c5fda708d9ca3df187cae8bfb9ceda00dd96231bed36e445a1a48e66f9ca"
|
|
4839
|
+
dependencies = [
|
|
4840
|
+
"stable_deref_trait",
|
|
4841
|
+
"yoke-derive",
|
|
4842
|
+
"zerofrom",
|
|
4843
|
+
]
|
|
4844
|
+
|
|
4845
|
+
[[package]]
|
|
4846
|
+
name = "yoke-derive"
|
|
4847
|
+
version = "0.8.2"
|
|
4848
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4849
|
+
checksum = "de844c262c8848816172cef550288e7dc6c7b7814b4ee56b3e1553f275f1858e"
|
|
4850
|
+
dependencies = [
|
|
4851
|
+
"proc-macro2",
|
|
4852
|
+
"quote",
|
|
4853
|
+
"syn",
|
|
4854
|
+
"synstructure",
|
|
4855
|
+
]
|
|
4856
|
+
|
|
4857
|
+
[[package]]
|
|
4858
|
+
name = "zerocopy"
|
|
4859
|
+
version = "0.8.48"
|
|
4860
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4861
|
+
checksum = "eed437bf9d6692032087e337407a86f04cd8d6a16a37199ed57949d415bd68e9"
|
|
4862
|
+
dependencies = [
|
|
4863
|
+
"zerocopy-derive",
|
|
4864
|
+
]
|
|
4865
|
+
|
|
4866
|
+
[[package]]
|
|
4867
|
+
name = "zerocopy-derive"
|
|
4868
|
+
version = "0.8.48"
|
|
4869
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4870
|
+
checksum = "70e3cd084b1788766f53af483dd21f93881ff30d7320490ec3ef7526d203bad4"
|
|
4871
|
+
dependencies = [
|
|
4872
|
+
"proc-macro2",
|
|
4873
|
+
"quote",
|
|
4874
|
+
"syn",
|
|
4875
|
+
]
|
|
4876
|
+
|
|
4877
|
+
[[package]]
|
|
4878
|
+
name = "zerofrom"
|
|
4879
|
+
version = "0.1.7"
|
|
4880
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4881
|
+
checksum = "69faa1f2a1ea75661980b013019ed6687ed0e83d069bc1114e2cc74c6c04c4df"
|
|
4882
|
+
dependencies = [
|
|
4883
|
+
"zerofrom-derive",
|
|
4884
|
+
]
|
|
4885
|
+
|
|
4886
|
+
[[package]]
|
|
4887
|
+
name = "zerofrom-derive"
|
|
4888
|
+
version = "0.1.7"
|
|
4889
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4890
|
+
checksum = "11532158c46691caf0f2593ea8358fed6bbf68a0315e80aae9bd41fbade684a1"
|
|
4891
|
+
dependencies = [
|
|
4892
|
+
"proc-macro2",
|
|
4893
|
+
"quote",
|
|
4894
|
+
"syn",
|
|
4895
|
+
"synstructure",
|
|
4896
|
+
]
|
|
4897
|
+
|
|
4898
|
+
[[package]]
|
|
4899
|
+
name = "zeroize"
|
|
4900
|
+
version = "1.8.2"
|
|
4901
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4902
|
+
checksum = "b97154e67e32c85465826e8bcc1c59429aaaf107c1e4a9e53c8d8ccd5eff88d0"
|
|
4903
|
+
|
|
4904
|
+
[[package]]
|
|
4905
|
+
name = "zerotrie"
|
|
4906
|
+
version = "0.2.4"
|
|
4907
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4908
|
+
checksum = "0f9152d31db0792fa83f70fb2f83148effb5c1f5b8c7686c3459e361d9bc20bf"
|
|
4909
|
+
dependencies = [
|
|
4910
|
+
"displaydoc",
|
|
4911
|
+
"yoke",
|
|
4912
|
+
"zerofrom",
|
|
4913
|
+
]
|
|
4914
|
+
|
|
4915
|
+
[[package]]
|
|
4916
|
+
name = "zerovec"
|
|
4917
|
+
version = "0.11.6"
|
|
4918
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4919
|
+
checksum = "90f911cbc359ab6af17377d242225f4d75119aec87ea711a880987b18cd7b239"
|
|
4920
|
+
dependencies = [
|
|
4921
|
+
"yoke",
|
|
4922
|
+
"zerofrom",
|
|
4923
|
+
"zerovec-derive",
|
|
4924
|
+
]
|
|
4925
|
+
|
|
4926
|
+
[[package]]
|
|
4927
|
+
name = "zerovec-derive"
|
|
4928
|
+
version = "0.11.3"
|
|
4929
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4930
|
+
checksum = "625dc425cab0dca6dc3c3319506e6593dcb08a9f387ea3b284dbd52a92c40555"
|
|
4931
|
+
dependencies = [
|
|
4932
|
+
"proc-macro2",
|
|
4933
|
+
"quote",
|
|
4934
|
+
"syn",
|
|
4935
|
+
]
|
|
4936
|
+
|
|
4937
|
+
[[package]]
|
|
4938
|
+
name = "zmij"
|
|
4939
|
+
version = "1.0.21"
|
|
4940
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4941
|
+
checksum = "b8848ee67ecc8aedbaf3e4122217aff892639231befc6a1b58d29fff4c2cabaa"
|
|
4942
|
+
|
|
4943
|
+
[[package]]
|
|
4944
|
+
name = "zstd"
|
|
4945
|
+
version = "0.13.3"
|
|
4946
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4947
|
+
checksum = "e91ee311a569c327171651566e07972200e76fcfe2242a4fa446149a3881c08a"
|
|
4948
|
+
dependencies = [
|
|
4949
|
+
"zstd-safe",
|
|
4950
|
+
]
|
|
4951
|
+
|
|
4952
|
+
[[package]]
|
|
4953
|
+
name = "zstd-safe"
|
|
4954
|
+
version = "7.2.4"
|
|
4955
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4956
|
+
checksum = "8f49c4d5f0abb602a93fb8736af2a4f4dd9512e36f7f570d66e65ff867ed3b9d"
|
|
4957
|
+
dependencies = [
|
|
4958
|
+
"zstd-sys",
|
|
4959
|
+
]
|
|
4960
|
+
|
|
4961
|
+
[[package]]
|
|
4962
|
+
name = "zstd-sys"
|
|
4963
|
+
version = "2.0.16+zstd.1.5.7"
|
|
4964
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4965
|
+
checksum = "91e19ebc2adc8f83e43039e79776e3fda8ca919132d68a1fed6a5faca2683748"
|
|
4966
|
+
dependencies = [
|
|
4967
|
+
"cc",
|
|
4968
|
+
"pkg-config",
|
|
4969
|
+
]
|