app_bridge 2.0.0 → 2.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/.editorconfig +18 -0
- data/Cargo.lock +1248 -389
- data/Rakefile +6 -3
- data/ext/app_bridge/Cargo.toml +8 -3
- data/ext/app_bridge/src/app_state.rs +21 -6
- data/ext/app_bridge/src/component.rs +34 -9
- data/ext/app_bridge/src/lib.rs +30 -10
- data/ext/app_bridge/src/request_builder.rs +39 -1
- data/ext/app_bridge/src/wrappers/action_context.rs +79 -0
- data/ext/app_bridge/src/wrappers/action_response.rs +32 -0
- data/ext/app_bridge/src/wrappers/app.rs +257 -14
- data/ext/app_bridge/src/wrappers/{account.rs → connection.rs} +12 -12
- data/ext/app_bridge/src/wrappers/mod.rs +3 -1
- data/ext/app_bridge/src/wrappers/trigger_context.rs +35 -14
- data/ext/app_bridge/wit/world.wit +88 -7
- data/lib/app_bridge/app.rb +31 -3
- data/lib/app_bridge/version.rb +4 -1
- data/lib/app_bridge.rb +4 -6
- data/sig/app_bridge.rbs +26 -4
- data/tasks/rust_test.rake +11 -0
- metadata +7 -3
data/Cargo.lock
CHANGED
@@ -17,18 +17,6 @@ version = "2.0.0"
|
|
17
17
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
18
18
|
checksum = "512761e0bb2578dd7380c6baaa0f4ce03e84f95e960231d1dec8bf4d7d6e2627"
|
19
19
|
|
20
|
-
[[package]]
|
21
|
-
name = "ahash"
|
22
|
-
version = "0.8.11"
|
23
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
24
|
-
checksum = "e89da841a80418a9b391ebaea17f5c112ffaaa96f621d2c285b5174da76b9011"
|
25
|
-
dependencies = [
|
26
|
-
"cfg-if",
|
27
|
-
"once_cell",
|
28
|
-
"version_check",
|
29
|
-
"zerocopy",
|
30
|
-
]
|
31
|
-
|
32
20
|
[[package]]
|
33
21
|
name = "aho-corasick"
|
34
22
|
version = "1.1.3"
|
@@ -61,14 +49,15 @@ dependencies = [
|
|
61
49
|
|
62
50
|
[[package]]
|
63
51
|
name = "anyhow"
|
64
|
-
version = "1.0.
|
52
|
+
version = "1.0.98"
|
65
53
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
66
|
-
checksum = "
|
54
|
+
checksum = "e16d2d3311acee920a9eb8d33b8cbc1787ce4a264e85f964c2404b969bdcd487"
|
67
55
|
|
68
56
|
[[package]]
|
69
57
|
name = "app_bridge"
|
70
|
-
version = "1.0
|
58
|
+
version = "2.1.0"
|
71
59
|
dependencies = [
|
60
|
+
"httpmock",
|
72
61
|
"magnus",
|
73
62
|
"reqwest",
|
74
63
|
"wasmtime",
|
@@ -81,15 +70,205 @@ version = "1.4.1"
|
|
81
70
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
82
71
|
checksum = "dde20b3d026af13f561bdd0f15edf01fc734f0dafcedbaf42bba506a9517f223"
|
83
72
|
|
73
|
+
[[package]]
|
74
|
+
name = "ascii-canvas"
|
75
|
+
version = "3.0.0"
|
76
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
77
|
+
checksum = "8824ecca2e851cec16968d54a01dd372ef8f95b244fb84b84e70128be347c3c6"
|
78
|
+
dependencies = [
|
79
|
+
"term",
|
80
|
+
]
|
81
|
+
|
82
|
+
[[package]]
|
83
|
+
name = "assert-json-diff"
|
84
|
+
version = "2.0.2"
|
85
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
86
|
+
checksum = "47e4f2b81832e72834d7518d8487a0396a28cc408186a2e8854c0f98011faf12"
|
87
|
+
dependencies = [
|
88
|
+
"serde",
|
89
|
+
"serde_json",
|
90
|
+
]
|
91
|
+
|
92
|
+
[[package]]
|
93
|
+
name = "async-attributes"
|
94
|
+
version = "1.1.2"
|
95
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
96
|
+
checksum = "a3203e79f4dd9bdda415ed03cf14dae5a2bf775c683a00f94e9cd1faf0f596e5"
|
97
|
+
dependencies = [
|
98
|
+
"quote",
|
99
|
+
"syn 1.0.109",
|
100
|
+
]
|
101
|
+
|
102
|
+
[[package]]
|
103
|
+
name = "async-channel"
|
104
|
+
version = "1.9.0"
|
105
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
106
|
+
checksum = "81953c529336010edd6d8e358f886d9581267795c61b19475b71314bffa46d35"
|
107
|
+
dependencies = [
|
108
|
+
"concurrent-queue",
|
109
|
+
"event-listener 2.5.3",
|
110
|
+
"futures-core",
|
111
|
+
]
|
112
|
+
|
113
|
+
[[package]]
|
114
|
+
name = "async-channel"
|
115
|
+
version = "2.3.1"
|
116
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
117
|
+
checksum = "89b47800b0be77592da0afd425cc03468052844aff33b84e33cc696f64e77b6a"
|
118
|
+
dependencies = [
|
119
|
+
"concurrent-queue",
|
120
|
+
"event-listener-strategy",
|
121
|
+
"futures-core",
|
122
|
+
"pin-project-lite",
|
123
|
+
]
|
124
|
+
|
125
|
+
[[package]]
|
126
|
+
name = "async-executor"
|
127
|
+
version = "1.13.1"
|
128
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
129
|
+
checksum = "30ca9a001c1e8ba5149f91a74362376cc6bc5b919d92d988668657bd570bdcec"
|
130
|
+
dependencies = [
|
131
|
+
"async-task",
|
132
|
+
"concurrent-queue",
|
133
|
+
"fastrand",
|
134
|
+
"futures-lite",
|
135
|
+
"slab",
|
136
|
+
]
|
137
|
+
|
138
|
+
[[package]]
|
139
|
+
name = "async-global-executor"
|
140
|
+
version = "2.4.1"
|
141
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
142
|
+
checksum = "05b1b633a2115cd122d73b955eadd9916c18c8f510ec9cd1686404c60ad1c29c"
|
143
|
+
dependencies = [
|
144
|
+
"async-channel 2.3.1",
|
145
|
+
"async-executor",
|
146
|
+
"async-io",
|
147
|
+
"async-lock",
|
148
|
+
"blocking",
|
149
|
+
"futures-lite",
|
150
|
+
"once_cell",
|
151
|
+
]
|
152
|
+
|
153
|
+
[[package]]
|
154
|
+
name = "async-io"
|
155
|
+
version = "2.4.0"
|
156
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
157
|
+
checksum = "43a2b323ccce0a1d90b449fd71f2a06ca7faa7c54c2751f06c9bd851fc061059"
|
158
|
+
dependencies = [
|
159
|
+
"async-lock",
|
160
|
+
"cfg-if",
|
161
|
+
"concurrent-queue",
|
162
|
+
"futures-io",
|
163
|
+
"futures-lite",
|
164
|
+
"parking",
|
165
|
+
"polling",
|
166
|
+
"rustix 0.38.44",
|
167
|
+
"slab",
|
168
|
+
"tracing",
|
169
|
+
"windows-sys 0.59.0",
|
170
|
+
]
|
171
|
+
|
172
|
+
[[package]]
|
173
|
+
name = "async-lock"
|
174
|
+
version = "3.4.0"
|
175
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
176
|
+
checksum = "ff6e472cdea888a4bd64f342f09b3f50e1886d32afe8df3d663c01140b811b18"
|
177
|
+
dependencies = [
|
178
|
+
"event-listener 5.4.0",
|
179
|
+
"event-listener-strategy",
|
180
|
+
"pin-project-lite",
|
181
|
+
]
|
182
|
+
|
183
|
+
[[package]]
|
184
|
+
name = "async-object-pool"
|
185
|
+
version = "0.1.5"
|
186
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
187
|
+
checksum = "333c456b97c3f2d50604e8b2624253b7f787208cb72eb75e64b0ad11b221652c"
|
188
|
+
dependencies = [
|
189
|
+
"async-std",
|
190
|
+
]
|
191
|
+
|
192
|
+
[[package]]
|
193
|
+
name = "async-process"
|
194
|
+
version = "2.3.0"
|
195
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
196
|
+
checksum = "63255f1dc2381611000436537bbedfe83183faa303a5a0edaf191edef06526bb"
|
197
|
+
dependencies = [
|
198
|
+
"async-channel 2.3.1",
|
199
|
+
"async-io",
|
200
|
+
"async-lock",
|
201
|
+
"async-signal",
|
202
|
+
"async-task",
|
203
|
+
"blocking",
|
204
|
+
"cfg-if",
|
205
|
+
"event-listener 5.4.0",
|
206
|
+
"futures-lite",
|
207
|
+
"rustix 0.38.44",
|
208
|
+
"tracing",
|
209
|
+
]
|
210
|
+
|
211
|
+
[[package]]
|
212
|
+
name = "async-signal"
|
213
|
+
version = "0.2.10"
|
214
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
215
|
+
checksum = "637e00349800c0bdf8bfc21ebbc0b6524abea702b0da4168ac00d070d0c0b9f3"
|
216
|
+
dependencies = [
|
217
|
+
"async-io",
|
218
|
+
"async-lock",
|
219
|
+
"atomic-waker",
|
220
|
+
"cfg-if",
|
221
|
+
"futures-core",
|
222
|
+
"futures-io",
|
223
|
+
"rustix 0.38.44",
|
224
|
+
"signal-hook-registry",
|
225
|
+
"slab",
|
226
|
+
"windows-sys 0.59.0",
|
227
|
+
]
|
228
|
+
|
229
|
+
[[package]]
|
230
|
+
name = "async-std"
|
231
|
+
version = "1.13.1"
|
232
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
233
|
+
checksum = "730294c1c08c2e0f85759590518f6333f0d5a0a766a27d519c1b244c3dfd8a24"
|
234
|
+
dependencies = [
|
235
|
+
"async-attributes",
|
236
|
+
"async-channel 1.9.0",
|
237
|
+
"async-global-executor",
|
238
|
+
"async-io",
|
239
|
+
"async-lock",
|
240
|
+
"async-process",
|
241
|
+
"crossbeam-utils",
|
242
|
+
"futures-channel",
|
243
|
+
"futures-core",
|
244
|
+
"futures-io",
|
245
|
+
"futures-lite",
|
246
|
+
"gloo-timers",
|
247
|
+
"kv-log-macro",
|
248
|
+
"log",
|
249
|
+
"memchr",
|
250
|
+
"once_cell",
|
251
|
+
"pin-project-lite",
|
252
|
+
"pin-utils",
|
253
|
+
"slab",
|
254
|
+
"wasm-bindgen-futures",
|
255
|
+
]
|
256
|
+
|
257
|
+
[[package]]
|
258
|
+
name = "async-task"
|
259
|
+
version = "4.7.1"
|
260
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
261
|
+
checksum = "8b75356056920673b02621b35afd0f7dda9306d03c79a30f5c56c44cf256e3de"
|
262
|
+
|
84
263
|
[[package]]
|
85
264
|
name = "async-trait"
|
86
|
-
version = "0.1.
|
265
|
+
version = "0.1.88"
|
87
266
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
88
|
-
checksum = "
|
267
|
+
checksum = "e539d3fca749fcee5236ab05e93a52867dd549cc157c8cb7f99595f3cedffdb5"
|
89
268
|
dependencies = [
|
90
269
|
"proc-macro2",
|
91
270
|
"quote",
|
92
|
-
"syn",
|
271
|
+
"syn 2.0.100",
|
93
272
|
]
|
94
273
|
|
95
274
|
[[package]]
|
@@ -116,7 +295,7 @@ dependencies = [
|
|
116
295
|
"miniz_oxide",
|
117
296
|
"object",
|
118
297
|
"rustc-demangle",
|
119
|
-
"windows-targets",
|
298
|
+
"windows-targets 0.52.6",
|
120
299
|
]
|
121
300
|
|
122
301
|
[[package]]
|
@@ -131,6 +310,17 @@ version = "0.22.1"
|
|
131
310
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
132
311
|
checksum = "72b3254f16251a8381aa12e40e3c4d2f0199f8c6508fbecb9d91f575e0fbb8c6"
|
133
312
|
|
313
|
+
[[package]]
|
314
|
+
name = "basic-cookies"
|
315
|
+
version = "0.1.5"
|
316
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
317
|
+
checksum = "67bd8fd42c16bdb08688243dc5f0cc117a3ca9efeeaba3a345a18a6159ad96f7"
|
318
|
+
dependencies = [
|
319
|
+
"lalrpop",
|
320
|
+
"lalrpop-util",
|
321
|
+
"regex",
|
322
|
+
]
|
323
|
+
|
134
324
|
[[package]]
|
135
325
|
name = "bindgen"
|
136
326
|
version = "0.69.5"
|
@@ -140,7 +330,7 @@ dependencies = [
|
|
140
330
|
"bitflags",
|
141
331
|
"cexpr",
|
142
332
|
"clang-sys",
|
143
|
-
"itertools",
|
333
|
+
"itertools 0.12.1",
|
144
334
|
"lazy_static",
|
145
335
|
"lazycell",
|
146
336
|
"proc-macro2",
|
@@ -148,14 +338,29 @@ dependencies = [
|
|
148
338
|
"regex",
|
149
339
|
"rustc-hash 1.1.0",
|
150
340
|
"shlex",
|
151
|
-
"syn",
|
341
|
+
"syn 2.0.100",
|
342
|
+
]
|
343
|
+
|
344
|
+
[[package]]
|
345
|
+
name = "bit-set"
|
346
|
+
version = "0.5.3"
|
347
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
348
|
+
checksum = "0700ddab506f33b20a03b13996eccd309a48e5ff77d0d95926aa0210fb4e95f1"
|
349
|
+
dependencies = [
|
350
|
+
"bit-vec",
|
152
351
|
]
|
153
352
|
|
353
|
+
[[package]]
|
354
|
+
name = "bit-vec"
|
355
|
+
version = "0.6.3"
|
356
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
357
|
+
checksum = "349f9b6a179ed607305526ca489b34ad0a41aed5f7980fa90eb03160b69598fb"
|
358
|
+
|
154
359
|
[[package]]
|
155
360
|
name = "bitflags"
|
156
|
-
version = "2.
|
361
|
+
version = "2.9.0"
|
157
362
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
158
|
-
checksum = "
|
363
|
+
checksum = "5c8214115b7bf84099f1309324e63141d4c5d7cc26862f97a0a857dbefe165bd"
|
159
364
|
|
160
365
|
[[package]]
|
161
366
|
name = "block-buffer"
|
@@ -166,6 +371,19 @@ dependencies = [
|
|
166
371
|
"generic-array",
|
167
372
|
]
|
168
373
|
|
374
|
+
[[package]]
|
375
|
+
name = "blocking"
|
376
|
+
version = "1.6.1"
|
377
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
378
|
+
checksum = "703f41c54fc768e63e091340b424302bb1c29ef4aa0c7f10fe849dfb114d29ea"
|
379
|
+
dependencies = [
|
380
|
+
"async-channel 2.3.1",
|
381
|
+
"async-task",
|
382
|
+
"futures-io",
|
383
|
+
"futures-lite",
|
384
|
+
"piper",
|
385
|
+
]
|
386
|
+
|
169
387
|
[[package]]
|
170
388
|
name = "bumpalo"
|
171
389
|
version = "3.17.0"
|
@@ -183,15 +401,15 @@ checksum = "1fd0f2584146f6f2ef48085050886acf353beff7305ebd1ae69500e27c67f64b"
|
|
183
401
|
|
184
402
|
[[package]]
|
185
403
|
name = "bytes"
|
186
|
-
version = "1.10.
|
404
|
+
version = "1.10.1"
|
187
405
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
188
|
-
checksum = "
|
406
|
+
checksum = "d71b6127be86fdcfddb610f7182ac57211d4b18a3e9c82eb2d17662f2227ad6a"
|
189
407
|
|
190
408
|
[[package]]
|
191
409
|
name = "cap-fs-ext"
|
192
|
-
version = "3.4.
|
410
|
+
version = "3.4.3"
|
193
411
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
194
|
-
checksum = "
|
412
|
+
checksum = "f6323b9baffb4d6d9c65bfef3129db62b1391f7fb953fe67c0d7cb0804feb77b"
|
195
413
|
dependencies = [
|
196
414
|
"cap-primitives",
|
197
415
|
"cap-std",
|
@@ -201,21 +419,21 @@ dependencies = [
|
|
201
419
|
|
202
420
|
[[package]]
|
203
421
|
name = "cap-net-ext"
|
204
|
-
version = "3.4.
|
422
|
+
version = "3.4.3"
|
205
423
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
206
|
-
checksum = "
|
424
|
+
checksum = "66022e5e076ea27041a05ebd4349022e2133e6f4977974dffd54ceb7b982e871"
|
207
425
|
dependencies = [
|
208
426
|
"cap-primitives",
|
209
427
|
"cap-std",
|
210
|
-
"rustix",
|
428
|
+
"rustix 0.38.44",
|
211
429
|
"smallvec",
|
212
430
|
]
|
213
431
|
|
214
432
|
[[package]]
|
215
433
|
name = "cap-primitives"
|
216
|
-
version = "3.4.
|
434
|
+
version = "3.4.3"
|
217
435
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
218
|
-
checksum = "
|
436
|
+
checksum = "50ad0183a9659850877cefe8f5b87d564b2dd1fe78b18945813687f29c0a6878"
|
219
437
|
dependencies = [
|
220
438
|
"ambient-authority",
|
221
439
|
"fs-set-times",
|
@@ -223,16 +441,16 @@ dependencies = [
|
|
223
441
|
"io-lifetimes",
|
224
442
|
"ipnet",
|
225
443
|
"maybe-owned",
|
226
|
-
"rustix",
|
444
|
+
"rustix 0.38.44",
|
227
445
|
"windows-sys 0.59.0",
|
228
446
|
"winx",
|
229
447
|
]
|
230
448
|
|
231
449
|
[[package]]
|
232
450
|
name = "cap-rand"
|
233
|
-
version = "3.4.
|
451
|
+
version = "3.4.3"
|
234
452
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
235
|
-
checksum = "
|
453
|
+
checksum = "ab78a9f6301e70c0fe5df7328adbcb9228277fdb7bab36f312fc072f505e38c2"
|
236
454
|
dependencies = [
|
237
455
|
"ambient-authority",
|
238
456
|
"rand",
|
@@ -240,35 +458,35 @@ dependencies = [
|
|
240
458
|
|
241
459
|
[[package]]
|
242
460
|
name = "cap-std"
|
243
|
-
version = "3.4.
|
461
|
+
version = "3.4.3"
|
244
462
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
245
|
-
checksum = "
|
463
|
+
checksum = "1c41814365b796ed12688026cb90a1e03236a84ccf009628f9c43c8aa3af250a"
|
246
464
|
dependencies = [
|
247
465
|
"cap-primitives",
|
248
466
|
"io-extras",
|
249
467
|
"io-lifetimes",
|
250
|
-
"rustix",
|
468
|
+
"rustix 0.38.44",
|
251
469
|
]
|
252
470
|
|
253
471
|
[[package]]
|
254
472
|
name = "cap-time-ext"
|
255
|
-
version = "3.4.
|
473
|
+
version = "3.4.3"
|
256
474
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
257
|
-
checksum = "
|
475
|
+
checksum = "eb57b71bb69b97c638ec38b477e9b33fa1c1cff0e437dd55d15c117cf17ed5dc"
|
258
476
|
dependencies = [
|
259
477
|
"ambient-authority",
|
260
478
|
"cap-primitives",
|
261
479
|
"iana-time-zone",
|
262
480
|
"once_cell",
|
263
|
-
"rustix",
|
481
|
+
"rustix 0.38.44",
|
264
482
|
"winx",
|
265
483
|
]
|
266
484
|
|
267
485
|
[[package]]
|
268
486
|
name = "cc"
|
269
|
-
version = "1.2.
|
487
|
+
version = "1.2.19"
|
270
488
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
271
|
-
checksum = "
|
489
|
+
checksum = "8e3a13707ac958681c13b39b458c073d0d9bc8a22cb1b2f4c8e55eb72c13f362"
|
272
490
|
dependencies = [
|
273
491
|
"jobserver",
|
274
492
|
"libc",
|
@@ -307,6 +525,15 @@ version = "0.2.3"
|
|
307
525
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
308
526
|
checksum = "67ba02a97a2bd10f4b59b25c7973101c79642302776489e030cd13cdab09ed15"
|
309
527
|
|
528
|
+
[[package]]
|
529
|
+
name = "concurrent-queue"
|
530
|
+
version = "2.5.0"
|
531
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
532
|
+
checksum = "4ca0197aee26d1ae37445ee532fefce43251d24cc7c166799f4d46817f1d3973"
|
533
|
+
dependencies = [
|
534
|
+
"crossbeam-utils",
|
535
|
+
]
|
536
|
+
|
310
537
|
[[package]]
|
311
538
|
name = "core-foundation"
|
312
539
|
version = "0.9.4"
|
@@ -341,20 +568,38 @@ dependencies = [
|
|
341
568
|
"libc",
|
342
569
|
]
|
343
570
|
|
571
|
+
[[package]]
|
572
|
+
name = "cranelift-assembler-x64"
|
573
|
+
version = "0.119.0"
|
574
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
575
|
+
checksum = "263cc79b8a23c29720eb596d251698f604546b48c34d0d84f8fd2761e5bf8888"
|
576
|
+
dependencies = [
|
577
|
+
"cranelift-assembler-x64-meta",
|
578
|
+
]
|
579
|
+
|
580
|
+
[[package]]
|
581
|
+
name = "cranelift-assembler-x64-meta"
|
582
|
+
version = "0.119.0"
|
583
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
584
|
+
checksum = "5b4a113455f8c0e13e3b3222a9c38d6940b958ff22573108be083495c72820e1"
|
585
|
+
dependencies = [
|
586
|
+
"cranelift-srcgen",
|
587
|
+
]
|
588
|
+
|
344
589
|
[[package]]
|
345
590
|
name = "cranelift-bforest"
|
346
|
-
version = "0.
|
591
|
+
version = "0.119.0"
|
347
592
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
348
|
-
checksum = "
|
593
|
+
checksum = "58f96dca41c5acf5d4312c1d04b3391e21a312f8d64ce31a2723a3bb8edd5d4d"
|
349
594
|
dependencies = [
|
350
595
|
"cranelift-entity",
|
351
596
|
]
|
352
597
|
|
353
598
|
[[package]]
|
354
599
|
name = "cranelift-bitset"
|
355
|
-
version = "0.
|
600
|
+
version = "0.119.0"
|
356
601
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
357
|
-
checksum = "
|
602
|
+
checksum = "7d821ed698dd83d9c012447eb63a5406c1e9c23732a2f674fb5b5015afd42202"
|
358
603
|
dependencies = [
|
359
604
|
"serde",
|
360
605
|
"serde_derive",
|
@@ -362,11 +607,12 @@ dependencies = [
|
|
362
607
|
|
363
608
|
[[package]]
|
364
609
|
name = "cranelift-codegen"
|
365
|
-
version = "0.
|
610
|
+
version = "0.119.0"
|
366
611
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
367
|
-
checksum = "
|
612
|
+
checksum = "06c52fdec4322cb8d5545a648047819aaeaa04e630f88d3a609c0d3c1a00e9a0"
|
368
613
|
dependencies = [
|
369
614
|
"bumpalo",
|
615
|
+
"cranelift-assembler-x64",
|
370
616
|
"cranelift-bforest",
|
371
617
|
"cranelift-bitset",
|
372
618
|
"cranelift-codegen-meta",
|
@@ -375,8 +621,9 @@ dependencies = [
|
|
375
621
|
"cranelift-entity",
|
376
622
|
"cranelift-isle",
|
377
623
|
"gimli",
|
378
|
-
"hashbrown
|
624
|
+
"hashbrown",
|
379
625
|
"log",
|
626
|
+
"pulley-interpreter",
|
380
627
|
"regalloc2",
|
381
628
|
"rustc-hash 2.1.1",
|
382
629
|
"serde",
|
@@ -386,33 +633,36 @@ dependencies = [
|
|
386
633
|
|
387
634
|
[[package]]
|
388
635
|
name = "cranelift-codegen-meta"
|
389
|
-
version = "0.
|
636
|
+
version = "0.119.0"
|
390
637
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
391
|
-
checksum = "
|
638
|
+
checksum = "af2c215e0c9afa8069aafb71d22aa0e0dde1048d9a5c3c72a83cacf9b61fcf4a"
|
392
639
|
dependencies = [
|
640
|
+
"cranelift-assembler-x64-meta",
|
393
641
|
"cranelift-codegen-shared",
|
642
|
+
"cranelift-srcgen",
|
643
|
+
"pulley-interpreter",
|
394
644
|
]
|
395
645
|
|
396
646
|
[[package]]
|
397
647
|
name = "cranelift-codegen-shared"
|
398
|
-
version = "0.
|
648
|
+
version = "0.119.0"
|
399
649
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
400
|
-
checksum = "
|
650
|
+
checksum = "97524b2446fc26a78142132d813679dda19f620048ebc9a9fbb0ac9f2d320dcb"
|
401
651
|
|
402
652
|
[[package]]
|
403
653
|
name = "cranelift-control"
|
404
|
-
version = "0.
|
654
|
+
version = "0.119.0"
|
405
655
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
406
|
-
checksum = "
|
656
|
+
checksum = "8e32e900aee81f9e3cc493405ef667a7812cb5c79b5fc6b669e0a2795bda4b22"
|
407
657
|
dependencies = [
|
408
658
|
"arbitrary",
|
409
659
|
]
|
410
660
|
|
411
661
|
[[package]]
|
412
662
|
name = "cranelift-entity"
|
413
|
-
version = "0.
|
663
|
+
version = "0.119.0"
|
414
664
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
415
|
-
checksum = "
|
665
|
+
checksum = "d16a2e28e0fa6b9108d76879d60fe1cc95ba90e1bcf52bac96496371044484ee"
|
416
666
|
dependencies = [
|
417
667
|
"cranelift-bitset",
|
418
668
|
"serde",
|
@@ -421,9 +671,9 @@ dependencies = [
|
|
421
671
|
|
422
672
|
[[package]]
|
423
673
|
name = "cranelift-frontend"
|
424
|
-
version = "0.
|
674
|
+
version = "0.119.0"
|
425
675
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
426
|
-
checksum = "
|
676
|
+
checksum = "328181a9083d99762d85954a16065d2560394a862b8dc10239f39668df528b95"
|
427
677
|
dependencies = [
|
428
678
|
"cranelift-codegen",
|
429
679
|
"log",
|
@@ -433,21 +683,27 @@ dependencies = [
|
|
433
683
|
|
434
684
|
[[package]]
|
435
685
|
name = "cranelift-isle"
|
436
|
-
version = "0.
|
686
|
+
version = "0.119.0"
|
437
687
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
438
|
-
checksum = "
|
688
|
+
checksum = "e916f36f183e377e9a3ed71769f2721df88b72648831e95bb9fa6b0cd9b1c709"
|
439
689
|
|
440
690
|
[[package]]
|
441
691
|
name = "cranelift-native"
|
442
|
-
version = "0.
|
692
|
+
version = "0.119.0"
|
443
693
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
444
|
-
checksum = "
|
694
|
+
checksum = "fc852cf04128877047dc2027aa1b85c64f681dc3a6a37ff45dcbfa26e4d52d2f"
|
445
695
|
dependencies = [
|
446
696
|
"cranelift-codegen",
|
447
697
|
"libc",
|
448
698
|
"target-lexicon",
|
449
699
|
]
|
450
700
|
|
701
|
+
[[package]]
|
702
|
+
name = "cranelift-srcgen"
|
703
|
+
version = "0.119.0"
|
704
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
705
|
+
checksum = "47e1a86340a16e74b4285cc86ac69458fa1c8e7aaff313da4a89d10efd3535ee"
|
706
|
+
|
451
707
|
[[package]]
|
452
708
|
name = "crc32fast"
|
453
709
|
version = "1.4.2"
|
@@ -482,6 +738,12 @@ version = "0.8.21"
|
|
482
738
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
483
739
|
checksum = "d0a5c400df2834b80a4c3327b3aad3a4c4cd4de0629063962b03235697506a28"
|
484
740
|
|
741
|
+
[[package]]
|
742
|
+
name = "crunchy"
|
743
|
+
version = "0.2.3"
|
744
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
745
|
+
checksum = "43da5946c66ffcc7745f48db692ffbb10a83bfe0afd96235c5c2a4fb23994929"
|
746
|
+
|
485
747
|
[[package]]
|
486
748
|
name = "crypto-common"
|
487
749
|
version = "0.1.6"
|
@@ -530,6 +792,16 @@ dependencies = [
|
|
530
792
|
"dirs-sys",
|
531
793
|
]
|
532
794
|
|
795
|
+
[[package]]
|
796
|
+
name = "dirs-next"
|
797
|
+
version = "2.0.0"
|
798
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
799
|
+
checksum = "b98cf8ebf19c3d1b223e151f99a4f9f0690dca41414773390fc824184ac833e1"
|
800
|
+
dependencies = [
|
801
|
+
"cfg-if",
|
802
|
+
"dirs-sys-next",
|
803
|
+
]
|
804
|
+
|
533
805
|
[[package]]
|
534
806
|
name = "dirs-sys"
|
535
807
|
version = "0.3.7"
|
@@ -560,14 +832,14 @@ checksum = "97369cbbc041bc366949bc74d34658d6cda5621039731c6310521892a3a20ae0"
|
|
560
832
|
dependencies = [
|
561
833
|
"proc-macro2",
|
562
834
|
"quote",
|
563
|
-
"syn",
|
835
|
+
"syn 2.0.100",
|
564
836
|
]
|
565
837
|
|
566
838
|
[[package]]
|
567
839
|
name = "either"
|
568
|
-
version = "1.
|
840
|
+
version = "1.15.0"
|
569
841
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
570
|
-
checksum = "
|
842
|
+
checksum = "48c757948c5ede0e46177b7add2e67155f70e33c07fea8284df6576da70b3719"
|
571
843
|
|
572
844
|
[[package]]
|
573
845
|
name = "embedded-io"
|
@@ -581,6 +853,15 @@ version = "0.6.1"
|
|
581
853
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
582
854
|
checksum = "edd0f118536f44f5ccd48bcb8b111bdc3de888b58c74639dfb034a357d0f206d"
|
583
855
|
|
856
|
+
[[package]]
|
857
|
+
name = "ena"
|
858
|
+
version = "0.14.3"
|
859
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
860
|
+
checksum = "3d248bdd43ce613d87415282f69b9bb99d947d290b10962dd6c56233312c2ad5"
|
861
|
+
dependencies = [
|
862
|
+
"log",
|
863
|
+
]
|
864
|
+
|
584
865
|
[[package]]
|
585
866
|
name = "encoding_rs"
|
586
867
|
version = "0.8.35"
|
@@ -598,14 +879,41 @@ checksum = "877a4ace8713b0bcf2a4e7eec82529c029f1d0619886d18145fea96c3ffe5c0f"
|
|
598
879
|
|
599
880
|
[[package]]
|
600
881
|
name = "errno"
|
601
|
-
version = "0.3.
|
882
|
+
version = "0.3.11"
|
602
883
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
603
|
-
checksum = "
|
884
|
+
checksum = "976dd42dc7e85965fe702eb8164f21f450704bdde31faefd6471dba214cb594e"
|
604
885
|
dependencies = [
|
605
886
|
"libc",
|
606
887
|
"windows-sys 0.59.0",
|
607
888
|
]
|
608
889
|
|
890
|
+
[[package]]
|
891
|
+
name = "event-listener"
|
892
|
+
version = "2.5.3"
|
893
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
894
|
+
checksum = "0206175f82b8d6bf6652ff7d71a1e27fd2e4efde587fd368662814d6ec1d9ce0"
|
895
|
+
|
896
|
+
[[package]]
|
897
|
+
name = "event-listener"
|
898
|
+
version = "5.4.0"
|
899
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
900
|
+
checksum = "3492acde4c3fc54c845eaab3eed8bd00c7a7d881f78bfc801e43a93dec1331ae"
|
901
|
+
dependencies = [
|
902
|
+
"concurrent-queue",
|
903
|
+
"parking",
|
904
|
+
"pin-project-lite",
|
905
|
+
]
|
906
|
+
|
907
|
+
[[package]]
|
908
|
+
name = "event-listener-strategy"
|
909
|
+
version = "0.5.4"
|
910
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
911
|
+
checksum = "8be9f3dfaaffdae2972880079a491a1a8bb7cbed0b8dd7a347f668b4150a3b93"
|
912
|
+
dependencies = [
|
913
|
+
"event-listener 5.4.0",
|
914
|
+
"pin-project-lite",
|
915
|
+
]
|
916
|
+
|
609
917
|
[[package]]
|
610
918
|
name = "fallible-iterator"
|
611
919
|
version = "0.3.0"
|
@@ -620,15 +928,21 @@ checksum = "37909eebbb50d72f9059c3b6d82c0463f2ff062c9e95845c43a6c9c0355411be"
|
|
620
928
|
|
621
929
|
[[package]]
|
622
930
|
name = "fd-lock"
|
623
|
-
version = "4.0.
|
931
|
+
version = "4.0.4"
|
624
932
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
625
|
-
checksum = "
|
933
|
+
checksum = "0ce92ff622d6dadf7349484f42c93271a0d49b7cc4d466a936405bacbe10aa78"
|
626
934
|
dependencies = [
|
627
935
|
"cfg-if",
|
628
|
-
"rustix",
|
629
|
-
"windows-sys 0.
|
936
|
+
"rustix 1.0.5",
|
937
|
+
"windows-sys 0.59.0",
|
630
938
|
]
|
631
939
|
|
940
|
+
[[package]]
|
941
|
+
name = "fixedbitset"
|
942
|
+
version = "0.4.2"
|
943
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
944
|
+
checksum = "0ce7134b9999ecaf8bcd65542e436736ef32ddca1b3e06094cb6ec5755203b80"
|
945
|
+
|
632
946
|
[[package]]
|
633
947
|
name = "fnv"
|
634
948
|
version = "1.0.7"
|
@@ -637,9 +951,9 @@ checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1"
|
|
637
951
|
|
638
952
|
[[package]]
|
639
953
|
name = "foldhash"
|
640
|
-
version = "0.1.
|
954
|
+
version = "0.1.5"
|
641
955
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
642
|
-
checksum = "
|
956
|
+
checksum = "d9c4f5dac5e15c24eb999c26181a6ca40b39fe946cbe4c263c7209467bc83af2"
|
643
957
|
|
644
958
|
[[package]]
|
645
959
|
name = "foreign-types"
|
@@ -667,12 +981,12 @@ dependencies = [
|
|
667
981
|
|
668
982
|
[[package]]
|
669
983
|
name = "fs-set-times"
|
670
|
-
version = "0.20.
|
984
|
+
version = "0.20.3"
|
671
985
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
672
|
-
checksum = "
|
986
|
+
checksum = "94e7099f6313ecacbe1256e8ff9d617b75d1bcb16a6fddef94866d225a01a14a"
|
673
987
|
dependencies = [
|
674
988
|
"io-lifetimes",
|
675
|
-
"rustix",
|
989
|
+
"rustix 1.0.5",
|
676
990
|
"windows-sys 0.59.0",
|
677
991
|
]
|
678
992
|
|
@@ -712,6 +1026,30 @@ version = "0.3.31"
|
|
712
1026
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
713
1027
|
checksum = "9e5c1b78ca4aae1ac06c48a526a655760685149f0d465d21f37abfe57ce075c6"
|
714
1028
|
|
1029
|
+
[[package]]
|
1030
|
+
name = "futures-lite"
|
1031
|
+
version = "2.6.0"
|
1032
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1033
|
+
checksum = "f5edaec856126859abb19ed65f39e90fea3a9574b9707f13539acf4abf7eb532"
|
1034
|
+
dependencies = [
|
1035
|
+
"fastrand",
|
1036
|
+
"futures-core",
|
1037
|
+
"futures-io",
|
1038
|
+
"parking",
|
1039
|
+
"pin-project-lite",
|
1040
|
+
]
|
1041
|
+
|
1042
|
+
[[package]]
|
1043
|
+
name = "futures-macro"
|
1044
|
+
version = "0.3.31"
|
1045
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1046
|
+
checksum = "162ee34ebcb7c64a8abebc059ce0fee27c2262618d7b60ed8faf72fef13c3650"
|
1047
|
+
dependencies = [
|
1048
|
+
"proc-macro2",
|
1049
|
+
"quote",
|
1050
|
+
"syn 2.0.100",
|
1051
|
+
]
|
1052
|
+
|
715
1053
|
[[package]]
|
716
1054
|
name = "futures-sink"
|
717
1055
|
version = "0.3.31"
|
@@ -732,6 +1070,7 @@ checksum = "9fa08315bb612088cc391249efdc3bc77536f16c91f6cf495e6fbe85b20a4a81"
|
|
732
1070
|
dependencies = [
|
733
1071
|
"futures-core",
|
734
1072
|
"futures-io",
|
1073
|
+
"futures-macro",
|
735
1074
|
"futures-sink",
|
736
1075
|
"futures-task",
|
737
1076
|
"memchr",
|
@@ -785,14 +1124,14 @@ dependencies = [
|
|
785
1124
|
|
786
1125
|
[[package]]
|
787
1126
|
name = "getrandom"
|
788
|
-
version = "0.3.
|
1127
|
+
version = "0.3.2"
|
789
1128
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
790
|
-
checksum = "
|
1129
|
+
checksum = "73fea8450eea4bac3940448fb7ae50d91f034f941199fcd9d909a5a07aa455f0"
|
791
1130
|
dependencies = [
|
792
1131
|
"cfg-if",
|
793
1132
|
"libc",
|
794
|
-
"
|
795
|
-
"
|
1133
|
+
"r-efi",
|
1134
|
+
"wasi 0.14.2+wasi-0.2.4",
|
796
1135
|
]
|
797
1136
|
|
798
1137
|
[[package]]
|
@@ -812,18 +1151,30 @@ version = "0.3.2"
|
|
812
1151
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
813
1152
|
checksum = "a8d1add55171497b4705a648c6b583acafb01d58050a51727785f0b2c8e0a2b2"
|
814
1153
|
|
1154
|
+
[[package]]
|
1155
|
+
name = "gloo-timers"
|
1156
|
+
version = "0.3.0"
|
1157
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1158
|
+
checksum = "bbb143cf96099802033e0d4f4963b19fd2e0b728bcf076cd9cf7f6634f092994"
|
1159
|
+
dependencies = [
|
1160
|
+
"futures-channel",
|
1161
|
+
"futures-core",
|
1162
|
+
"js-sys",
|
1163
|
+
"wasm-bindgen",
|
1164
|
+
]
|
1165
|
+
|
815
1166
|
[[package]]
|
816
1167
|
name = "h2"
|
817
|
-
version = "0.4.
|
1168
|
+
version = "0.4.9"
|
818
1169
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
819
|
-
checksum = "
|
1170
|
+
checksum = "75249d144030531f8dee69fe9cea04d3edf809a017ae445e2abdff6629e86633"
|
820
1171
|
dependencies = [
|
821
1172
|
"atomic-waker",
|
822
1173
|
"bytes",
|
823
1174
|
"fnv",
|
824
1175
|
"futures-core",
|
825
1176
|
"futures-sink",
|
826
|
-
"http",
|
1177
|
+
"http 1.3.1",
|
827
1178
|
"indexmap",
|
828
1179
|
"slab",
|
829
1180
|
"tokio",
|
@@ -831,15 +1182,6 @@ dependencies = [
|
|
831
1182
|
"tracing",
|
832
1183
|
]
|
833
1184
|
|
834
|
-
[[package]]
|
835
|
-
name = "hashbrown"
|
836
|
-
version = "0.14.5"
|
837
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
838
|
-
checksum = "e5274423e17b7c9fc20b6e7e208532f9b19825d82dfd615708b70edd83df41f1"
|
839
|
-
dependencies = [
|
840
|
-
"ahash",
|
841
|
-
]
|
842
|
-
|
843
1185
|
[[package]]
|
844
1186
|
name = "hashbrown"
|
845
1187
|
version = "0.15.2"
|
@@ -856,17 +1198,45 @@ version = "0.5.0"
|
|
856
1198
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
857
1199
|
checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea"
|
858
1200
|
|
1201
|
+
[[package]]
|
1202
|
+
name = "hermit-abi"
|
1203
|
+
version = "0.4.0"
|
1204
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1205
|
+
checksum = "fbf6a919d6cf397374f7dfeeea91d974c7c0a7221d0d0f4f20d859d329e53fcc"
|
1206
|
+
|
859
1207
|
[[package]]
|
860
1208
|
name = "http"
|
861
|
-
version = "
|
1209
|
+
version = "0.2.12"
|
862
1210
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
863
|
-
checksum = "
|
1211
|
+
checksum = "601cbb57e577e2f5ef5be8e7b83f0f63994f25aa94d673e54a92d5c516d101f1"
|
864
1212
|
dependencies = [
|
865
1213
|
"bytes",
|
866
1214
|
"fnv",
|
867
1215
|
"itoa",
|
868
1216
|
]
|
869
1217
|
|
1218
|
+
[[package]]
|
1219
|
+
name = "http"
|
1220
|
+
version = "1.3.1"
|
1221
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1222
|
+
checksum = "f4a85d31aea989eead29a3aaf9e1115a180df8282431156e533de47660892565"
|
1223
|
+
dependencies = [
|
1224
|
+
"bytes",
|
1225
|
+
"fnv",
|
1226
|
+
"itoa",
|
1227
|
+
]
|
1228
|
+
|
1229
|
+
[[package]]
|
1230
|
+
name = "http-body"
|
1231
|
+
version = "0.4.6"
|
1232
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1233
|
+
checksum = "7ceab25649e9960c0311ea418d17bee82c0dcec1bd053b5f9a66e265a693bed2"
|
1234
|
+
dependencies = [
|
1235
|
+
"bytes",
|
1236
|
+
"http 0.2.12",
|
1237
|
+
"pin-project-lite",
|
1238
|
+
]
|
1239
|
+
|
870
1240
|
[[package]]
|
871
1241
|
name = "http-body"
|
872
1242
|
version = "1.0.1"
|
@@ -874,27 +1244,84 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
874
1244
|
checksum = "1efedce1fb8e6913f23e0c92de8e62cd5b772a67e7b3946df930a62566c93184"
|
875
1245
|
dependencies = [
|
876
1246
|
"bytes",
|
877
|
-
"http",
|
1247
|
+
"http 1.3.1",
|
878
1248
|
]
|
879
1249
|
|
880
1250
|
[[package]]
|
881
1251
|
name = "http-body-util"
|
882
|
-
version = "0.1.
|
1252
|
+
version = "0.1.3"
|
883
1253
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
884
|
-
checksum = "
|
1254
|
+
checksum = "b021d93e26becf5dc7e1b75b1bed1fd93124b374ceb73f43d4d4eafec896a64a"
|
885
1255
|
dependencies = [
|
886
1256
|
"bytes",
|
887
|
-
"futures-
|
888
|
-
"http",
|
889
|
-
"http-body",
|
1257
|
+
"futures-core",
|
1258
|
+
"http 1.3.1",
|
1259
|
+
"http-body 1.0.1",
|
890
1260
|
"pin-project-lite",
|
891
1261
|
]
|
892
1262
|
|
893
1263
|
[[package]]
|
894
1264
|
name = "httparse"
|
895
|
-
version = "1.10.
|
1265
|
+
version = "1.10.1"
|
1266
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1267
|
+
checksum = "6dbf3de79e51f3d586ab4cb9d5c3e2c14aa28ed23d180cf89b4df0454a69cc87"
|
1268
|
+
|
1269
|
+
[[package]]
|
1270
|
+
name = "httpdate"
|
1271
|
+
version = "1.0.3"
|
896
1272
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
897
|
-
checksum = "
|
1273
|
+
checksum = "df3b46402a9d5adb4c86a0cf463f42e19994e3ee891101b1841f30a545cb49a9"
|
1274
|
+
|
1275
|
+
[[package]]
|
1276
|
+
name = "httpmock"
|
1277
|
+
version = "0.7.0"
|
1278
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1279
|
+
checksum = "08ec9586ee0910472dec1a1f0f8acf52f0fdde93aea74d70d4a3107b4be0fd5b"
|
1280
|
+
dependencies = [
|
1281
|
+
"assert-json-diff",
|
1282
|
+
"async-object-pool",
|
1283
|
+
"async-std",
|
1284
|
+
"async-trait",
|
1285
|
+
"base64 0.21.7",
|
1286
|
+
"basic-cookies",
|
1287
|
+
"crossbeam-utils",
|
1288
|
+
"form_urlencoded",
|
1289
|
+
"futures-util",
|
1290
|
+
"hyper 0.14.32",
|
1291
|
+
"lazy_static",
|
1292
|
+
"levenshtein",
|
1293
|
+
"log",
|
1294
|
+
"regex",
|
1295
|
+
"serde",
|
1296
|
+
"serde_json",
|
1297
|
+
"serde_regex",
|
1298
|
+
"similar",
|
1299
|
+
"tokio",
|
1300
|
+
"url",
|
1301
|
+
]
|
1302
|
+
|
1303
|
+
[[package]]
|
1304
|
+
name = "hyper"
|
1305
|
+
version = "0.14.32"
|
1306
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1307
|
+
checksum = "41dfc780fdec9373c01bae43289ea34c972e40ee3c9f6b3c8801a35f35586ce7"
|
1308
|
+
dependencies = [
|
1309
|
+
"bytes",
|
1310
|
+
"futures-channel",
|
1311
|
+
"futures-core",
|
1312
|
+
"futures-util",
|
1313
|
+
"http 0.2.12",
|
1314
|
+
"http-body 0.4.6",
|
1315
|
+
"httparse",
|
1316
|
+
"httpdate",
|
1317
|
+
"itoa",
|
1318
|
+
"pin-project-lite",
|
1319
|
+
"socket2",
|
1320
|
+
"tokio",
|
1321
|
+
"tower-service",
|
1322
|
+
"tracing",
|
1323
|
+
"want",
|
1324
|
+
]
|
898
1325
|
|
899
1326
|
[[package]]
|
900
1327
|
name = "hyper"
|
@@ -906,8 +1333,8 @@ dependencies = [
|
|
906
1333
|
"futures-channel",
|
907
1334
|
"futures-util",
|
908
1335
|
"h2",
|
909
|
-
"http",
|
910
|
-
"http-body",
|
1336
|
+
"http 1.3.1",
|
1337
|
+
"http-body 1.0.1",
|
911
1338
|
"httparse",
|
912
1339
|
"itoa",
|
913
1340
|
"pin-project-lite",
|
@@ -923,8 +1350,8 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
923
1350
|
checksum = "2d191583f3da1305256f22463b9bb0471acad48a4e534a5218b9963e9c1f59b2"
|
924
1351
|
dependencies = [
|
925
1352
|
"futures-util",
|
926
|
-
"http",
|
927
|
-
"hyper",
|
1353
|
+
"http 1.3.1",
|
1354
|
+
"hyper 1.6.0",
|
928
1355
|
"hyper-util",
|
929
1356
|
"rustls",
|
930
1357
|
"rustls-pki-types",
|
@@ -941,7 +1368,7 @@ checksum = "70206fc6890eaca9fde8a0bf71caa2ddfc9fe045ac9e5c70df101a7dbde866e0"
|
|
941
1368
|
dependencies = [
|
942
1369
|
"bytes",
|
943
1370
|
"http-body-util",
|
944
|
-
"hyper",
|
1371
|
+
"hyper 1.6.0",
|
945
1372
|
"hyper-util",
|
946
1373
|
"native-tls",
|
947
1374
|
"tokio",
|
@@ -951,16 +1378,17 @@ dependencies = [
|
|
951
1378
|
|
952
1379
|
[[package]]
|
953
1380
|
name = "hyper-util"
|
954
|
-
version = "0.1.
|
1381
|
+
version = "0.1.11"
|
955
1382
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
956
|
-
checksum = "
|
1383
|
+
checksum = "497bbc33a26fdd4af9ed9c70d63f61cf56a938375fbb32df34db9b1cd6d643f2"
|
957
1384
|
dependencies = [
|
958
1385
|
"bytes",
|
959
1386
|
"futures-channel",
|
960
1387
|
"futures-util",
|
961
|
-
"http",
|
962
|
-
"http-body",
|
963
|
-
"hyper",
|
1388
|
+
"http 1.3.1",
|
1389
|
+
"http-body 1.0.1",
|
1390
|
+
"hyper 1.6.0",
|
1391
|
+
"libc",
|
964
1392
|
"pin-project-lite",
|
965
1393
|
"socket2",
|
966
1394
|
"tokio",
|
@@ -970,14 +1398,15 @@ dependencies = [
|
|
970
1398
|
|
971
1399
|
[[package]]
|
972
1400
|
name = "iana-time-zone"
|
973
|
-
version = "0.1.
|
1401
|
+
version = "0.1.63"
|
974
1402
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
975
|
-
checksum = "
|
1403
|
+
checksum = "b0c919e5debc312ad217002b8048a17b7d83f80703865bbfcfebb0458b0b27d8"
|
976
1404
|
dependencies = [
|
977
1405
|
"android_system_properties",
|
978
1406
|
"core-foundation-sys",
|
979
1407
|
"iana-time-zone-haiku",
|
980
1408
|
"js-sys",
|
1409
|
+
"log",
|
981
1410
|
"wasm-bindgen",
|
982
1411
|
"windows-core",
|
983
1412
|
]
|
@@ -1032,9 +1461,9 @@ dependencies = [
|
|
1032
1461
|
|
1033
1462
|
[[package]]
|
1034
1463
|
name = "icu_locid_transform_data"
|
1035
|
-
version = "1.5.
|
1464
|
+
version = "1.5.1"
|
1036
1465
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1037
|
-
checksum = "
|
1466
|
+
checksum = "7515e6d781098bf9f7205ab3fc7e9709d34554ae0b21ddbcb5febfa4bc7df11d"
|
1038
1467
|
|
1039
1468
|
[[package]]
|
1040
1469
|
name = "icu_normalizer"
|
@@ -1056,9 +1485,9 @@ dependencies = [
|
|
1056
1485
|
|
1057
1486
|
[[package]]
|
1058
1487
|
name = "icu_normalizer_data"
|
1059
|
-
version = "1.5.
|
1488
|
+
version = "1.5.1"
|
1060
1489
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1061
|
-
checksum = "
|
1490
|
+
checksum = "c5e8338228bdc8ab83303f16b797e177953730f601a96c25d10cb3ab0daa0cb7"
|
1062
1491
|
|
1063
1492
|
[[package]]
|
1064
1493
|
name = "icu_properties"
|
@@ -1077,9 +1506,9 @@ dependencies = [
|
|
1077
1506
|
|
1078
1507
|
[[package]]
|
1079
1508
|
name = "icu_properties_data"
|
1080
|
-
version = "1.5.
|
1509
|
+
version = "1.5.1"
|
1081
1510
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1082
|
-
checksum = "
|
1511
|
+
checksum = "85fb8799753b75aee8d2a21d7c14d9f38921b54b3dbda10f5a3c7a7b82dba5e2"
|
1083
1512
|
|
1084
1513
|
[[package]]
|
1085
1514
|
name = "icu_provider"
|
@@ -1106,7 +1535,7 @@ checksum = "1ec89e9337638ecdc08744df490b221a7399bf8d164eb52a665454e60e075ad6"
|
|
1106
1535
|
dependencies = [
|
1107
1536
|
"proc-macro2",
|
1108
1537
|
"quote",
|
1109
|
-
"syn",
|
1538
|
+
"syn 2.0.100",
|
1110
1539
|
]
|
1111
1540
|
|
1112
1541
|
[[package]]
|
@@ -1138,12 +1567,12 @@ dependencies = [
|
|
1138
1567
|
|
1139
1568
|
[[package]]
|
1140
1569
|
name = "indexmap"
|
1141
|
-
version = "2.
|
1570
|
+
version = "2.9.0"
|
1142
1571
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1143
|
-
checksum = "
|
1572
|
+
checksum = "cea70ddb795996207ad57735b50c5982d8844f38ba9ee5f1aedcfb708a2aa11e"
|
1144
1573
|
dependencies = [
|
1145
1574
|
"equivalent",
|
1146
|
-
"hashbrown
|
1575
|
+
"hashbrown",
|
1147
1576
|
"serde",
|
1148
1577
|
]
|
1149
1578
|
|
@@ -1169,6 +1598,15 @@ version = "2.11.0"
|
|
1169
1598
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1170
1599
|
checksum = "469fb0b9cefa57e3ef31275ee7cacb78f2fdca44e4765491884a2b119d4eb130"
|
1171
1600
|
|
1601
|
+
[[package]]
|
1602
|
+
name = "itertools"
|
1603
|
+
version = "0.11.0"
|
1604
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1605
|
+
checksum = "b1c173a5686ce8bfa551b3563d0c2170bf24ca44da99c7ca4bfdab5418c3fe57"
|
1606
|
+
dependencies = [
|
1607
|
+
"either",
|
1608
|
+
]
|
1609
|
+
|
1172
1610
|
[[package]]
|
1173
1611
|
name = "itertools"
|
1174
1612
|
version = "0.12.1"
|
@@ -1178,11 +1616,20 @@ dependencies = [
|
|
1178
1616
|
"either",
|
1179
1617
|
]
|
1180
1618
|
|
1619
|
+
[[package]]
|
1620
|
+
name = "itertools"
|
1621
|
+
version = "0.14.0"
|
1622
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1623
|
+
checksum = "2b192c782037fadd9cfa75548310488aabdbf3d2da73885b31bd0abd03351285"
|
1624
|
+
dependencies = [
|
1625
|
+
"either",
|
1626
|
+
]
|
1627
|
+
|
1181
1628
|
[[package]]
|
1182
1629
|
name = "itoa"
|
1183
|
-
version = "1.0.
|
1630
|
+
version = "1.0.15"
|
1184
1631
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1185
|
-
checksum = "
|
1632
|
+
checksum = "4a5f13b858c8d314ee3e8f639011f7ccefe71f97f96e50151fb991f267928e2c"
|
1186
1633
|
|
1187
1634
|
[[package]]
|
1188
1635
|
name = "ittapi"
|
@@ -1206,10 +1653,11 @@ dependencies = [
|
|
1206
1653
|
|
1207
1654
|
[[package]]
|
1208
1655
|
name = "jobserver"
|
1209
|
-
version = "0.1.
|
1656
|
+
version = "0.1.33"
|
1210
1657
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1211
|
-
checksum = "
|
1658
|
+
checksum = "38f262f097c174adebe41eb73d66ae9c06b2844fb0da69969647bbddd9b0538a"
|
1212
1659
|
dependencies = [
|
1660
|
+
"getrandom 0.3.2",
|
1213
1661
|
"libc",
|
1214
1662
|
]
|
1215
1663
|
|
@@ -1223,6 +1671,46 @@ dependencies = [
|
|
1223
1671
|
"wasm-bindgen",
|
1224
1672
|
]
|
1225
1673
|
|
1674
|
+
[[package]]
|
1675
|
+
name = "kv-log-macro"
|
1676
|
+
version = "1.0.7"
|
1677
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1678
|
+
checksum = "0de8b303297635ad57c9f5059fd9cee7a47f8e8daa09df0fcd07dd39fb22977f"
|
1679
|
+
dependencies = [
|
1680
|
+
"log",
|
1681
|
+
]
|
1682
|
+
|
1683
|
+
[[package]]
|
1684
|
+
name = "lalrpop"
|
1685
|
+
version = "0.20.2"
|
1686
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1687
|
+
checksum = "55cb077ad656299f160924eb2912aa147d7339ea7d69e1b5517326fdcec3c1ca"
|
1688
|
+
dependencies = [
|
1689
|
+
"ascii-canvas",
|
1690
|
+
"bit-set",
|
1691
|
+
"ena",
|
1692
|
+
"itertools 0.11.0",
|
1693
|
+
"lalrpop-util",
|
1694
|
+
"petgraph",
|
1695
|
+
"pico-args",
|
1696
|
+
"regex",
|
1697
|
+
"regex-syntax",
|
1698
|
+
"string_cache",
|
1699
|
+
"term",
|
1700
|
+
"tiny-keccak",
|
1701
|
+
"unicode-xid",
|
1702
|
+
"walkdir",
|
1703
|
+
]
|
1704
|
+
|
1705
|
+
[[package]]
|
1706
|
+
name = "lalrpop-util"
|
1707
|
+
version = "0.20.2"
|
1708
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1709
|
+
checksum = "507460a910eb7b32ee961886ff48539633b788a36b65692b95f225b844c82553"
|
1710
|
+
dependencies = [
|
1711
|
+
"regex-automata",
|
1712
|
+
]
|
1713
|
+
|
1226
1714
|
[[package]]
|
1227
1715
|
name = "lazy_static"
|
1228
1716
|
version = "1.5.0"
|
@@ -1247,11 +1735,17 @@ version = "0.1.0"
|
|
1247
1735
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1248
1736
|
checksum = "09edd9e8b54e49e587e4f6295a7d29c3ea94d469cb40ab8ca70b288248a81db2"
|
1249
1737
|
|
1738
|
+
[[package]]
|
1739
|
+
name = "levenshtein"
|
1740
|
+
version = "1.0.5"
|
1741
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1742
|
+
checksum = "db13adb97ab515a3691f56e4dbab09283d0b86cb45abd991d8634a9d6f501760"
|
1743
|
+
|
1250
1744
|
[[package]]
|
1251
1745
|
name = "libc"
|
1252
|
-
version = "0.2.
|
1746
|
+
version = "0.2.171"
|
1253
1747
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1254
|
-
checksum = "
|
1748
|
+
checksum = "c19937216e9d3aa9956d9bb8dfc0b0c8beb6058fc4f7a4dc4d850edf86a237d6"
|
1255
1749
|
|
1256
1750
|
[[package]]
|
1257
1751
|
name = "libloading"
|
@@ -1260,7 +1754,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1260
1754
|
checksum = "fc2f4eb4bc735547cfed7c0a4922cbd04a4655978c09b54f1f7b228750664c34"
|
1261
1755
|
dependencies = [
|
1262
1756
|
"cfg-if",
|
1263
|
-
"windows-targets",
|
1757
|
+
"windows-targets 0.52.6",
|
1264
1758
|
]
|
1265
1759
|
|
1266
1760
|
[[package]]
|
@@ -1285,17 +1779,36 @@ version = "0.4.15"
|
|
1285
1779
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1286
1780
|
checksum = "d26c52dbd32dccf2d10cac7725f8eae5296885fb5703b261f7d0a0739ec807ab"
|
1287
1781
|
|
1782
|
+
[[package]]
|
1783
|
+
name = "linux-raw-sys"
|
1784
|
+
version = "0.9.4"
|
1785
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1786
|
+
checksum = "cd945864f07fe9f5371a27ad7b52a172b4b499999f1d97574c9fa68373937e12"
|
1787
|
+
|
1288
1788
|
[[package]]
|
1289
1789
|
name = "litemap"
|
1290
|
-
version = "0.7.
|
1790
|
+
version = "0.7.5"
|
1291
1791
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1292
|
-
checksum = "
|
1792
|
+
checksum = "23fb14cb19457329c82206317a5663005a4d404783dc74f4252769b0d5f42856"
|
1793
|
+
|
1794
|
+
[[package]]
|
1795
|
+
name = "lock_api"
|
1796
|
+
version = "0.4.12"
|
1797
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1798
|
+
checksum = "07af8b9cdd281b7915f413fa73f29ebd5d55d0d3f0155584dade1ff18cea1b17"
|
1799
|
+
dependencies = [
|
1800
|
+
"autocfg",
|
1801
|
+
"scopeguard",
|
1802
|
+
]
|
1293
1803
|
|
1294
1804
|
[[package]]
|
1295
1805
|
name = "log"
|
1296
|
-
version = "0.4.
|
1806
|
+
version = "0.4.27"
|
1297
1807
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1298
|
-
checksum = "
|
1808
|
+
checksum = "13dc2df351e3202783a1fe0d44375f7295ffb4049267b0f3018346dc122a1d94"
|
1809
|
+
dependencies = [
|
1810
|
+
"value-bag",
|
1811
|
+
]
|
1299
1812
|
|
1300
1813
|
[[package]]
|
1301
1814
|
name = "mach2"
|
@@ -1326,7 +1839,7 @@ checksum = "5968c820e2960565f647819f5928a42d6e874551cab9d88d75e3e0660d7f71e3"
|
|
1326
1839
|
dependencies = [
|
1327
1840
|
"proc-macro2",
|
1328
1841
|
"quote",
|
1329
|
-
"syn",
|
1842
|
+
"syn 2.0.100",
|
1330
1843
|
]
|
1331
1844
|
|
1332
1845
|
[[package]]
|
@@ -1347,7 +1860,7 @@ version = "0.6.4"
|
|
1347
1860
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1348
1861
|
checksum = "b2cffa4ad52c6f791f4f8b15f0c05f9824b2ced1160e88cc393d64fff9a8ac64"
|
1349
1862
|
dependencies = [
|
1350
|
-
"rustix",
|
1863
|
+
"rustix 0.38.44",
|
1351
1864
|
]
|
1352
1865
|
|
1353
1866
|
[[package]]
|
@@ -1364,9 +1877,9 @@ checksum = "68354c5c6bd36d73ff3feceb05efa59b6acb7626617f4962be322a825e61f79a"
|
|
1364
1877
|
|
1365
1878
|
[[package]]
|
1366
1879
|
name = "miniz_oxide"
|
1367
|
-
version = "0.8.
|
1880
|
+
version = "0.8.8"
|
1368
1881
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1369
|
-
checksum = "
|
1882
|
+
checksum = "3be647b768db090acb35d5ec5db2b0e1f1de11133ca123b9eacf5137868f892a"
|
1370
1883
|
dependencies = [
|
1371
1884
|
"adler2",
|
1372
1885
|
]
|
@@ -1399,6 +1912,12 @@ dependencies = [
|
|
1399
1912
|
"tempfile",
|
1400
1913
|
]
|
1401
1914
|
|
1915
|
+
[[package]]
|
1916
|
+
name = "new_debug_unreachable"
|
1917
|
+
version = "1.0.6"
|
1918
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1919
|
+
checksum = "650eef8c711430f1a879fdd01d4745a7deea475becfb90269c06775983bbf086"
|
1920
|
+
|
1402
1921
|
[[package]]
|
1403
1922
|
name = "nom"
|
1404
1923
|
version = "7.1.3"
|
@@ -1416,22 +1935,22 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1416
1935
|
checksum = "62948e14d923ea95ea2c7c86c71013138b66525b86bdc08d2dcc262bdb497b87"
|
1417
1936
|
dependencies = [
|
1418
1937
|
"crc32fast",
|
1419
|
-
"hashbrown
|
1938
|
+
"hashbrown",
|
1420
1939
|
"indexmap",
|
1421
1940
|
"memchr",
|
1422
1941
|
]
|
1423
1942
|
|
1424
1943
|
[[package]]
|
1425
1944
|
name = "once_cell"
|
1426
|
-
version = "1.
|
1945
|
+
version = "1.21.3"
|
1427
1946
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1428
|
-
checksum = "
|
1947
|
+
checksum = "42f5e15c9953c5e4ccceeb2e7382a716482c34515315f7b03532b8b4e8393d2d"
|
1429
1948
|
|
1430
1949
|
[[package]]
|
1431
1950
|
name = "openssl"
|
1432
|
-
version = "0.10.
|
1951
|
+
version = "0.10.72"
|
1433
1952
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1434
|
-
checksum = "
|
1953
|
+
checksum = "fedfea7d58a1f73118430a55da6a286e7b044961736ce96a16a17068ea25e5da"
|
1435
1954
|
dependencies = [
|
1436
1955
|
"bitflags",
|
1437
1956
|
"cfg-if",
|
@@ -1450,7 +1969,7 @@ checksum = "a948666b637a0f465e8564c73e89d4dde00d72d4d473cc972f390fc3dcee7d9c"
|
|
1450
1969
|
dependencies = [
|
1451
1970
|
"proc-macro2",
|
1452
1971
|
"quote",
|
1453
|
-
"syn",
|
1972
|
+
"syn 2.0.100",
|
1454
1973
|
]
|
1455
1974
|
|
1456
1975
|
[[package]]
|
@@ -1461,37 +1980,85 @@ checksum = "d05e27ee213611ffe7d6348b942e8f942b37114c00cc03cec254295a4a17852e"
|
|
1461
1980
|
|
1462
1981
|
[[package]]
|
1463
1982
|
name = "openssl-src"
|
1464
|
-
version = "300.
|
1983
|
+
version = "300.5.0+3.5.0"
|
1984
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1985
|
+
checksum = "e8ce546f549326b0e6052b649198487d91320875da901e7bd11a06d1ee3f9c2f"
|
1986
|
+
dependencies = [
|
1987
|
+
"cc",
|
1988
|
+
]
|
1989
|
+
|
1990
|
+
[[package]]
|
1991
|
+
name = "openssl-sys"
|
1992
|
+
version = "0.9.107"
|
1465
1993
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1466
|
-
checksum = "
|
1994
|
+
checksum = "8288979acd84749c744a9014b4382d42b8f7b2592847b5afb2ed29e5d16ede07"
|
1467
1995
|
dependencies = [
|
1468
1996
|
"cc",
|
1997
|
+
"libc",
|
1998
|
+
"openssl-src",
|
1999
|
+
"pkg-config",
|
2000
|
+
"vcpkg",
|
1469
2001
|
]
|
1470
2002
|
|
1471
2003
|
[[package]]
|
1472
|
-
name = "
|
1473
|
-
version = "
|
2004
|
+
name = "parking"
|
2005
|
+
version = "2.2.1"
|
2006
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2007
|
+
checksum = "f38d5652c16fde515bb1ecef450ab0f6a219d619a7274976324d5e377f7dceba"
|
2008
|
+
|
2009
|
+
[[package]]
|
2010
|
+
name = "parking_lot"
|
2011
|
+
version = "0.12.3"
|
2012
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2013
|
+
checksum = "f1bf18183cf54e8d6059647fc3063646a1801cf30896933ec2311622cc4b9a27"
|
2014
|
+
dependencies = [
|
2015
|
+
"lock_api",
|
2016
|
+
"parking_lot_core",
|
2017
|
+
]
|
2018
|
+
|
2019
|
+
[[package]]
|
2020
|
+
name = "parking_lot_core"
|
2021
|
+
version = "0.9.10"
|
2022
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2023
|
+
checksum = "1e401f977ab385c9e4e3ab30627d6f26d00e2c73eef317493c4ec6d468726cf8"
|
2024
|
+
dependencies = [
|
2025
|
+
"cfg-if",
|
2026
|
+
"libc",
|
2027
|
+
"redox_syscall",
|
2028
|
+
"smallvec",
|
2029
|
+
"windows-targets 0.52.6",
|
2030
|
+
]
|
2031
|
+
|
2032
|
+
[[package]]
|
2033
|
+
name = "percent-encoding"
|
2034
|
+
version = "2.3.1"
|
2035
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2036
|
+
checksum = "e3148f5046208a5d56bcfc03053e3ca6334e51da8dfb19b6cdc8b306fae3283e"
|
2037
|
+
|
2038
|
+
[[package]]
|
2039
|
+
name = "petgraph"
|
2040
|
+
version = "0.6.5"
|
1474
2041
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1475
|
-
checksum = "
|
2042
|
+
checksum = "b4c5cc86750666a3ed20bdaf5ca2a0344f9c67674cae0515bec2da16fbaa47db"
|
1476
2043
|
dependencies = [
|
1477
|
-
"
|
1478
|
-
"
|
1479
|
-
"openssl-src",
|
1480
|
-
"pkg-config",
|
1481
|
-
"vcpkg",
|
2044
|
+
"fixedbitset",
|
2045
|
+
"indexmap",
|
1482
2046
|
]
|
1483
2047
|
|
1484
2048
|
[[package]]
|
1485
|
-
name = "
|
1486
|
-
version = "
|
2049
|
+
name = "phf_shared"
|
2050
|
+
version = "0.11.3"
|
1487
2051
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1488
|
-
checksum = "
|
2052
|
+
checksum = "67eabc2ef2a60eb7faa00097bd1ffdb5bd28e62bf39990626a582201b7a754e5"
|
2053
|
+
dependencies = [
|
2054
|
+
"siphasher",
|
2055
|
+
]
|
1489
2056
|
|
1490
2057
|
[[package]]
|
1491
|
-
name = "
|
1492
|
-
version = "
|
2058
|
+
name = "pico-args"
|
2059
|
+
version = "0.5.0"
|
1493
2060
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1494
|
-
checksum = "
|
2061
|
+
checksum = "5be167a7af36ee22fe3115051bc51f6e6c7054c9348e28deb4f49bd6f705a315"
|
1495
2062
|
|
1496
2063
|
[[package]]
|
1497
2064
|
name = "pin-project-lite"
|
@@ -1505,11 +2072,37 @@ version = "0.1.0"
|
|
1505
2072
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1506
2073
|
checksum = "8b870d8c151b6f2fb93e84a13146138f05d02ed11c7e7c54f8826aaaf7c9f184"
|
1507
2074
|
|
2075
|
+
[[package]]
|
2076
|
+
name = "piper"
|
2077
|
+
version = "0.2.4"
|
2078
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2079
|
+
checksum = "96c8c490f422ef9a4efd2cb5b42b76c8613d7e7dfc1caf667b8a3350a5acc066"
|
2080
|
+
dependencies = [
|
2081
|
+
"atomic-waker",
|
2082
|
+
"fastrand",
|
2083
|
+
"futures-io",
|
2084
|
+
]
|
2085
|
+
|
1508
2086
|
[[package]]
|
1509
2087
|
name = "pkg-config"
|
1510
|
-
version = "0.3.
|
2088
|
+
version = "0.3.32"
|
2089
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2090
|
+
checksum = "7edddbd0b52d732b21ad9a5fab5c704c14cd949e5e9a1ec5929a24fded1b904c"
|
2091
|
+
|
2092
|
+
[[package]]
|
2093
|
+
name = "polling"
|
2094
|
+
version = "3.7.4"
|
1511
2095
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1512
|
-
checksum = "
|
2096
|
+
checksum = "a604568c3202727d1507653cb121dbd627a58684eb09a820fd746bee38b4442f"
|
2097
|
+
dependencies = [
|
2098
|
+
"cfg-if",
|
2099
|
+
"concurrent-queue",
|
2100
|
+
"hermit-abi",
|
2101
|
+
"pin-project-lite",
|
2102
|
+
"rustix 0.38.44",
|
2103
|
+
"tracing",
|
2104
|
+
"windows-sys 0.59.0",
|
2105
|
+
]
|
1513
2106
|
|
1514
2107
|
[[package]]
|
1515
2108
|
name = "postcard"
|
@@ -1525,18 +2118,24 @@ dependencies = [
|
|
1525
2118
|
|
1526
2119
|
[[package]]
|
1527
2120
|
name = "ppv-lite86"
|
1528
|
-
version = "0.2.
|
2121
|
+
version = "0.2.21"
|
1529
2122
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1530
|
-
checksum = "
|
2123
|
+
checksum = "85eae3c4ed2f50dcfe72643da4befc30deadb458a9b590d720cde2f2b1e97da9"
|
1531
2124
|
dependencies = [
|
1532
2125
|
"zerocopy",
|
1533
2126
|
]
|
1534
2127
|
|
2128
|
+
[[package]]
|
2129
|
+
name = "precomputed-hash"
|
2130
|
+
version = "0.1.1"
|
2131
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2132
|
+
checksum = "925383efa346730478fb4838dbe9137d2a47675ad789c546d150a6e1dd4ab31c"
|
2133
|
+
|
1535
2134
|
[[package]]
|
1536
2135
|
name = "proc-macro2"
|
1537
|
-
version = "1.0.
|
2136
|
+
version = "1.0.94"
|
1538
2137
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1539
|
-
checksum = "
|
2138
|
+
checksum = "a31971752e70b8b2686d7e46ec17fb38dad4051d94024c88df49b667caea9c84"
|
1540
2139
|
dependencies = [
|
1541
2140
|
"unicode-ident",
|
1542
2141
|
]
|
@@ -1552,25 +2151,30 @@ dependencies = [
|
|
1552
2151
|
|
1553
2152
|
[[package]]
|
1554
2153
|
name = "pulley-interpreter"
|
1555
|
-
version = "
|
2154
|
+
version = "32.0.0"
|
1556
2155
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1557
|
-
checksum = "
|
2156
|
+
checksum = "69c819888a64024f9c6bc7facbed99dfb4dd0124abe4335b6a54eabaa68ef506"
|
1558
2157
|
dependencies = [
|
1559
2158
|
"cranelift-bitset",
|
1560
2159
|
"log",
|
1561
|
-
"sptr",
|
1562
2160
|
"wasmtime-math",
|
1563
2161
|
]
|
1564
2162
|
|
1565
2163
|
[[package]]
|
1566
2164
|
name = "quote"
|
1567
|
-
version = "1.0.
|
2165
|
+
version = "1.0.40"
|
1568
2166
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1569
|
-
checksum = "
|
2167
|
+
checksum = "1885c039570dc00dcb4ff087a89e185fd56bae234ddc7f056a945bf36467248d"
|
1570
2168
|
dependencies = [
|
1571
2169
|
"proc-macro2",
|
1572
2170
|
]
|
1573
2171
|
|
2172
|
+
[[package]]
|
2173
|
+
name = "r-efi"
|
2174
|
+
version = "5.2.0"
|
2175
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2176
|
+
checksum = "74765f6d916ee2faa39bc8e68e4f3ed8949b48cccdac59983d287a7cb71ce9c5"
|
2177
|
+
|
1574
2178
|
[[package]]
|
1575
2179
|
name = "rand"
|
1576
2180
|
version = "0.8.5"
|
@@ -1623,18 +2227,18 @@ dependencies = [
|
|
1623
2227
|
|
1624
2228
|
[[package]]
|
1625
2229
|
name = "rb-sys"
|
1626
|
-
version = "0.9.
|
2230
|
+
version = "0.9.111"
|
1627
2231
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1628
|
-
checksum = "
|
2232
|
+
checksum = "becea799ce051c16fb140be80f5e7cf781070f99ca099332383c2b17861249af"
|
1629
2233
|
dependencies = [
|
1630
2234
|
"rb-sys-build",
|
1631
2235
|
]
|
1632
2236
|
|
1633
2237
|
[[package]]
|
1634
2238
|
name = "rb-sys-build"
|
1635
|
-
version = "0.9.
|
2239
|
+
version = "0.9.111"
|
1636
2240
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1637
|
-
checksum = "
|
2241
|
+
checksum = "64691175abc704862f60a9ca8ef06174080cc50615f2bf1d4759f46db18b4d29"
|
1638
2242
|
dependencies = [
|
1639
2243
|
"bindgen",
|
1640
2244
|
"lazy_static",
|
@@ -1642,7 +2246,7 @@ dependencies = [
|
|
1642
2246
|
"quote",
|
1643
2247
|
"regex",
|
1644
2248
|
"shell-words",
|
1645
|
-
"syn",
|
2249
|
+
"syn 2.0.100",
|
1646
2250
|
]
|
1647
2251
|
|
1648
2252
|
[[package]]
|
@@ -1651,6 +2255,15 @@ version = "0.1.2"
|
|
1651
2255
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1652
2256
|
checksum = "a35802679f07360454b418a5d1735c89716bde01d35b1560fc953c1415a0b3bb"
|
1653
2257
|
|
2258
|
+
[[package]]
|
2259
|
+
name = "redox_syscall"
|
2260
|
+
version = "0.5.11"
|
2261
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2262
|
+
checksum = "d2f103c6d277498fbceb16e84d317e2a400f160f46904d5f5410848c829511a3"
|
2263
|
+
dependencies = [
|
2264
|
+
"bitflags",
|
2265
|
+
]
|
2266
|
+
|
1654
2267
|
[[package]]
|
1655
2268
|
name = "redox_users"
|
1656
2269
|
version = "0.4.6"
|
@@ -1659,18 +2272,18 @@ checksum = "ba009ff324d1fc1b900bd1fdb31564febe58a8ccc8a6fdbb93b543d33b13ca43"
|
|
1659
2272
|
dependencies = [
|
1660
2273
|
"getrandom 0.2.15",
|
1661
2274
|
"libredox",
|
1662
|
-
"thiserror",
|
2275
|
+
"thiserror 1.0.69",
|
1663
2276
|
]
|
1664
2277
|
|
1665
2278
|
[[package]]
|
1666
2279
|
name = "regalloc2"
|
1667
|
-
version = "0.11.
|
2280
|
+
version = "0.11.2"
|
1668
2281
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1669
|
-
checksum = "
|
2282
|
+
checksum = "dc06e6b318142614e4a48bc725abbf08ff166694835c43c9dae5a9009704639a"
|
1670
2283
|
dependencies = [
|
1671
2284
|
"allocator-api2",
|
1672
2285
|
"bumpalo",
|
1673
|
-
"hashbrown
|
2286
|
+
"hashbrown",
|
1674
2287
|
"log",
|
1675
2288
|
"rustc-hash 2.1.1",
|
1676
2289
|
"smallvec",
|
@@ -1707,9 +2320,9 @@ checksum = "2b15c43186be67a4fd63bee50d0303afffcef381492ebe2c5d87f324e1b8815c"
|
|
1707
2320
|
|
1708
2321
|
[[package]]
|
1709
2322
|
name = "reqwest"
|
1710
|
-
version = "0.12.
|
2323
|
+
version = "0.12.15"
|
1711
2324
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1712
|
-
checksum = "
|
2325
|
+
checksum = "d19c46a6fdd48bc4dab94b6103fccc55d34c67cc0ad04653aad4ea2a07cd7bbb"
|
1713
2326
|
dependencies = [
|
1714
2327
|
"base64 0.22.1",
|
1715
2328
|
"bytes",
|
@@ -1718,10 +2331,10 @@ dependencies = [
|
|
1718
2331
|
"futures-core",
|
1719
2332
|
"futures-util",
|
1720
2333
|
"h2",
|
1721
|
-
"http",
|
1722
|
-
"http-body",
|
2334
|
+
"http 1.3.1",
|
2335
|
+
"http-body 1.0.1",
|
1723
2336
|
"http-body-util",
|
1724
|
-
"hyper",
|
2337
|
+
"hyper 1.6.0",
|
1725
2338
|
"hyper-rustls",
|
1726
2339
|
"hyper-tls",
|
1727
2340
|
"hyper-util",
|
@@ -1792,16 +2405,29 @@ dependencies = [
|
|
1792
2405
|
"errno",
|
1793
2406
|
"itoa",
|
1794
2407
|
"libc",
|
1795
|
-
"linux-raw-sys",
|
2408
|
+
"linux-raw-sys 0.4.15",
|
1796
2409
|
"once_cell",
|
1797
2410
|
"windows-sys 0.59.0",
|
1798
2411
|
]
|
1799
2412
|
|
2413
|
+
[[package]]
|
2414
|
+
name = "rustix"
|
2415
|
+
version = "1.0.5"
|
2416
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2417
|
+
checksum = "d97817398dd4bb2e6da002002db259209759911da105da92bec29ccb12cf58bf"
|
2418
|
+
dependencies = [
|
2419
|
+
"bitflags",
|
2420
|
+
"errno",
|
2421
|
+
"libc",
|
2422
|
+
"linux-raw-sys 0.9.4",
|
2423
|
+
"windows-sys 0.59.0",
|
2424
|
+
]
|
2425
|
+
|
1800
2426
|
[[package]]
|
1801
2427
|
name = "rustls"
|
1802
|
-
version = "0.23.
|
2428
|
+
version = "0.23.26"
|
1803
2429
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1804
|
-
checksum = "
|
2430
|
+
checksum = "df51b5869f3a441595eac5e8ff14d486ff285f7b8c0df8770e49c3b56351f0f0"
|
1805
2431
|
dependencies = [
|
1806
2432
|
"once_cell",
|
1807
2433
|
"rustls-pki-types",
|
@@ -1827,9 +2453,9 @@ checksum = "917ce264624a4b4db1c364dcc35bfca9ded014d0a958cd47ad3e960e988ea51c"
|
|
1827
2453
|
|
1828
2454
|
[[package]]
|
1829
2455
|
name = "rustls-webpki"
|
1830
|
-
version = "0.
|
2456
|
+
version = "0.103.1"
|
1831
2457
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1832
|
-
checksum = "
|
2458
|
+
checksum = "fef8b8769aaccf73098557a87cd1816b4f9c7c16811c9c77142aa695c16f2c03"
|
1833
2459
|
dependencies = [
|
1834
2460
|
"ring",
|
1835
2461
|
"rustls-pki-types",
|
@@ -1838,15 +2464,24 @@ dependencies = [
|
|
1838
2464
|
|
1839
2465
|
[[package]]
|
1840
2466
|
name = "rustversion"
|
1841
|
-
version = "1.0.
|
2467
|
+
version = "1.0.20"
|
1842
2468
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1843
|
-
checksum = "
|
2469
|
+
checksum = "eded382c5f5f786b989652c49544c4877d9f015cc22e145a5ea8ea66c2921cd2"
|
1844
2470
|
|
1845
2471
|
[[package]]
|
1846
2472
|
name = "ryu"
|
1847
|
-
version = "1.0.
|
2473
|
+
version = "1.0.20"
|
2474
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2475
|
+
checksum = "28d3b2b1366ec20994f1fd18c3c594f05c5dd4bc44d8bb0c1c632c8d6829481f"
|
2476
|
+
|
2477
|
+
[[package]]
|
2478
|
+
name = "same-file"
|
2479
|
+
version = "1.0.6"
|
1848
2480
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1849
|
-
checksum = "
|
2481
|
+
checksum = "93fc1dc3aaa9bfed95e02e6eadabb4baf7e3078b0bd1b4d7b6b0b68378900502"
|
2482
|
+
dependencies = [
|
2483
|
+
"winapi-util",
|
2484
|
+
]
|
1850
2485
|
|
1851
2486
|
[[package]]
|
1852
2487
|
name = "schannel"
|
@@ -1857,6 +2492,12 @@ dependencies = [
|
|
1857
2492
|
"windows-sys 0.59.0",
|
1858
2493
|
]
|
1859
2494
|
|
2495
|
+
[[package]]
|
2496
|
+
name = "scopeguard"
|
2497
|
+
version = "1.2.0"
|
2498
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2499
|
+
checksum = "94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49"
|
2500
|
+
|
1860
2501
|
[[package]]
|
1861
2502
|
name = "security-framework"
|
1862
2503
|
version = "2.11.1"
|
@@ -1882,44 +2523,44 @@ dependencies = [
|
|
1882
2523
|
|
1883
2524
|
[[package]]
|
1884
2525
|
name = "semver"
|
1885
|
-
version = "1.0.
|
2526
|
+
version = "1.0.26"
|
1886
2527
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1887
|
-
checksum = "
|
2528
|
+
checksum = "56e6fa9c48d24d85fb3de5ad847117517440f6beceb7798af16b4a87d616b8d0"
|
1888
2529
|
dependencies = [
|
1889
2530
|
"serde",
|
1890
2531
|
]
|
1891
2532
|
|
1892
2533
|
[[package]]
|
1893
2534
|
name = "seq-macro"
|
1894
|
-
version = "0.3.
|
2535
|
+
version = "0.3.6"
|
1895
2536
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1896
|
-
checksum = "
|
2537
|
+
checksum = "1bc711410fbe7399f390ca1c3b60ad0f53f80e95c5eb935e52268a0e2cd49acc"
|
1897
2538
|
|
1898
2539
|
[[package]]
|
1899
2540
|
name = "serde"
|
1900
|
-
version = "1.0.
|
2541
|
+
version = "1.0.219"
|
1901
2542
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1902
|
-
checksum = "
|
2543
|
+
checksum = "5f0e2c6ed6606019b4e29e69dbaba95b11854410e5347d525002456dbbb786b6"
|
1903
2544
|
dependencies = [
|
1904
2545
|
"serde_derive",
|
1905
2546
|
]
|
1906
2547
|
|
1907
2548
|
[[package]]
|
1908
2549
|
name = "serde_derive"
|
1909
|
-
version = "1.0.
|
2550
|
+
version = "1.0.219"
|
1910
2551
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1911
|
-
checksum = "
|
2552
|
+
checksum = "5b0276cf7f2c73365f7157c8123c21cd9a50fbbd844757af28ca1f5925fc2a00"
|
1912
2553
|
dependencies = [
|
1913
2554
|
"proc-macro2",
|
1914
2555
|
"quote",
|
1915
|
-
"syn",
|
2556
|
+
"syn 2.0.100",
|
1916
2557
|
]
|
1917
2558
|
|
1918
2559
|
[[package]]
|
1919
2560
|
name = "serde_json"
|
1920
|
-
version = "1.0.
|
2561
|
+
version = "1.0.140"
|
1921
2562
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1922
|
-
checksum = "
|
2563
|
+
checksum = "20068b6e96dc6c9bd23e01df8827e6c7e1f2fddd43c21810382803c136b99373"
|
1923
2564
|
dependencies = [
|
1924
2565
|
"itoa",
|
1925
2566
|
"memchr",
|
@@ -1927,6 +2568,16 @@ dependencies = [
|
|
1927
2568
|
"serde",
|
1928
2569
|
]
|
1929
2570
|
|
2571
|
+
[[package]]
|
2572
|
+
name = "serde_regex"
|
2573
|
+
version = "1.1.0"
|
2574
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2575
|
+
checksum = "a8136f1a4ea815d7eac4101cfd0b16dc0cb5e1fe1b8609dfd728058656b7badf"
|
2576
|
+
dependencies = [
|
2577
|
+
"regex",
|
2578
|
+
"serde",
|
2579
|
+
]
|
2580
|
+
|
1930
2581
|
[[package]]
|
1931
2582
|
name = "serde_spanned"
|
1932
2583
|
version = "0.6.8"
|
@@ -1980,6 +2631,27 @@ version = "1.3.0"
|
|
1980
2631
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1981
2632
|
checksum = "0fda2ff0d084019ba4d7c6f371c95d8fd75ce3524c3cb8fb653a3023f6323e64"
|
1982
2633
|
|
2634
|
+
[[package]]
|
2635
|
+
name = "signal-hook-registry"
|
2636
|
+
version = "1.4.4"
|
2637
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2638
|
+
checksum = "a1ee1aca2bc74ef9589efa7ccaa0f3752751399940356209b3fd80c078149b5e"
|
2639
|
+
dependencies = [
|
2640
|
+
"libc",
|
2641
|
+
]
|
2642
|
+
|
2643
|
+
[[package]]
|
2644
|
+
name = "similar"
|
2645
|
+
version = "2.7.0"
|
2646
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2647
|
+
checksum = "bbbb5d9659141646ae647b42fe094daf6c6192d1620870b449d9557f748b2daa"
|
2648
|
+
|
2649
|
+
[[package]]
|
2650
|
+
name = "siphasher"
|
2651
|
+
version = "1.0.1"
|
2652
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2653
|
+
checksum = "56199f7ddabf13fe5074ce809e7d3f42b42ae711800501b5b16ea82ad029c39d"
|
2654
|
+
|
1983
2655
|
[[package]]
|
1984
2656
|
name = "slab"
|
1985
2657
|
version = "0.4.9"
|
@@ -1991,18 +2663,18 @@ dependencies = [
|
|
1991
2663
|
|
1992
2664
|
[[package]]
|
1993
2665
|
name = "smallvec"
|
1994
|
-
version = "1.
|
2666
|
+
version = "1.15.0"
|
1995
2667
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1996
|
-
checksum = "
|
2668
|
+
checksum = "8917285742e9f3e1683f0a9c4e6b57960b7314d0b08d30d1ecd426713ee2eee9"
|
1997
2669
|
dependencies = [
|
1998
2670
|
"serde",
|
1999
2671
|
]
|
2000
2672
|
|
2001
2673
|
[[package]]
|
2002
2674
|
name = "socket2"
|
2003
|
-
version = "0.5.
|
2675
|
+
version = "0.5.9"
|
2004
2676
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2005
|
-
checksum = "
|
2677
|
+
checksum = "4f5fd57c80058a56cf5c777ab8a126398ece8e442983605d280a44ce79d0edef"
|
2006
2678
|
dependencies = [
|
2007
2679
|
"libc",
|
2008
2680
|
"windows-sys 0.52.0",
|
@@ -2020,6 +2692,18 @@ version = "1.2.0"
|
|
2020
2692
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2021
2693
|
checksum = "a8f112729512f8e442d81f95a8a7ddf2b7c6b8a1a6f509a95864142b30cab2d3"
|
2022
2694
|
|
2695
|
+
[[package]]
|
2696
|
+
name = "string_cache"
|
2697
|
+
version = "0.8.9"
|
2698
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2699
|
+
checksum = "bf776ba3fa74f83bf4b63c3dcbbf82173db2632ed8452cb2d891d33f459de70f"
|
2700
|
+
dependencies = [
|
2701
|
+
"new_debug_unreachable",
|
2702
|
+
"parking_lot",
|
2703
|
+
"phf_shared",
|
2704
|
+
"precomputed-hash",
|
2705
|
+
]
|
2706
|
+
|
2023
2707
|
[[package]]
|
2024
2708
|
name = "subtle"
|
2025
2709
|
version = "2.6.1"
|
@@ -2028,9 +2712,20 @@ checksum = "13c2bddecc57b384dee18652358fb23172facb8a2c51ccc10d74c157bdea3292"
|
|
2028
2712
|
|
2029
2713
|
[[package]]
|
2030
2714
|
name = "syn"
|
2031
|
-
version = "
|
2715
|
+
version = "1.0.109"
|
2716
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2717
|
+
checksum = "72b64191b275b66ffe2469e8af2c1cfe3bafa67b529ead792a6d0160888b4237"
|
2718
|
+
dependencies = [
|
2719
|
+
"proc-macro2",
|
2720
|
+
"quote",
|
2721
|
+
"unicode-ident",
|
2722
|
+
]
|
2723
|
+
|
2724
|
+
[[package]]
|
2725
|
+
name = "syn"
|
2726
|
+
version = "2.0.100"
|
2032
2727
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2033
|
-
checksum = "
|
2728
|
+
checksum = "b09a44accad81e1ba1cd74a32461ba89dee89095ba17b32f5d03683b1b1fc2a0"
|
2034
2729
|
dependencies = [
|
2035
2730
|
"proc-macro2",
|
2036
2731
|
"quote",
|
@@ -2054,7 +2749,7 @@ checksum = "c8af7666ab7b6390ab78131fb5b0fce11d6b7a6951602017c35fa82800708971"
|
|
2054
2749
|
dependencies = [
|
2055
2750
|
"proc-macro2",
|
2056
2751
|
"quote",
|
2057
|
-
"syn",
|
2752
|
+
"syn 2.0.100",
|
2058
2753
|
]
|
2059
2754
|
|
2060
2755
|
[[package]]
|
@@ -2089,7 +2784,7 @@ dependencies = [
|
|
2089
2784
|
"cap-std",
|
2090
2785
|
"fd-lock",
|
2091
2786
|
"io-lifetimes",
|
2092
|
-
"rustix",
|
2787
|
+
"rustix 0.38.44",
|
2093
2788
|
"windows-sys 0.59.0",
|
2094
2789
|
"winx",
|
2095
2790
|
]
|
@@ -2102,18 +2797,28 @@ checksum = "e502f78cdbb8ba4718f566c418c52bc729126ffd16baee5baa718cf25dd5a69a"
|
|
2102
2797
|
|
2103
2798
|
[[package]]
|
2104
2799
|
name = "tempfile"
|
2105
|
-
version = "3.
|
2800
|
+
version = "3.19.1"
|
2106
2801
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2107
|
-
checksum = "
|
2802
|
+
checksum = "7437ac7763b9b123ccf33c338a5cc1bac6f69b45a136c19bdd8a65e3916435bf"
|
2108
2803
|
dependencies = [
|
2109
|
-
"cfg-if",
|
2110
2804
|
"fastrand",
|
2111
|
-
"getrandom 0.3.
|
2805
|
+
"getrandom 0.3.2",
|
2112
2806
|
"once_cell",
|
2113
|
-
"rustix",
|
2807
|
+
"rustix 1.0.5",
|
2114
2808
|
"windows-sys 0.59.0",
|
2115
2809
|
]
|
2116
2810
|
|
2811
|
+
[[package]]
|
2812
|
+
name = "term"
|
2813
|
+
version = "0.7.0"
|
2814
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2815
|
+
checksum = "c59df8ac95d96ff9bede18eb7300b0fda5e5d8d90960e76f8e14ae765eedbf1f"
|
2816
|
+
dependencies = [
|
2817
|
+
"dirs-next",
|
2818
|
+
"rustversion",
|
2819
|
+
"winapi",
|
2820
|
+
]
|
2821
|
+
|
2117
2822
|
[[package]]
|
2118
2823
|
name = "termcolor"
|
2119
2824
|
version = "1.4.1"
|
@@ -2129,7 +2834,16 @@ version = "1.0.69"
|
|
2129
2834
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2130
2835
|
checksum = "b6aaf5339b578ea85b50e080feb250a3e8ae8cfcdff9a461c9ec2904bc923f52"
|
2131
2836
|
dependencies = [
|
2132
|
-
"thiserror-impl",
|
2837
|
+
"thiserror-impl 1.0.69",
|
2838
|
+
]
|
2839
|
+
|
2840
|
+
[[package]]
|
2841
|
+
name = "thiserror"
|
2842
|
+
version = "2.0.12"
|
2843
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2844
|
+
checksum = "567b8a2dae586314f7be2a752ec7474332959c6460e02bde30d702a66d488708"
|
2845
|
+
dependencies = [
|
2846
|
+
"thiserror-impl 2.0.12",
|
2133
2847
|
]
|
2134
2848
|
|
2135
2849
|
[[package]]
|
@@ -2140,7 +2854,27 @@ checksum = "4fee6c4efc90059e10f81e6d42c60a18f76588c3d74cb83a0b242a2b6c7504c1"
|
|
2140
2854
|
dependencies = [
|
2141
2855
|
"proc-macro2",
|
2142
2856
|
"quote",
|
2143
|
-
"syn",
|
2857
|
+
"syn 2.0.100",
|
2858
|
+
]
|
2859
|
+
|
2860
|
+
[[package]]
|
2861
|
+
name = "thiserror-impl"
|
2862
|
+
version = "2.0.12"
|
2863
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2864
|
+
checksum = "7f7cf42b4507d8ea322120659672cf1b9dbb93f8f2d4ecfd6e51350ff5b17a1d"
|
2865
|
+
dependencies = [
|
2866
|
+
"proc-macro2",
|
2867
|
+
"quote",
|
2868
|
+
"syn 2.0.100",
|
2869
|
+
]
|
2870
|
+
|
2871
|
+
[[package]]
|
2872
|
+
name = "tiny-keccak"
|
2873
|
+
version = "2.0.2"
|
2874
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2875
|
+
checksum = "2c9d3793400a45f954c52e73d068316d76b6f4e36977e3fcebb13a2721e80237"
|
2876
|
+
dependencies = [
|
2877
|
+
"crunchy",
|
2144
2878
|
]
|
2145
2879
|
|
2146
2880
|
[[package]]
|
@@ -2155,19 +2889,32 @@ dependencies = [
|
|
2155
2889
|
|
2156
2890
|
[[package]]
|
2157
2891
|
name = "tokio"
|
2158
|
-
version = "1.
|
2892
|
+
version = "1.44.2"
|
2159
2893
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2160
|
-
checksum = "
|
2894
|
+
checksum = "e6b88822cbe49de4185e3a4cbf8321dd487cf5fe0c5c65695fef6346371e9c48"
|
2161
2895
|
dependencies = [
|
2162
2896
|
"backtrace",
|
2163
2897
|
"bytes",
|
2164
2898
|
"libc",
|
2165
2899
|
"mio",
|
2166
2900
|
"pin-project-lite",
|
2901
|
+
"signal-hook-registry",
|
2167
2902
|
"socket2",
|
2903
|
+
"tokio-macros",
|
2168
2904
|
"windows-sys 0.52.0",
|
2169
2905
|
]
|
2170
2906
|
|
2907
|
+
[[package]]
|
2908
|
+
name = "tokio-macros"
|
2909
|
+
version = "2.5.0"
|
2910
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2911
|
+
checksum = "6e06d43f1345a3bcd39f6a56dbb7dcab2ba47e68e8ac134855e7e2bdbaf8cab8"
|
2912
|
+
dependencies = [
|
2913
|
+
"proc-macro2",
|
2914
|
+
"quote",
|
2915
|
+
"syn 2.0.100",
|
2916
|
+
]
|
2917
|
+
|
2171
2918
|
[[package]]
|
2172
2919
|
name = "tokio-native-tls"
|
2173
2920
|
version = "0.3.1"
|
@@ -2180,9 +2927,9 @@ dependencies = [
|
|
2180
2927
|
|
2181
2928
|
[[package]]
|
2182
2929
|
name = "tokio-rustls"
|
2183
|
-
version = "0.26.
|
2930
|
+
version = "0.26.2"
|
2184
2931
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2185
|
-
checksum = "
|
2932
|
+
checksum = "8e727b36a1a0e8b74c376ac2211e40c2c8af09fb4013c60d910495810f008e9b"
|
2186
2933
|
dependencies = [
|
2187
2934
|
"rustls",
|
2188
2935
|
"tokio",
|
@@ -2190,9 +2937,9 @@ dependencies = [
|
|
2190
2937
|
|
2191
2938
|
[[package]]
|
2192
2939
|
name = "tokio-util"
|
2193
|
-
version = "0.7.
|
2940
|
+
version = "0.7.14"
|
2194
2941
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2195
|
-
checksum = "
|
2942
|
+
checksum = "6b9590b93e6fcc1739458317cccd391ad3955e2bde8913edf6f95f9e65a8f034"
|
2196
2943
|
dependencies = [
|
2197
2944
|
"bytes",
|
2198
2945
|
"futures-core",
|
@@ -2281,7 +3028,7 @@ checksum = "395ae124c09f9e6918a2310af6038fba074bcf474ac352496d5910dd59a2226d"
|
|
2281
3028
|
dependencies = [
|
2282
3029
|
"proc-macro2",
|
2283
3030
|
"quote",
|
2284
|
-
"syn",
|
3031
|
+
"syn 2.0.100",
|
2285
3032
|
]
|
2286
3033
|
|
2287
3034
|
[[package]]
|
@@ -2301,7 +3048,7 @@ checksum = "70977707304198400eb4835a78f6a9f928bf41bba420deb8fdb175cd965d77a7"
|
|
2301
3048
|
dependencies = [
|
2302
3049
|
"proc-macro2",
|
2303
3050
|
"quote",
|
2304
|
-
"syn",
|
3051
|
+
"syn 2.0.100",
|
2305
3052
|
]
|
2306
3053
|
|
2307
3054
|
[[package]]
|
@@ -2318,9 +3065,9 @@ checksum = "1dccffe3ce07af9386bfd29e80c0ab1a8205a2fc34e4bcd40364df902cfa8f3f"
|
|
2318
3065
|
|
2319
3066
|
[[package]]
|
2320
3067
|
name = "unicode-ident"
|
2321
|
-
version = "1.0.
|
3068
|
+
version = "1.0.18"
|
2322
3069
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2323
|
-
checksum = "
|
3070
|
+
checksum = "5a5f39404a5da50712a4c1eecf25e90dd62b613502b7e925fd4e4d19b5c96512"
|
2324
3071
|
|
2325
3072
|
[[package]]
|
2326
3073
|
name = "unicode-width"
|
@@ -2365,9 +3112,15 @@ checksum = "b6c140620e7ffbb22c2dee59cafe6084a59b5ffc27a8859a5f0d494b5d52b6be"
|
|
2365
3112
|
|
2366
3113
|
[[package]]
|
2367
3114
|
name = "uuid"
|
2368
|
-
version = "1.
|
3115
|
+
version = "1.16.0"
|
3116
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
3117
|
+
checksum = "458f7a779bf54acc9f347480ac654f68407d3aab21269a6e3c9f922acd9e2da9"
|
3118
|
+
|
3119
|
+
[[package]]
|
3120
|
+
name = "value-bag"
|
3121
|
+
version = "1.11.1"
|
2369
3122
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2370
|
-
checksum = "
|
3123
|
+
checksum = "943ce29a8a743eb10d6082545d861b24f9d1b160b7d741e0f2cdf726bec909c5"
|
2371
3124
|
|
2372
3125
|
[[package]]
|
2373
3126
|
name = "vcpkg"
|
@@ -2381,6 +3134,16 @@ version = "0.9.5"
|
|
2381
3134
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2382
3135
|
checksum = "0b928f33d975fc6ad9f86c8f283853ad26bdd5b10b7f1542aa2fa15e2289105a"
|
2383
3136
|
|
3137
|
+
[[package]]
|
3138
|
+
name = "walkdir"
|
3139
|
+
version = "2.5.0"
|
3140
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
3141
|
+
checksum = "29790946404f91d9c5d06f9874efddea1dc06c5efe94541a7d6863108e3a5e4b"
|
3142
|
+
dependencies = [
|
3143
|
+
"same-file",
|
3144
|
+
"winapi-util",
|
3145
|
+
]
|
3146
|
+
|
2384
3147
|
[[package]]
|
2385
3148
|
name = "want"
|
2386
3149
|
version = "0.3.1"
|
@@ -2398,9 +3161,9 @@ checksum = "9c8d87e72b64a3b4db28d11ce29237c246188f4f51057d65a7eab63b7987e423"
|
|
2398
3161
|
|
2399
3162
|
[[package]]
|
2400
3163
|
name = "wasi"
|
2401
|
-
version = "0.
|
3164
|
+
version = "0.14.2+wasi-0.2.4"
|
2402
3165
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2403
|
-
checksum = "
|
3166
|
+
checksum = "9683f9a5a998d873c0d21fcbe3c083009670149a8fab228644b8bd36b2c48cb3"
|
2404
3167
|
dependencies = [
|
2405
3168
|
"wit-bindgen-rt",
|
2406
3169
|
]
|
@@ -2427,7 +3190,7 @@ dependencies = [
|
|
2427
3190
|
"log",
|
2428
3191
|
"proc-macro2",
|
2429
3192
|
"quote",
|
2430
|
-
"syn",
|
3193
|
+
"syn 2.0.100",
|
2431
3194
|
"wasm-bindgen-shared",
|
2432
3195
|
]
|
2433
3196
|
|
@@ -2462,7 +3225,7 @@ checksum = "8ae87ea40c9f689fc23f209965b6fb8a99ad69aeeb0231408be24920604395de"
|
|
2462
3225
|
dependencies = [
|
2463
3226
|
"proc-macro2",
|
2464
3227
|
"quote",
|
2465
|
-
"syn",
|
3228
|
+
"syn 2.0.100",
|
2466
3229
|
"wasm-bindgen-backend",
|
2467
3230
|
"wasm-bindgen-shared",
|
2468
3231
|
]
|
@@ -2478,64 +3241,43 @@ dependencies = [
|
|
2478
3241
|
|
2479
3242
|
[[package]]
|
2480
3243
|
name = "wasm-encoder"
|
2481
|
-
version = "0.
|
2482
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2483
|
-
checksum = "dc8444fe4920de80a4fe5ab564fff2ae58b6b73166b89751f8c6c93509da32e5"
|
2484
|
-
dependencies = [
|
2485
|
-
"leb128",
|
2486
|
-
"wasmparser 0.221.3",
|
2487
|
-
]
|
2488
|
-
|
2489
|
-
[[package]]
|
2490
|
-
name = "wasm-encoder"
|
2491
|
-
version = "0.226.0"
|
3244
|
+
version = "0.228.0"
|
2492
3245
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2493
|
-
checksum = "
|
3246
|
+
checksum = "05d30290541f2d4242a162bbda76b8f2d8b1ac59eab3568ed6f2327d52c9b2c4"
|
2494
3247
|
dependencies = [
|
2495
3248
|
"leb128fmt",
|
2496
|
-
"wasmparser
|
3249
|
+
"wasmparser",
|
2497
3250
|
]
|
2498
3251
|
|
2499
3252
|
[[package]]
|
2500
3253
|
name = "wasmparser"
|
2501
|
-
version = "0.
|
3254
|
+
version = "0.228.0"
|
2502
3255
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2503
|
-
checksum = "
|
3256
|
+
checksum = "4abf1132c1fdf747d56bbc1bb52152400c70f336870f968b85e89ea422198ae3"
|
2504
3257
|
dependencies = [
|
2505
3258
|
"bitflags",
|
2506
|
-
"hashbrown
|
3259
|
+
"hashbrown",
|
2507
3260
|
"indexmap",
|
2508
3261
|
"semver",
|
2509
3262
|
"serde",
|
2510
3263
|
]
|
2511
3264
|
|
2512
|
-
[[package]]
|
2513
|
-
name = "wasmparser"
|
2514
|
-
version = "0.226.0"
|
2515
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2516
|
-
checksum = "bc28600dcb2ba68d7e5f1c3ba4195c2bddc918c0243fd702d0b6dbd05689b681"
|
2517
|
-
dependencies = [
|
2518
|
-
"bitflags",
|
2519
|
-
"indexmap",
|
2520
|
-
"semver",
|
2521
|
-
]
|
2522
|
-
|
2523
3265
|
[[package]]
|
2524
3266
|
name = "wasmprinter"
|
2525
|
-
version = "0.
|
3267
|
+
version = "0.228.0"
|
2526
3268
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2527
|
-
checksum = "
|
3269
|
+
checksum = "0df64bd38c14db359d02ce2024c64eb161aa2618ccee5f3bc5acbbd65c9a875c"
|
2528
3270
|
dependencies = [
|
2529
3271
|
"anyhow",
|
2530
3272
|
"termcolor",
|
2531
|
-
"wasmparser
|
3273
|
+
"wasmparser",
|
2532
3274
|
]
|
2533
3275
|
|
2534
3276
|
[[package]]
|
2535
3277
|
name = "wasmtime"
|
2536
|
-
version = "
|
3278
|
+
version = "32.0.0"
|
2537
3279
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2538
|
-
checksum = "
|
3280
|
+
checksum = "ab05ab5e27e0d76a9a7cd93d30baa600549945ff7dcae57559de9678e28f3b7e"
|
2539
3281
|
dependencies = [
|
2540
3282
|
"addr2line",
|
2541
3283
|
"anyhow",
|
@@ -2547,7 +3289,7 @@ dependencies = [
|
|
2547
3289
|
"encoding_rs",
|
2548
3290
|
"fxprof-processed-profile",
|
2549
3291
|
"gimli",
|
2550
|
-
"hashbrown
|
3292
|
+
"hashbrown",
|
2551
3293
|
"indexmap",
|
2552
3294
|
"ittapi",
|
2553
3295
|
"libc",
|
@@ -2556,12 +3298,11 @@ dependencies = [
|
|
2556
3298
|
"memfd",
|
2557
3299
|
"object",
|
2558
3300
|
"once_cell",
|
2559
|
-
"paste",
|
2560
3301
|
"postcard",
|
2561
3302
|
"psm",
|
2562
3303
|
"pulley-interpreter",
|
2563
3304
|
"rayon",
|
2564
|
-
"rustix",
|
3305
|
+
"rustix 1.0.5",
|
2565
3306
|
"semver",
|
2566
3307
|
"serde",
|
2567
3308
|
"serde_derive",
|
@@ -2570,8 +3311,8 @@ dependencies = [
|
|
2570
3311
|
"sptr",
|
2571
3312
|
"target-lexicon",
|
2572
3313
|
"trait-variant",
|
2573
|
-
"wasm-encoder
|
2574
|
-
"wasmparser
|
3314
|
+
"wasm-encoder",
|
3315
|
+
"wasmparser",
|
2575
3316
|
"wasmtime-asm-macros",
|
2576
3317
|
"wasmtime-cache",
|
2577
3318
|
"wasmtime-component-macro",
|
@@ -2591,25 +3332,25 @@ dependencies = [
|
|
2591
3332
|
|
2592
3333
|
[[package]]
|
2593
3334
|
name = "wasmtime-asm-macros"
|
2594
|
-
version = "
|
3335
|
+
version = "32.0.0"
|
2595
3336
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2596
|
-
checksum = "
|
3337
|
+
checksum = "194241137d4c1a30a3c2d713016d3de7e2c4e25c9a1a49ef23fc9b850d9e2068"
|
2597
3338
|
dependencies = [
|
2598
3339
|
"cfg-if",
|
2599
3340
|
]
|
2600
3341
|
|
2601
3342
|
[[package]]
|
2602
3343
|
name = "wasmtime-cache"
|
2603
|
-
version = "
|
3344
|
+
version = "32.0.0"
|
2604
3345
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2605
|
-
checksum = "
|
3346
|
+
checksum = "aa71477c72baa24ae6ae64e7bca6831d3232b01fda24693311733f1e19136b68"
|
2606
3347
|
dependencies = [
|
2607
3348
|
"anyhow",
|
2608
|
-
"base64 0.
|
3349
|
+
"base64 0.22.1",
|
2609
3350
|
"directories-next",
|
2610
3351
|
"log",
|
2611
3352
|
"postcard",
|
2612
|
-
"rustix",
|
3353
|
+
"rustix 1.0.5",
|
2613
3354
|
"serde",
|
2614
3355
|
"serde_derive",
|
2615
3356
|
"sha2",
|
@@ -2620,14 +3361,14 @@ dependencies = [
|
|
2620
3361
|
|
2621
3362
|
[[package]]
|
2622
3363
|
name = "wasmtime-component-macro"
|
2623
|
-
version = "
|
3364
|
+
version = "32.0.0"
|
2624
3365
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2625
|
-
checksum = "
|
3366
|
+
checksum = "5758acd6dadf89f904c8de8171ae33499c7809c8f892197344df5055199aeab3"
|
2626
3367
|
dependencies = [
|
2627
3368
|
"anyhow",
|
2628
3369
|
"proc-macro2",
|
2629
3370
|
"quote",
|
2630
|
-
"syn",
|
3371
|
+
"syn 2.0.100",
|
2631
3372
|
"wasmtime-component-util",
|
2632
3373
|
"wasmtime-wit-bindgen",
|
2633
3374
|
"wit-parser",
|
@@ -2635,15 +3376,15 @@ dependencies = [
|
|
2635
3376
|
|
2636
3377
|
[[package]]
|
2637
3378
|
name = "wasmtime-component-util"
|
2638
|
-
version = "
|
3379
|
+
version = "32.0.0"
|
2639
3380
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2640
|
-
checksum = "
|
3381
|
+
checksum = "3068c266bc21eb51e7b9a405550b193b8759b771d19aecc518ca838ea4782ef3"
|
2641
3382
|
|
2642
3383
|
[[package]]
|
2643
3384
|
name = "wasmtime-cranelift"
|
2644
|
-
version = "
|
3385
|
+
version = "32.0.0"
|
2645
3386
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2646
|
-
checksum = "
|
3387
|
+
checksum = "925c030360b8084e450f29d4d772e89ba0a8855dd0a47e07dd11e7f5fd900b42"
|
2647
3388
|
dependencies = [
|
2648
3389
|
"anyhow",
|
2649
3390
|
"cfg-if",
|
@@ -2653,22 +3394,23 @@ dependencies = [
|
|
2653
3394
|
"cranelift-frontend",
|
2654
3395
|
"cranelift-native",
|
2655
3396
|
"gimli",
|
2656
|
-
"itertools",
|
3397
|
+
"itertools 0.14.0",
|
2657
3398
|
"log",
|
2658
3399
|
"object",
|
3400
|
+
"pulley-interpreter",
|
2659
3401
|
"smallvec",
|
2660
3402
|
"target-lexicon",
|
2661
|
-
"thiserror",
|
2662
|
-
"wasmparser
|
3403
|
+
"thiserror 2.0.12",
|
3404
|
+
"wasmparser",
|
2663
3405
|
"wasmtime-environ",
|
2664
3406
|
"wasmtime-versioned-export-macros",
|
2665
3407
|
]
|
2666
3408
|
|
2667
3409
|
[[package]]
|
2668
3410
|
name = "wasmtime-environ"
|
2669
|
-
version = "
|
3411
|
+
version = "32.0.0"
|
2670
3412
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2671
|
-
checksum = "
|
3413
|
+
checksum = "58d78b12eb1f2d2ac85eff89693963ba9c13dd9c90796d92d83ff27b23b29fbe"
|
2672
3414
|
dependencies = [
|
2673
3415
|
"anyhow",
|
2674
3416
|
"cpp_demangle",
|
@@ -2685,22 +3427,22 @@ dependencies = [
|
|
2685
3427
|
"serde_derive",
|
2686
3428
|
"smallvec",
|
2687
3429
|
"target-lexicon",
|
2688
|
-
"wasm-encoder
|
2689
|
-
"wasmparser
|
3430
|
+
"wasm-encoder",
|
3431
|
+
"wasmparser",
|
2690
3432
|
"wasmprinter",
|
2691
3433
|
"wasmtime-component-util",
|
2692
3434
|
]
|
2693
3435
|
|
2694
3436
|
[[package]]
|
2695
3437
|
name = "wasmtime-fiber"
|
2696
|
-
version = "
|
3438
|
+
version = "32.0.0"
|
2697
3439
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2698
|
-
checksum = "
|
3440
|
+
checksum = "ced0efdb1553ada01704540d3cf3e525c93c8f5ca24a48d3e50ba5f2083c36ba"
|
2699
3441
|
dependencies = [
|
2700
3442
|
"anyhow",
|
2701
3443
|
"cc",
|
2702
3444
|
"cfg-if",
|
2703
|
-
"rustix",
|
3445
|
+
"rustix 1.0.5",
|
2704
3446
|
"wasmtime-asm-macros",
|
2705
3447
|
"wasmtime-versioned-export-macros",
|
2706
3448
|
"windows-sys 0.59.0",
|
@@ -2708,20 +3450,21 @@ dependencies = [
|
|
2708
3450
|
|
2709
3451
|
[[package]]
|
2710
3452
|
name = "wasmtime-jit-debug"
|
2711
|
-
version = "
|
3453
|
+
version = "32.0.0"
|
2712
3454
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2713
|
-
checksum = "
|
3455
|
+
checksum = "e43014e680b0b61628ea30bc193f73fbc27723f373a9e353919039aca1d8536c"
|
2714
3456
|
dependencies = [
|
3457
|
+
"cc",
|
2715
3458
|
"object",
|
2716
|
-
"rustix",
|
3459
|
+
"rustix 1.0.5",
|
2717
3460
|
"wasmtime-versioned-export-macros",
|
2718
3461
|
]
|
2719
3462
|
|
2720
3463
|
[[package]]
|
2721
3464
|
name = "wasmtime-jit-icache-coherence"
|
2722
|
-
version = "
|
3465
|
+
version = "32.0.0"
|
2723
3466
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2724
|
-
checksum = "
|
3467
|
+
checksum = "eb399eaabd7594f695e1159d236bf40ef55babcb3af97f97c027864ed2104db6"
|
2725
3468
|
dependencies = [
|
2726
3469
|
"anyhow",
|
2727
3470
|
"cfg-if",
|
@@ -2731,35 +3474,35 @@ dependencies = [
|
|
2731
3474
|
|
2732
3475
|
[[package]]
|
2733
3476
|
name = "wasmtime-math"
|
2734
|
-
version = "
|
3477
|
+
version = "32.0.0"
|
2735
3478
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2736
|
-
checksum = "
|
3479
|
+
checksum = "a527168840e87fc06422b44e7540b4e38df7c84237abdad3dc2450dcde8ab38e"
|
2737
3480
|
dependencies = [
|
2738
3481
|
"libm",
|
2739
3482
|
]
|
2740
3483
|
|
2741
3484
|
[[package]]
|
2742
3485
|
name = "wasmtime-slab"
|
2743
|
-
version = "
|
3486
|
+
version = "32.0.0"
|
2744
3487
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2745
|
-
checksum = "
|
3488
|
+
checksum = "46a3a2798fb5472381cebd72c1daa1f99bbfd6fb645bf8285db8b3a48405daec"
|
2746
3489
|
|
2747
3490
|
[[package]]
|
2748
3491
|
name = "wasmtime-versioned-export-macros"
|
2749
|
-
version = "
|
3492
|
+
version = "32.0.0"
|
2750
3493
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2751
|
-
checksum = "
|
3494
|
+
checksum = "b5afcdcb7f97cce62f6f512182259bfed5d2941253ad43780b3a4e1ad72e4fea"
|
2752
3495
|
dependencies = [
|
2753
3496
|
"proc-macro2",
|
2754
3497
|
"quote",
|
2755
|
-
"syn",
|
3498
|
+
"syn 2.0.100",
|
2756
3499
|
]
|
2757
3500
|
|
2758
3501
|
[[package]]
|
2759
3502
|
name = "wasmtime-wasi"
|
2760
|
-
version = "
|
3503
|
+
version = "32.0.0"
|
2761
3504
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2762
|
-
checksum = "
|
3505
|
+
checksum = "61fb8c8dc30eaf98ad100704645d986f53b8ae56b9e17225702da090e6c10236"
|
2763
3506
|
dependencies = [
|
2764
3507
|
"anyhow",
|
2765
3508
|
"async-trait",
|
@@ -2774,30 +3517,43 @@ dependencies = [
|
|
2774
3517
|
"futures",
|
2775
3518
|
"io-extras",
|
2776
3519
|
"io-lifetimes",
|
2777
|
-
"rustix",
|
3520
|
+
"rustix 1.0.5",
|
2778
3521
|
"system-interface",
|
2779
|
-
"thiserror",
|
3522
|
+
"thiserror 2.0.12",
|
2780
3523
|
"tokio",
|
2781
3524
|
"tracing",
|
2782
|
-
"trait-variant",
|
2783
3525
|
"url",
|
2784
3526
|
"wasmtime",
|
3527
|
+
"wasmtime-wasi-io",
|
2785
3528
|
"wiggle",
|
2786
3529
|
"windows-sys 0.59.0",
|
2787
3530
|
]
|
2788
3531
|
|
3532
|
+
[[package]]
|
3533
|
+
name = "wasmtime-wasi-io"
|
3534
|
+
version = "32.0.0"
|
3535
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
3536
|
+
checksum = "19174c1e15d545f009f53b09a994224c065d80ff2080fcbc4769fe6bbf6419fb"
|
3537
|
+
dependencies = [
|
3538
|
+
"anyhow",
|
3539
|
+
"async-trait",
|
3540
|
+
"bytes",
|
3541
|
+
"futures",
|
3542
|
+
"wasmtime",
|
3543
|
+
]
|
3544
|
+
|
2789
3545
|
[[package]]
|
2790
3546
|
name = "wasmtime-winch"
|
2791
|
-
version = "
|
3547
|
+
version = "32.0.0"
|
2792
3548
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2793
|
-
checksum = "
|
3549
|
+
checksum = "0ac4f31e4657e385d53c71cf963868dc6efdff39fe657c873a0f5da8f465f164"
|
2794
3550
|
dependencies = [
|
2795
3551
|
"anyhow",
|
2796
3552
|
"cranelift-codegen",
|
2797
3553
|
"gimli",
|
2798
3554
|
"object",
|
2799
3555
|
"target-lexicon",
|
2800
|
-
"wasmparser
|
3556
|
+
"wasmparser",
|
2801
3557
|
"wasmtime-cranelift",
|
2802
3558
|
"wasmtime-environ",
|
2803
3559
|
"winch-codegen",
|
@@ -2805,9 +3561,9 @@ dependencies = [
|
|
2805
3561
|
|
2806
3562
|
[[package]]
|
2807
3563
|
name = "wasmtime-wit-bindgen"
|
2808
|
-
version = "
|
3564
|
+
version = "32.0.0"
|
2809
3565
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2810
|
-
checksum = "
|
3566
|
+
checksum = "ada7e868e5925341cdae32729cf02a8f2523b8e998286213e6f4a5af7309cb75"
|
2811
3567
|
dependencies = [
|
2812
3568
|
"anyhow",
|
2813
3569
|
"heck",
|
@@ -2826,24 +3582,24 @@ dependencies = [
|
|
2826
3582
|
|
2827
3583
|
[[package]]
|
2828
3584
|
name = "wast"
|
2829
|
-
version = "
|
3585
|
+
version = "228.0.0"
|
2830
3586
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2831
|
-
checksum = "
|
3587
|
+
checksum = "9e5aae124478cb51439f6587f074a3a5e835afd22751c59a87b2e2a882727c97"
|
2832
3588
|
dependencies = [
|
2833
3589
|
"bumpalo",
|
2834
3590
|
"leb128fmt",
|
2835
3591
|
"memchr",
|
2836
3592
|
"unicode-width",
|
2837
|
-
"wasm-encoder
|
3593
|
+
"wasm-encoder",
|
2838
3594
|
]
|
2839
3595
|
|
2840
3596
|
[[package]]
|
2841
3597
|
name = "wat"
|
2842
|
-
version = "1.
|
3598
|
+
version = "1.228.0"
|
2843
3599
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2844
|
-
checksum = "
|
3600
|
+
checksum = "7ec29c89a8d055df988de7236483bf569988ac3d6905899f6af5ef920f9385ad"
|
2845
3601
|
dependencies = [
|
2846
|
-
"wast
|
3602
|
+
"wast 228.0.0",
|
2847
3603
|
]
|
2848
3604
|
|
2849
3605
|
[[package]]
|
@@ -2858,14 +3614,14 @@ dependencies = [
|
|
2858
3614
|
|
2859
3615
|
[[package]]
|
2860
3616
|
name = "wiggle"
|
2861
|
-
version = "
|
3617
|
+
version = "32.0.0"
|
2862
3618
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2863
|
-
checksum = "
|
3619
|
+
checksum = "1654418571a268d508d055bd11aad42dfc0a2126afa24a084207b99470ff1330"
|
2864
3620
|
dependencies = [
|
2865
3621
|
"anyhow",
|
2866
3622
|
"async-trait",
|
2867
3623
|
"bitflags",
|
2868
|
-
"thiserror",
|
3624
|
+
"thiserror 2.0.12",
|
2869
3625
|
"tracing",
|
2870
3626
|
"wasmtime",
|
2871
3627
|
"wiggle-macro",
|
@@ -2873,28 +3629,28 @@ dependencies = [
|
|
2873
3629
|
|
2874
3630
|
[[package]]
|
2875
3631
|
name = "wiggle-generate"
|
2876
|
-
version = "
|
3632
|
+
version = "32.0.0"
|
2877
3633
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2878
|
-
checksum = "
|
3634
|
+
checksum = "8b5d8fcf190a1ce5cb3380d3cd0be0c49b97f33a32f6ac4cc9b56ae4dea746cc"
|
2879
3635
|
dependencies = [
|
2880
3636
|
"anyhow",
|
2881
3637
|
"heck",
|
2882
3638
|
"proc-macro2",
|
2883
3639
|
"quote",
|
2884
3640
|
"shellexpand",
|
2885
|
-
"syn",
|
3641
|
+
"syn 2.0.100",
|
2886
3642
|
"witx",
|
2887
3643
|
]
|
2888
3644
|
|
2889
3645
|
[[package]]
|
2890
3646
|
name = "wiggle-macro"
|
2891
|
-
version = "
|
3647
|
+
version = "32.0.0"
|
2892
3648
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2893
|
-
checksum = "
|
3649
|
+
checksum = "b060df8449c0b10d26c1154b658806171fbb7802381a898f623bfd33345c8612"
|
2894
3650
|
dependencies = [
|
2895
3651
|
"proc-macro2",
|
2896
3652
|
"quote",
|
2897
|
-
"syn",
|
3653
|
+
"syn 2.0.100",
|
2898
3654
|
"wiggle-generate",
|
2899
3655
|
]
|
2900
3656
|
|
@@ -2931,9 +3687,9 @@ checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f"
|
|
2931
3687
|
|
2932
3688
|
[[package]]
|
2933
3689
|
name = "winch-codegen"
|
2934
|
-
version = "
|
3690
|
+
version = "32.0.0"
|
2935
3691
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2936
|
-
checksum = "
|
3692
|
+
checksum = "108e1f810933ac36e7168313a0e5393c84a731f0394c3cb3e5f5667b378a03fc"
|
2937
3693
|
dependencies = [
|
2938
3694
|
"anyhow",
|
2939
3695
|
"cranelift-codegen",
|
@@ -2941,49 +3697,89 @@ dependencies = [
|
|
2941
3697
|
"regalloc2",
|
2942
3698
|
"smallvec",
|
2943
3699
|
"target-lexicon",
|
2944
|
-
"thiserror",
|
2945
|
-
"wasmparser
|
3700
|
+
"thiserror 2.0.12",
|
3701
|
+
"wasmparser",
|
2946
3702
|
"wasmtime-cranelift",
|
2947
3703
|
"wasmtime-environ",
|
2948
3704
|
]
|
2949
3705
|
|
2950
3706
|
[[package]]
|
2951
3707
|
name = "windows-core"
|
2952
|
-
version = "0.
|
3708
|
+
version = "0.61.0"
|
3709
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
3710
|
+
checksum = "4763c1de310c86d75a878046489e2e5ba02c649d185f21c67d4cf8a56d098980"
|
3711
|
+
dependencies = [
|
3712
|
+
"windows-implement",
|
3713
|
+
"windows-interface",
|
3714
|
+
"windows-link",
|
3715
|
+
"windows-result",
|
3716
|
+
"windows-strings 0.4.0",
|
3717
|
+
]
|
3718
|
+
|
3719
|
+
[[package]]
|
3720
|
+
name = "windows-implement"
|
3721
|
+
version = "0.60.0"
|
3722
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
3723
|
+
checksum = "a47fddd13af08290e67f4acabf4b459f647552718f683a7b415d290ac744a836"
|
3724
|
+
dependencies = [
|
3725
|
+
"proc-macro2",
|
3726
|
+
"quote",
|
3727
|
+
"syn 2.0.100",
|
3728
|
+
]
|
3729
|
+
|
3730
|
+
[[package]]
|
3731
|
+
name = "windows-interface"
|
3732
|
+
version = "0.59.1"
|
2953
3733
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2954
|
-
checksum = "
|
3734
|
+
checksum = "bd9211b69f8dcdfa817bfd14bf1c97c9188afa36f4750130fcdf3f400eca9fa8"
|
2955
3735
|
dependencies = [
|
2956
|
-
"
|
3736
|
+
"proc-macro2",
|
3737
|
+
"quote",
|
3738
|
+
"syn 2.0.100",
|
2957
3739
|
]
|
2958
3740
|
|
3741
|
+
[[package]]
|
3742
|
+
name = "windows-link"
|
3743
|
+
version = "0.1.1"
|
3744
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
3745
|
+
checksum = "76840935b766e1b0a05c0066835fb9ec80071d4c09a16f6bd5f7e655e3c14c38"
|
3746
|
+
|
2959
3747
|
[[package]]
|
2960
3748
|
name = "windows-registry"
|
2961
|
-
version = "0.
|
3749
|
+
version = "0.4.0"
|
2962
3750
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2963
|
-
checksum = "
|
3751
|
+
checksum = "4286ad90ddb45071efd1a66dfa43eb02dd0dfbae1545ad6cc3c51cf34d7e8ba3"
|
2964
3752
|
dependencies = [
|
2965
3753
|
"windows-result",
|
2966
|
-
"windows-strings",
|
2967
|
-
"windows-targets",
|
3754
|
+
"windows-strings 0.3.1",
|
3755
|
+
"windows-targets 0.53.0",
|
2968
3756
|
]
|
2969
3757
|
|
2970
3758
|
[[package]]
|
2971
3759
|
name = "windows-result"
|
2972
|
-
version = "0.2
|
3760
|
+
version = "0.3.2"
|
2973
3761
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2974
|
-
checksum = "
|
3762
|
+
checksum = "c64fd11a4fd95df68efcfee5f44a294fe71b8bc6a91993e2791938abcc712252"
|
2975
3763
|
dependencies = [
|
2976
|
-
"windows-
|
3764
|
+
"windows-link",
|
2977
3765
|
]
|
2978
3766
|
|
2979
3767
|
[[package]]
|
2980
3768
|
name = "windows-strings"
|
2981
|
-
version = "0.1
|
3769
|
+
version = "0.3.1"
|
2982
3770
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2983
|
-
checksum = "
|
3771
|
+
checksum = "87fa48cc5d406560701792be122a10132491cff9d0aeb23583cc2dcafc847319"
|
2984
3772
|
dependencies = [
|
2985
|
-
"windows-
|
2986
|
-
|
3773
|
+
"windows-link",
|
3774
|
+
]
|
3775
|
+
|
3776
|
+
[[package]]
|
3777
|
+
name = "windows-strings"
|
3778
|
+
version = "0.4.0"
|
3779
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
3780
|
+
checksum = "7a2ba9642430ee452d5a7aa78d72907ebe8cfda358e8cb7918a2050581322f97"
|
3781
|
+
dependencies = [
|
3782
|
+
"windows-link",
|
2987
3783
|
]
|
2988
3784
|
|
2989
3785
|
[[package]]
|
@@ -2992,7 +3788,7 @@ version = "0.52.0"
|
|
2992
3788
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2993
3789
|
checksum = "282be5f36a8ce781fad8c8ae18fa3f9beff57ec1b52cb3de0789201425d9a33d"
|
2994
3790
|
dependencies = [
|
2995
|
-
"windows-targets",
|
3791
|
+
"windows-targets 0.52.6",
|
2996
3792
|
]
|
2997
3793
|
|
2998
3794
|
[[package]]
|
@@ -3001,7 +3797,7 @@ version = "0.59.0"
|
|
3001
3797
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
3002
3798
|
checksum = "1e38bc4d79ed67fd075bcc251a1c39b32a1776bbe92e5bef1f0bf1f8c531853b"
|
3003
3799
|
dependencies = [
|
3004
|
-
"windows-targets",
|
3800
|
+
"windows-targets 0.52.6",
|
3005
3801
|
]
|
3006
3802
|
|
3007
3803
|
[[package]]
|
@@ -3010,14 +3806,30 @@ version = "0.52.6"
|
|
3010
3806
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
3011
3807
|
checksum = "9b724f72796e036ab90c1021d4780d4d3d648aca59e491e6b98e725b84e99973"
|
3012
3808
|
dependencies = [
|
3013
|
-
"windows_aarch64_gnullvm",
|
3014
|
-
"windows_aarch64_msvc",
|
3015
|
-
"windows_i686_gnu",
|
3016
|
-
"windows_i686_gnullvm",
|
3017
|
-
"windows_i686_msvc",
|
3018
|
-
"windows_x86_64_gnu",
|
3019
|
-
"windows_x86_64_gnullvm",
|
3020
|
-
"windows_x86_64_msvc",
|
3809
|
+
"windows_aarch64_gnullvm 0.52.6",
|
3810
|
+
"windows_aarch64_msvc 0.52.6",
|
3811
|
+
"windows_i686_gnu 0.52.6",
|
3812
|
+
"windows_i686_gnullvm 0.52.6",
|
3813
|
+
"windows_i686_msvc 0.52.6",
|
3814
|
+
"windows_x86_64_gnu 0.52.6",
|
3815
|
+
"windows_x86_64_gnullvm 0.52.6",
|
3816
|
+
"windows_x86_64_msvc 0.52.6",
|
3817
|
+
]
|
3818
|
+
|
3819
|
+
[[package]]
|
3820
|
+
name = "windows-targets"
|
3821
|
+
version = "0.53.0"
|
3822
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
3823
|
+
checksum = "b1e4c7e8ceaaf9cb7d7507c974735728ab453b67ef8f18febdd7c11fe59dca8b"
|
3824
|
+
dependencies = [
|
3825
|
+
"windows_aarch64_gnullvm 0.53.0",
|
3826
|
+
"windows_aarch64_msvc 0.53.0",
|
3827
|
+
"windows_i686_gnu 0.53.0",
|
3828
|
+
"windows_i686_gnullvm 0.53.0",
|
3829
|
+
"windows_i686_msvc 0.53.0",
|
3830
|
+
"windows_x86_64_gnu 0.53.0",
|
3831
|
+
"windows_x86_64_gnullvm 0.53.0",
|
3832
|
+
"windows_x86_64_msvc 0.53.0",
|
3021
3833
|
]
|
3022
3834
|
|
3023
3835
|
[[package]]
|
@@ -3026,53 +3838,101 @@ version = "0.52.6"
|
|
3026
3838
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
3027
3839
|
checksum = "32a4622180e7a0ec044bb555404c800bc9fd9ec262ec147edd5989ccd0c02cd3"
|
3028
3840
|
|
3841
|
+
[[package]]
|
3842
|
+
name = "windows_aarch64_gnullvm"
|
3843
|
+
version = "0.53.0"
|
3844
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
3845
|
+
checksum = "86b8d5f90ddd19cb4a147a5fa63ca848db3df085e25fee3cc10b39b6eebae764"
|
3846
|
+
|
3029
3847
|
[[package]]
|
3030
3848
|
name = "windows_aarch64_msvc"
|
3031
3849
|
version = "0.52.6"
|
3032
3850
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
3033
3851
|
checksum = "09ec2a7bb152e2252b53fa7803150007879548bc709c039df7627cabbd05d469"
|
3034
3852
|
|
3853
|
+
[[package]]
|
3854
|
+
name = "windows_aarch64_msvc"
|
3855
|
+
version = "0.53.0"
|
3856
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
3857
|
+
checksum = "c7651a1f62a11b8cbd5e0d42526e55f2c99886c77e007179efff86c2b137e66c"
|
3858
|
+
|
3035
3859
|
[[package]]
|
3036
3860
|
name = "windows_i686_gnu"
|
3037
3861
|
version = "0.52.6"
|
3038
3862
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
3039
3863
|
checksum = "8e9b5ad5ab802e97eb8e295ac6720e509ee4c243f69d781394014ebfe8bbfa0b"
|
3040
3864
|
|
3865
|
+
[[package]]
|
3866
|
+
name = "windows_i686_gnu"
|
3867
|
+
version = "0.53.0"
|
3868
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
3869
|
+
checksum = "c1dc67659d35f387f5f6c479dc4e28f1d4bb90ddd1a5d3da2e5d97b42d6272c3"
|
3870
|
+
|
3041
3871
|
[[package]]
|
3042
3872
|
name = "windows_i686_gnullvm"
|
3043
3873
|
version = "0.52.6"
|
3044
3874
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
3045
3875
|
checksum = "0eee52d38c090b3caa76c563b86c3a4bd71ef1a819287c19d586d7334ae8ed66"
|
3046
3876
|
|
3877
|
+
[[package]]
|
3878
|
+
name = "windows_i686_gnullvm"
|
3879
|
+
version = "0.53.0"
|
3880
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
3881
|
+
checksum = "9ce6ccbdedbf6d6354471319e781c0dfef054c81fbc7cf83f338a4296c0cae11"
|
3882
|
+
|
3047
3883
|
[[package]]
|
3048
3884
|
name = "windows_i686_msvc"
|
3049
3885
|
version = "0.52.6"
|
3050
3886
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
3051
3887
|
checksum = "240948bc05c5e7c6dabba28bf89d89ffce3e303022809e73deaefe4f6ec56c66"
|
3052
3888
|
|
3889
|
+
[[package]]
|
3890
|
+
name = "windows_i686_msvc"
|
3891
|
+
version = "0.53.0"
|
3892
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
3893
|
+
checksum = "581fee95406bb13382d2f65cd4a908ca7b1e4c2f1917f143ba16efe98a589b5d"
|
3894
|
+
|
3053
3895
|
[[package]]
|
3054
3896
|
name = "windows_x86_64_gnu"
|
3055
3897
|
version = "0.52.6"
|
3056
3898
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
3057
3899
|
checksum = "147a5c80aabfbf0c7d901cb5895d1de30ef2907eb21fbbab29ca94c5b08b1a78"
|
3058
3900
|
|
3901
|
+
[[package]]
|
3902
|
+
name = "windows_x86_64_gnu"
|
3903
|
+
version = "0.53.0"
|
3904
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
3905
|
+
checksum = "2e55b5ac9ea33f2fc1716d1742db15574fd6fc8dadc51caab1c16a3d3b4190ba"
|
3906
|
+
|
3059
3907
|
[[package]]
|
3060
3908
|
name = "windows_x86_64_gnullvm"
|
3061
3909
|
version = "0.52.6"
|
3062
3910
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
3063
3911
|
checksum = "24d5b23dc417412679681396f2b49f3de8c1473deb516bd34410872eff51ed0d"
|
3064
3912
|
|
3913
|
+
[[package]]
|
3914
|
+
name = "windows_x86_64_gnullvm"
|
3915
|
+
version = "0.53.0"
|
3916
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
3917
|
+
checksum = "0a6e035dd0599267ce1ee132e51c27dd29437f63325753051e71dd9e42406c57"
|
3918
|
+
|
3065
3919
|
[[package]]
|
3066
3920
|
name = "windows_x86_64_msvc"
|
3067
3921
|
version = "0.52.6"
|
3068
3922
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
3069
3923
|
checksum = "589f6da84c646204747d1270a2a5661ea66ed1cced2631d546fdfb155959f9ec"
|
3070
3924
|
|
3925
|
+
[[package]]
|
3926
|
+
name = "windows_x86_64_msvc"
|
3927
|
+
version = "0.53.0"
|
3928
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
3929
|
+
checksum = "271414315aff87387382ec3d271b52d7ae78726f5d44ac98b4f4030c91880486"
|
3930
|
+
|
3071
3931
|
[[package]]
|
3072
3932
|
name = "winnow"
|
3073
|
-
version = "0.7.
|
3933
|
+
version = "0.7.6"
|
3074
3934
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
3075
|
-
checksum = "
|
3935
|
+
checksum = "63d3fcd9bba44b03821e7d699eeee959f3126dcc4aa8e4ae18ec617c2a5cea10"
|
3076
3936
|
dependencies = [
|
3077
3937
|
"memchr",
|
3078
3938
|
]
|
@@ -3089,18 +3949,18 @@ dependencies = [
|
|
3089
3949
|
|
3090
3950
|
[[package]]
|
3091
3951
|
name = "wit-bindgen-rt"
|
3092
|
-
version = "0.
|
3952
|
+
version = "0.39.0"
|
3093
3953
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
3094
|
-
checksum = "
|
3954
|
+
checksum = "6f42320e61fe2cfd34354ecb597f86f413484a798ba44a8ca1165c58d42da6c1"
|
3095
3955
|
dependencies = [
|
3096
3956
|
"bitflags",
|
3097
3957
|
]
|
3098
3958
|
|
3099
3959
|
[[package]]
|
3100
3960
|
name = "wit-parser"
|
3101
|
-
version = "0.
|
3961
|
+
version = "0.228.0"
|
3102
3962
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
3103
|
-
checksum = "
|
3963
|
+
checksum = "399ce56e28d79fd3abfa03fdc7ceb89ffec4d4b2674fe3a92056b7d845653c38"
|
3104
3964
|
dependencies = [
|
3105
3965
|
"anyhow",
|
3106
3966
|
"id-arena",
|
@@ -3111,7 +3971,7 @@ dependencies = [
|
|
3111
3971
|
"serde_derive",
|
3112
3972
|
"serde_json",
|
3113
3973
|
"unicode-xid",
|
3114
|
-
"wasmparser
|
3974
|
+
"wasmparser",
|
3115
3975
|
]
|
3116
3976
|
|
3117
3977
|
[[package]]
|
@@ -3122,7 +3982,7 @@ checksum = "e366f27a5cabcddb2706a78296a40b8fcc451e1a6aba2fc1d94b4a01bdaaef4b"
|
|
3122
3982
|
dependencies = [
|
3123
3983
|
"anyhow",
|
3124
3984
|
"log",
|
3125
|
-
"thiserror",
|
3985
|
+
"thiserror 1.0.69",
|
3126
3986
|
"wast 35.0.2",
|
3127
3987
|
]
|
3128
3988
|
|
@@ -3158,49 +4018,48 @@ checksum = "2380878cad4ac9aac1e2435f3eb4020e8374b5f13c296cb75b4620ff8e229154"
|
|
3158
4018
|
dependencies = [
|
3159
4019
|
"proc-macro2",
|
3160
4020
|
"quote",
|
3161
|
-
"syn",
|
4021
|
+
"syn 2.0.100",
|
3162
4022
|
"synstructure",
|
3163
4023
|
]
|
3164
4024
|
|
3165
4025
|
[[package]]
|
3166
4026
|
name = "zerocopy"
|
3167
|
-
version = "0.
|
4027
|
+
version = "0.8.24"
|
3168
4028
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
3169
|
-
checksum = "
|
4029
|
+
checksum = "2586fea28e186957ef732a5f8b3be2da217d65c5969d4b1e17f973ebbe876879"
|
3170
4030
|
dependencies = [
|
3171
|
-
"byteorder",
|
3172
4031
|
"zerocopy-derive",
|
3173
4032
|
]
|
3174
4033
|
|
3175
4034
|
[[package]]
|
3176
4035
|
name = "zerocopy-derive"
|
3177
|
-
version = "0.
|
4036
|
+
version = "0.8.24"
|
3178
4037
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
3179
|
-
checksum = "
|
4038
|
+
checksum = "a996a8f63c5c4448cd959ac1bab0aaa3306ccfd060472f85943ee0750f0169be"
|
3180
4039
|
dependencies = [
|
3181
4040
|
"proc-macro2",
|
3182
4041
|
"quote",
|
3183
|
-
"syn",
|
4042
|
+
"syn 2.0.100",
|
3184
4043
|
]
|
3185
4044
|
|
3186
4045
|
[[package]]
|
3187
4046
|
name = "zerofrom"
|
3188
|
-
version = "0.1.
|
4047
|
+
version = "0.1.6"
|
3189
4048
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
3190
|
-
checksum = "
|
4049
|
+
checksum = "50cc42e0333e05660c3587f3bf9d0478688e15d870fab3346451ce7f8c9fbea5"
|
3191
4050
|
dependencies = [
|
3192
4051
|
"zerofrom-derive",
|
3193
4052
|
]
|
3194
4053
|
|
3195
4054
|
[[package]]
|
3196
4055
|
name = "zerofrom-derive"
|
3197
|
-
version = "0.1.
|
4056
|
+
version = "0.1.6"
|
3198
4057
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
3199
|
-
checksum = "
|
4058
|
+
checksum = "d71e5d6e06ab090c67b5e44993ec16b72dcbaabc526db883a360057678b48502"
|
3200
4059
|
dependencies = [
|
3201
4060
|
"proc-macro2",
|
3202
4061
|
"quote",
|
3203
|
-
"syn",
|
4062
|
+
"syn 2.0.100",
|
3204
4063
|
"synstructure",
|
3205
4064
|
]
|
3206
4065
|
|
@@ -3229,7 +4088,7 @@ checksum = "6eafa6dfb17584ea3e2bd6e76e0cc15ad7af12b09abdd1ca55961bed9b1063c6"
|
|
3229
4088
|
dependencies = [
|
3230
4089
|
"proc-macro2",
|
3231
4090
|
"quote",
|
3232
|
-
"syn",
|
4091
|
+
"syn 2.0.100",
|
3233
4092
|
]
|
3234
4093
|
|
3235
4094
|
[[package]]
|
@@ -3243,18 +4102,18 @@ dependencies = [
|
|
3243
4102
|
|
3244
4103
|
[[package]]
|
3245
4104
|
name = "zstd-safe"
|
3246
|
-
version = "7.2.
|
4105
|
+
version = "7.2.4"
|
3247
4106
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
3248
|
-
checksum = "
|
4107
|
+
checksum = "8f49c4d5f0abb602a93fb8736af2a4f4dd9512e36f7f570d66e65ff867ed3b9d"
|
3249
4108
|
dependencies = [
|
3250
4109
|
"zstd-sys",
|
3251
4110
|
]
|
3252
4111
|
|
3253
4112
|
[[package]]
|
3254
4113
|
name = "zstd-sys"
|
3255
|
-
version = "2.0.
|
4114
|
+
version = "2.0.15+zstd.1.5.7"
|
3256
4115
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
3257
|
-
checksum = "
|
4116
|
+
checksum = "eb81183ddd97d0c74cedf1d50d85c8d08c1b8b68ee863bdee9e706eedba1a237"
|
3258
4117
|
dependencies = [
|
3259
4118
|
"cc",
|
3260
4119
|
"pkg-config",
|