app_bridge 2.0.1 → 2.1.1
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 +919 -210
- 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 +8 -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 0.7.35",
|
30
|
-
]
|
31
|
-
|
32
20
|
[[package]]
|
33
21
|
name = "aho-corasick"
|
34
22
|
version = "1.1.3"
|
@@ -67,8 +55,9 @@ checksum = "e16d2d3311acee920a9eb8d33b8cbc1787ce4a264e85f964c2404b969bdcd487"
|
|
67
55
|
|
68
56
|
[[package]]
|
69
57
|
name = "app_bridge"
|
70
|
-
version = "1.
|
58
|
+
version = "2.1.1"
|
71
59
|
dependencies = [
|
60
|
+
"httpmock",
|
72
61
|
"magnus",
|
73
62
|
"reqwest",
|
74
63
|
"wasmtime",
|
@@ -81,6 +70,196 @@ 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
265
|
version = "0.1.88"
|
@@ -89,7 +268,7 @@ 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]]
|
@@ -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,9 +338,24 @@ dependencies = [
|
|
148
338
|
"regex",
|
149
339
|
"rustc-hash 1.1.0",
|
150
340
|
"shlex",
|
151
|
-
"syn",
|
341
|
+
"syn 2.0.100",
|
152
342
|
]
|
153
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",
|
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
|
+
|
154
359
|
[[package]]
|
155
360
|
name = "bitflags"
|
156
361
|
version = "2.9.0"
|
@@ -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"
|
@@ -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,7 +832,7 @@ 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]]
|
@@ -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"
|
@@ -606,6 +887,33 @@ dependencies = [
|
|
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"
|
@@ -629,6 +937,12 @@ dependencies = [
|
|
629
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"
|
@@ -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",
|
@@ -812,6 +1151,18 @@ 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
1168
|
version = "0.4.9"
|
@@ -823,7 +1174,7 @@ dependencies = [
|
|
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,6 +1198,23 @@ 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
|
+
|
1207
|
+
[[package]]
|
1208
|
+
name = "http"
|
1209
|
+
version = "0.2.12"
|
1210
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1211
|
+
checksum = "601cbb57e577e2f5ef5be8e7b83f0f63994f25aa94d673e54a92d5c516d101f1"
|
1212
|
+
dependencies = [
|
1213
|
+
"bytes",
|
1214
|
+
"fnv",
|
1215
|
+
"itoa",
|
1216
|
+
]
|
1217
|
+
|
859
1218
|
[[package]]
|
860
1219
|
name = "http"
|
861
1220
|
version = "1.3.1"
|
@@ -867,6 +1226,17 @@ dependencies = [
|
|
867
1226
|
"itoa",
|
868
1227
|
]
|
869
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,7 +1244,7 @@ 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]]
|
@@ -885,8 +1255,8 @@ checksum = "b021d93e26becf5dc7e1b75b1bed1fd93124b374ceb73f43d4d4eafec896a64a"
|
|
885
1255
|
dependencies = [
|
886
1256
|
"bytes",
|
887
1257
|
"futures-core",
|
888
|
-
"http",
|
889
|
-
"http-body",
|
1258
|
+
"http 1.3.1",
|
1259
|
+
"http-body 1.0.1",
|
890
1260
|
"pin-project-lite",
|
891
1261
|
]
|
892
1262
|
|
@@ -896,6 +1266,63 @@ version = "1.10.1"
|
|
896
1266
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
897
1267
|
checksum = "6dbf3de79e51f3d586ab4cb9d5c3e2c14aa28ed23d180cf89b4df0454a69cc87"
|
898
1268
|
|
1269
|
+
[[package]]
|
1270
|
+
name = "httpdate"
|
1271
|
+
version = "1.0.3"
|
1272
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
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
|
+
]
|
1325
|
+
|
899
1326
|
[[package]]
|
900
1327
|
name = "hyper"
|
901
1328
|
version = "1.6.0"
|
@@ -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",
|
@@ -958,9 +1385,9 @@ 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",
|
964
1391
|
"libc",
|
965
1392
|
"pin-project-lite",
|
966
1393
|
"socket2",
|
@@ -1108,7 +1535,7 @@ checksum = "1ec89e9337638ecdc08744df490b221a7399bf8d164eb52a665454e60e075ad6"
|
|
1108
1535
|
dependencies = [
|
1109
1536
|
"proc-macro2",
|
1110
1537
|
"quote",
|
1111
|
-
"syn",
|
1538
|
+
"syn 2.0.100",
|
1112
1539
|
]
|
1113
1540
|
|
1114
1541
|
[[package]]
|
@@ -1145,7 +1572,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1145
1572
|
checksum = "cea70ddb795996207ad57735b50c5982d8844f38ba9ee5f1aedcfb708a2aa11e"
|
1146
1573
|
dependencies = [
|
1147
1574
|
"equivalent",
|
1148
|
-
"hashbrown
|
1575
|
+
"hashbrown",
|
1149
1576
|
"serde",
|
1150
1577
|
]
|
1151
1578
|
|
@@ -1169,7 +1596,16 @@ checksum = "06432fb54d3be7964ecd3649233cddf80db2832f47fec34c01f65b3d9d774983"
|
|
1169
1596
|
name = "ipnet"
|
1170
1597
|
version = "2.11.0"
|
1171
1598
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1172
|
-
checksum = "469fb0b9cefa57e3ef31275ee7cacb78f2fdca44e4765491884a2b119d4eb130"
|
1599
|
+
checksum = "469fb0b9cefa57e3ef31275ee7cacb78f2fdca44e4765491884a2b119d4eb130"
|
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
|
+
]
|
1173
1609
|
|
1174
1610
|
[[package]]
|
1175
1611
|
name = "itertools"
|
@@ -1180,6 +1616,15 @@ dependencies = [
|
|
1180
1616
|
"either",
|
1181
1617
|
]
|
1182
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
|
+
|
1183
1628
|
[[package]]
|
1184
1629
|
name = "itoa"
|
1185
1630
|
version = "1.0.15"
|
@@ -1226,6 +1671,46 @@ dependencies = [
|
|
1226
1671
|
"wasm-bindgen",
|
1227
1672
|
]
|
1228
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
|
+
|
1229
1714
|
[[package]]
|
1230
1715
|
name = "lazy_static"
|
1231
1716
|
version = "1.5.0"
|
@@ -1250,6 +1735,12 @@ version = "0.1.0"
|
|
1250
1735
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1251
1736
|
checksum = "09edd9e8b54e49e587e4f6295a7d29c3ea94d469cb40ab8ca70b288248a81db2"
|
1252
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
|
+
|
1253
1744
|
[[package]]
|
1254
1745
|
name = "libc"
|
1255
1746
|
version = "0.2.171"
|
@@ -1300,11 +1791,24 @@ version = "0.7.5"
|
|
1300
1791
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1301
1792
|
checksum = "23fb14cb19457329c82206317a5663005a4d404783dc74f4252769b0d5f42856"
|
1302
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
|
+
]
|
1803
|
+
|
1303
1804
|
[[package]]
|
1304
1805
|
name = "log"
|
1305
1806
|
version = "0.4.27"
|
1306
1807
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1307
1808
|
checksum = "13dc2df351e3202783a1fe0d44375f7295ffb4049267b0f3018346dc122a1d94"
|
1809
|
+
dependencies = [
|
1810
|
+
"value-bag",
|
1811
|
+
]
|
1308
1812
|
|
1309
1813
|
[[package]]
|
1310
1814
|
name = "mach2"
|
@@ -1335,7 +1839,7 @@ checksum = "5968c820e2960565f647819f5928a42d6e874551cab9d88d75e3e0660d7f71e3"
|
|
1335
1839
|
dependencies = [
|
1336
1840
|
"proc-macro2",
|
1337
1841
|
"quote",
|
1338
|
-
"syn",
|
1842
|
+
"syn 2.0.100",
|
1339
1843
|
]
|
1340
1844
|
|
1341
1845
|
[[package]]
|
@@ -1408,6 +1912,12 @@ dependencies = [
|
|
1408
1912
|
"tempfile",
|
1409
1913
|
]
|
1410
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
|
+
|
1411
1921
|
[[package]]
|
1412
1922
|
name = "nom"
|
1413
1923
|
version = "7.1.3"
|
@@ -1425,7 +1935,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1425
1935
|
checksum = "62948e14d923ea95ea2c7c86c71013138b66525b86bdc08d2dcc262bdb497b87"
|
1426
1936
|
dependencies = [
|
1427
1937
|
"crc32fast",
|
1428
|
-
"hashbrown
|
1938
|
+
"hashbrown",
|
1429
1939
|
"indexmap",
|
1430
1940
|
"memchr",
|
1431
1941
|
]
|
@@ -1459,7 +1969,7 @@ checksum = "a948666b637a0f465e8564c73e89d4dde00d72d4d473cc972f390fc3dcee7d9c"
|
|
1459
1969
|
dependencies = [
|
1460
1970
|
"proc-macro2",
|
1461
1971
|
"quote",
|
1462
|
-
"syn",
|
1972
|
+
"syn 2.0.100",
|
1463
1973
|
]
|
1464
1974
|
|
1465
1975
|
[[package]]
|
@@ -1491,10 +2001,33 @@ dependencies = [
|
|
1491
2001
|
]
|
1492
2002
|
|
1493
2003
|
[[package]]
|
1494
|
-
name = "
|
1495
|
-
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"
|
1496
2022
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1497
|
-
checksum = "
|
2023
|
+
checksum = "1e401f977ab385c9e4e3ab30627d6f26d00e2c73eef317493c4ec6d468726cf8"
|
2024
|
+
dependencies = [
|
2025
|
+
"cfg-if",
|
2026
|
+
"libc",
|
2027
|
+
"redox_syscall",
|
2028
|
+
"smallvec",
|
2029
|
+
"windows-targets 0.52.6",
|
2030
|
+
]
|
1498
2031
|
|
1499
2032
|
[[package]]
|
1500
2033
|
name = "percent-encoding"
|
@@ -1502,6 +2035,31 @@ version = "2.3.1"
|
|
1502
2035
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1503
2036
|
checksum = "e3148f5046208a5d56bcfc03053e3ca6334e51da8dfb19b6cdc8b306fae3283e"
|
1504
2037
|
|
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
|
+
|
1505
2063
|
[[package]]
|
1506
2064
|
name = "pin-project-lite"
|
1507
2065
|
version = "0.2.16"
|
@@ -1514,12 +2072,38 @@ version = "0.1.0"
|
|
1514
2072
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1515
2073
|
checksum = "8b870d8c151b6f2fb93e84a13146138f05d02ed11c7e7c54f8826aaaf7c9f184"
|
1516
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
|
+
|
1517
2086
|
[[package]]
|
1518
2087
|
name = "pkg-config"
|
1519
2088
|
version = "0.3.32"
|
1520
2089
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1521
2090
|
checksum = "7edddbd0b52d732b21ad9a5fab5c704c14cd949e5e9a1ec5929a24fded1b904c"
|
1522
2091
|
|
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
|
+
|
1523
2107
|
[[package]]
|
1524
2108
|
name = "postcard"
|
1525
2109
|
version = "1.1.1"
|
@@ -1538,9 +2122,15 @@ version = "0.2.21"
|
|
1538
2122
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1539
2123
|
checksum = "85eae3c4ed2f50dcfe72643da4befc30deadb458a9b590d720cde2f2b1e97da9"
|
1540
2124
|
dependencies = [
|
1541
|
-
"zerocopy
|
2125
|
+
"zerocopy",
|
1542
2126
|
]
|
1543
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
|
+
|
1544
2134
|
[[package]]
|
1545
2135
|
name = "proc-macro2"
|
1546
2136
|
version = "1.0.94"
|
@@ -1561,13 +2151,12 @@ dependencies = [
|
|
1561
2151
|
|
1562
2152
|
[[package]]
|
1563
2153
|
name = "pulley-interpreter"
|
1564
|
-
version = "
|
2154
|
+
version = "32.0.0"
|
1565
2155
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1566
|
-
checksum = "
|
2156
|
+
checksum = "69c819888a64024f9c6bc7facbed99dfb4dd0124abe4335b6a54eabaa68ef506"
|
1567
2157
|
dependencies = [
|
1568
2158
|
"cranelift-bitset",
|
1569
2159
|
"log",
|
1570
|
-
"sptr",
|
1571
2160
|
"wasmtime-math",
|
1572
2161
|
]
|
1573
2162
|
|
@@ -1657,7 +2246,7 @@ dependencies = [
|
|
1657
2246
|
"quote",
|
1658
2247
|
"regex",
|
1659
2248
|
"shell-words",
|
1660
|
-
"syn",
|
2249
|
+
"syn 2.0.100",
|
1661
2250
|
]
|
1662
2251
|
|
1663
2252
|
[[package]]
|
@@ -1666,6 +2255,15 @@ version = "0.1.2"
|
|
1666
2255
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1667
2256
|
checksum = "a35802679f07360454b418a5d1735c89716bde01d35b1560fc953c1415a0b3bb"
|
1668
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
|
+
|
1669
2267
|
[[package]]
|
1670
2268
|
name = "redox_users"
|
1671
2269
|
version = "0.4.6"
|
@@ -1674,7 +2272,7 @@ checksum = "ba009ff324d1fc1b900bd1fdb31564febe58a8ccc8a6fdbb93b543d33b13ca43"
|
|
1674
2272
|
dependencies = [
|
1675
2273
|
"getrandom 0.2.15",
|
1676
2274
|
"libredox",
|
1677
|
-
"thiserror",
|
2275
|
+
"thiserror 1.0.69",
|
1678
2276
|
]
|
1679
2277
|
|
1680
2278
|
[[package]]
|
@@ -1685,7 +2283,7 @@ checksum = "dc06e6b318142614e4a48bc725abbf08ff166694835c43c9dae5a9009704639a"
|
|
1685
2283
|
dependencies = [
|
1686
2284
|
"allocator-api2",
|
1687
2285
|
"bumpalo",
|
1688
|
-
"hashbrown
|
2286
|
+
"hashbrown",
|
1689
2287
|
"log",
|
1690
2288
|
"rustc-hash 2.1.1",
|
1691
2289
|
"smallvec",
|
@@ -1733,10 +2331,10 @@ dependencies = [
|
|
1733
2331
|
"futures-core",
|
1734
2332
|
"futures-util",
|
1735
2333
|
"h2",
|
1736
|
-
"http",
|
1737
|
-
"http-body",
|
2334
|
+
"http 1.3.1",
|
2335
|
+
"http-body 1.0.1",
|
1738
2336
|
"http-body-util",
|
1739
|
-
"hyper",
|
2337
|
+
"hyper 1.6.0",
|
1740
2338
|
"hyper-rustls",
|
1741
2339
|
"hyper-tls",
|
1742
2340
|
"hyper-util",
|
@@ -1876,6 +2474,15 @@ version = "1.0.20"
|
|
1876
2474
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1877
2475
|
checksum = "28d3b2b1366ec20994f1fd18c3c594f05c5dd4bc44d8bb0c1c632c8d6829481f"
|
1878
2476
|
|
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
|
+
|
1879
2486
|
[[package]]
|
1880
2487
|
name = "schannel"
|
1881
2488
|
version = "0.1.27"
|
@@ -1885,6 +2492,12 @@ dependencies = [
|
|
1885
2492
|
"windows-sys 0.59.0",
|
1886
2493
|
]
|
1887
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
|
+
|
1888
2501
|
[[package]]
|
1889
2502
|
name = "security-framework"
|
1890
2503
|
version = "2.11.1"
|
@@ -1940,7 +2553,7 @@ checksum = "5b0276cf7f2c73365f7157c8123c21cd9a50fbbd844757af28ca1f5925fc2a00"
|
|
1940
2553
|
dependencies = [
|
1941
2554
|
"proc-macro2",
|
1942
2555
|
"quote",
|
1943
|
-
"syn",
|
2556
|
+
"syn 2.0.100",
|
1944
2557
|
]
|
1945
2558
|
|
1946
2559
|
[[package]]
|
@@ -1955,6 +2568,16 @@ dependencies = [
|
|
1955
2568
|
"serde",
|
1956
2569
|
]
|
1957
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
|
+
|
1958
2581
|
[[package]]
|
1959
2582
|
name = "serde_spanned"
|
1960
2583
|
version = "0.6.8"
|
@@ -2008,6 +2631,27 @@ version = "1.3.0"
|
|
2008
2631
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2009
2632
|
checksum = "0fda2ff0d084019ba4d7c6f371c95d8fd75ce3524c3cb8fb653a3023f6323e64"
|
2010
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
|
+
|
2011
2655
|
[[package]]
|
2012
2656
|
name = "slab"
|
2013
2657
|
version = "0.4.9"
|
@@ -2048,12 +2692,35 @@ version = "1.2.0"
|
|
2048
2692
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2049
2693
|
checksum = "a8f112729512f8e442d81f95a8a7ddf2b7c6b8a1a6f509a95864142b30cab2d3"
|
2050
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
|
+
|
2051
2707
|
[[package]]
|
2052
2708
|
name = "subtle"
|
2053
2709
|
version = "2.6.1"
|
2054
2710
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2055
2711
|
checksum = "13c2bddecc57b384dee18652358fb23172facb8a2c51ccc10d74c157bdea3292"
|
2056
2712
|
|
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
|
+
|
2057
2724
|
[[package]]
|
2058
2725
|
name = "syn"
|
2059
2726
|
version = "2.0.100"
|
@@ -2082,7 +2749,7 @@ checksum = "c8af7666ab7b6390ab78131fb5b0fce11d6b7a6951602017c35fa82800708971"
|
|
2082
2749
|
dependencies = [
|
2083
2750
|
"proc-macro2",
|
2084
2751
|
"quote",
|
2085
|
-
"syn",
|
2752
|
+
"syn 2.0.100",
|
2086
2753
|
]
|
2087
2754
|
|
2088
2755
|
[[package]]
|
@@ -2141,6 +2808,17 @@ dependencies = [
|
|
2141
2808
|
"windows-sys 0.59.0",
|
2142
2809
|
]
|
2143
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
|
+
|
2144
2822
|
[[package]]
|
2145
2823
|
name = "termcolor"
|
2146
2824
|
version = "1.4.1"
|
@@ -2156,7 +2834,16 @@ version = "1.0.69"
|
|
2156
2834
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2157
2835
|
checksum = "b6aaf5339b578ea85b50e080feb250a3e8ae8cfcdff9a461c9ec2904bc923f52"
|
2158
2836
|
dependencies = [
|
2159
|
-
"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",
|
2160
2847
|
]
|
2161
2848
|
|
2162
2849
|
[[package]]
|
@@ -2167,7 +2854,27 @@ checksum = "4fee6c4efc90059e10f81e6d42c60a18f76588c3d74cb83a0b242a2b6c7504c1"
|
|
2167
2854
|
dependencies = [
|
2168
2855
|
"proc-macro2",
|
2169
2856
|
"quote",
|
2170
|
-
"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",
|
2171
2878
|
]
|
2172
2879
|
|
2173
2880
|
[[package]]
|
@@ -2191,10 +2898,23 @@ dependencies = [
|
|
2191
2898
|
"libc",
|
2192
2899
|
"mio",
|
2193
2900
|
"pin-project-lite",
|
2901
|
+
"signal-hook-registry",
|
2194
2902
|
"socket2",
|
2903
|
+
"tokio-macros",
|
2195
2904
|
"windows-sys 0.52.0",
|
2196
2905
|
]
|
2197
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
|
+
|
2198
2918
|
[[package]]
|
2199
2919
|
name = "tokio-native-tls"
|
2200
2920
|
version = "0.3.1"
|
@@ -2308,7 +3028,7 @@ checksum = "395ae124c09f9e6918a2310af6038fba074bcf474ac352496d5910dd59a2226d"
|
|
2308
3028
|
dependencies = [
|
2309
3029
|
"proc-macro2",
|
2310
3030
|
"quote",
|
2311
|
-
"syn",
|
3031
|
+
"syn 2.0.100",
|
2312
3032
|
]
|
2313
3033
|
|
2314
3034
|
[[package]]
|
@@ -2328,7 +3048,7 @@ checksum = "70977707304198400eb4835a78f6a9f928bf41bba420deb8fdb175cd965d77a7"
|
|
2328
3048
|
dependencies = [
|
2329
3049
|
"proc-macro2",
|
2330
3050
|
"quote",
|
2331
|
-
"syn",
|
3051
|
+
"syn 2.0.100",
|
2332
3052
|
]
|
2333
3053
|
|
2334
3054
|
[[package]]
|
@@ -2396,6 +3116,12 @@ version = "1.16.0"
|
|
2396
3116
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2397
3117
|
checksum = "458f7a779bf54acc9f347480ac654f68407d3aab21269a6e3c9f922acd9e2da9"
|
2398
3118
|
|
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
|
+
|
2399
3125
|
[[package]]
|
2400
3126
|
name = "vcpkg"
|
2401
3127
|
version = "0.2.15"
|
@@ -2408,6 +3134,16 @@ version = "0.9.5"
|
|
2408
3134
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2409
3135
|
checksum = "0b928f33d975fc6ad9f86c8f283853ad26bdd5b10b7f1542aa2fa15e2289105a"
|
2410
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
|
+
|
2411
3147
|
[[package]]
|
2412
3148
|
name = "want"
|
2413
3149
|
version = "0.3.1"
|
@@ -2454,7 +3190,7 @@ dependencies = [
|
|
2454
3190
|
"log",
|
2455
3191
|
"proc-macro2",
|
2456
3192
|
"quote",
|
2457
|
-
"syn",
|
3193
|
+
"syn 2.0.100",
|
2458
3194
|
"wasm-bindgen-shared",
|
2459
3195
|
]
|
2460
3196
|
|
@@ -2489,7 +3225,7 @@ checksum = "8ae87ea40c9f689fc23f209965b6fb8a99ad69aeeb0231408be24920604395de"
|
|
2489
3225
|
dependencies = [
|
2490
3226
|
"proc-macro2",
|
2491
3227
|
"quote",
|
2492
|
-
"syn",
|
3228
|
+
"syn 2.0.100",
|
2493
3229
|
"wasm-bindgen-backend",
|
2494
3230
|
"wasm-bindgen-shared",
|
2495
3231
|
]
|
@@ -2503,16 +3239,6 @@ dependencies = [
|
|
2503
3239
|
"unicode-ident",
|
2504
3240
|
]
|
2505
3241
|
|
2506
|
-
[[package]]
|
2507
|
-
name = "wasm-encoder"
|
2508
|
-
version = "0.221.3"
|
2509
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2510
|
-
checksum = "dc8444fe4920de80a4fe5ab564fff2ae58b6b73166b89751f8c6c93509da32e5"
|
2511
|
-
dependencies = [
|
2512
|
-
"leb128",
|
2513
|
-
"wasmparser 0.221.3",
|
2514
|
-
]
|
2515
|
-
|
2516
3242
|
[[package]]
|
2517
3243
|
name = "wasm-encoder"
|
2518
3244
|
version = "0.228.0"
|
@@ -2520,20 +3246,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2520
3246
|
checksum = "05d30290541f2d4242a162bbda76b8f2d8b1ac59eab3568ed6f2327d52c9b2c4"
|
2521
3247
|
dependencies = [
|
2522
3248
|
"leb128fmt",
|
2523
|
-
"wasmparser
|
2524
|
-
]
|
2525
|
-
|
2526
|
-
[[package]]
|
2527
|
-
name = "wasmparser"
|
2528
|
-
version = "0.221.3"
|
2529
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2530
|
-
checksum = "d06bfa36ab3ac2be0dee563380147a5b81ba10dd8885d7fbbc9eb574be67d185"
|
2531
|
-
dependencies = [
|
2532
|
-
"bitflags",
|
2533
|
-
"hashbrown 0.15.2",
|
2534
|
-
"indexmap",
|
2535
|
-
"semver",
|
2536
|
-
"serde",
|
3249
|
+
"wasmparser",
|
2537
3250
|
]
|
2538
3251
|
|
2539
3252
|
[[package]]
|
@@ -2543,26 +3256,28 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2543
3256
|
checksum = "4abf1132c1fdf747d56bbc1bb52152400c70f336870f968b85e89ea422198ae3"
|
2544
3257
|
dependencies = [
|
2545
3258
|
"bitflags",
|
3259
|
+
"hashbrown",
|
2546
3260
|
"indexmap",
|
2547
3261
|
"semver",
|
3262
|
+
"serde",
|
2548
3263
|
]
|
2549
3264
|
|
2550
3265
|
[[package]]
|
2551
3266
|
name = "wasmprinter"
|
2552
|
-
version = "0.
|
3267
|
+
version = "0.228.0"
|
2553
3268
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2554
|
-
checksum = "
|
3269
|
+
checksum = "0df64bd38c14db359d02ce2024c64eb161aa2618ccee5f3bc5acbbd65c9a875c"
|
2555
3270
|
dependencies = [
|
2556
3271
|
"anyhow",
|
2557
3272
|
"termcolor",
|
2558
|
-
"wasmparser
|
3273
|
+
"wasmparser",
|
2559
3274
|
]
|
2560
3275
|
|
2561
3276
|
[[package]]
|
2562
3277
|
name = "wasmtime"
|
2563
|
-
version = "
|
3278
|
+
version = "32.0.0"
|
2564
3279
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2565
|
-
checksum = "
|
3280
|
+
checksum = "ab05ab5e27e0d76a9a7cd93d30baa600549945ff7dcae57559de9678e28f3b7e"
|
2566
3281
|
dependencies = [
|
2567
3282
|
"addr2line",
|
2568
3283
|
"anyhow",
|
@@ -2574,7 +3289,7 @@ dependencies = [
|
|
2574
3289
|
"encoding_rs",
|
2575
3290
|
"fxprof-processed-profile",
|
2576
3291
|
"gimli",
|
2577
|
-
"hashbrown
|
3292
|
+
"hashbrown",
|
2578
3293
|
"indexmap",
|
2579
3294
|
"ittapi",
|
2580
3295
|
"libc",
|
@@ -2583,12 +3298,11 @@ dependencies = [
|
|
2583
3298
|
"memfd",
|
2584
3299
|
"object",
|
2585
3300
|
"once_cell",
|
2586
|
-
"paste",
|
2587
3301
|
"postcard",
|
2588
3302
|
"psm",
|
2589
3303
|
"pulley-interpreter",
|
2590
3304
|
"rayon",
|
2591
|
-
"rustix 0.
|
3305
|
+
"rustix 1.0.5",
|
2592
3306
|
"semver",
|
2593
3307
|
"serde",
|
2594
3308
|
"serde_derive",
|
@@ -2597,8 +3311,8 @@ dependencies = [
|
|
2597
3311
|
"sptr",
|
2598
3312
|
"target-lexicon",
|
2599
3313
|
"trait-variant",
|
2600
|
-
"wasm-encoder
|
2601
|
-
"wasmparser
|
3314
|
+
"wasm-encoder",
|
3315
|
+
"wasmparser",
|
2602
3316
|
"wasmtime-asm-macros",
|
2603
3317
|
"wasmtime-cache",
|
2604
3318
|
"wasmtime-component-macro",
|
@@ -2618,25 +3332,25 @@ dependencies = [
|
|
2618
3332
|
|
2619
3333
|
[[package]]
|
2620
3334
|
name = "wasmtime-asm-macros"
|
2621
|
-
version = "
|
3335
|
+
version = "32.0.0"
|
2622
3336
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2623
|
-
checksum = "
|
3337
|
+
checksum = "194241137d4c1a30a3c2d713016d3de7e2c4e25c9a1a49ef23fc9b850d9e2068"
|
2624
3338
|
dependencies = [
|
2625
3339
|
"cfg-if",
|
2626
3340
|
]
|
2627
3341
|
|
2628
3342
|
[[package]]
|
2629
3343
|
name = "wasmtime-cache"
|
2630
|
-
version = "
|
3344
|
+
version = "32.0.0"
|
2631
3345
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2632
|
-
checksum = "
|
3346
|
+
checksum = "aa71477c72baa24ae6ae64e7bca6831d3232b01fda24693311733f1e19136b68"
|
2633
3347
|
dependencies = [
|
2634
3348
|
"anyhow",
|
2635
|
-
"base64 0.
|
3349
|
+
"base64 0.22.1",
|
2636
3350
|
"directories-next",
|
2637
3351
|
"log",
|
2638
3352
|
"postcard",
|
2639
|
-
"rustix 0.
|
3353
|
+
"rustix 1.0.5",
|
2640
3354
|
"serde",
|
2641
3355
|
"serde_derive",
|
2642
3356
|
"sha2",
|
@@ -2647,14 +3361,14 @@ dependencies = [
|
|
2647
3361
|
|
2648
3362
|
[[package]]
|
2649
3363
|
name = "wasmtime-component-macro"
|
2650
|
-
version = "
|
3364
|
+
version = "32.0.0"
|
2651
3365
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2652
|
-
checksum = "
|
3366
|
+
checksum = "5758acd6dadf89f904c8de8171ae33499c7809c8f892197344df5055199aeab3"
|
2653
3367
|
dependencies = [
|
2654
3368
|
"anyhow",
|
2655
3369
|
"proc-macro2",
|
2656
3370
|
"quote",
|
2657
|
-
"syn",
|
3371
|
+
"syn 2.0.100",
|
2658
3372
|
"wasmtime-component-util",
|
2659
3373
|
"wasmtime-wit-bindgen",
|
2660
3374
|
"wit-parser",
|
@@ -2662,15 +3376,15 @@ dependencies = [
|
|
2662
3376
|
|
2663
3377
|
[[package]]
|
2664
3378
|
name = "wasmtime-component-util"
|
2665
|
-
version = "
|
3379
|
+
version = "32.0.0"
|
2666
3380
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2667
|
-
checksum = "
|
3381
|
+
checksum = "3068c266bc21eb51e7b9a405550b193b8759b771d19aecc518ca838ea4782ef3"
|
2668
3382
|
|
2669
3383
|
[[package]]
|
2670
3384
|
name = "wasmtime-cranelift"
|
2671
|
-
version = "
|
3385
|
+
version = "32.0.0"
|
2672
3386
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2673
|
-
checksum = "
|
3387
|
+
checksum = "925c030360b8084e450f29d4d772e89ba0a8855dd0a47e07dd11e7f5fd900b42"
|
2674
3388
|
dependencies = [
|
2675
3389
|
"anyhow",
|
2676
3390
|
"cfg-if",
|
@@ -2680,22 +3394,23 @@ dependencies = [
|
|
2680
3394
|
"cranelift-frontend",
|
2681
3395
|
"cranelift-native",
|
2682
3396
|
"gimli",
|
2683
|
-
"itertools",
|
3397
|
+
"itertools 0.14.0",
|
2684
3398
|
"log",
|
2685
3399
|
"object",
|
3400
|
+
"pulley-interpreter",
|
2686
3401
|
"smallvec",
|
2687
3402
|
"target-lexicon",
|
2688
|
-
"thiserror",
|
2689
|
-
"wasmparser
|
3403
|
+
"thiserror 2.0.12",
|
3404
|
+
"wasmparser",
|
2690
3405
|
"wasmtime-environ",
|
2691
3406
|
"wasmtime-versioned-export-macros",
|
2692
3407
|
]
|
2693
3408
|
|
2694
3409
|
[[package]]
|
2695
3410
|
name = "wasmtime-environ"
|
2696
|
-
version = "
|
3411
|
+
version = "32.0.0"
|
2697
3412
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2698
|
-
checksum = "
|
3413
|
+
checksum = "58d78b12eb1f2d2ac85eff89693963ba9c13dd9c90796d92d83ff27b23b29fbe"
|
2699
3414
|
dependencies = [
|
2700
3415
|
"anyhow",
|
2701
3416
|
"cpp_demangle",
|
@@ -2712,22 +3427,22 @@ dependencies = [
|
|
2712
3427
|
"serde_derive",
|
2713
3428
|
"smallvec",
|
2714
3429
|
"target-lexicon",
|
2715
|
-
"wasm-encoder
|
2716
|
-
"wasmparser
|
3430
|
+
"wasm-encoder",
|
3431
|
+
"wasmparser",
|
2717
3432
|
"wasmprinter",
|
2718
3433
|
"wasmtime-component-util",
|
2719
3434
|
]
|
2720
3435
|
|
2721
3436
|
[[package]]
|
2722
3437
|
name = "wasmtime-fiber"
|
2723
|
-
version = "
|
3438
|
+
version = "32.0.0"
|
2724
3439
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2725
|
-
checksum = "
|
3440
|
+
checksum = "ced0efdb1553ada01704540d3cf3e525c93c8f5ca24a48d3e50ba5f2083c36ba"
|
2726
3441
|
dependencies = [
|
2727
3442
|
"anyhow",
|
2728
3443
|
"cc",
|
2729
3444
|
"cfg-if",
|
2730
|
-
"rustix 0.
|
3445
|
+
"rustix 1.0.5",
|
2731
3446
|
"wasmtime-asm-macros",
|
2732
3447
|
"wasmtime-versioned-export-macros",
|
2733
3448
|
"windows-sys 0.59.0",
|
@@ -2735,20 +3450,21 @@ dependencies = [
|
|
2735
3450
|
|
2736
3451
|
[[package]]
|
2737
3452
|
name = "wasmtime-jit-debug"
|
2738
|
-
version = "
|
3453
|
+
version = "32.0.0"
|
2739
3454
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2740
|
-
checksum = "
|
3455
|
+
checksum = "e43014e680b0b61628ea30bc193f73fbc27723f373a9e353919039aca1d8536c"
|
2741
3456
|
dependencies = [
|
3457
|
+
"cc",
|
2742
3458
|
"object",
|
2743
|
-
"rustix 0.
|
3459
|
+
"rustix 1.0.5",
|
2744
3460
|
"wasmtime-versioned-export-macros",
|
2745
3461
|
]
|
2746
3462
|
|
2747
3463
|
[[package]]
|
2748
3464
|
name = "wasmtime-jit-icache-coherence"
|
2749
|
-
version = "
|
3465
|
+
version = "32.0.0"
|
2750
3466
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2751
|
-
checksum = "
|
3467
|
+
checksum = "eb399eaabd7594f695e1159d236bf40ef55babcb3af97f97c027864ed2104db6"
|
2752
3468
|
dependencies = [
|
2753
3469
|
"anyhow",
|
2754
3470
|
"cfg-if",
|
@@ -2758,35 +3474,35 @@ dependencies = [
|
|
2758
3474
|
|
2759
3475
|
[[package]]
|
2760
3476
|
name = "wasmtime-math"
|
2761
|
-
version = "
|
3477
|
+
version = "32.0.0"
|
2762
3478
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2763
|
-
checksum = "
|
3479
|
+
checksum = "a527168840e87fc06422b44e7540b4e38df7c84237abdad3dc2450dcde8ab38e"
|
2764
3480
|
dependencies = [
|
2765
3481
|
"libm",
|
2766
3482
|
]
|
2767
3483
|
|
2768
3484
|
[[package]]
|
2769
3485
|
name = "wasmtime-slab"
|
2770
|
-
version = "
|
3486
|
+
version = "32.0.0"
|
2771
3487
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2772
|
-
checksum = "
|
3488
|
+
checksum = "46a3a2798fb5472381cebd72c1daa1f99bbfd6fb645bf8285db8b3a48405daec"
|
2773
3489
|
|
2774
3490
|
[[package]]
|
2775
3491
|
name = "wasmtime-versioned-export-macros"
|
2776
|
-
version = "
|
3492
|
+
version = "32.0.0"
|
2777
3493
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2778
|
-
checksum = "
|
3494
|
+
checksum = "b5afcdcb7f97cce62f6f512182259bfed5d2941253ad43780b3a4e1ad72e4fea"
|
2779
3495
|
dependencies = [
|
2780
3496
|
"proc-macro2",
|
2781
3497
|
"quote",
|
2782
|
-
"syn",
|
3498
|
+
"syn 2.0.100",
|
2783
3499
|
]
|
2784
3500
|
|
2785
3501
|
[[package]]
|
2786
3502
|
name = "wasmtime-wasi"
|
2787
|
-
version = "
|
3503
|
+
version = "32.0.0"
|
2788
3504
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2789
|
-
checksum = "
|
3505
|
+
checksum = "61fb8c8dc30eaf98ad100704645d986f53b8ae56b9e17225702da090e6c10236"
|
2790
3506
|
dependencies = [
|
2791
3507
|
"anyhow",
|
2792
3508
|
"async-trait",
|
@@ -2801,30 +3517,43 @@ dependencies = [
|
|
2801
3517
|
"futures",
|
2802
3518
|
"io-extras",
|
2803
3519
|
"io-lifetimes",
|
2804
|
-
"rustix 0.
|
3520
|
+
"rustix 1.0.5",
|
2805
3521
|
"system-interface",
|
2806
|
-
"thiserror",
|
3522
|
+
"thiserror 2.0.12",
|
2807
3523
|
"tokio",
|
2808
3524
|
"tracing",
|
2809
|
-
"trait-variant",
|
2810
3525
|
"url",
|
2811
3526
|
"wasmtime",
|
3527
|
+
"wasmtime-wasi-io",
|
2812
3528
|
"wiggle",
|
2813
3529
|
"windows-sys 0.59.0",
|
2814
3530
|
]
|
2815
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
|
+
|
2816
3545
|
[[package]]
|
2817
3546
|
name = "wasmtime-winch"
|
2818
|
-
version = "
|
3547
|
+
version = "32.0.0"
|
2819
3548
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2820
|
-
checksum = "
|
3549
|
+
checksum = "0ac4f31e4657e385d53c71cf963868dc6efdff39fe657c873a0f5da8f465f164"
|
2821
3550
|
dependencies = [
|
2822
3551
|
"anyhow",
|
2823
3552
|
"cranelift-codegen",
|
2824
3553
|
"gimli",
|
2825
3554
|
"object",
|
2826
3555
|
"target-lexicon",
|
2827
|
-
"wasmparser
|
3556
|
+
"wasmparser",
|
2828
3557
|
"wasmtime-cranelift",
|
2829
3558
|
"wasmtime-environ",
|
2830
3559
|
"winch-codegen",
|
@@ -2832,9 +3561,9 @@ dependencies = [
|
|
2832
3561
|
|
2833
3562
|
[[package]]
|
2834
3563
|
name = "wasmtime-wit-bindgen"
|
2835
|
-
version = "
|
3564
|
+
version = "32.0.0"
|
2836
3565
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2837
|
-
checksum = "
|
3566
|
+
checksum = "ada7e868e5925341cdae32729cf02a8f2523b8e998286213e6f4a5af7309cb75"
|
2838
3567
|
dependencies = [
|
2839
3568
|
"anyhow",
|
2840
3569
|
"heck",
|
@@ -2861,7 +3590,7 @@ dependencies = [
|
|
2861
3590
|
"leb128fmt",
|
2862
3591
|
"memchr",
|
2863
3592
|
"unicode-width",
|
2864
|
-
"wasm-encoder
|
3593
|
+
"wasm-encoder",
|
2865
3594
|
]
|
2866
3595
|
|
2867
3596
|
[[package]]
|
@@ -2885,14 +3614,14 @@ dependencies = [
|
|
2885
3614
|
|
2886
3615
|
[[package]]
|
2887
3616
|
name = "wiggle"
|
2888
|
-
version = "
|
3617
|
+
version = "32.0.0"
|
2889
3618
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2890
|
-
checksum = "
|
3619
|
+
checksum = "1654418571a268d508d055bd11aad42dfc0a2126afa24a084207b99470ff1330"
|
2891
3620
|
dependencies = [
|
2892
3621
|
"anyhow",
|
2893
3622
|
"async-trait",
|
2894
3623
|
"bitflags",
|
2895
|
-
"thiserror",
|
3624
|
+
"thiserror 2.0.12",
|
2896
3625
|
"tracing",
|
2897
3626
|
"wasmtime",
|
2898
3627
|
"wiggle-macro",
|
@@ -2900,28 +3629,28 @@ dependencies = [
|
|
2900
3629
|
|
2901
3630
|
[[package]]
|
2902
3631
|
name = "wiggle-generate"
|
2903
|
-
version = "
|
3632
|
+
version = "32.0.0"
|
2904
3633
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2905
|
-
checksum = "
|
3634
|
+
checksum = "8b5d8fcf190a1ce5cb3380d3cd0be0c49b97f33a32f6ac4cc9b56ae4dea746cc"
|
2906
3635
|
dependencies = [
|
2907
3636
|
"anyhow",
|
2908
3637
|
"heck",
|
2909
3638
|
"proc-macro2",
|
2910
3639
|
"quote",
|
2911
3640
|
"shellexpand",
|
2912
|
-
"syn",
|
3641
|
+
"syn 2.0.100",
|
2913
3642
|
"witx",
|
2914
3643
|
]
|
2915
3644
|
|
2916
3645
|
[[package]]
|
2917
3646
|
name = "wiggle-macro"
|
2918
|
-
version = "
|
3647
|
+
version = "32.0.0"
|
2919
3648
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2920
|
-
checksum = "
|
3649
|
+
checksum = "b060df8449c0b10d26c1154b658806171fbb7802381a898f623bfd33345c8612"
|
2921
3650
|
dependencies = [
|
2922
3651
|
"proc-macro2",
|
2923
3652
|
"quote",
|
2924
|
-
"syn",
|
3653
|
+
"syn 2.0.100",
|
2925
3654
|
"wiggle-generate",
|
2926
3655
|
]
|
2927
3656
|
|
@@ -2958,9 +3687,9 @@ checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f"
|
|
2958
3687
|
|
2959
3688
|
[[package]]
|
2960
3689
|
name = "winch-codegen"
|
2961
|
-
version = "
|
3690
|
+
version = "32.0.0"
|
2962
3691
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2963
|
-
checksum = "
|
3692
|
+
checksum = "108e1f810933ac36e7168313a0e5393c84a731f0394c3cb3e5f5667b378a03fc"
|
2964
3693
|
dependencies = [
|
2965
3694
|
"anyhow",
|
2966
3695
|
"cranelift-codegen",
|
@@ -2968,8 +3697,8 @@ dependencies = [
|
|
2968
3697
|
"regalloc2",
|
2969
3698
|
"smallvec",
|
2970
3699
|
"target-lexicon",
|
2971
|
-
"thiserror",
|
2972
|
-
"wasmparser
|
3700
|
+
"thiserror 2.0.12",
|
3701
|
+
"wasmparser",
|
2973
3702
|
"wasmtime-cranelift",
|
2974
3703
|
"wasmtime-environ",
|
2975
3704
|
]
|
@@ -2995,7 +3724,7 @@ checksum = "a47fddd13af08290e67f4acabf4b459f647552718f683a7b415d290ac744a836"
|
|
2995
3724
|
dependencies = [
|
2996
3725
|
"proc-macro2",
|
2997
3726
|
"quote",
|
2998
|
-
"syn",
|
3727
|
+
"syn 2.0.100",
|
2999
3728
|
]
|
3000
3729
|
|
3001
3730
|
[[package]]
|
@@ -3006,7 +3735,7 @@ checksum = "bd9211b69f8dcdfa817bfd14bf1c97c9188afa36f4750130fcdf3f400eca9fa8"
|
|
3006
3735
|
dependencies = [
|
3007
3736
|
"proc-macro2",
|
3008
3737
|
"quote",
|
3009
|
-
"syn",
|
3738
|
+
"syn 2.0.100",
|
3010
3739
|
]
|
3011
3740
|
|
3012
3741
|
[[package]]
|
@@ -3229,9 +3958,9 @@ dependencies = [
|
|
3229
3958
|
|
3230
3959
|
[[package]]
|
3231
3960
|
name = "wit-parser"
|
3232
|
-
version = "0.
|
3961
|
+
version = "0.228.0"
|
3233
3962
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
3234
|
-
checksum = "
|
3963
|
+
checksum = "399ce56e28d79fd3abfa03fdc7ceb89ffec4d4b2674fe3a92056b7d845653c38"
|
3235
3964
|
dependencies = [
|
3236
3965
|
"anyhow",
|
3237
3966
|
"id-arena",
|
@@ -3242,7 +3971,7 @@ dependencies = [
|
|
3242
3971
|
"serde_derive",
|
3243
3972
|
"serde_json",
|
3244
3973
|
"unicode-xid",
|
3245
|
-
"wasmparser
|
3974
|
+
"wasmparser",
|
3246
3975
|
]
|
3247
3976
|
|
3248
3977
|
[[package]]
|
@@ -3253,7 +3982,7 @@ checksum = "e366f27a5cabcddb2706a78296a40b8fcc451e1a6aba2fc1d94b4a01bdaaef4b"
|
|
3253
3982
|
dependencies = [
|
3254
3983
|
"anyhow",
|
3255
3984
|
"log",
|
3256
|
-
"thiserror",
|
3985
|
+
"thiserror 1.0.69",
|
3257
3986
|
"wast 35.0.2",
|
3258
3987
|
]
|
3259
3988
|
|
@@ -3289,37 +4018,17 @@ checksum = "2380878cad4ac9aac1e2435f3eb4020e8374b5f13c296cb75b4620ff8e229154"
|
|
3289
4018
|
dependencies = [
|
3290
4019
|
"proc-macro2",
|
3291
4020
|
"quote",
|
3292
|
-
"syn",
|
4021
|
+
"syn 2.0.100",
|
3293
4022
|
"synstructure",
|
3294
4023
|
]
|
3295
4024
|
|
3296
|
-
[[package]]
|
3297
|
-
name = "zerocopy"
|
3298
|
-
version = "0.7.35"
|
3299
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
3300
|
-
checksum = "1b9b4fd18abc82b8136838da5d50bae7bdea537c574d8dc1a34ed098d6c166f0"
|
3301
|
-
dependencies = [
|
3302
|
-
"zerocopy-derive 0.7.35",
|
3303
|
-
]
|
3304
|
-
|
3305
4025
|
[[package]]
|
3306
4026
|
name = "zerocopy"
|
3307
4027
|
version = "0.8.24"
|
3308
4028
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
3309
4029
|
checksum = "2586fea28e186957ef732a5f8b3be2da217d65c5969d4b1e17f973ebbe876879"
|
3310
4030
|
dependencies = [
|
3311
|
-
"zerocopy-derive
|
3312
|
-
]
|
3313
|
-
|
3314
|
-
[[package]]
|
3315
|
-
name = "zerocopy-derive"
|
3316
|
-
version = "0.7.35"
|
3317
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
3318
|
-
checksum = "fa4f8080344d4671fb4e831a13ad1e68092748387dfc4f55e356242fae12ce3e"
|
3319
|
-
dependencies = [
|
3320
|
-
"proc-macro2",
|
3321
|
-
"quote",
|
3322
|
-
"syn",
|
4031
|
+
"zerocopy-derive",
|
3323
4032
|
]
|
3324
4033
|
|
3325
4034
|
[[package]]
|
@@ -3330,7 +4039,7 @@ checksum = "a996a8f63c5c4448cd959ac1bab0aaa3306ccfd060472f85943ee0750f0169be"
|
|
3330
4039
|
dependencies = [
|
3331
4040
|
"proc-macro2",
|
3332
4041
|
"quote",
|
3333
|
-
"syn",
|
4042
|
+
"syn 2.0.100",
|
3334
4043
|
]
|
3335
4044
|
|
3336
4045
|
[[package]]
|
@@ -3350,7 +4059,7 @@ checksum = "d71e5d6e06ab090c67b5e44993ec16b72dcbaabc526db883a360057678b48502"
|
|
3350
4059
|
dependencies = [
|
3351
4060
|
"proc-macro2",
|
3352
4061
|
"quote",
|
3353
|
-
"syn",
|
4062
|
+
"syn 2.0.100",
|
3354
4063
|
"synstructure",
|
3355
4064
|
]
|
3356
4065
|
|
@@ -3379,7 +4088,7 @@ checksum = "6eafa6dfb17584ea3e2bd6e76e0cc15ad7af12b09abdd1ca55961bed9b1063c6"
|
|
3379
4088
|
dependencies = [
|
3380
4089
|
"proc-macro2",
|
3381
4090
|
"quote",
|
3382
|
-
"syn",
|
4091
|
+
"syn 2.0.100",
|
3383
4092
|
]
|
3384
4093
|
|
3385
4094
|
[[package]]
|