app_bridge 3.0.0 → 4.0.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/.rubocop.yml +1 -0
- data/.tool-versions +1 -1
- data/Cargo.lock +292 -751
- data/Cargo.toml +1 -1
- data/README.md +213 -2
- data/ext/app_bridge/Cargo.toml +8 -4
- data/ext/app_bridge/src/app_state.rs +29 -13
- data/ext/app_bridge/src/component.rs +256 -46
- data/ext/app_bridge/src/error_mapping.rs +24 -24
- data/ext/app_bridge/src/file_ops.rs +325 -0
- data/ext/app_bridge/src/lib.rs +5 -1
- data/ext/app_bridge/src/request_builder.rs +270 -152
- data/ext/app_bridge/src/types.rs +78 -0
- data/ext/app_bridge/src/wrappers/action_context.rs +3 -3
- data/ext/app_bridge/src/wrappers/action_response.rs +7 -3
- data/ext/app_bridge/src/wrappers/app.rs +112 -148
- data/ext/app_bridge/src/wrappers/connection.rs +4 -4
- data/ext/app_bridge/src/wrappers/trigger_context.rs +7 -7
- data/ext/app_bridge/src/wrappers/trigger_event.rs +4 -4
- data/ext/app_bridge/src/wrappers/trigger_response.rs +29 -28
- data/ext/app_bridge/wit/{world.wit → v3/world.wit} +3 -0
- data/ext/app_bridge/wit/v4/world.wit +328 -0
- data/lib/app_bridge/app.rb +21 -2
- data/lib/app_bridge/file_processor.rb +131 -0
- data/lib/app_bridge/version.rb +1 -1
- data/lib/app_bridge.rb +26 -0
- data/tasks/fixtures.rake +16 -2
- metadata +8 -4
data/Cargo.lock
CHANGED
|
@@ -55,11 +55,15 @@ checksum = "e16d2d3311acee920a9eb8d33b8cbc1787ce4a264e85f964c2404b969bdcd487"
|
|
|
55
55
|
|
|
56
56
|
[[package]]
|
|
57
57
|
name = "app_bridge"
|
|
58
|
-
version = "
|
|
58
|
+
version = "4.0.0"
|
|
59
59
|
dependencies = [
|
|
60
|
+
"base64",
|
|
60
61
|
"httpmock",
|
|
62
|
+
"infer",
|
|
61
63
|
"magnus",
|
|
62
64
|
"reqwest",
|
|
65
|
+
"serde",
|
|
66
|
+
"serde_json",
|
|
63
67
|
"wasmtime",
|
|
64
68
|
"wasmtime-wasi",
|
|
65
69
|
]
|
|
@@ -70,15 +74,6 @@ version = "1.4.1"
|
|
|
70
74
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
71
75
|
checksum = "dde20b3d026af13f561bdd0f15edf01fc734f0dafcedbaf42bba506a9517f223"
|
|
72
76
|
|
|
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
77
|
[[package]]
|
|
83
78
|
name = "assert-json-diff"
|
|
84
79
|
version = "2.0.2"
|
|
@@ -89,177 +84,27 @@ dependencies = [
|
|
|
89
84
|
"serde_json",
|
|
90
85
|
]
|
|
91
86
|
|
|
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
87
|
[[package]]
|
|
173
88
|
name = "async-lock"
|
|
174
89
|
version = "3.4.0"
|
|
175
90
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
176
91
|
checksum = "ff6e472cdea888a4bd64f342f09b3f50e1886d32afe8df3d663c01140b811b18"
|
|
177
92
|
dependencies = [
|
|
178
|
-
"event-listener
|
|
93
|
+
"event-listener",
|
|
179
94
|
"event-listener-strategy",
|
|
180
95
|
"pin-project-lite",
|
|
181
96
|
]
|
|
182
97
|
|
|
183
98
|
[[package]]
|
|
184
99
|
name = "async-object-pool"
|
|
185
|
-
version = "0.
|
|
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"
|
|
100
|
+
version = "0.2.0"
|
|
232
101
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
233
|
-
checksum = "
|
|
102
|
+
checksum = "e1ac0219111eb7bb7cb76d4cf2cb50c598e7ae549091d3616f9e95442c18486f"
|
|
234
103
|
dependencies = [
|
|
235
|
-
"async-attributes",
|
|
236
|
-
"async-channel 1.9.0",
|
|
237
|
-
"async-global-executor",
|
|
238
|
-
"async-io",
|
|
239
104
|
"async-lock",
|
|
240
|
-
"
|
|
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",
|
|
105
|
+
"event-listener",
|
|
255
106
|
]
|
|
256
107
|
|
|
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
|
-
|
|
263
108
|
[[package]]
|
|
264
109
|
name = "async-trait"
|
|
265
110
|
version = "0.1.88"
|
|
@@ -268,7 +113,7 @@ checksum = "e539d3fca749fcee5236ab05e93a52867dd549cc157c8cb7f99595f3cedffdb5"
|
|
|
268
113
|
dependencies = [
|
|
269
114
|
"proc-macro2",
|
|
270
115
|
"quote",
|
|
271
|
-
"syn
|
|
116
|
+
"syn",
|
|
272
117
|
]
|
|
273
118
|
|
|
274
119
|
[[package]]
|
|
@@ -298,29 +143,12 @@ dependencies = [
|
|
|
298
143
|
"windows-targets 0.52.6",
|
|
299
144
|
]
|
|
300
145
|
|
|
301
|
-
[[package]]
|
|
302
|
-
name = "base64"
|
|
303
|
-
version = "0.21.7"
|
|
304
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
305
|
-
checksum = "9d297deb1925b89f2ccc13d7635fa0714f12c87adce1c75356b39ca9b7178567"
|
|
306
|
-
|
|
307
146
|
[[package]]
|
|
308
147
|
name = "base64"
|
|
309
148
|
version = "0.22.1"
|
|
310
149
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
311
150
|
checksum = "72b3254f16251a8381aa12e40e3c4d2f0199f8c6508fbecb9d91f575e0fbb8c6"
|
|
312
151
|
|
|
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
|
-
|
|
324
152
|
[[package]]
|
|
325
153
|
name = "bindgen"
|
|
326
154
|
version = "0.69.5"
|
|
@@ -338,24 +166,9 @@ dependencies = [
|
|
|
338
166
|
"regex",
|
|
339
167
|
"rustc-hash 1.1.0",
|
|
340
168
|
"shlex",
|
|
341
|
-
"syn
|
|
169
|
+
"syn",
|
|
342
170
|
]
|
|
343
171
|
|
|
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",
|
|
351
|
-
]
|
|
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
|
-
|
|
359
172
|
[[package]]
|
|
360
173
|
name = "bitflags"
|
|
361
174
|
version = "2.9.0"
|
|
@@ -371,19 +184,6 @@ dependencies = [
|
|
|
371
184
|
"generic-array",
|
|
372
185
|
]
|
|
373
186
|
|
|
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
|
-
|
|
387
187
|
[[package]]
|
|
388
188
|
name = "bumpalo"
|
|
389
189
|
version = "3.17.0"
|
|
@@ -404,12 +204,15 @@ name = "bytes"
|
|
|
404
204
|
version = "1.10.1"
|
|
405
205
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
406
206
|
checksum = "d71b6127be86fdcfddb610f7182ac57211d4b18a3e9c82eb2d17662f2227ad6a"
|
|
207
|
+
dependencies = [
|
|
208
|
+
"serde",
|
|
209
|
+
]
|
|
407
210
|
|
|
408
211
|
[[package]]
|
|
409
212
|
name = "cap-fs-ext"
|
|
410
|
-
version = "3.4.
|
|
213
|
+
version = "3.4.5"
|
|
411
214
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
412
|
-
checksum = "
|
|
215
|
+
checksum = "d5528f85b1e134ae811704e41ef80930f56e795923f866813255bc342cc20654"
|
|
413
216
|
dependencies = [
|
|
414
217
|
"cap-primitives",
|
|
415
218
|
"cap-std",
|
|
@@ -419,21 +222,21 @@ dependencies = [
|
|
|
419
222
|
|
|
420
223
|
[[package]]
|
|
421
224
|
name = "cap-net-ext"
|
|
422
|
-
version = "3.4.
|
|
225
|
+
version = "3.4.5"
|
|
423
226
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
424
|
-
checksum = "
|
|
227
|
+
checksum = "20a158160765c6a7d0d8c072a53d772e4cb243f38b04bfcf6b4939cfbe7482e7"
|
|
425
228
|
dependencies = [
|
|
426
229
|
"cap-primitives",
|
|
427
230
|
"cap-std",
|
|
428
|
-
"rustix 0.
|
|
231
|
+
"rustix 1.0.5",
|
|
429
232
|
"smallvec",
|
|
430
233
|
]
|
|
431
234
|
|
|
432
235
|
[[package]]
|
|
433
236
|
name = "cap-primitives"
|
|
434
|
-
version = "3.4.
|
|
237
|
+
version = "3.4.5"
|
|
435
238
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
436
|
-
checksum = "
|
|
239
|
+
checksum = "b6cf3aea8a5081171859ef57bc1606b1df6999df4f1110f8eef68b30098d1d3a"
|
|
437
240
|
dependencies = [
|
|
438
241
|
"ambient-authority",
|
|
439
242
|
"fs-set-times",
|
|
@@ -441,16 +244,17 @@ dependencies = [
|
|
|
441
244
|
"io-lifetimes",
|
|
442
245
|
"ipnet",
|
|
443
246
|
"maybe-owned",
|
|
444
|
-
"rustix 0.
|
|
247
|
+
"rustix 1.0.5",
|
|
248
|
+
"rustix-linux-procfs",
|
|
445
249
|
"windows-sys 0.59.0",
|
|
446
250
|
"winx",
|
|
447
251
|
]
|
|
448
252
|
|
|
449
253
|
[[package]]
|
|
450
254
|
name = "cap-rand"
|
|
451
|
-
version = "3.4.
|
|
255
|
+
version = "3.4.5"
|
|
452
256
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
453
|
-
checksum = "
|
|
257
|
+
checksum = "d8144c22e24bbcf26ade86cb6501a0916c46b7e4787abdb0045a467eb1645a1d"
|
|
454
258
|
dependencies = [
|
|
455
259
|
"ambient-authority",
|
|
456
260
|
"rand",
|
|
@@ -458,27 +262,27 @@ dependencies = [
|
|
|
458
262
|
|
|
459
263
|
[[package]]
|
|
460
264
|
name = "cap-std"
|
|
461
|
-
version = "3.4.
|
|
265
|
+
version = "3.4.5"
|
|
462
266
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
463
|
-
checksum = "
|
|
267
|
+
checksum = "b6dc3090992a735d23219de5c204927163d922f42f575a0189b005c62d37549a"
|
|
464
268
|
dependencies = [
|
|
465
269
|
"cap-primitives",
|
|
466
270
|
"io-extras",
|
|
467
271
|
"io-lifetimes",
|
|
468
|
-
"rustix 0.
|
|
272
|
+
"rustix 1.0.5",
|
|
469
273
|
]
|
|
470
274
|
|
|
471
275
|
[[package]]
|
|
472
276
|
name = "cap-time-ext"
|
|
473
|
-
version = "3.4.
|
|
277
|
+
version = "3.4.5"
|
|
474
278
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
475
|
-
checksum = "
|
|
279
|
+
checksum = "def102506ce40c11710a9b16e614af0cde8e76ae51b1f48c04b8d79f4b671a80"
|
|
476
280
|
dependencies = [
|
|
477
281
|
"ambient-authority",
|
|
478
282
|
"cap-primitives",
|
|
479
283
|
"iana-time-zone",
|
|
480
284
|
"once_cell",
|
|
481
|
-
"rustix 0.
|
|
285
|
+
"rustix 1.0.5",
|
|
482
286
|
"winx",
|
|
483
287
|
]
|
|
484
288
|
|
|
@@ -502,6 +306,17 @@ dependencies = [
|
|
|
502
306
|
"nom",
|
|
503
307
|
]
|
|
504
308
|
|
|
309
|
+
[[package]]
|
|
310
|
+
name = "cfb"
|
|
311
|
+
version = "0.7.3"
|
|
312
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
313
|
+
checksum = "d38f2da7a0a2c4ccf0065be06397cc26a81f4e528be095826eee9d4adbb8c60f"
|
|
314
|
+
dependencies = [
|
|
315
|
+
"byteorder",
|
|
316
|
+
"fnv",
|
|
317
|
+
"uuid",
|
|
318
|
+
]
|
|
319
|
+
|
|
505
320
|
[[package]]
|
|
506
321
|
name = "cfg-if"
|
|
507
322
|
version = "1.0.0"
|
|
@@ -570,36 +385,36 @@ dependencies = [
|
|
|
570
385
|
|
|
571
386
|
[[package]]
|
|
572
387
|
name = "cranelift-assembler-x64"
|
|
573
|
-
version = "0.
|
|
388
|
+
version = "0.120.2"
|
|
574
389
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
575
|
-
checksum = "
|
|
390
|
+
checksum = "a5023e06632d8f351c2891793ccccfe4aef957954904392434038745fb6f1f68"
|
|
576
391
|
dependencies = [
|
|
577
392
|
"cranelift-assembler-x64-meta",
|
|
578
393
|
]
|
|
579
394
|
|
|
580
395
|
[[package]]
|
|
581
396
|
name = "cranelift-assembler-x64-meta"
|
|
582
|
-
version = "0.
|
|
397
|
+
version = "0.120.2"
|
|
583
398
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
584
|
-
checksum = "
|
|
399
|
+
checksum = "b1c4012b4c8c1f6eb05c0a0a540e3e1ee992631af51aa2bbb3e712903ce4fd65"
|
|
585
400
|
dependencies = [
|
|
586
401
|
"cranelift-srcgen",
|
|
587
402
|
]
|
|
588
403
|
|
|
589
404
|
[[package]]
|
|
590
405
|
name = "cranelift-bforest"
|
|
591
|
-
version = "0.
|
|
406
|
+
version = "0.120.2"
|
|
592
407
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
593
|
-
checksum = "
|
|
408
|
+
checksum = "4d6d883b4942ef3a7104096b8bc6f2d1a41393f159ac8de12aed27b25d67f895"
|
|
594
409
|
dependencies = [
|
|
595
410
|
"cranelift-entity",
|
|
596
411
|
]
|
|
597
412
|
|
|
598
413
|
[[package]]
|
|
599
414
|
name = "cranelift-bitset"
|
|
600
|
-
version = "0.
|
|
415
|
+
version = "0.120.2"
|
|
601
416
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
602
|
-
checksum = "
|
|
417
|
+
checksum = "db7b2ee9eec6ca8a716d900d5264d678fb2c290c58c46c8da7f94ee268175d17"
|
|
603
418
|
dependencies = [
|
|
604
419
|
"serde",
|
|
605
420
|
"serde_derive",
|
|
@@ -607,9 +422,9 @@ dependencies = [
|
|
|
607
422
|
|
|
608
423
|
[[package]]
|
|
609
424
|
name = "cranelift-codegen"
|
|
610
|
-
version = "0.
|
|
425
|
+
version = "0.120.2"
|
|
611
426
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
612
|
-
checksum = "
|
|
427
|
+
checksum = "aeda0892577afdce1ac2e9a983a55f8c5b87a59334e1f79d8f735a2d7ba4f4b4"
|
|
613
428
|
dependencies = [
|
|
614
429
|
"bumpalo",
|
|
615
430
|
"cranelift-assembler-x64",
|
|
@@ -633,9 +448,9 @@ dependencies = [
|
|
|
633
448
|
|
|
634
449
|
[[package]]
|
|
635
450
|
name = "cranelift-codegen-meta"
|
|
636
|
-
version = "0.
|
|
451
|
+
version = "0.120.2"
|
|
637
452
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
638
|
-
checksum = "
|
|
453
|
+
checksum = "e461480d87f920c2787422463313326f67664e68108c14788ba1676f5edfcd15"
|
|
639
454
|
dependencies = [
|
|
640
455
|
"cranelift-assembler-x64-meta",
|
|
641
456
|
"cranelift-codegen-shared",
|
|
@@ -645,24 +460,24 @@ dependencies = [
|
|
|
645
460
|
|
|
646
461
|
[[package]]
|
|
647
462
|
name = "cranelift-codegen-shared"
|
|
648
|
-
version = "0.
|
|
463
|
+
version = "0.120.2"
|
|
649
464
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
650
|
-
checksum = "
|
|
465
|
+
checksum = "976584d09f200c6c84c4b9ff7af64fc9ad0cb64dffa5780991edd3fe143a30a1"
|
|
651
466
|
|
|
652
467
|
[[package]]
|
|
653
468
|
name = "cranelift-control"
|
|
654
|
-
version = "0.
|
|
469
|
+
version = "0.120.2"
|
|
655
470
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
656
|
-
checksum = "
|
|
471
|
+
checksum = "46d43d70f4e17c545aa88dbf4c84d4200755d27c6e3272ebe4de65802fa6a955"
|
|
657
472
|
dependencies = [
|
|
658
473
|
"arbitrary",
|
|
659
474
|
]
|
|
660
475
|
|
|
661
476
|
[[package]]
|
|
662
477
|
name = "cranelift-entity"
|
|
663
|
-
version = "0.
|
|
478
|
+
version = "0.120.2"
|
|
664
479
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
665
|
-
checksum = "
|
|
480
|
+
checksum = "d75418674520cb400c8772bfd6e11a62736c78fc1b6e418195696841d1bf91f1"
|
|
666
481
|
dependencies = [
|
|
667
482
|
"cranelift-bitset",
|
|
668
483
|
"serde",
|
|
@@ -671,9 +486,9 @@ dependencies = [
|
|
|
671
486
|
|
|
672
487
|
[[package]]
|
|
673
488
|
name = "cranelift-frontend"
|
|
674
|
-
version = "0.
|
|
489
|
+
version = "0.120.2"
|
|
675
490
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
676
|
-
checksum = "
|
|
491
|
+
checksum = "3c8b1a91c86687a344f3c52dd6dfb6e50db0dfa7f2e9c7711b060b3623e1fdeb"
|
|
677
492
|
dependencies = [
|
|
678
493
|
"cranelift-codegen",
|
|
679
494
|
"log",
|
|
@@ -683,15 +498,15 @@ dependencies = [
|
|
|
683
498
|
|
|
684
499
|
[[package]]
|
|
685
500
|
name = "cranelift-isle"
|
|
686
|
-
version = "0.
|
|
501
|
+
version = "0.120.2"
|
|
687
502
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
688
|
-
checksum = "
|
|
503
|
+
checksum = "711baa4e3432d4129295b39ec2b4040cc1b558874ba0a37d08e832e857db7285"
|
|
689
504
|
|
|
690
505
|
[[package]]
|
|
691
506
|
name = "cranelift-native"
|
|
692
|
-
version = "0.
|
|
507
|
+
version = "0.120.2"
|
|
693
508
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
694
|
-
checksum = "
|
|
509
|
+
checksum = "41c83e8666e3bcc5ffeaf6f01f356f0e1f9dcd69ce5511a1efd7ca5722001a3f"
|
|
695
510
|
dependencies = [
|
|
696
511
|
"cranelift-codegen",
|
|
697
512
|
"libc",
|
|
@@ -700,9 +515,9 @@ dependencies = [
|
|
|
700
515
|
|
|
701
516
|
[[package]]
|
|
702
517
|
name = "cranelift-srcgen"
|
|
703
|
-
version = "0.
|
|
518
|
+
version = "0.120.2"
|
|
704
519
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
705
|
-
checksum = "
|
|
520
|
+
checksum = "02e3f4d783a55c64266d17dc67d2708852235732a100fc40dd9f1051adc64d7b"
|
|
706
521
|
|
|
707
522
|
[[package]]
|
|
708
523
|
name = "crc32fast"
|
|
@@ -738,12 +553,6 @@ version = "0.8.21"
|
|
|
738
553
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
739
554
|
checksum = "d0a5c400df2834b80a4c3327b3aad3a4c4cd4de0629063962b03235697506a28"
|
|
740
555
|
|
|
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
|
-
|
|
747
556
|
[[package]]
|
|
748
557
|
name = "crypto-common"
|
|
749
558
|
version = "0.1.6"
|
|
@@ -783,36 +592,6 @@ dependencies = [
|
|
|
783
592
|
"dirs-sys-next",
|
|
784
593
|
]
|
|
785
594
|
|
|
786
|
-
[[package]]
|
|
787
|
-
name = "dirs"
|
|
788
|
-
version = "4.0.0"
|
|
789
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
790
|
-
checksum = "ca3aa72a6f96ea37bbc5aa912f6788242832f75369bdfdadcb0e38423f100059"
|
|
791
|
-
dependencies = [
|
|
792
|
-
"dirs-sys",
|
|
793
|
-
]
|
|
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
|
-
|
|
805
|
-
[[package]]
|
|
806
|
-
name = "dirs-sys"
|
|
807
|
-
version = "0.3.7"
|
|
808
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
809
|
-
checksum = "1b1d1d91c932ef41c0f2663aa8b0ca0342d444d842c06914aa0a7e352d0bada6"
|
|
810
|
-
dependencies = [
|
|
811
|
-
"libc",
|
|
812
|
-
"redox_users",
|
|
813
|
-
"winapi",
|
|
814
|
-
]
|
|
815
|
-
|
|
816
595
|
[[package]]
|
|
817
596
|
name = "dirs-sys-next"
|
|
818
597
|
version = "0.1.2"
|
|
@@ -832,7 +611,7 @@ checksum = "97369cbbc041bc366949bc74d34658d6cda5621039731c6310521892a3a20ae0"
|
|
|
832
611
|
dependencies = [
|
|
833
612
|
"proc-macro2",
|
|
834
613
|
"quote",
|
|
835
|
-
"syn
|
|
614
|
+
"syn",
|
|
836
615
|
]
|
|
837
616
|
|
|
838
617
|
[[package]]
|
|
@@ -853,15 +632,6 @@ version = "0.6.1"
|
|
|
853
632
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
854
633
|
checksum = "edd0f118536f44f5ccd48bcb8b111bdc3de888b58c74639dfb034a357d0f206d"
|
|
855
634
|
|
|
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
|
-
|
|
865
635
|
[[package]]
|
|
866
636
|
name = "encoding_rs"
|
|
867
637
|
version = "0.8.35"
|
|
@@ -887,12 +657,6 @@ dependencies = [
|
|
|
887
657
|
"windows-sys 0.59.0",
|
|
888
658
|
]
|
|
889
659
|
|
|
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
660
|
[[package]]
|
|
897
661
|
name = "event-listener"
|
|
898
662
|
version = "5.4.0"
|
|
@@ -910,7 +674,7 @@ version = "0.5.4"
|
|
|
910
674
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
911
675
|
checksum = "8be9f3dfaaffdae2972880079a491a1a8bb7cbed0b8dd7a347f668b4150a3b93"
|
|
912
676
|
dependencies = [
|
|
913
|
-
"event-listener
|
|
677
|
+
"event-listener",
|
|
914
678
|
"pin-project-lite",
|
|
915
679
|
]
|
|
916
680
|
|
|
@@ -937,12 +701,6 @@ dependencies = [
|
|
|
937
701
|
"windows-sys 0.59.0",
|
|
938
702
|
]
|
|
939
703
|
|
|
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
|
-
|
|
946
704
|
[[package]]
|
|
947
705
|
name = "fnv"
|
|
948
706
|
version = "1.0.7"
|
|
@@ -1026,19 +784,6 @@ version = "0.3.31"
|
|
|
1026
784
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1027
785
|
checksum = "9e5c1b78ca4aae1ac06c48a526a655760685149f0d465d21f37abfe57ce075c6"
|
|
1028
786
|
|
|
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
787
|
[[package]]
|
|
1043
788
|
name = "futures-macro"
|
|
1044
789
|
version = "0.3.31"
|
|
@@ -1047,7 +792,7 @@ checksum = "162ee34ebcb7c64a8abebc059ce0fee27c2262618d7b60ed8faf72fef13c3650"
|
|
|
1047
792
|
dependencies = [
|
|
1048
793
|
"proc-macro2",
|
|
1049
794
|
"quote",
|
|
1050
|
-
"syn
|
|
795
|
+
"syn",
|
|
1051
796
|
]
|
|
1052
797
|
|
|
1053
798
|
[[package]]
|
|
@@ -1062,6 +807,12 @@ version = "0.3.31"
|
|
|
1062
807
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1063
808
|
checksum = "f90f7dce0722e95104fcb095585910c0977252f286e354b5e3bd38902cd99988"
|
|
1064
809
|
|
|
810
|
+
[[package]]
|
|
811
|
+
name = "futures-timer"
|
|
812
|
+
version = "3.0.3"
|
|
813
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
814
|
+
checksum = "f288b0a4f20f9a56b5d1da57e2227c661b7b16168e2f72365f57b63326e29b24"
|
|
815
|
+
|
|
1065
816
|
[[package]]
|
|
1066
817
|
name = "futures-util"
|
|
1067
818
|
version = "0.3.31"
|
|
@@ -1151,18 +902,6 @@ version = "0.3.2"
|
|
|
1151
902
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1152
903
|
checksum = "a8d1add55171497b4705a648c6b583acafb01d58050a51727785f0b2c8e0a2b2"
|
|
1153
904
|
|
|
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
|
-
|
|
1166
905
|
[[package]]
|
|
1167
906
|
name = "h2"
|
|
1168
907
|
version = "0.4.9"
|
|
@@ -1174,7 +913,7 @@ dependencies = [
|
|
|
1174
913
|
"fnv",
|
|
1175
914
|
"futures-core",
|
|
1176
915
|
"futures-sink",
|
|
1177
|
-
"http
|
|
916
|
+
"http",
|
|
1178
917
|
"indexmap",
|
|
1179
918
|
"slab",
|
|
1180
919
|
"tokio",
|
|
@@ -1193,27 +932,34 @@ dependencies = [
|
|
|
1193
932
|
]
|
|
1194
933
|
|
|
1195
934
|
[[package]]
|
|
1196
|
-
name = "
|
|
1197
|
-
version = "0.
|
|
935
|
+
name = "headers"
|
|
936
|
+
version = "0.4.1"
|
|
1198
937
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1199
|
-
checksum = "
|
|
938
|
+
checksum = "b3314d5adb5d94bcdf56771f2e50dbbc80bb4bdf88967526706205ac9eff24eb"
|
|
939
|
+
dependencies = [
|
|
940
|
+
"base64",
|
|
941
|
+
"bytes",
|
|
942
|
+
"headers-core",
|
|
943
|
+
"http",
|
|
944
|
+
"httpdate",
|
|
945
|
+
"mime",
|
|
946
|
+
"sha1",
|
|
947
|
+
]
|
|
1200
948
|
|
|
1201
949
|
[[package]]
|
|
1202
|
-
name = "
|
|
1203
|
-
version = "0.
|
|
950
|
+
name = "headers-core"
|
|
951
|
+
version = "0.3.0"
|
|
1204
952
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1205
|
-
checksum = "
|
|
953
|
+
checksum = "54b4a22553d4242c49fddb9ba998a99962b5cc6f22cb5a3482bec22522403ce4"
|
|
954
|
+
dependencies = [
|
|
955
|
+
"http",
|
|
956
|
+
]
|
|
1206
957
|
|
|
1207
958
|
[[package]]
|
|
1208
|
-
name = "
|
|
1209
|
-
version = "0.
|
|
959
|
+
name = "heck"
|
|
960
|
+
version = "0.5.0"
|
|
1210
961
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1211
|
-
checksum = "
|
|
1212
|
-
dependencies = [
|
|
1213
|
-
"bytes",
|
|
1214
|
-
"fnv",
|
|
1215
|
-
"itoa",
|
|
1216
|
-
]
|
|
962
|
+
checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea"
|
|
1217
963
|
|
|
1218
964
|
[[package]]
|
|
1219
965
|
name = "http"
|
|
@@ -1226,17 +972,6 @@ dependencies = [
|
|
|
1226
972
|
"itoa",
|
|
1227
973
|
]
|
|
1228
974
|
|
|
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
|
-
|
|
1240
975
|
[[package]]
|
|
1241
976
|
name = "http-body"
|
|
1242
977
|
version = "1.0.1"
|
|
@@ -1244,7 +979,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
1244
979
|
checksum = "1efedce1fb8e6913f23e0c92de8e62cd5b772a67e7b3946df930a62566c93184"
|
|
1245
980
|
dependencies = [
|
|
1246
981
|
"bytes",
|
|
1247
|
-
"http
|
|
982
|
+
"http",
|
|
1248
983
|
]
|
|
1249
984
|
|
|
1250
985
|
[[package]]
|
|
@@ -1255,8 +990,8 @@ checksum = "b021d93e26becf5dc7e1b75b1bed1fd93124b374ceb73f43d4d4eafec896a64a"
|
|
|
1255
990
|
dependencies = [
|
|
1256
991
|
"bytes",
|
|
1257
992
|
"futures-core",
|
|
1258
|
-
"http
|
|
1259
|
-
"http-body
|
|
993
|
+
"http",
|
|
994
|
+
"http-body",
|
|
1260
995
|
"pin-project-lite",
|
|
1261
996
|
]
|
|
1262
997
|
|
|
@@ -1274,53 +1009,36 @@ checksum = "df3b46402a9d5adb4c86a0cf463f42e19994e3ee891101b1841f30a545cb49a9"
|
|
|
1274
1009
|
|
|
1275
1010
|
[[package]]
|
|
1276
1011
|
name = "httpmock"
|
|
1277
|
-
version = "0.
|
|
1012
|
+
version = "0.8.2"
|
|
1278
1013
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1279
|
-
checksum = "
|
|
1014
|
+
checksum = "511f510e9b1888d67f10bab4397f8b019d2a9b249a2c10acbce2d705b1b32e26"
|
|
1280
1015
|
dependencies = [
|
|
1281
1016
|
"assert-json-diff",
|
|
1282
1017
|
"async-object-pool",
|
|
1283
|
-
"async-std",
|
|
1284
1018
|
"async-trait",
|
|
1285
|
-
"base64
|
|
1286
|
-
"
|
|
1019
|
+
"base64",
|
|
1020
|
+
"bytes",
|
|
1287
1021
|
"crossbeam-utils",
|
|
1288
1022
|
"form_urlencoded",
|
|
1023
|
+
"futures-timer",
|
|
1289
1024
|
"futures-util",
|
|
1290
|
-
"
|
|
1291
|
-
"
|
|
1292
|
-
"
|
|
1293
|
-
"
|
|
1025
|
+
"headers",
|
|
1026
|
+
"http",
|
|
1027
|
+
"http-body-util",
|
|
1028
|
+
"hyper",
|
|
1029
|
+
"hyper-util",
|
|
1030
|
+
"path-tree",
|
|
1294
1031
|
"regex",
|
|
1295
1032
|
"serde",
|
|
1296
1033
|
"serde_json",
|
|
1297
1034
|
"serde_regex",
|
|
1298
1035
|
"similar",
|
|
1036
|
+
"stringmetrics",
|
|
1037
|
+
"tabwriter",
|
|
1038
|
+
"thiserror 2.0.12",
|
|
1299
1039
|
"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
1040
|
"tracing",
|
|
1323
|
-
"
|
|
1041
|
+
"url",
|
|
1324
1042
|
]
|
|
1325
1043
|
|
|
1326
1044
|
[[package]]
|
|
@@ -1333,9 +1051,10 @@ dependencies = [
|
|
|
1333
1051
|
"futures-channel",
|
|
1334
1052
|
"futures-util",
|
|
1335
1053
|
"h2",
|
|
1336
|
-
"http
|
|
1337
|
-
"http-body
|
|
1054
|
+
"http",
|
|
1055
|
+
"http-body",
|
|
1338
1056
|
"httparse",
|
|
1057
|
+
"httpdate",
|
|
1339
1058
|
"itoa",
|
|
1340
1059
|
"pin-project-lite",
|
|
1341
1060
|
"smallvec",
|
|
@@ -1350,8 +1069,8 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
1350
1069
|
checksum = "2d191583f3da1305256f22463b9bb0471acad48a4e534a5218b9963e9c1f59b2"
|
|
1351
1070
|
dependencies = [
|
|
1352
1071
|
"futures-util",
|
|
1353
|
-
"http
|
|
1354
|
-
"hyper
|
|
1072
|
+
"http",
|
|
1073
|
+
"hyper",
|
|
1355
1074
|
"hyper-util",
|
|
1356
1075
|
"rustls",
|
|
1357
1076
|
"rustls-pki-types",
|
|
@@ -1368,7 +1087,7 @@ checksum = "70206fc6890eaca9fde8a0bf71caa2ddfc9fe045ac9e5c70df101a7dbde866e0"
|
|
|
1368
1087
|
dependencies = [
|
|
1369
1088
|
"bytes",
|
|
1370
1089
|
"http-body-util",
|
|
1371
|
-
"hyper
|
|
1090
|
+
"hyper",
|
|
1372
1091
|
"hyper-util",
|
|
1373
1092
|
"native-tls",
|
|
1374
1093
|
"tokio",
|
|
@@ -1385,9 +1104,9 @@ dependencies = [
|
|
|
1385
1104
|
"bytes",
|
|
1386
1105
|
"futures-channel",
|
|
1387
1106
|
"futures-util",
|
|
1388
|
-
"http
|
|
1389
|
-
"http-body
|
|
1390
|
-
"hyper
|
|
1107
|
+
"http",
|
|
1108
|
+
"http-body",
|
|
1109
|
+
"hyper",
|
|
1391
1110
|
"libc",
|
|
1392
1111
|
"pin-project-lite",
|
|
1393
1112
|
"socket2",
|
|
@@ -1535,7 +1254,7 @@ checksum = "1ec89e9337638ecdc08744df490b221a7399bf8d164eb52a665454e60e075ad6"
|
|
|
1535
1254
|
dependencies = [
|
|
1536
1255
|
"proc-macro2",
|
|
1537
1256
|
"quote",
|
|
1538
|
-
"syn
|
|
1257
|
+
"syn",
|
|
1539
1258
|
]
|
|
1540
1259
|
|
|
1541
1260
|
[[package]]
|
|
@@ -1576,6 +1295,15 @@ dependencies = [
|
|
|
1576
1295
|
"serde",
|
|
1577
1296
|
]
|
|
1578
1297
|
|
|
1298
|
+
[[package]]
|
|
1299
|
+
name = "infer"
|
|
1300
|
+
version = "0.16.0"
|
|
1301
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1302
|
+
checksum = "bc150e5ce2330295b8616ce0e3f53250e53af31759a9dbedad1621ba29151847"
|
|
1303
|
+
dependencies = [
|
|
1304
|
+
"cfb",
|
|
1305
|
+
]
|
|
1306
|
+
|
|
1579
1307
|
[[package]]
|
|
1580
1308
|
name = "io-extras"
|
|
1581
1309
|
version = "0.18.4"
|
|
@@ -1598,15 +1326,6 @@ version = "2.11.0"
|
|
|
1598
1326
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1599
1327
|
checksum = "469fb0b9cefa57e3ef31275ee7cacb78f2fdca44e4765491884a2b119d4eb130"
|
|
1600
1328
|
|
|
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
|
-
|
|
1610
1329
|
[[package]]
|
|
1611
1330
|
name = "itertools"
|
|
1612
1331
|
version = "0.12.1"
|
|
@@ -1671,46 +1390,6 @@ dependencies = [
|
|
|
1671
1390
|
"wasm-bindgen",
|
|
1672
1391
|
]
|
|
1673
1392
|
|
|
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
|
-
|
|
1714
1393
|
[[package]]
|
|
1715
1394
|
name = "lazy_static"
|
|
1716
1395
|
version = "1.5.0"
|
|
@@ -1735,12 +1414,6 @@ version = "0.1.0"
|
|
|
1735
1414
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1736
1415
|
checksum = "09edd9e8b54e49e587e4f6295a7d29c3ea94d469cb40ab8ca70b288248a81db2"
|
|
1737
1416
|
|
|
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
|
-
|
|
1744
1417
|
[[package]]
|
|
1745
1418
|
name = "libc"
|
|
1746
1419
|
version = "0.2.171"
|
|
@@ -1791,24 +1464,11 @@ version = "0.7.5"
|
|
|
1791
1464
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1792
1465
|
checksum = "23fb14cb19457329c82206317a5663005a4d404783dc74f4252769b0d5f42856"
|
|
1793
1466
|
|
|
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
|
-
]
|
|
1803
|
-
|
|
1804
1467
|
[[package]]
|
|
1805
1468
|
name = "log"
|
|
1806
1469
|
version = "0.4.27"
|
|
1807
1470
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1808
1471
|
checksum = "13dc2df351e3202783a1fe0d44375f7295ffb4049267b0f3018346dc122a1d94"
|
|
1809
|
-
dependencies = [
|
|
1810
|
-
"value-bag",
|
|
1811
|
-
]
|
|
1812
1472
|
|
|
1813
1473
|
[[package]]
|
|
1814
1474
|
name = "mach2"
|
|
@@ -1839,7 +1499,7 @@ checksum = "5968c820e2960565f647819f5928a42d6e874551cab9d88d75e3e0660d7f71e3"
|
|
|
1839
1499
|
dependencies = [
|
|
1840
1500
|
"proc-macro2",
|
|
1841
1501
|
"quote",
|
|
1842
|
-
"syn
|
|
1502
|
+
"syn",
|
|
1843
1503
|
]
|
|
1844
1504
|
|
|
1845
1505
|
[[package]]
|
|
@@ -1912,12 +1572,6 @@ dependencies = [
|
|
|
1912
1572
|
"tempfile",
|
|
1913
1573
|
]
|
|
1914
1574
|
|
|
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
|
-
|
|
1921
1575
|
[[package]]
|
|
1922
1576
|
name = "nom"
|
|
1923
1577
|
version = "7.1.3"
|
|
@@ -1969,7 +1623,7 @@ checksum = "a948666b637a0f465e8564c73e89d4dde00d72d4d473cc972f390fc3dcee7d9c"
|
|
|
1969
1623
|
dependencies = [
|
|
1970
1624
|
"proc-macro2",
|
|
1971
1625
|
"quote",
|
|
1972
|
-
"syn
|
|
1626
|
+
"syn",
|
|
1973
1627
|
]
|
|
1974
1628
|
|
|
1975
1629
|
[[package]]
|
|
@@ -2007,26 +1661,12 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
2007
1661
|
checksum = "f38d5652c16fde515bb1ecef450ab0f6a219d619a7274976324d5e377f7dceba"
|
|
2008
1662
|
|
|
2009
1663
|
[[package]]
|
|
2010
|
-
name = "
|
|
2011
|
-
version = "0.
|
|
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"
|
|
1664
|
+
name = "path-tree"
|
|
1665
|
+
version = "0.8.3"
|
|
2022
1666
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2023
|
-
checksum = "
|
|
1667
|
+
checksum = "c2a97453bc21a968f722df730bfe11bd08745cb50d1300b0df2bda131dece136"
|
|
2024
1668
|
dependencies = [
|
|
2025
|
-
"cfg-if",
|
|
2026
|
-
"libc",
|
|
2027
|
-
"redox_syscall",
|
|
2028
1669
|
"smallvec",
|
|
2029
|
-
"windows-targets 0.52.6",
|
|
2030
1670
|
]
|
|
2031
1671
|
|
|
2032
1672
|
[[package]]
|
|
@@ -2035,31 +1675,6 @@ version = "2.3.1"
|
|
|
2035
1675
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2036
1676
|
checksum = "e3148f5046208a5d56bcfc03053e3ca6334e51da8dfb19b6cdc8b306fae3283e"
|
|
2037
1677
|
|
|
2038
|
-
[[package]]
|
|
2039
|
-
name = "petgraph"
|
|
2040
|
-
version = "0.6.5"
|
|
2041
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2042
|
-
checksum = "b4c5cc86750666a3ed20bdaf5ca2a0344f9c67674cae0515bec2da16fbaa47db"
|
|
2043
|
-
dependencies = [
|
|
2044
|
-
"fixedbitset",
|
|
2045
|
-
"indexmap",
|
|
2046
|
-
]
|
|
2047
|
-
|
|
2048
|
-
[[package]]
|
|
2049
|
-
name = "phf_shared"
|
|
2050
|
-
version = "0.11.3"
|
|
2051
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2052
|
-
checksum = "67eabc2ef2a60eb7faa00097bd1ffdb5bd28e62bf39990626a582201b7a754e5"
|
|
2053
|
-
dependencies = [
|
|
2054
|
-
"siphasher",
|
|
2055
|
-
]
|
|
2056
|
-
|
|
2057
|
-
[[package]]
|
|
2058
|
-
name = "pico-args"
|
|
2059
|
-
version = "0.5.0"
|
|
2060
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2061
|
-
checksum = "5be167a7af36ee22fe3115051bc51f6e6c7054c9348e28deb4f49bd6f705a315"
|
|
2062
|
-
|
|
2063
1678
|
[[package]]
|
|
2064
1679
|
name = "pin-project-lite"
|
|
2065
1680
|
version = "0.2.16"
|
|
@@ -2072,38 +1687,12 @@ version = "0.1.0"
|
|
|
2072
1687
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2073
1688
|
checksum = "8b870d8c151b6f2fb93e84a13146138f05d02ed11c7e7c54f8826aaaf7c9f184"
|
|
2074
1689
|
|
|
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
|
-
|
|
2086
1690
|
[[package]]
|
|
2087
1691
|
name = "pkg-config"
|
|
2088
1692
|
version = "0.3.32"
|
|
2089
1693
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2090
1694
|
checksum = "7edddbd0b52d732b21ad9a5fab5c704c14cd949e5e9a1ec5929a24fded1b904c"
|
|
2091
1695
|
|
|
2092
|
-
[[package]]
|
|
2093
|
-
name = "polling"
|
|
2094
|
-
version = "3.7.4"
|
|
2095
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
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
|
-
]
|
|
2106
|
-
|
|
2107
1696
|
[[package]]
|
|
2108
1697
|
name = "postcard"
|
|
2109
1698
|
version = "1.1.1"
|
|
@@ -2125,12 +1714,6 @@ dependencies = [
|
|
|
2125
1714
|
"zerocopy",
|
|
2126
1715
|
]
|
|
2127
1716
|
|
|
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
|
-
|
|
2134
1717
|
[[package]]
|
|
2135
1718
|
name = "proc-macro2"
|
|
2136
1719
|
version = "1.0.94"
|
|
@@ -2151,9 +1734,9 @@ dependencies = [
|
|
|
2151
1734
|
|
|
2152
1735
|
[[package]]
|
|
2153
1736
|
name = "pulley-interpreter"
|
|
2154
|
-
version = "
|
|
1737
|
+
version = "33.0.2"
|
|
2155
1738
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2156
|
-
checksum = "
|
|
1739
|
+
checksum = "986beaef947a51d17b42b0ea18ceaa88450d35b6994737065ed505c39172db71"
|
|
2157
1740
|
dependencies = [
|
|
2158
1741
|
"cranelift-bitset",
|
|
2159
1742
|
"log",
|
|
@@ -2246,7 +1829,7 @@ dependencies = [
|
|
|
2246
1829
|
"quote",
|
|
2247
1830
|
"regex",
|
|
2248
1831
|
"shell-words",
|
|
2249
|
-
"syn
|
|
1832
|
+
"syn",
|
|
2250
1833
|
]
|
|
2251
1834
|
|
|
2252
1835
|
[[package]]
|
|
@@ -2255,15 +1838,6 @@ version = "0.1.2"
|
|
|
2255
1838
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2256
1839
|
checksum = "a35802679f07360454b418a5d1735c89716bde01d35b1560fc953c1415a0b3bb"
|
|
2257
1840
|
|
|
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
|
-
|
|
2267
1841
|
[[package]]
|
|
2268
1842
|
name = "redox_users"
|
|
2269
1843
|
version = "0.4.6"
|
|
@@ -2277,9 +1851,9 @@ dependencies = [
|
|
|
2277
1851
|
|
|
2278
1852
|
[[package]]
|
|
2279
1853
|
name = "regalloc2"
|
|
2280
|
-
version = "0.
|
|
1854
|
+
version = "0.12.2"
|
|
2281
1855
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2282
|
-
checksum = "
|
|
1856
|
+
checksum = "5216b1837de2149f8bc8e6d5f88a9326b63b8c836ed58ce4a0a29ec736a59734"
|
|
2283
1857
|
dependencies = [
|
|
2284
1858
|
"allocator-api2",
|
|
2285
1859
|
"bumpalo",
|
|
@@ -2324,17 +1898,17 @@ version = "0.12.15"
|
|
|
2324
1898
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2325
1899
|
checksum = "d19c46a6fdd48bc4dab94b6103fccc55d34c67cc0ad04653aad4ea2a07cd7bbb"
|
|
2326
1900
|
dependencies = [
|
|
2327
|
-
"base64
|
|
1901
|
+
"base64",
|
|
2328
1902
|
"bytes",
|
|
2329
1903
|
"encoding_rs",
|
|
2330
1904
|
"futures-channel",
|
|
2331
1905
|
"futures-core",
|
|
2332
1906
|
"futures-util",
|
|
2333
1907
|
"h2",
|
|
2334
|
-
"http
|
|
2335
|
-
"http-body
|
|
1908
|
+
"http",
|
|
1909
|
+
"http-body",
|
|
2336
1910
|
"http-body-util",
|
|
2337
|
-
"hyper
|
|
1911
|
+
"hyper",
|
|
2338
1912
|
"hyper-rustls",
|
|
2339
1913
|
"hyper-tls",
|
|
2340
1914
|
"hyper-util",
|
|
@@ -2403,10 +1977,8 @@ checksum = "fdb5bc1ae2baa591800df16c9ca78619bf65c0488b41b96ccec5d11220d8c154"
|
|
|
2403
1977
|
dependencies = [
|
|
2404
1978
|
"bitflags",
|
|
2405
1979
|
"errno",
|
|
2406
|
-
"itoa",
|
|
2407
1980
|
"libc",
|
|
2408
1981
|
"linux-raw-sys 0.4.15",
|
|
2409
|
-
"once_cell",
|
|
2410
1982
|
"windows-sys 0.59.0",
|
|
2411
1983
|
]
|
|
2412
1984
|
|
|
@@ -2423,6 +1995,16 @@ dependencies = [
|
|
|
2423
1995
|
"windows-sys 0.59.0",
|
|
2424
1996
|
]
|
|
2425
1997
|
|
|
1998
|
+
[[package]]
|
|
1999
|
+
name = "rustix-linux-procfs"
|
|
2000
|
+
version = "0.1.1"
|
|
2001
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2002
|
+
checksum = "2fc84bf7e9aa16c4f2c758f27412dc9841341e16aa682d9c7ac308fe3ee12056"
|
|
2003
|
+
dependencies = [
|
|
2004
|
+
"once_cell",
|
|
2005
|
+
"rustix 1.0.5",
|
|
2006
|
+
]
|
|
2007
|
+
|
|
2426
2008
|
[[package]]
|
|
2427
2009
|
name = "rustls"
|
|
2428
2010
|
version = "0.23.26"
|
|
@@ -2474,15 +2056,6 @@ version = "1.0.20"
|
|
|
2474
2056
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2475
2057
|
checksum = "28d3b2b1366ec20994f1fd18c3c594f05c5dd4bc44d8bb0c1c632c8d6829481f"
|
|
2476
2058
|
|
|
2477
|
-
[[package]]
|
|
2478
|
-
name = "same-file"
|
|
2479
|
-
version = "1.0.6"
|
|
2480
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2481
|
-
checksum = "93fc1dc3aaa9bfed95e02e6eadabb4baf7e3078b0bd1b4d7b6b0b68378900502"
|
|
2482
|
-
dependencies = [
|
|
2483
|
-
"winapi-util",
|
|
2484
|
-
]
|
|
2485
|
-
|
|
2486
2059
|
[[package]]
|
|
2487
2060
|
name = "schannel"
|
|
2488
2061
|
version = "0.1.27"
|
|
@@ -2492,12 +2065,6 @@ dependencies = [
|
|
|
2492
2065
|
"windows-sys 0.59.0",
|
|
2493
2066
|
]
|
|
2494
2067
|
|
|
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
|
-
|
|
2501
2068
|
[[package]]
|
|
2502
2069
|
name = "security-framework"
|
|
2503
2070
|
version = "2.11.1"
|
|
@@ -2553,7 +2120,7 @@ checksum = "5b0276cf7f2c73365f7157c8123c21cd9a50fbbd844757af28ca1f5925fc2a00"
|
|
|
2553
2120
|
dependencies = [
|
|
2554
2121
|
"proc-macro2",
|
|
2555
2122
|
"quote",
|
|
2556
|
-
"syn
|
|
2123
|
+
"syn",
|
|
2557
2124
|
]
|
|
2558
2125
|
|
|
2559
2126
|
[[package]]
|
|
@@ -2599,6 +2166,17 @@ dependencies = [
|
|
|
2599
2166
|
"serde",
|
|
2600
2167
|
]
|
|
2601
2168
|
|
|
2169
|
+
[[package]]
|
|
2170
|
+
name = "sha1"
|
|
2171
|
+
version = "0.10.6"
|
|
2172
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2173
|
+
checksum = "e3bf829a2d51ab4a5ddf1352d8470c140cadc8301b2ae1789db023f01cedd6ba"
|
|
2174
|
+
dependencies = [
|
|
2175
|
+
"cfg-if",
|
|
2176
|
+
"cpufeatures",
|
|
2177
|
+
"digest",
|
|
2178
|
+
]
|
|
2179
|
+
|
|
2602
2180
|
[[package]]
|
|
2603
2181
|
name = "sha2"
|
|
2604
2182
|
version = "0.10.8"
|
|
@@ -2616,15 +2194,6 @@ version = "1.1.0"
|
|
|
2616
2194
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2617
2195
|
checksum = "24188a676b6ae68c3b2cb3a01be17fbf7240ce009799bb56d5b1409051e78fde"
|
|
2618
2196
|
|
|
2619
|
-
[[package]]
|
|
2620
|
-
name = "shellexpand"
|
|
2621
|
-
version = "2.1.2"
|
|
2622
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2623
|
-
checksum = "7ccc8076840c4da029af4f87e4e8daeb0fca6b87bbb02e10cb60b791450e11e4"
|
|
2624
|
-
dependencies = [
|
|
2625
|
-
"dirs",
|
|
2626
|
-
]
|
|
2627
|
-
|
|
2628
2197
|
[[package]]
|
|
2629
2198
|
name = "shlex"
|
|
2630
2199
|
version = "1.3.0"
|
|
@@ -2646,12 +2215,6 @@ version = "2.7.0"
|
|
|
2646
2215
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2647
2216
|
checksum = "bbbb5d9659141646ae647b42fe094daf6c6192d1620870b449d9557f748b2daa"
|
|
2648
2217
|
|
|
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
|
-
|
|
2655
2218
|
[[package]]
|
|
2656
2219
|
name = "slab"
|
|
2657
2220
|
version = "0.4.9"
|
|
@@ -2693,16 +2256,10 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
2693
2256
|
checksum = "a8f112729512f8e442d81f95a8a7ddf2b7c6b8a1a6f509a95864142b30cab2d3"
|
|
2694
2257
|
|
|
2695
2258
|
[[package]]
|
|
2696
|
-
name = "
|
|
2697
|
-
version = "
|
|
2259
|
+
name = "stringmetrics"
|
|
2260
|
+
version = "2.2.2"
|
|
2698
2261
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2699
|
-
checksum = "
|
|
2700
|
-
dependencies = [
|
|
2701
|
-
"new_debug_unreachable",
|
|
2702
|
-
"parking_lot",
|
|
2703
|
-
"phf_shared",
|
|
2704
|
-
"precomputed-hash",
|
|
2705
|
-
]
|
|
2262
|
+
checksum = "7b3c8667cd96245cbb600b8dec5680a7319edd719c5aa2b5d23c6bff94f39765"
|
|
2706
2263
|
|
|
2707
2264
|
[[package]]
|
|
2708
2265
|
name = "subtle"
|
|
@@ -2710,17 +2267,6 @@ version = "2.6.1"
|
|
|
2710
2267
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2711
2268
|
checksum = "13c2bddecc57b384dee18652358fb23172facb8a2c51ccc10d74c157bdea3292"
|
|
2712
2269
|
|
|
2713
|
-
[[package]]
|
|
2714
|
-
name = "syn"
|
|
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
2270
|
[[package]]
|
|
2725
2271
|
name = "syn"
|
|
2726
2272
|
version = "2.0.100"
|
|
@@ -2749,7 +2295,7 @@ checksum = "c8af7666ab7b6390ab78131fb5b0fce11d6b7a6951602017c35fa82800708971"
|
|
|
2749
2295
|
dependencies = [
|
|
2750
2296
|
"proc-macro2",
|
|
2751
2297
|
"quote",
|
|
2752
|
-
"syn
|
|
2298
|
+
"syn",
|
|
2753
2299
|
]
|
|
2754
2300
|
|
|
2755
2301
|
[[package]]
|
|
@@ -2789,6 +2335,15 @@ dependencies = [
|
|
|
2789
2335
|
"winx",
|
|
2790
2336
|
]
|
|
2791
2337
|
|
|
2338
|
+
[[package]]
|
|
2339
|
+
name = "tabwriter"
|
|
2340
|
+
version = "1.4.1"
|
|
2341
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2342
|
+
checksum = "fce91f2f0ec87dff7e6bcbbeb267439aa1188703003c6055193c821487400432"
|
|
2343
|
+
dependencies = [
|
|
2344
|
+
"unicode-width",
|
|
2345
|
+
]
|
|
2346
|
+
|
|
2792
2347
|
[[package]]
|
|
2793
2348
|
name = "target-lexicon"
|
|
2794
2349
|
version = "0.13.2"
|
|
@@ -2808,17 +2363,6 @@ dependencies = [
|
|
|
2808
2363
|
"windows-sys 0.59.0",
|
|
2809
2364
|
]
|
|
2810
2365
|
|
|
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
|
-
|
|
2822
2366
|
[[package]]
|
|
2823
2367
|
name = "termcolor"
|
|
2824
2368
|
version = "1.4.1"
|
|
@@ -2854,7 +2398,7 @@ checksum = "4fee6c4efc90059e10f81e6d42c60a18f76588c3d74cb83a0b242a2b6c7504c1"
|
|
|
2854
2398
|
dependencies = [
|
|
2855
2399
|
"proc-macro2",
|
|
2856
2400
|
"quote",
|
|
2857
|
-
"syn
|
|
2401
|
+
"syn",
|
|
2858
2402
|
]
|
|
2859
2403
|
|
|
2860
2404
|
[[package]]
|
|
@@ -2865,16 +2409,7 @@ checksum = "7f7cf42b4507d8ea322120659672cf1b9dbb93f8f2d4ecfd6e51350ff5b17a1d"
|
|
|
2865
2409
|
dependencies = [
|
|
2866
2410
|
"proc-macro2",
|
|
2867
2411
|
"quote",
|
|
2868
|
-
"syn
|
|
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",
|
|
2412
|
+
"syn",
|
|
2878
2413
|
]
|
|
2879
2414
|
|
|
2880
2415
|
[[package]]
|
|
@@ -2912,7 +2447,7 @@ checksum = "6e06d43f1345a3bcd39f6a56dbb7dcab2ba47e68e8ac134855e7e2bdbaf8cab8"
|
|
|
2912
2447
|
dependencies = [
|
|
2913
2448
|
"proc-macro2",
|
|
2914
2449
|
"quote",
|
|
2915
|
-
"syn
|
|
2450
|
+
"syn",
|
|
2916
2451
|
]
|
|
2917
2452
|
|
|
2918
2453
|
[[package]]
|
|
@@ -3015,6 +2550,7 @@ version = "0.1.41"
|
|
|
3015
2550
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3016
2551
|
checksum = "784e0ac535deb450455cbfa28a6f0df145ea1bb7ae51b821cf5e7927fdcfbdd0"
|
|
3017
2552
|
dependencies = [
|
|
2553
|
+
"log",
|
|
3018
2554
|
"pin-project-lite",
|
|
3019
2555
|
"tracing-attributes",
|
|
3020
2556
|
"tracing-core",
|
|
@@ -3028,7 +2564,7 @@ checksum = "395ae124c09f9e6918a2310af6038fba074bcf474ac352496d5910dd59a2226d"
|
|
|
3028
2564
|
dependencies = [
|
|
3029
2565
|
"proc-macro2",
|
|
3030
2566
|
"quote",
|
|
3031
|
-
"syn
|
|
2567
|
+
"syn",
|
|
3032
2568
|
]
|
|
3033
2569
|
|
|
3034
2570
|
[[package]]
|
|
@@ -3048,7 +2584,7 @@ checksum = "70977707304198400eb4835a78f6a9f928bf41bba420deb8fdb175cd965d77a7"
|
|
|
3048
2584
|
dependencies = [
|
|
3049
2585
|
"proc-macro2",
|
|
3050
2586
|
"quote",
|
|
3051
|
-
"syn
|
|
2587
|
+
"syn",
|
|
3052
2588
|
]
|
|
3053
2589
|
|
|
3054
2590
|
[[package]]
|
|
@@ -3116,12 +2652,6 @@ version = "1.16.0"
|
|
|
3116
2652
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3117
2653
|
checksum = "458f7a779bf54acc9f347480ac654f68407d3aab21269a6e3c9f922acd9e2da9"
|
|
3118
2654
|
|
|
3119
|
-
[[package]]
|
|
3120
|
-
name = "value-bag"
|
|
3121
|
-
version = "1.11.1"
|
|
3122
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3123
|
-
checksum = "943ce29a8a743eb10d6082545d861b24f9d1b160b7d741e0f2cdf726bec909c5"
|
|
3124
|
-
|
|
3125
2655
|
[[package]]
|
|
3126
2656
|
name = "vcpkg"
|
|
3127
2657
|
version = "0.2.15"
|
|
@@ -3134,16 +2664,6 @@ version = "0.9.5"
|
|
|
3134
2664
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3135
2665
|
checksum = "0b928f33d975fc6ad9f86c8f283853ad26bdd5b10b7f1542aa2fa15e2289105a"
|
|
3136
2666
|
|
|
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
|
-
|
|
3147
2667
|
[[package]]
|
|
3148
2668
|
name = "want"
|
|
3149
2669
|
version = "0.3.1"
|
|
@@ -3190,7 +2710,7 @@ dependencies = [
|
|
|
3190
2710
|
"log",
|
|
3191
2711
|
"proc-macro2",
|
|
3192
2712
|
"quote",
|
|
3193
|
-
"syn
|
|
2713
|
+
"syn",
|
|
3194
2714
|
"wasm-bindgen-shared",
|
|
3195
2715
|
]
|
|
3196
2716
|
|
|
@@ -3225,7 +2745,7 @@ checksum = "8ae87ea40c9f689fc23f209965b6fb8a99ad69aeeb0231408be24920604395de"
|
|
|
3225
2745
|
dependencies = [
|
|
3226
2746
|
"proc-macro2",
|
|
3227
2747
|
"quote",
|
|
3228
|
-
"syn
|
|
2748
|
+
"syn",
|
|
3229
2749
|
"wasm-bindgen-backend",
|
|
3230
2750
|
"wasm-bindgen-shared",
|
|
3231
2751
|
]
|
|
@@ -3241,19 +2761,29 @@ dependencies = [
|
|
|
3241
2761
|
|
|
3242
2762
|
[[package]]
|
|
3243
2763
|
name = "wasm-encoder"
|
|
3244
|
-
version = "0.
|
|
2764
|
+
version = "0.229.0"
|
|
3245
2765
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3246
|
-
checksum = "
|
|
2766
|
+
checksum = "38ba1d491ecacb085a2552025c10a675a6fddcbd03b1fc9b36c536010ce265d2"
|
|
3247
2767
|
dependencies = [
|
|
3248
2768
|
"leb128fmt",
|
|
3249
|
-
"wasmparser",
|
|
2769
|
+
"wasmparser 0.229.0",
|
|
2770
|
+
]
|
|
2771
|
+
|
|
2772
|
+
[[package]]
|
|
2773
|
+
name = "wasm-encoder"
|
|
2774
|
+
version = "0.240.0"
|
|
2775
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2776
|
+
checksum = "06d642d8c5ecc083aafe9ceb32809276a304547a3a6eeecceb5d8152598bc71f"
|
|
2777
|
+
dependencies = [
|
|
2778
|
+
"leb128fmt",
|
|
2779
|
+
"wasmparser 0.240.0",
|
|
3250
2780
|
]
|
|
3251
2781
|
|
|
3252
2782
|
[[package]]
|
|
3253
2783
|
name = "wasmparser"
|
|
3254
|
-
version = "0.
|
|
2784
|
+
version = "0.229.0"
|
|
3255
2785
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3256
|
-
checksum = "
|
|
2786
|
+
checksum = "0cc3b1f053f5d41aa55640a1fa9b6d1b8a9e4418d118ce308d20e24ff3575a8c"
|
|
3257
2787
|
dependencies = [
|
|
3258
2788
|
"bitflags",
|
|
3259
2789
|
"hashbrown",
|
|
@@ -3262,22 +2792,33 @@ dependencies = [
|
|
|
3262
2792
|
"serde",
|
|
3263
2793
|
]
|
|
3264
2794
|
|
|
2795
|
+
[[package]]
|
|
2796
|
+
name = "wasmparser"
|
|
2797
|
+
version = "0.240.0"
|
|
2798
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2799
|
+
checksum = "b722dcf61e0ea47440b53ff83ccb5df8efec57a69d150e4f24882e4eba7e24a4"
|
|
2800
|
+
dependencies = [
|
|
2801
|
+
"bitflags",
|
|
2802
|
+
"indexmap",
|
|
2803
|
+
"semver",
|
|
2804
|
+
]
|
|
2805
|
+
|
|
3265
2806
|
[[package]]
|
|
3266
2807
|
name = "wasmprinter"
|
|
3267
|
-
version = "0.
|
|
2808
|
+
version = "0.229.0"
|
|
3268
2809
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3269
|
-
checksum = "
|
|
2810
|
+
checksum = "d25dac01892684a99b8fbfaf670eb6b56edea8a096438c75392daeb83156ae2e"
|
|
3270
2811
|
dependencies = [
|
|
3271
2812
|
"anyhow",
|
|
3272
2813
|
"termcolor",
|
|
3273
|
-
"wasmparser",
|
|
2814
|
+
"wasmparser 0.229.0",
|
|
3274
2815
|
]
|
|
3275
2816
|
|
|
3276
2817
|
[[package]]
|
|
3277
2818
|
name = "wasmtime"
|
|
3278
|
-
version = "
|
|
2819
|
+
version = "33.0.2"
|
|
3279
2820
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3280
|
-
checksum = "
|
|
2821
|
+
checksum = "57373e1d8699662fb791270ac5dfac9da5c14f618ecf940cdb29dc3ad9472a3c"
|
|
3281
2822
|
dependencies = [
|
|
3282
2823
|
"addr2line",
|
|
3283
2824
|
"anyhow",
|
|
@@ -3311,8 +2852,8 @@ dependencies = [
|
|
|
3311
2852
|
"sptr",
|
|
3312
2853
|
"target-lexicon",
|
|
3313
2854
|
"trait-variant",
|
|
3314
|
-
"wasm-encoder",
|
|
3315
|
-
"wasmparser",
|
|
2855
|
+
"wasm-encoder 0.229.0",
|
|
2856
|
+
"wasmparser 0.229.0",
|
|
3316
2857
|
"wasmtime-asm-macros",
|
|
3317
2858
|
"wasmtime-cache",
|
|
3318
2859
|
"wasmtime-component-macro",
|
|
@@ -3332,21 +2873,21 @@ dependencies = [
|
|
|
3332
2873
|
|
|
3333
2874
|
[[package]]
|
|
3334
2875
|
name = "wasmtime-asm-macros"
|
|
3335
|
-
version = "
|
|
2876
|
+
version = "33.0.2"
|
|
3336
2877
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3337
|
-
checksum = "
|
|
2878
|
+
checksum = "bd0fc91372865167a695dc98d0d6771799a388a7541d3f34e939d0539d6583de"
|
|
3338
2879
|
dependencies = [
|
|
3339
2880
|
"cfg-if",
|
|
3340
2881
|
]
|
|
3341
2882
|
|
|
3342
2883
|
[[package]]
|
|
3343
2884
|
name = "wasmtime-cache"
|
|
3344
|
-
version = "
|
|
2885
|
+
version = "33.0.2"
|
|
3345
2886
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3346
|
-
checksum = "
|
|
2887
|
+
checksum = "e8c90a5ce3e570f1d2bfd037d0b57d06460ee980eab6ffe138bcb734bb72b312"
|
|
3347
2888
|
dependencies = [
|
|
3348
2889
|
"anyhow",
|
|
3349
|
-
"base64
|
|
2890
|
+
"base64",
|
|
3350
2891
|
"directories-next",
|
|
3351
2892
|
"log",
|
|
3352
2893
|
"postcard",
|
|
@@ -3361,14 +2902,14 @@ dependencies = [
|
|
|
3361
2902
|
|
|
3362
2903
|
[[package]]
|
|
3363
2904
|
name = "wasmtime-component-macro"
|
|
3364
|
-
version = "
|
|
2905
|
+
version = "33.0.2"
|
|
3365
2906
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3366
|
-
checksum = "
|
|
2907
|
+
checksum = "25c9c7526675ff9a9794b115023c4af5128e3eb21389bfc3dc1fd344d549258f"
|
|
3367
2908
|
dependencies = [
|
|
3368
2909
|
"anyhow",
|
|
3369
2910
|
"proc-macro2",
|
|
3370
2911
|
"quote",
|
|
3371
|
-
"syn
|
|
2912
|
+
"syn",
|
|
3372
2913
|
"wasmtime-component-util",
|
|
3373
2914
|
"wasmtime-wit-bindgen",
|
|
3374
2915
|
"wit-parser",
|
|
@@ -3376,15 +2917,15 @@ dependencies = [
|
|
|
3376
2917
|
|
|
3377
2918
|
[[package]]
|
|
3378
2919
|
name = "wasmtime-component-util"
|
|
3379
|
-
version = "
|
|
2920
|
+
version = "33.0.2"
|
|
3380
2921
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3381
|
-
checksum = "
|
|
2922
|
+
checksum = "cc42ec8b078875804908d797cb4950fec781d9add9684c9026487fd8eb3f6291"
|
|
3382
2923
|
|
|
3383
2924
|
[[package]]
|
|
3384
2925
|
name = "wasmtime-cranelift"
|
|
3385
|
-
version = "
|
|
2926
|
+
version = "33.0.2"
|
|
3386
2927
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3387
|
-
checksum = "
|
|
2928
|
+
checksum = "b2bd72f0a6a0ffcc6a184ec86ac35c174e48ea0e97bbae277c8f15f8bf77a566"
|
|
3388
2929
|
dependencies = [
|
|
3389
2930
|
"anyhow",
|
|
3390
2931
|
"cfg-if",
|
|
@@ -3401,16 +2942,16 @@ dependencies = [
|
|
|
3401
2942
|
"smallvec",
|
|
3402
2943
|
"target-lexicon",
|
|
3403
2944
|
"thiserror 2.0.12",
|
|
3404
|
-
"wasmparser",
|
|
2945
|
+
"wasmparser 0.229.0",
|
|
3405
2946
|
"wasmtime-environ",
|
|
3406
2947
|
"wasmtime-versioned-export-macros",
|
|
3407
2948
|
]
|
|
3408
2949
|
|
|
3409
2950
|
[[package]]
|
|
3410
2951
|
name = "wasmtime-environ"
|
|
3411
|
-
version = "
|
|
2952
|
+
version = "33.0.2"
|
|
3412
2953
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3413
|
-
checksum = "
|
|
2954
|
+
checksum = "e6187bb108a23eb25d2a92aa65d6c89fb5ed53433a319038a2558567f3011ff2"
|
|
3414
2955
|
dependencies = [
|
|
3415
2956
|
"anyhow",
|
|
3416
2957
|
"cpp_demangle",
|
|
@@ -3427,17 +2968,17 @@ dependencies = [
|
|
|
3427
2968
|
"serde_derive",
|
|
3428
2969
|
"smallvec",
|
|
3429
2970
|
"target-lexicon",
|
|
3430
|
-
"wasm-encoder",
|
|
3431
|
-
"wasmparser",
|
|
2971
|
+
"wasm-encoder 0.229.0",
|
|
2972
|
+
"wasmparser 0.229.0",
|
|
3432
2973
|
"wasmprinter",
|
|
3433
2974
|
"wasmtime-component-util",
|
|
3434
2975
|
]
|
|
3435
2976
|
|
|
3436
2977
|
[[package]]
|
|
3437
2978
|
name = "wasmtime-fiber"
|
|
3438
|
-
version = "
|
|
2979
|
+
version = "33.0.2"
|
|
3439
2980
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3440
|
-
checksum = "
|
|
2981
|
+
checksum = "dc8965d2128c012329f390e24b8b2758dd93d01bf67e1a1a0dd3d8fd72f56873"
|
|
3441
2982
|
dependencies = [
|
|
3442
2983
|
"anyhow",
|
|
3443
2984
|
"cc",
|
|
@@ -3450,9 +2991,9 @@ dependencies = [
|
|
|
3450
2991
|
|
|
3451
2992
|
[[package]]
|
|
3452
2993
|
name = "wasmtime-jit-debug"
|
|
3453
|
-
version = "
|
|
2994
|
+
version = "33.0.2"
|
|
3454
2995
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3455
|
-
checksum = "
|
|
2996
|
+
checksum = "a5882706a348c266b96dd81f560c1f993c790cf3a019857a9cde5f634191cfbb"
|
|
3456
2997
|
dependencies = [
|
|
3457
2998
|
"cc",
|
|
3458
2999
|
"object",
|
|
@@ -3462,9 +3003,9 @@ dependencies = [
|
|
|
3462
3003
|
|
|
3463
3004
|
[[package]]
|
|
3464
3005
|
name = "wasmtime-jit-icache-coherence"
|
|
3465
|
-
version = "
|
|
3006
|
+
version = "33.0.2"
|
|
3466
3007
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3467
|
-
checksum = "
|
|
3008
|
+
checksum = "7af0e940cb062a45c0b3f01a926f77da5947149e99beb4e3dd9846d5b8f11619"
|
|
3468
3009
|
dependencies = [
|
|
3469
3010
|
"anyhow",
|
|
3470
3011
|
"cfg-if",
|
|
@@ -3474,35 +3015,35 @@ dependencies = [
|
|
|
3474
3015
|
|
|
3475
3016
|
[[package]]
|
|
3476
3017
|
name = "wasmtime-math"
|
|
3477
|
-
version = "
|
|
3018
|
+
version = "33.0.2"
|
|
3478
3019
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3479
|
-
checksum = "
|
|
3020
|
+
checksum = "acfca360e719dda9a27e26944f2754ff2fd5bad88e21919c42c5a5f38ddd93cb"
|
|
3480
3021
|
dependencies = [
|
|
3481
3022
|
"libm",
|
|
3482
3023
|
]
|
|
3483
3024
|
|
|
3484
3025
|
[[package]]
|
|
3485
3026
|
name = "wasmtime-slab"
|
|
3486
|
-
version = "
|
|
3027
|
+
version = "33.0.2"
|
|
3487
3028
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3488
|
-
checksum = "
|
|
3029
|
+
checksum = "48e240559cada55c4b24af979d5f6c95e0029f5772f32027ec3c62b258aaff65"
|
|
3489
3030
|
|
|
3490
3031
|
[[package]]
|
|
3491
3032
|
name = "wasmtime-versioned-export-macros"
|
|
3492
|
-
version = "
|
|
3033
|
+
version = "33.0.2"
|
|
3493
3034
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3494
|
-
checksum = "
|
|
3035
|
+
checksum = "d0963c1438357a3d8c0efe152b4ef5259846c1cf8b864340270744fe5b3bae5e"
|
|
3495
3036
|
dependencies = [
|
|
3496
3037
|
"proc-macro2",
|
|
3497
3038
|
"quote",
|
|
3498
|
-
"syn
|
|
3039
|
+
"syn",
|
|
3499
3040
|
]
|
|
3500
3041
|
|
|
3501
3042
|
[[package]]
|
|
3502
3043
|
name = "wasmtime-wasi"
|
|
3503
|
-
version = "
|
|
3044
|
+
version = "33.0.2"
|
|
3504
3045
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3505
|
-
checksum = "
|
|
3046
|
+
checksum = "4ae951b72c7c6749a1c15dcdfb6d940a2614c932b4a54f474636e78e2c744b4c"
|
|
3506
3047
|
dependencies = [
|
|
3507
3048
|
"anyhow",
|
|
3508
3049
|
"async-trait",
|
|
@@ -3531,9 +3072,9 @@ dependencies = [
|
|
|
3531
3072
|
|
|
3532
3073
|
[[package]]
|
|
3533
3074
|
name = "wasmtime-wasi-io"
|
|
3534
|
-
version = "
|
|
3075
|
+
version = "33.0.2"
|
|
3535
3076
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3536
|
-
checksum = "
|
|
3077
|
+
checksum = "a835790dcecc3d7051ec67da52ba9e04af25e1bc204275b9391e3f0042b10797"
|
|
3537
3078
|
dependencies = [
|
|
3538
3079
|
"anyhow",
|
|
3539
3080
|
"async-trait",
|
|
@@ -3544,16 +3085,16 @@ dependencies = [
|
|
|
3544
3085
|
|
|
3545
3086
|
[[package]]
|
|
3546
3087
|
name = "wasmtime-winch"
|
|
3547
|
-
version = "
|
|
3088
|
+
version = "33.0.2"
|
|
3548
3089
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3549
|
-
checksum = "
|
|
3090
|
+
checksum = "cbc3b117d03d6eeabfa005a880c5c22c06503bb8820f3aa2e30f0e8d87b6752f"
|
|
3550
3091
|
dependencies = [
|
|
3551
3092
|
"anyhow",
|
|
3552
3093
|
"cranelift-codegen",
|
|
3553
3094
|
"gimli",
|
|
3554
3095
|
"object",
|
|
3555
3096
|
"target-lexicon",
|
|
3556
|
-
"wasmparser",
|
|
3097
|
+
"wasmparser 0.229.0",
|
|
3557
3098
|
"wasmtime-cranelift",
|
|
3558
3099
|
"wasmtime-environ",
|
|
3559
3100
|
"winch-codegen",
|
|
@@ -3561,9 +3102,9 @@ dependencies = [
|
|
|
3561
3102
|
|
|
3562
3103
|
[[package]]
|
|
3563
3104
|
name = "wasmtime-wit-bindgen"
|
|
3564
|
-
version = "
|
|
3105
|
+
version = "33.0.2"
|
|
3565
3106
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3566
|
-
checksum = "
|
|
3107
|
+
checksum = "1382f4f09390eab0d75d4994d0c3b0f6279f86a571807ec67a8253c87cf6a145"
|
|
3567
3108
|
dependencies = [
|
|
3568
3109
|
"anyhow",
|
|
3569
3110
|
"heck",
|
|
@@ -3582,24 +3123,24 @@ dependencies = [
|
|
|
3582
3123
|
|
|
3583
3124
|
[[package]]
|
|
3584
3125
|
name = "wast"
|
|
3585
|
-
version = "
|
|
3126
|
+
version = "240.0.0"
|
|
3586
3127
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3587
|
-
checksum = "
|
|
3128
|
+
checksum = "b0efe1c93db4ac562b9733e3dca19ed7fc878dba29aef22245acf84f13da4a19"
|
|
3588
3129
|
dependencies = [
|
|
3589
3130
|
"bumpalo",
|
|
3590
3131
|
"leb128fmt",
|
|
3591
3132
|
"memchr",
|
|
3592
3133
|
"unicode-width",
|
|
3593
|
-
"wasm-encoder",
|
|
3134
|
+
"wasm-encoder 0.240.0",
|
|
3594
3135
|
]
|
|
3595
3136
|
|
|
3596
3137
|
[[package]]
|
|
3597
3138
|
name = "wat"
|
|
3598
|
-
version = "1.
|
|
3139
|
+
version = "1.240.0"
|
|
3599
3140
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3600
|
-
checksum = "
|
|
3141
|
+
checksum = "4ec9b6eab7ecd4d639d78515e9ea491c9bacf494aa5eda10823bd35992cf8c1e"
|
|
3601
3142
|
dependencies = [
|
|
3602
|
-
"wast
|
|
3143
|
+
"wast 240.0.0",
|
|
3603
3144
|
]
|
|
3604
3145
|
|
|
3605
3146
|
[[package]]
|
|
@@ -3614,9 +3155,9 @@ dependencies = [
|
|
|
3614
3155
|
|
|
3615
3156
|
[[package]]
|
|
3616
3157
|
name = "wiggle"
|
|
3617
|
-
version = "
|
|
3158
|
+
version = "33.0.2"
|
|
3618
3159
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3619
|
-
checksum = "
|
|
3160
|
+
checksum = "649c1aca13ef9e9dccf2d5efbbebf12025bc5521c3fb7754355ef60f5eb810be"
|
|
3620
3161
|
dependencies = [
|
|
3621
3162
|
"anyhow",
|
|
3622
3163
|
"async-trait",
|
|
@@ -3629,28 +3170,27 @@ dependencies = [
|
|
|
3629
3170
|
|
|
3630
3171
|
[[package]]
|
|
3631
3172
|
name = "wiggle-generate"
|
|
3632
|
-
version = "
|
|
3173
|
+
version = "33.0.2"
|
|
3633
3174
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3634
|
-
checksum = "
|
|
3175
|
+
checksum = "164870fc34214ee42bd81b8ce9e7c179800fa1a7d4046d17a84e7f7bf422c8ad"
|
|
3635
3176
|
dependencies = [
|
|
3636
3177
|
"anyhow",
|
|
3637
3178
|
"heck",
|
|
3638
3179
|
"proc-macro2",
|
|
3639
3180
|
"quote",
|
|
3640
|
-
"
|
|
3641
|
-
"syn 2.0.100",
|
|
3181
|
+
"syn",
|
|
3642
3182
|
"witx",
|
|
3643
3183
|
]
|
|
3644
3184
|
|
|
3645
3185
|
[[package]]
|
|
3646
3186
|
name = "wiggle-macro"
|
|
3647
|
-
version = "
|
|
3187
|
+
version = "33.0.2"
|
|
3648
3188
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3649
|
-
checksum = "
|
|
3189
|
+
checksum = "d873bb5b59ca703b5e41562e96a4796d1af61bf4cf80bf8a7abda755a380ec1c"
|
|
3650
3190
|
dependencies = [
|
|
3651
3191
|
"proc-macro2",
|
|
3652
3192
|
"quote",
|
|
3653
|
-
"syn
|
|
3193
|
+
"syn",
|
|
3654
3194
|
"wiggle-generate",
|
|
3655
3195
|
]
|
|
3656
3196
|
|
|
@@ -3687,18 +3227,19 @@ checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f"
|
|
|
3687
3227
|
|
|
3688
3228
|
[[package]]
|
|
3689
3229
|
name = "winch-codegen"
|
|
3690
|
-
version = "
|
|
3230
|
+
version = "33.0.2"
|
|
3691
3231
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3692
|
-
checksum = "
|
|
3232
|
+
checksum = "7914c296fbcef59d1b89a15e82384d34dc9669bc09763f2ef068a28dd3a64ebf"
|
|
3693
3233
|
dependencies = [
|
|
3694
3234
|
"anyhow",
|
|
3235
|
+
"cranelift-assembler-x64",
|
|
3695
3236
|
"cranelift-codegen",
|
|
3696
3237
|
"gimli",
|
|
3697
3238
|
"regalloc2",
|
|
3698
3239
|
"smallvec",
|
|
3699
3240
|
"target-lexicon",
|
|
3700
3241
|
"thiserror 2.0.12",
|
|
3701
|
-
"wasmparser",
|
|
3242
|
+
"wasmparser 0.229.0",
|
|
3702
3243
|
"wasmtime-cranelift",
|
|
3703
3244
|
"wasmtime-environ",
|
|
3704
3245
|
]
|
|
@@ -3724,7 +3265,7 @@ checksum = "a47fddd13af08290e67f4acabf4b459f647552718f683a7b415d290ac744a836"
|
|
|
3724
3265
|
dependencies = [
|
|
3725
3266
|
"proc-macro2",
|
|
3726
3267
|
"quote",
|
|
3727
|
-
"syn
|
|
3268
|
+
"syn",
|
|
3728
3269
|
]
|
|
3729
3270
|
|
|
3730
3271
|
[[package]]
|
|
@@ -3735,7 +3276,7 @@ checksum = "bd9211b69f8dcdfa817bfd14bf1c97c9188afa36f4750130fcdf3f400eca9fa8"
|
|
|
3735
3276
|
dependencies = [
|
|
3736
3277
|
"proc-macro2",
|
|
3737
3278
|
"quote",
|
|
3738
|
-
"syn
|
|
3279
|
+
"syn",
|
|
3739
3280
|
]
|
|
3740
3281
|
|
|
3741
3282
|
[[package]]
|
|
@@ -3958,9 +3499,9 @@ dependencies = [
|
|
|
3958
3499
|
|
|
3959
3500
|
[[package]]
|
|
3960
3501
|
name = "wit-parser"
|
|
3961
|
-
version = "0.
|
|
3502
|
+
version = "0.229.0"
|
|
3962
3503
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3963
|
-
checksum = "
|
|
3504
|
+
checksum = "459c6ba62bf511d6b5f2a845a2a736822e38059c1cfa0b644b467bbbfae4efa6"
|
|
3964
3505
|
dependencies = [
|
|
3965
3506
|
"anyhow",
|
|
3966
3507
|
"id-arena",
|
|
@@ -3971,7 +3512,7 @@ dependencies = [
|
|
|
3971
3512
|
"serde_derive",
|
|
3972
3513
|
"serde_json",
|
|
3973
3514
|
"unicode-xid",
|
|
3974
|
-
"wasmparser",
|
|
3515
|
+
"wasmparser 0.229.0",
|
|
3975
3516
|
]
|
|
3976
3517
|
|
|
3977
3518
|
[[package]]
|
|
@@ -4018,7 +3559,7 @@ checksum = "2380878cad4ac9aac1e2435f3eb4020e8374b5f13c296cb75b4620ff8e229154"
|
|
|
4018
3559
|
dependencies = [
|
|
4019
3560
|
"proc-macro2",
|
|
4020
3561
|
"quote",
|
|
4021
|
-
"syn
|
|
3562
|
+
"syn",
|
|
4022
3563
|
"synstructure",
|
|
4023
3564
|
]
|
|
4024
3565
|
|
|
@@ -4039,7 +3580,7 @@ checksum = "a996a8f63c5c4448cd959ac1bab0aaa3306ccfd060472f85943ee0750f0169be"
|
|
|
4039
3580
|
dependencies = [
|
|
4040
3581
|
"proc-macro2",
|
|
4041
3582
|
"quote",
|
|
4042
|
-
"syn
|
|
3583
|
+
"syn",
|
|
4043
3584
|
]
|
|
4044
3585
|
|
|
4045
3586
|
[[package]]
|
|
@@ -4059,7 +3600,7 @@ checksum = "d71e5d6e06ab090c67b5e44993ec16b72dcbaabc526db883a360057678b48502"
|
|
|
4059
3600
|
dependencies = [
|
|
4060
3601
|
"proc-macro2",
|
|
4061
3602
|
"quote",
|
|
4062
|
-
"syn
|
|
3603
|
+
"syn",
|
|
4063
3604
|
"synstructure",
|
|
4064
3605
|
]
|
|
4065
3606
|
|
|
@@ -4088,7 +3629,7 @@ checksum = "6eafa6dfb17584ea3e2bd6e76e0cc15ad7af12b09abdd1ca55961bed9b1063c6"
|
|
|
4088
3629
|
dependencies = [
|
|
4089
3630
|
"proc-macro2",
|
|
4090
3631
|
"quote",
|
|
4091
|
-
"syn
|
|
3632
|
+
"syn",
|
|
4092
3633
|
]
|
|
4093
3634
|
|
|
4094
3635
|
[[package]]
|