app_bridge 4.1.0 → 5.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/.tool-versions +1 -1
- data/Cargo.lock +482 -448
- data/Cargo.toml +1 -1
- data/README.md +6 -0
- data/Rakefile +16 -13
- data/ext/app_bridge/Cargo.toml +6 -4
- data/ext/app_bridge/docs/connection-config-schema.json +500 -0
- data/ext/app_bridge/src/app_state.rs +13 -8
- data/ext/app_bridge/src/component.rs +83 -17
- data/ext/app_bridge/src/error_mapping.rs +5 -0
- data/ext/app_bridge/src/file_ops.rs +2 -1
- data/ext/app_bridge/src/lib.rs +3 -0
- data/ext/app_bridge/src/request_builder.rs +76 -15
- data/ext/app_bridge/src/wrappers/action_context.rs +8 -7
- data/ext/app_bridge/src/wrappers/app.rs +49 -37
- data/ext/app_bridge/src/wrappers/trigger_context.rs +5 -4
- data/ext/app_bridge/wit/v4_1/world.wit +2 -0
- data/ext/app_bridge/wit/v5/world.wit +363 -0
- data/lib/app_bridge/app.rb +10 -0
- data/lib/app_bridge/connection_config_validator.rb +101 -0
- data/lib/app_bridge/version.rb +1 -1
- data/lib/app_bridge.rb +2 -0
- data/tasks/fixtures.rake +25 -4
- metadata +20 -3
data/Cargo.lock
CHANGED
|
@@ -4,19 +4,13 @@ version = 4
|
|
|
4
4
|
|
|
5
5
|
[[package]]
|
|
6
6
|
name = "addr2line"
|
|
7
|
-
version = "0.
|
|
7
|
+
version = "0.26.1"
|
|
8
8
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
9
|
-
checksum = "
|
|
9
|
+
checksum = "59317f77929f0e679d39364702289274de2f0f0b22cbf50b2b8cff2169a0b27a"
|
|
10
10
|
dependencies = [
|
|
11
11
|
"gimli",
|
|
12
12
|
]
|
|
13
13
|
|
|
14
|
-
[[package]]
|
|
15
|
-
name = "adler2"
|
|
16
|
-
version = "2.0.0"
|
|
17
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
18
|
-
checksum = "512761e0bb2578dd7380c6baaa0f4ce03e84f95e960231d1dec8bf4d7d6e2627"
|
|
19
|
-
|
|
20
14
|
[[package]]
|
|
21
15
|
name = "aho-corasick"
|
|
22
16
|
version = "1.1.3"
|
|
@@ -49,30 +43,32 @@ dependencies = [
|
|
|
49
43
|
|
|
50
44
|
[[package]]
|
|
51
45
|
name = "anyhow"
|
|
52
|
-
version = "1.0.
|
|
46
|
+
version = "1.0.102"
|
|
53
47
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
54
|
-
checksum = "
|
|
48
|
+
checksum = "7f202df86484c868dbad7eaa557ef785d5c66295e41b460ef922eca0723b842c"
|
|
55
49
|
|
|
56
50
|
[[package]]
|
|
57
51
|
name = "app_bridge"
|
|
58
|
-
version = "
|
|
52
|
+
version = "5.0.0"
|
|
59
53
|
dependencies = [
|
|
60
54
|
"base64",
|
|
61
55
|
"httpmock",
|
|
62
56
|
"infer",
|
|
63
57
|
"magnus",
|
|
64
58
|
"reqwest",
|
|
59
|
+
"rustls-webpki",
|
|
65
60
|
"serde",
|
|
66
61
|
"serde_json",
|
|
67
62
|
"wasmtime",
|
|
68
63
|
"wasmtime-wasi",
|
|
64
|
+
"wasmtime-wasi-io",
|
|
69
65
|
]
|
|
70
66
|
|
|
71
67
|
[[package]]
|
|
72
68
|
name = "arbitrary"
|
|
73
|
-
version = "1.4.
|
|
69
|
+
version = "1.4.2"
|
|
74
70
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
75
|
-
checksum = "
|
|
71
|
+
checksum = "c3d036a3c4ab069c7b410a2ce876bd74808d2d0888a82667669f8e783a898bf1"
|
|
76
72
|
|
|
77
73
|
[[package]]
|
|
78
74
|
name = "assert-json-diff"
|
|
@@ -107,9 +103,9 @@ dependencies = [
|
|
|
107
103
|
|
|
108
104
|
[[package]]
|
|
109
105
|
name = "async-trait"
|
|
110
|
-
version = "0.1.
|
|
106
|
+
version = "0.1.89"
|
|
111
107
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
112
|
-
checksum = "
|
|
108
|
+
checksum = "9035ad2d096bed7955a320ee7e2230574d28fd3c3a0f186cbea1ff3c7eed5dbb"
|
|
113
109
|
dependencies = [
|
|
114
110
|
"proc-macro2",
|
|
115
111
|
"quote",
|
|
@@ -128,21 +124,6 @@ version = "1.4.0"
|
|
|
128
124
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
129
125
|
checksum = "ace50bade8e6234aa140d9a2f552bbee1db4d353f69b8217bc503490fc1a9f26"
|
|
130
126
|
|
|
131
|
-
[[package]]
|
|
132
|
-
name = "backtrace"
|
|
133
|
-
version = "0.3.74"
|
|
134
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
135
|
-
checksum = "8d82cb332cdfaed17ae235a638438ac4d4839913cc2af585c3c6746e8f8bee1a"
|
|
136
|
-
dependencies = [
|
|
137
|
-
"addr2line",
|
|
138
|
-
"cfg-if",
|
|
139
|
-
"libc",
|
|
140
|
-
"miniz_oxide",
|
|
141
|
-
"object",
|
|
142
|
-
"rustc-demangle",
|
|
143
|
-
"windows-targets 0.52.6",
|
|
144
|
-
]
|
|
145
|
-
|
|
146
127
|
[[package]]
|
|
147
128
|
name = "base64"
|
|
148
129
|
version = "0.22.1"
|
|
@@ -151,29 +132,27 @@ checksum = "72b3254f16251a8381aa12e40e3c4d2f0199f8c6508fbecb9d91f575e0fbb8c6"
|
|
|
151
132
|
|
|
152
133
|
[[package]]
|
|
153
134
|
name = "bindgen"
|
|
154
|
-
version = "0.
|
|
135
|
+
version = "0.72.1"
|
|
155
136
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
156
|
-
checksum = "
|
|
137
|
+
checksum = "993776b509cfb49c750f11b8f07a46fa23e0a1386ffc01fb1e7d343efc387895"
|
|
157
138
|
dependencies = [
|
|
158
139
|
"bitflags",
|
|
159
140
|
"cexpr",
|
|
160
141
|
"clang-sys",
|
|
161
142
|
"itertools 0.12.1",
|
|
162
|
-
"lazy_static",
|
|
163
|
-
"lazycell",
|
|
164
143
|
"proc-macro2",
|
|
165
144
|
"quote",
|
|
166
145
|
"regex",
|
|
167
|
-
"rustc-hash
|
|
146
|
+
"rustc-hash",
|
|
168
147
|
"shlex",
|
|
169
148
|
"syn",
|
|
170
149
|
]
|
|
171
150
|
|
|
172
151
|
[[package]]
|
|
173
152
|
name = "bitflags"
|
|
174
|
-
version = "2.
|
|
153
|
+
version = "2.11.0"
|
|
175
154
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
176
|
-
checksum = "
|
|
155
|
+
checksum = "843867be96c8daad0d758b57df9392b6d8d271134fce549de6ce169ff98a92af"
|
|
177
156
|
|
|
178
157
|
[[package]]
|
|
179
158
|
name = "block-buffer"
|
|
@@ -186,9 +165,9 @@ dependencies = [
|
|
|
186
165
|
|
|
187
166
|
[[package]]
|
|
188
167
|
name = "bumpalo"
|
|
189
|
-
version = "3.
|
|
168
|
+
version = "3.20.2"
|
|
190
169
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
191
|
-
checksum = "
|
|
170
|
+
checksum = "5d20789868f4b01b2f2caec9f5c4e0213b41e3e5702a50157d699ae31ced2fcb"
|
|
192
171
|
dependencies = [
|
|
193
172
|
"allocator-api2",
|
|
194
173
|
]
|
|
@@ -201,9 +180,9 @@ checksum = "1fd0f2584146f6f2ef48085050886acf353beff7305ebd1ae69500e27c67f64b"
|
|
|
201
180
|
|
|
202
181
|
[[package]]
|
|
203
182
|
name = "bytes"
|
|
204
|
-
version = "1.
|
|
183
|
+
version = "1.11.1"
|
|
205
184
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
206
|
-
checksum = "
|
|
185
|
+
checksum = "1e748733b7cbc798e1434b6ac524f0c1ff2ab456fe201501e6497c8417a4fc33"
|
|
207
186
|
dependencies = [
|
|
208
187
|
"serde",
|
|
209
188
|
]
|
|
@@ -228,7 +207,7 @@ checksum = "20a158160765c6a7d0d8c072a53d772e4cb243f38b04bfcf6b4939cfbe7482e7"
|
|
|
228
207
|
dependencies = [
|
|
229
208
|
"cap-primitives",
|
|
230
209
|
"cap-std",
|
|
231
|
-
"rustix 1.
|
|
210
|
+
"rustix 1.1.4",
|
|
232
211
|
"smallvec",
|
|
233
212
|
]
|
|
234
213
|
|
|
@@ -244,7 +223,7 @@ dependencies = [
|
|
|
244
223
|
"io-lifetimes",
|
|
245
224
|
"ipnet",
|
|
246
225
|
"maybe-owned",
|
|
247
|
-
"rustix 1.
|
|
226
|
+
"rustix 1.1.4",
|
|
248
227
|
"rustix-linux-procfs",
|
|
249
228
|
"windows-sys 0.59.0",
|
|
250
229
|
"winx",
|
|
@@ -269,7 +248,7 @@ dependencies = [
|
|
|
269
248
|
"cap-primitives",
|
|
270
249
|
"io-extras",
|
|
271
250
|
"io-lifetimes",
|
|
272
|
-
"rustix 1.
|
|
251
|
+
"rustix 1.1.4",
|
|
273
252
|
]
|
|
274
253
|
|
|
275
254
|
[[package]]
|
|
@@ -282,16 +261,17 @@ dependencies = [
|
|
|
282
261
|
"cap-primitives",
|
|
283
262
|
"iana-time-zone",
|
|
284
263
|
"once_cell",
|
|
285
|
-
"rustix 1.
|
|
264
|
+
"rustix 1.1.4",
|
|
286
265
|
"winx",
|
|
287
266
|
]
|
|
288
267
|
|
|
289
268
|
[[package]]
|
|
290
269
|
name = "cc"
|
|
291
|
-
version = "1.2.
|
|
270
|
+
version = "1.2.56"
|
|
292
271
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
293
|
-
checksum = "
|
|
272
|
+
checksum = "aebf35691d1bfb0ac386a69bac2fde4dd276fb618cf8bf4f5318fe285e821bb2"
|
|
294
273
|
dependencies = [
|
|
274
|
+
"find-msvc-tools",
|
|
295
275
|
"jobserver",
|
|
296
276
|
"libc",
|
|
297
277
|
"shlex",
|
|
@@ -336,9 +316,12 @@ dependencies = [
|
|
|
336
316
|
|
|
337
317
|
[[package]]
|
|
338
318
|
name = "cobs"
|
|
339
|
-
version = "0.
|
|
319
|
+
version = "0.3.0"
|
|
340
320
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
341
|
-
checksum = "
|
|
321
|
+
checksum = "0fa961b519f0b462e3a3b4a34b64d119eeaca1d59af726fe450bbba07a9fc0a1"
|
|
322
|
+
dependencies = [
|
|
323
|
+
"thiserror 2.0.18",
|
|
324
|
+
]
|
|
342
325
|
|
|
343
326
|
[[package]]
|
|
344
327
|
name = "concurrent-queue"
|
|
@@ -385,46 +368,48 @@ dependencies = [
|
|
|
385
368
|
|
|
386
369
|
[[package]]
|
|
387
370
|
name = "cranelift-assembler-x64"
|
|
388
|
-
version = "0.
|
|
371
|
+
version = "0.131.3"
|
|
389
372
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
390
|
-
checksum = "
|
|
373
|
+
checksum = "3867f7a56768640a79fc660d2f60298251dc6d65b5d1c907706cd1afff024957"
|
|
391
374
|
dependencies = [
|
|
392
375
|
"cranelift-assembler-x64-meta",
|
|
393
376
|
]
|
|
394
377
|
|
|
395
378
|
[[package]]
|
|
396
379
|
name = "cranelift-assembler-x64-meta"
|
|
397
|
-
version = "0.
|
|
380
|
+
version = "0.131.3"
|
|
398
381
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
399
|
-
checksum = "
|
|
382
|
+
checksum = "a0661d63dcf8fc4a6538c1ee4d523917c5b27e9fce7a4114cdf9e2b30b4043cf"
|
|
400
383
|
dependencies = [
|
|
401
384
|
"cranelift-srcgen",
|
|
402
385
|
]
|
|
403
386
|
|
|
404
387
|
[[package]]
|
|
405
388
|
name = "cranelift-bforest"
|
|
406
|
-
version = "0.
|
|
389
|
+
version = "0.131.3"
|
|
407
390
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
408
|
-
checksum = "
|
|
391
|
+
checksum = "a8d535b489159ea63e3c40dfbe8d0e12bfb71f2a14845ef2407353e06c5a697c"
|
|
409
392
|
dependencies = [
|
|
410
393
|
"cranelift-entity",
|
|
394
|
+
"wasmtime-internal-core",
|
|
411
395
|
]
|
|
412
396
|
|
|
413
397
|
[[package]]
|
|
414
398
|
name = "cranelift-bitset"
|
|
415
|
-
version = "0.
|
|
399
|
+
version = "0.131.3"
|
|
416
400
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
417
|
-
checksum = "
|
|
401
|
+
checksum = "c3af4f7d421b2354deb01d714266022f38fcdbebc9f5f1ec6d310d3c27286d9e"
|
|
418
402
|
dependencies = [
|
|
419
403
|
"serde",
|
|
420
404
|
"serde_derive",
|
|
405
|
+
"wasmtime-internal-core",
|
|
421
406
|
]
|
|
422
407
|
|
|
423
408
|
[[package]]
|
|
424
409
|
name = "cranelift-codegen"
|
|
425
|
-
version = "0.
|
|
410
|
+
version = "0.131.3"
|
|
426
411
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
427
|
-
checksum = "
|
|
412
|
+
checksum = "09fe4c289e67e0221d1705734a57f95e25c289ed0ead7728743ea21285fc4cf1"
|
|
428
413
|
dependencies = [
|
|
429
414
|
"bumpalo",
|
|
430
415
|
"cranelift-assembler-x64",
|
|
@@ -436,59 +421,63 @@ dependencies = [
|
|
|
436
421
|
"cranelift-entity",
|
|
437
422
|
"cranelift-isle",
|
|
438
423
|
"gimli",
|
|
439
|
-
"hashbrown",
|
|
424
|
+
"hashbrown 0.16.1",
|
|
425
|
+
"libm",
|
|
440
426
|
"log",
|
|
441
427
|
"pulley-interpreter",
|
|
442
428
|
"regalloc2",
|
|
443
|
-
"rustc-hash
|
|
429
|
+
"rustc-hash",
|
|
444
430
|
"serde",
|
|
445
431
|
"smallvec",
|
|
446
432
|
"target-lexicon",
|
|
433
|
+
"wasmtime-internal-core",
|
|
447
434
|
]
|
|
448
435
|
|
|
449
436
|
[[package]]
|
|
450
437
|
name = "cranelift-codegen-meta"
|
|
451
|
-
version = "0.
|
|
438
|
+
version = "0.131.3"
|
|
452
439
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
453
|
-
checksum = "
|
|
440
|
+
checksum = "b3063e5363dc5ee6ee8edd930314582c08eb91c209b9564da1cd667f6424b9b3"
|
|
454
441
|
dependencies = [
|
|
455
442
|
"cranelift-assembler-x64-meta",
|
|
456
443
|
"cranelift-codegen-shared",
|
|
457
444
|
"cranelift-srcgen",
|
|
445
|
+
"heck",
|
|
458
446
|
"pulley-interpreter",
|
|
459
447
|
]
|
|
460
448
|
|
|
461
449
|
[[package]]
|
|
462
450
|
name = "cranelift-codegen-shared"
|
|
463
|
-
version = "0.
|
|
451
|
+
version = "0.131.3"
|
|
464
452
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
465
|
-
checksum = "
|
|
453
|
+
checksum = "c34b9c8dbc9edf37744918e56898d4979ef1e764e8e4bbe8b4d50250838ddfe8"
|
|
466
454
|
|
|
467
455
|
[[package]]
|
|
468
456
|
name = "cranelift-control"
|
|
469
|
-
version = "0.
|
|
457
|
+
version = "0.131.3"
|
|
470
458
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
471
|
-
checksum = "
|
|
459
|
+
checksum = "4eed9dc54204dc99aad19669bca50142659ed583396d9a99a2aef34d7c136ef4"
|
|
472
460
|
dependencies = [
|
|
473
461
|
"arbitrary",
|
|
474
462
|
]
|
|
475
463
|
|
|
476
464
|
[[package]]
|
|
477
465
|
name = "cranelift-entity"
|
|
478
|
-
version = "0.
|
|
466
|
+
version = "0.131.3"
|
|
479
467
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
480
|
-
checksum = "
|
|
468
|
+
checksum = "9aa2846b239a046217ecf95cfed0e31be4e86843785d07438ad33f456871e888"
|
|
481
469
|
dependencies = [
|
|
482
470
|
"cranelift-bitset",
|
|
483
471
|
"serde",
|
|
484
472
|
"serde_derive",
|
|
473
|
+
"wasmtime-internal-core",
|
|
485
474
|
]
|
|
486
475
|
|
|
487
476
|
[[package]]
|
|
488
477
|
name = "cranelift-frontend"
|
|
489
|
-
version = "0.
|
|
478
|
+
version = "0.131.3"
|
|
490
479
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
491
|
-
checksum = "
|
|
480
|
+
checksum = "144f70fa9cd07efb83497c12dc8fb73f360a690cd990c44e8ceebc293d8c13b5"
|
|
492
481
|
dependencies = [
|
|
493
482
|
"cranelift-codegen",
|
|
494
483
|
"log",
|
|
@@ -498,15 +487,15 @@ dependencies = [
|
|
|
498
487
|
|
|
499
488
|
[[package]]
|
|
500
489
|
name = "cranelift-isle"
|
|
501
|
-
version = "0.
|
|
490
|
+
version = "0.131.3"
|
|
502
491
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
503
|
-
checksum = "
|
|
492
|
+
checksum = "0733ca5b2aaa5f6d5d6a1439e3c44280d34730d4d5c262ca08c6775c8d83f191"
|
|
504
493
|
|
|
505
494
|
[[package]]
|
|
506
495
|
name = "cranelift-native"
|
|
507
|
-
version = "0.
|
|
496
|
+
version = "0.131.3"
|
|
508
497
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
509
|
-
checksum = "
|
|
498
|
+
checksum = "75b1290d6193b171172d5fe9a6e42326edf487a79f211fbf1e76f912a4aed035"
|
|
510
499
|
dependencies = [
|
|
511
500
|
"cranelift-codegen",
|
|
512
501
|
"libc",
|
|
@@ -515,9 +504,9 @@ dependencies = [
|
|
|
515
504
|
|
|
516
505
|
[[package]]
|
|
517
506
|
name = "cranelift-srcgen"
|
|
518
|
-
version = "0.
|
|
507
|
+
version = "0.131.3"
|
|
519
508
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
520
|
-
checksum = "
|
|
509
|
+
checksum = "ce0d5c2b4d719566816a0f1c9a9712d35d61e27df0ffd6c72a9afec9048db6c0"
|
|
521
510
|
|
|
522
511
|
[[package]]
|
|
523
512
|
name = "crc32fast"
|
|
@@ -678,12 +667,6 @@ dependencies = [
|
|
|
678
667
|
"pin-project-lite",
|
|
679
668
|
]
|
|
680
669
|
|
|
681
|
-
[[package]]
|
|
682
|
-
name = "fallible-iterator"
|
|
683
|
-
version = "0.3.0"
|
|
684
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
685
|
-
checksum = "2acce4a10f12dc2fb14a218589d4f1f62ef011b2d0cc4b3cb1bba8e94da14649"
|
|
686
|
-
|
|
687
670
|
[[package]]
|
|
688
671
|
name = "fastrand"
|
|
689
672
|
version = "2.3.0"
|
|
@@ -697,10 +680,22 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
697
680
|
checksum = "0ce92ff622d6dadf7349484f42c93271a0d49b7cc4d466a936405bacbe10aa78"
|
|
698
681
|
dependencies = [
|
|
699
682
|
"cfg-if",
|
|
700
|
-
"rustix 1.
|
|
683
|
+
"rustix 1.1.4",
|
|
701
684
|
"windows-sys 0.59.0",
|
|
702
685
|
]
|
|
703
686
|
|
|
687
|
+
[[package]]
|
|
688
|
+
name = "find-msvc-tools"
|
|
689
|
+
version = "0.1.9"
|
|
690
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
691
|
+
checksum = "5baebc0774151f905a1a2cc41989300b1e6fbb29aff0ceffa1064fdd3088d582"
|
|
692
|
+
|
|
693
|
+
[[package]]
|
|
694
|
+
name = "fixedbitset"
|
|
695
|
+
version = "0.4.2"
|
|
696
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
697
|
+
checksum = "0ce7134b9999ecaf8bcd65542e436736ef32ddca1b3e06094cb6ec5755203b80"
|
|
698
|
+
|
|
704
699
|
[[package]]
|
|
705
700
|
name = "fnv"
|
|
706
701
|
version = "1.0.7"
|
|
@@ -709,9 +704,9 @@ checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1"
|
|
|
709
704
|
|
|
710
705
|
[[package]]
|
|
711
706
|
name = "foldhash"
|
|
712
|
-
version = "0.
|
|
707
|
+
version = "0.2.0"
|
|
713
708
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
714
|
-
checksum = "
|
|
709
|
+
checksum = "77ce24cb58228fbb8aa041425bb1050850ac19177686ea6e0f41a70416f56fdb"
|
|
715
710
|
|
|
716
711
|
[[package]]
|
|
717
712
|
name = "foreign-types"
|
|
@@ -730,9 +725,9 @@ checksum = "00b0228411908ca8685dba7fc2cdd70ec9990a6e753e89b6ac91a84c40fbaf4b"
|
|
|
730
725
|
|
|
731
726
|
[[package]]
|
|
732
727
|
name = "form_urlencoded"
|
|
733
|
-
version = "1.2.
|
|
728
|
+
version = "1.2.2"
|
|
734
729
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
735
|
-
checksum = "
|
|
730
|
+
checksum = "cb4cb245038516f5f85277875cdaa4f7d2c9a0fa0468de06ed190163b1581fcf"
|
|
736
731
|
dependencies = [
|
|
737
732
|
"percent-encoding",
|
|
738
733
|
]
|
|
@@ -744,7 +739,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
744
739
|
checksum = "94e7099f6313ecacbe1256e8ff9d617b75d1bcb16a6fddef94866d225a01a14a"
|
|
745
740
|
dependencies = [
|
|
746
741
|
"io-lifetimes",
|
|
747
|
-
"rustix 1.
|
|
742
|
+
"rustix 1.1.4",
|
|
748
743
|
"windows-sys 0.59.0",
|
|
749
744
|
]
|
|
750
745
|
|
|
@@ -819,6 +814,7 @@ version = "0.3.31"
|
|
|
819
814
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
820
815
|
checksum = "9fa08315bb612088cc391249efdc3bc77536f16c91f6cf495e6fbe85b20a4a81"
|
|
821
816
|
dependencies = [
|
|
817
|
+
"futures-channel",
|
|
822
818
|
"futures-core",
|
|
823
819
|
"futures-io",
|
|
824
820
|
"futures-macro",
|
|
@@ -830,25 +826,17 @@ dependencies = [
|
|
|
830
826
|
"slab",
|
|
831
827
|
]
|
|
832
828
|
|
|
833
|
-
[[package]]
|
|
834
|
-
name = "fxhash"
|
|
835
|
-
version = "0.2.1"
|
|
836
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
837
|
-
checksum = "c31b6d751ae2c7f11320402d34e41349dd1016f8d5d45e48c4312bc8625af50c"
|
|
838
|
-
dependencies = [
|
|
839
|
-
"byteorder",
|
|
840
|
-
]
|
|
841
|
-
|
|
842
829
|
[[package]]
|
|
843
830
|
name = "fxprof-processed-profile"
|
|
844
|
-
version = "0.
|
|
831
|
+
version = "0.8.1"
|
|
845
832
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
846
|
-
checksum = "
|
|
833
|
+
checksum = "25234f20a3ec0a962a61770cfe39ecf03cb529a6e474ad8cff025ed497eda557"
|
|
847
834
|
dependencies = [
|
|
848
835
|
"bitflags",
|
|
849
836
|
"debugid",
|
|
850
|
-
"
|
|
837
|
+
"rustc-hash",
|
|
851
838
|
"serde",
|
|
839
|
+
"serde_derive",
|
|
852
840
|
"serde_json",
|
|
853
841
|
]
|
|
854
842
|
|
|
@@ -887,11 +875,12 @@ dependencies = [
|
|
|
887
875
|
|
|
888
876
|
[[package]]
|
|
889
877
|
name = "gimli"
|
|
890
|
-
version = "0.
|
|
878
|
+
version = "0.33.0"
|
|
891
879
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
892
|
-
checksum = "
|
|
880
|
+
checksum = "0bf7f043f89559805f8c7cacc432749b2fa0d0a0a9ee46ce47164ed5ba7f126c"
|
|
893
881
|
dependencies = [
|
|
894
|
-
"
|
|
882
|
+
"fnv",
|
|
883
|
+
"hashbrown 0.16.1",
|
|
895
884
|
"indexmap",
|
|
896
885
|
"stable_deref_trait",
|
|
897
886
|
]
|
|
@@ -923,12 +912,22 @@ dependencies = [
|
|
|
923
912
|
|
|
924
913
|
[[package]]
|
|
925
914
|
name = "hashbrown"
|
|
926
|
-
version = "0.
|
|
915
|
+
version = "0.16.1"
|
|
927
916
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
928
|
-
checksum = "
|
|
917
|
+
checksum = "841d1cc9bed7f9236f321df977030373f4a4163ae1a7dbfe1a51a2c1a51d9100"
|
|
929
918
|
dependencies = [
|
|
930
919
|
"foldhash",
|
|
931
920
|
"serde",
|
|
921
|
+
"serde_core",
|
|
922
|
+
]
|
|
923
|
+
|
|
924
|
+
[[package]]
|
|
925
|
+
name = "hashbrown"
|
|
926
|
+
version = "0.17.0"
|
|
927
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
928
|
+
checksum = "4f467dd6dccf739c208452f8014c75c18bb8301b050ad1cfb27153803edb0f51"
|
|
929
|
+
dependencies = [
|
|
930
|
+
"foldhash",
|
|
932
931
|
]
|
|
933
932
|
|
|
934
933
|
[[package]]
|
|
@@ -1035,7 +1034,7 @@ dependencies = [
|
|
|
1035
1034
|
"similar",
|
|
1036
1035
|
"stringmetrics",
|
|
1037
1036
|
"tabwriter",
|
|
1038
|
-
"thiserror 2.0.
|
|
1037
|
+
"thiserror 2.0.18",
|
|
1039
1038
|
"tokio",
|
|
1040
1039
|
"tracing",
|
|
1041
1040
|
"url",
|
|
@@ -1109,7 +1108,7 @@ dependencies = [
|
|
|
1109
1108
|
"hyper",
|
|
1110
1109
|
"libc",
|
|
1111
1110
|
"pin-project-lite",
|
|
1112
|
-
"socket2",
|
|
1111
|
+
"socket2 0.5.9",
|
|
1113
1112
|
"tokio",
|
|
1114
1113
|
"tower-service",
|
|
1115
1114
|
"tracing",
|
|
@@ -1259,15 +1258,15 @@ dependencies = [
|
|
|
1259
1258
|
|
|
1260
1259
|
[[package]]
|
|
1261
1260
|
name = "id-arena"
|
|
1262
|
-
version = "2.
|
|
1261
|
+
version = "2.3.0"
|
|
1263
1262
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1264
|
-
checksum = "
|
|
1263
|
+
checksum = "3d3067d79b975e8844ca9eb072e16b31c3c1c36928edf9c6789548c524d0d954"
|
|
1265
1264
|
|
|
1266
1265
|
[[package]]
|
|
1267
1266
|
name = "idna"
|
|
1268
|
-
version = "1.0
|
|
1267
|
+
version = "1.1.0"
|
|
1269
1268
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1270
|
-
checksum = "
|
|
1269
|
+
checksum = "3b0875f23caa03898994f6ddc501886a45c7d3d62d04d2d90788d47be1b1e4de"
|
|
1271
1270
|
dependencies = [
|
|
1272
1271
|
"idna_adapter",
|
|
1273
1272
|
"smallvec",
|
|
@@ -1286,13 +1285,14 @@ dependencies = [
|
|
|
1286
1285
|
|
|
1287
1286
|
[[package]]
|
|
1288
1287
|
name = "indexmap"
|
|
1289
|
-
version = "2.
|
|
1288
|
+
version = "2.14.0"
|
|
1290
1289
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1291
|
-
checksum = "
|
|
1290
|
+
checksum = "d466e9454f08e4a911e14806c24e16fba1b4c121d1ea474396f396069cf949d9"
|
|
1292
1291
|
dependencies = [
|
|
1293
1292
|
"equivalent",
|
|
1294
|
-
"hashbrown",
|
|
1293
|
+
"hashbrown 0.17.0",
|
|
1295
1294
|
"serde",
|
|
1295
|
+
"serde_core",
|
|
1296
1296
|
]
|
|
1297
1297
|
|
|
1298
1298
|
[[package]]
|
|
@@ -1396,12 +1396,6 @@ version = "1.5.0"
|
|
|
1396
1396
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1397
1397
|
checksum = "bbd2bcb4c963f2ddae06a2efc7e9f3591312473c50c6685e1f298068316e66fe"
|
|
1398
1398
|
|
|
1399
|
-
[[package]]
|
|
1400
|
-
name = "lazycell"
|
|
1401
|
-
version = "1.3.0"
|
|
1402
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1403
|
-
checksum = "830d08ce1d1d941e6b30645f1a0eb5643013d835ce3779a5fc208261dbe10f55"
|
|
1404
|
-
|
|
1405
1399
|
[[package]]
|
|
1406
1400
|
name = "leb128"
|
|
1407
1401
|
version = "0.2.5"
|
|
@@ -1416,9 +1410,9 @@ checksum = "09edd9e8b54e49e587e4f6295a7d29c3ea94d469cb40ab8ca70b288248a81db2"
|
|
|
1416
1410
|
|
|
1417
1411
|
[[package]]
|
|
1418
1412
|
name = "libc"
|
|
1419
|
-
version = "0.2.
|
|
1413
|
+
version = "0.2.183"
|
|
1420
1414
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1421
|
-
checksum = "
|
|
1415
|
+
checksum = "b5b646652bf6661599e1da8901b3b9522896f01e736bad5f723fe7a3a27f899d"
|
|
1422
1416
|
|
|
1423
1417
|
[[package]]
|
|
1424
1418
|
name = "libloading"
|
|
@@ -1432,9 +1426,9 @@ dependencies = [
|
|
|
1432
1426
|
|
|
1433
1427
|
[[package]]
|
|
1434
1428
|
name = "libm"
|
|
1435
|
-
version = "0.2.
|
|
1429
|
+
version = "0.2.16"
|
|
1436
1430
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1437
|
-
checksum = "
|
|
1431
|
+
checksum = "b6d2cec3eae94f9f509c767b45932f1ada8350c4bdb85af2fcab4a3c14807981"
|
|
1438
1432
|
|
|
1439
1433
|
[[package]]
|
|
1440
1434
|
name = "libredox"
|
|
@@ -1454,9 +1448,9 @@ checksum = "d26c52dbd32dccf2d10cac7725f8eae5296885fb5703b261f7d0a0739ec807ab"
|
|
|
1454
1448
|
|
|
1455
1449
|
[[package]]
|
|
1456
1450
|
name = "linux-raw-sys"
|
|
1457
|
-
version = "0.
|
|
1451
|
+
version = "0.12.1"
|
|
1458
1452
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1459
|
-
checksum = "
|
|
1453
|
+
checksum = "32a66949e030da00e8c7d4434b251670a91556f4144941d37452769c25d58a53"
|
|
1460
1454
|
|
|
1461
1455
|
[[package]]
|
|
1462
1456
|
name = "litemap"
|
|
@@ -1466,9 +1460,9 @@ checksum = "23fb14cb19457329c82206317a5663005a4d404783dc74f4252769b0d5f42856"
|
|
|
1466
1460
|
|
|
1467
1461
|
[[package]]
|
|
1468
1462
|
name = "log"
|
|
1469
|
-
version = "0.4.
|
|
1463
|
+
version = "0.4.29"
|
|
1470
1464
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1471
|
-
checksum = "
|
|
1465
|
+
checksum = "5e5032e24019045c762d3c0f28f5b6b8bbf38563a65908389bf7978758920897"
|
|
1472
1466
|
|
|
1473
1467
|
[[package]]
|
|
1474
1468
|
name = "mach2"
|
|
@@ -1481,9 +1475,9 @@ dependencies = [
|
|
|
1481
1475
|
|
|
1482
1476
|
[[package]]
|
|
1483
1477
|
name = "magnus"
|
|
1484
|
-
version = "0.
|
|
1478
|
+
version = "0.8.2"
|
|
1485
1479
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1486
|
-
checksum = "
|
|
1480
|
+
checksum = "3b36a5b126bbe97eb0d02d07acfeb327036c6319fd816139a49824a83b7f9012"
|
|
1487
1481
|
dependencies = [
|
|
1488
1482
|
"magnus-macros",
|
|
1489
1483
|
"rb-sys",
|
|
@@ -1493,9 +1487,9 @@ dependencies = [
|
|
|
1493
1487
|
|
|
1494
1488
|
[[package]]
|
|
1495
1489
|
name = "magnus-macros"
|
|
1496
|
-
version = "0.
|
|
1490
|
+
version = "0.8.0"
|
|
1497
1491
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1498
|
-
checksum = "
|
|
1492
|
+
checksum = "47607461fd8e1513cb4f2076c197d8092d921a1ea75bd08af97398f593751892"
|
|
1499
1493
|
dependencies = [
|
|
1500
1494
|
"proc-macro2",
|
|
1501
1495
|
"quote",
|
|
@@ -1516,11 +1510,11 @@ checksum = "78ca9ab1a0babb1e7d5695e3530886289c18cf2f87ec19a575a0abdce112e3a3"
|
|
|
1516
1510
|
|
|
1517
1511
|
[[package]]
|
|
1518
1512
|
name = "memfd"
|
|
1519
|
-
version = "0.6.
|
|
1513
|
+
version = "0.6.5"
|
|
1520
1514
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1521
|
-
checksum = "
|
|
1515
|
+
checksum = "ad38eb12aea514a0466ea40a80fd8cc83637065948eb4a426e4aa46261175227"
|
|
1522
1516
|
dependencies = [
|
|
1523
|
-
"rustix
|
|
1517
|
+
"rustix 1.1.4",
|
|
1524
1518
|
]
|
|
1525
1519
|
|
|
1526
1520
|
[[package]]
|
|
@@ -1535,15 +1529,6 @@ version = "0.2.1"
|
|
|
1535
1529
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1536
1530
|
checksum = "68354c5c6bd36d73ff3feceb05efa59b6acb7626617f4962be322a825e61f79a"
|
|
1537
1531
|
|
|
1538
|
-
[[package]]
|
|
1539
|
-
name = "miniz_oxide"
|
|
1540
|
-
version = "0.8.8"
|
|
1541
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1542
|
-
checksum = "3be647b768db090acb35d5ec5db2b0e1f1de11133ca123b9eacf5137868f892a"
|
|
1543
|
-
dependencies = [
|
|
1544
|
-
"adler2",
|
|
1545
|
-
]
|
|
1546
|
-
|
|
1547
1532
|
[[package]]
|
|
1548
1533
|
name = "mio"
|
|
1549
1534
|
version = "1.0.3"
|
|
@@ -1584,12 +1569,12 @@ dependencies = [
|
|
|
1584
1569
|
|
|
1585
1570
|
[[package]]
|
|
1586
1571
|
name = "object"
|
|
1587
|
-
version = "0.
|
|
1572
|
+
version = "0.39.1"
|
|
1588
1573
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1589
|
-
checksum = "
|
|
1574
|
+
checksum = "2e5a6c098c7a3b6547378093f5cc30bc54fd361ce711e05293a5cc589562739b"
|
|
1590
1575
|
dependencies = [
|
|
1591
1576
|
"crc32fast",
|
|
1592
|
-
"hashbrown",
|
|
1577
|
+
"hashbrown 0.17.0",
|
|
1593
1578
|
"indexmap",
|
|
1594
1579
|
"memchr",
|
|
1595
1580
|
]
|
|
@@ -1602,15 +1587,14 @@ checksum = "42f5e15c9953c5e4ccceeb2e7382a716482c34515315f7b03532b8b4e8393d2d"
|
|
|
1602
1587
|
|
|
1603
1588
|
[[package]]
|
|
1604
1589
|
name = "openssl"
|
|
1605
|
-
version = "0.10.
|
|
1590
|
+
version = "0.10.80"
|
|
1606
1591
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1607
|
-
checksum = "
|
|
1592
|
+
checksum = "a45fa2aa886c42762255da344f0a0d313e254066c46aad76f300c3d3da62d967"
|
|
1608
1593
|
dependencies = [
|
|
1609
1594
|
"bitflags",
|
|
1610
1595
|
"cfg-if",
|
|
1611
1596
|
"foreign-types",
|
|
1612
1597
|
"libc",
|
|
1613
|
-
"once_cell",
|
|
1614
1598
|
"openssl-macros",
|
|
1615
1599
|
"openssl-sys",
|
|
1616
1600
|
]
|
|
@@ -1643,9 +1627,9 @@ dependencies = [
|
|
|
1643
1627
|
|
|
1644
1628
|
[[package]]
|
|
1645
1629
|
name = "openssl-sys"
|
|
1646
|
-
version = "0.9.
|
|
1630
|
+
version = "0.9.116"
|
|
1647
1631
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1648
|
-
checksum = "
|
|
1632
|
+
checksum = "f28a22dc7140cda5f096e5e7724a6962ca81a7f8bfd2979f9b18c11af56318c4"
|
|
1649
1633
|
dependencies = [
|
|
1650
1634
|
"cc",
|
|
1651
1635
|
"libc",
|
|
@@ -1671,9 +1655,19 @@ dependencies = [
|
|
|
1671
1655
|
|
|
1672
1656
|
[[package]]
|
|
1673
1657
|
name = "percent-encoding"
|
|
1674
|
-
version = "2.3.
|
|
1658
|
+
version = "2.3.2"
|
|
1675
1659
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1676
|
-
checksum = "
|
|
1660
|
+
checksum = "9b4f627cb1b25917193a259e49bdad08f671f8d9708acfd5fe0a8c1455d87220"
|
|
1661
|
+
|
|
1662
|
+
[[package]]
|
|
1663
|
+
name = "petgraph"
|
|
1664
|
+
version = "0.6.5"
|
|
1665
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1666
|
+
checksum = "b4c5cc86750666a3ed20bdaf5ca2a0344f9c67674cae0515bec2da16fbaa47db"
|
|
1667
|
+
dependencies = [
|
|
1668
|
+
"fixedbitset",
|
|
1669
|
+
"indexmap",
|
|
1670
|
+
]
|
|
1677
1671
|
|
|
1678
1672
|
[[package]]
|
|
1679
1673
|
name = "pin-project-lite"
|
|
@@ -1695,9 +1689,9 @@ checksum = "7edddbd0b52d732b21ad9a5fab5c704c14cd949e5e9a1ec5929a24fded1b904c"
|
|
|
1695
1689
|
|
|
1696
1690
|
[[package]]
|
|
1697
1691
|
name = "postcard"
|
|
1698
|
-
version = "1.1.
|
|
1692
|
+
version = "1.1.3"
|
|
1699
1693
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1700
|
-
checksum = "
|
|
1694
|
+
checksum = "6764c3b5dd454e283a30e6dfe78e9b31096d9e32036b5d1eaac7a6119ccb9a24"
|
|
1701
1695
|
dependencies = [
|
|
1702
1696
|
"cobs",
|
|
1703
1697
|
"embedded-io 0.4.0",
|
|
@@ -1716,38 +1710,41 @@ dependencies = [
|
|
|
1716
1710
|
|
|
1717
1711
|
[[package]]
|
|
1718
1712
|
name = "proc-macro2"
|
|
1719
|
-
version = "1.0.
|
|
1713
|
+
version = "1.0.106"
|
|
1720
1714
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1721
|
-
checksum = "
|
|
1715
|
+
checksum = "8fd00f0bb2e90d81d1044c2b32617f68fcb9fa3bb7640c23e9c748e53fb30934"
|
|
1722
1716
|
dependencies = [
|
|
1723
1717
|
"unicode-ident",
|
|
1724
1718
|
]
|
|
1725
1719
|
|
|
1726
1720
|
[[package]]
|
|
1727
|
-
name = "
|
|
1728
|
-
version = "0.
|
|
1721
|
+
name = "pulley-interpreter"
|
|
1722
|
+
version = "44.0.3"
|
|
1729
1723
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1730
|
-
checksum = "
|
|
1724
|
+
checksum = "34dff5fd3d9ac4845939fcb4597cd413cb244bc530448ed4766d11b1725e53d0"
|
|
1731
1725
|
dependencies = [
|
|
1732
|
-
"
|
|
1726
|
+
"cranelift-bitset",
|
|
1727
|
+
"log",
|
|
1728
|
+
"pulley-macros",
|
|
1729
|
+
"wasmtime-internal-core",
|
|
1733
1730
|
]
|
|
1734
1731
|
|
|
1735
1732
|
[[package]]
|
|
1736
|
-
name = "pulley-
|
|
1737
|
-
version = "
|
|
1733
|
+
name = "pulley-macros"
|
|
1734
|
+
version = "44.0.3"
|
|
1738
1735
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1739
|
-
checksum = "
|
|
1736
|
+
checksum = "6c60fb1c885bdb1efd7c50e8e973714de558b75a65f20c3e9a41398c652aa44b"
|
|
1740
1737
|
dependencies = [
|
|
1741
|
-
"
|
|
1742
|
-
"
|
|
1743
|
-
"
|
|
1738
|
+
"proc-macro2",
|
|
1739
|
+
"quote",
|
|
1740
|
+
"syn",
|
|
1744
1741
|
]
|
|
1745
1742
|
|
|
1746
1743
|
[[package]]
|
|
1747
1744
|
name = "quote"
|
|
1748
|
-
version = "1.0.
|
|
1745
|
+
version = "1.0.45"
|
|
1749
1746
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1750
|
-
checksum = "
|
|
1747
|
+
checksum = "41f2619966050689382d2b44f664f4bc593e129785a36d6ee376ddf37259b924"
|
|
1751
1748
|
dependencies = [
|
|
1752
1749
|
"proc-macro2",
|
|
1753
1750
|
]
|
|
@@ -1760,9 +1757,9 @@ checksum = "74765f6d916ee2faa39bc8e68e4f3ed8949b48cccdac59983d287a7cb71ce9c5"
|
|
|
1760
1757
|
|
|
1761
1758
|
[[package]]
|
|
1762
1759
|
name = "rand"
|
|
1763
|
-
version = "0.8.
|
|
1760
|
+
version = "0.8.6"
|
|
1764
1761
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1765
|
-
checksum = "
|
|
1762
|
+
checksum = "5ca0ecfa931c29007047d1bc58e623ab12e5590e8c7cc53200d5202b69266d8a"
|
|
1766
1763
|
dependencies = [
|
|
1767
1764
|
"libc",
|
|
1768
1765
|
"rand_chacha",
|
|
@@ -1810,18 +1807,18 @@ dependencies = [
|
|
|
1810
1807
|
|
|
1811
1808
|
[[package]]
|
|
1812
1809
|
name = "rb-sys"
|
|
1813
|
-
version = "0.9.
|
|
1810
|
+
version = "0.9.130"
|
|
1814
1811
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1815
|
-
checksum = "
|
|
1812
|
+
checksum = "02faf625bb10ba893e3ae620f19c9fb1b5f8fcae0fe4eb86bb3f2230fad75edb"
|
|
1816
1813
|
dependencies = [
|
|
1817
1814
|
"rb-sys-build",
|
|
1818
1815
|
]
|
|
1819
1816
|
|
|
1820
1817
|
[[package]]
|
|
1821
1818
|
name = "rb-sys-build"
|
|
1822
|
-
version = "0.9.
|
|
1819
|
+
version = "0.9.130"
|
|
1823
1820
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1824
|
-
checksum = "
|
|
1821
|
+
checksum = "05be6f9c86fe5482808162826f6c047d093b3670582296c770de1d94f8066694"
|
|
1825
1822
|
dependencies = [
|
|
1826
1823
|
"bindgen",
|
|
1827
1824
|
"lazy_static",
|
|
@@ -1834,9 +1831,9 @@ dependencies = [
|
|
|
1834
1831
|
|
|
1835
1832
|
[[package]]
|
|
1836
1833
|
name = "rb-sys-env"
|
|
1837
|
-
version = "0.
|
|
1834
|
+
version = "0.2.3"
|
|
1838
1835
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1839
|
-
checksum = "
|
|
1836
|
+
checksum = "cca7ad6a7e21e72151d56fe2495a259b5670e204c3adac41ee7ef676ea08117a"
|
|
1840
1837
|
|
|
1841
1838
|
[[package]]
|
|
1842
1839
|
name = "redox_users"
|
|
@@ -1851,15 +1848,15 @@ dependencies = [
|
|
|
1851
1848
|
|
|
1852
1849
|
[[package]]
|
|
1853
1850
|
name = "regalloc2"
|
|
1854
|
-
version = "0.
|
|
1851
|
+
version = "0.15.1"
|
|
1855
1852
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1856
|
-
checksum = "
|
|
1853
|
+
checksum = "de2c52737737f8609e94f975dee22854a2d5c125772d4b1cf292120f4d45c186"
|
|
1857
1854
|
dependencies = [
|
|
1858
1855
|
"allocator-api2",
|
|
1859
1856
|
"bumpalo",
|
|
1860
|
-
"hashbrown",
|
|
1857
|
+
"hashbrown 0.17.0",
|
|
1861
1858
|
"log",
|
|
1862
|
-
"rustc-hash
|
|
1859
|
+
"rustc-hash",
|
|
1863
1860
|
"smallvec",
|
|
1864
1861
|
]
|
|
1865
1862
|
|
|
@@ -1957,12 +1954,6 @@ version = "0.1.24"
|
|
|
1957
1954
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1958
1955
|
checksum = "719b953e2095829ee67db738b3bfa9fa368c94900df327b3f07fe6e794d2fe1f"
|
|
1959
1956
|
|
|
1960
|
-
[[package]]
|
|
1961
|
-
name = "rustc-hash"
|
|
1962
|
-
version = "1.1.0"
|
|
1963
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1964
|
-
checksum = "08d43f7aa6b08d49f382cde6a7982047c3426db949b1424bc4b7ec9ae12c6ce2"
|
|
1965
|
-
|
|
1966
1957
|
[[package]]
|
|
1967
1958
|
name = "rustc-hash"
|
|
1968
1959
|
version = "2.1.1"
|
|
@@ -1984,15 +1975,15 @@ dependencies = [
|
|
|
1984
1975
|
|
|
1985
1976
|
[[package]]
|
|
1986
1977
|
name = "rustix"
|
|
1987
|
-
version = "1.
|
|
1978
|
+
version = "1.1.4"
|
|
1988
1979
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1989
|
-
checksum = "
|
|
1980
|
+
checksum = "b6fe4565b9518b83ef4f91bb47ce29620ca828bd32cb7e408f0062e9930ba190"
|
|
1990
1981
|
dependencies = [
|
|
1991
1982
|
"bitflags",
|
|
1992
1983
|
"errno",
|
|
1993
1984
|
"libc",
|
|
1994
|
-
"linux-raw-sys 0.
|
|
1995
|
-
"windows-sys 0.
|
|
1985
|
+
"linux-raw-sys 0.12.1",
|
|
1986
|
+
"windows-sys 0.61.2",
|
|
1996
1987
|
]
|
|
1997
1988
|
|
|
1998
1989
|
[[package]]
|
|
@@ -2002,7 +1993,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
2002
1993
|
checksum = "2fc84bf7e9aa16c4f2c758f27412dc9841341e16aa682d9c7ac308fe3ee12056"
|
|
2003
1994
|
dependencies = [
|
|
2004
1995
|
"once_cell",
|
|
2005
|
-
"rustix 1.
|
|
1996
|
+
"rustix 1.1.4",
|
|
2006
1997
|
]
|
|
2007
1998
|
|
|
2008
1999
|
[[package]]
|
|
@@ -2029,15 +2020,18 @@ dependencies = [
|
|
|
2029
2020
|
|
|
2030
2021
|
[[package]]
|
|
2031
2022
|
name = "rustls-pki-types"
|
|
2032
|
-
version = "1.
|
|
2023
|
+
version = "1.14.1"
|
|
2033
2024
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2034
|
-
checksum = "
|
|
2025
|
+
checksum = "30a7197ae7eb376e574fe940d068c30fe0462554a3ddbe4eca7838e049c937a9"
|
|
2026
|
+
dependencies = [
|
|
2027
|
+
"zeroize",
|
|
2028
|
+
]
|
|
2035
2029
|
|
|
2036
2030
|
[[package]]
|
|
2037
2031
|
name = "rustls-webpki"
|
|
2038
|
-
version = "0.103.
|
|
2032
|
+
version = "0.103.13"
|
|
2039
2033
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2040
|
-
checksum = "
|
|
2034
|
+
checksum = "61c429a8649f110dddef65e2a5ad240f747e85f7758a6bccc7e5777bd33f756e"
|
|
2041
2035
|
dependencies = [
|
|
2042
2036
|
"ring",
|
|
2043
2037
|
"rustls-pki-types",
|
|
@@ -2090,11 +2084,12 @@ dependencies = [
|
|
|
2090
2084
|
|
|
2091
2085
|
[[package]]
|
|
2092
2086
|
name = "semver"
|
|
2093
|
-
version = "1.0.
|
|
2087
|
+
version = "1.0.27"
|
|
2094
2088
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2095
|
-
checksum = "
|
|
2089
|
+
checksum = "d767eb0aabc880b29956c35734170f26ed551a859dbd361d140cdbeca61ab1e2"
|
|
2096
2090
|
dependencies = [
|
|
2097
2091
|
"serde",
|
|
2092
|
+
"serde_core",
|
|
2098
2093
|
]
|
|
2099
2094
|
|
|
2100
2095
|
[[package]]
|
|
@@ -2105,18 +2100,28 @@ checksum = "1bc711410fbe7399f390ca1c3b60ad0f53f80e95c5eb935e52268a0e2cd49acc"
|
|
|
2105
2100
|
|
|
2106
2101
|
[[package]]
|
|
2107
2102
|
name = "serde"
|
|
2108
|
-
version = "1.0.
|
|
2103
|
+
version = "1.0.228"
|
|
2104
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2105
|
+
checksum = "9a8e94ea7f378bd32cbbd37198a4a91436180c5bb472411e48b5ec2e2124ae9e"
|
|
2106
|
+
dependencies = [
|
|
2107
|
+
"serde_core",
|
|
2108
|
+
"serde_derive",
|
|
2109
|
+
]
|
|
2110
|
+
|
|
2111
|
+
[[package]]
|
|
2112
|
+
name = "serde_core"
|
|
2113
|
+
version = "1.0.228"
|
|
2109
2114
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2110
|
-
checksum = "
|
|
2115
|
+
checksum = "41d385c7d4ca58e59fc732af25c3983b67ac852c1a25000afe1175de458b67ad"
|
|
2111
2116
|
dependencies = [
|
|
2112
2117
|
"serde_derive",
|
|
2113
2118
|
]
|
|
2114
2119
|
|
|
2115
2120
|
[[package]]
|
|
2116
2121
|
name = "serde_derive"
|
|
2117
|
-
version = "1.0.
|
|
2122
|
+
version = "1.0.228"
|
|
2118
2123
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2119
|
-
checksum = "
|
|
2124
|
+
checksum = "d540f220d3187173da220f885ab66608367b6574e925011a9353e4badda91d79"
|
|
2120
2125
|
dependencies = [
|
|
2121
2126
|
"proc-macro2",
|
|
2122
2127
|
"quote",
|
|
@@ -2147,11 +2152,11 @@ dependencies = [
|
|
|
2147
2152
|
|
|
2148
2153
|
[[package]]
|
|
2149
2154
|
name = "serde_spanned"
|
|
2150
|
-
version = "0.
|
|
2155
|
+
version = "1.0.4"
|
|
2151
2156
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2152
|
-
checksum = "
|
|
2157
|
+
checksum = "f8bbf91e5a4d6315eee45e704372590b30e260ee83af6639d64557f51b067776"
|
|
2153
2158
|
dependencies = [
|
|
2154
|
-
"
|
|
2159
|
+
"serde_core",
|
|
2155
2160
|
]
|
|
2156
2161
|
|
|
2157
2162
|
[[package]]
|
|
@@ -2226,9 +2231,9 @@ dependencies = [
|
|
|
2226
2231
|
|
|
2227
2232
|
[[package]]
|
|
2228
2233
|
name = "smallvec"
|
|
2229
|
-
version = "1.15.
|
|
2234
|
+
version = "1.15.1"
|
|
2230
2235
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2231
|
-
checksum = "
|
|
2236
|
+
checksum = "67b1b7a3b5fe4f1376887184045fcf45c69e92af734b7aaddc05fb777b6fbd03"
|
|
2232
2237
|
dependencies = [
|
|
2233
2238
|
"serde",
|
|
2234
2239
|
]
|
|
@@ -2244,10 +2249,14 @@ dependencies = [
|
|
|
2244
2249
|
]
|
|
2245
2250
|
|
|
2246
2251
|
[[package]]
|
|
2247
|
-
name = "
|
|
2248
|
-
version = "0.3
|
|
2252
|
+
name = "socket2"
|
|
2253
|
+
version = "0.6.3"
|
|
2249
2254
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2250
|
-
checksum = "
|
|
2255
|
+
checksum = "3a766e1110788c36f4fa1c2b71b387a7815aa65f88ce0229841826633d93723e"
|
|
2256
|
+
dependencies = [
|
|
2257
|
+
"libc",
|
|
2258
|
+
"windows-sys 0.61.2",
|
|
2259
|
+
]
|
|
2251
2260
|
|
|
2252
2261
|
[[package]]
|
|
2253
2262
|
name = "stable_deref_trait"
|
|
@@ -2269,9 +2278,9 @@ checksum = "13c2bddecc57b384dee18652358fb23172facb8a2c51ccc10d74c157bdea3292"
|
|
|
2269
2278
|
|
|
2270
2279
|
[[package]]
|
|
2271
2280
|
name = "syn"
|
|
2272
|
-
version = "2.0.
|
|
2281
|
+
version = "2.0.117"
|
|
2273
2282
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2274
|
-
checksum = "
|
|
2283
|
+
checksum = "e665b8803e7b1d2a727f4023456bbbbe74da67099c585258af0ad9c5013b9b99"
|
|
2275
2284
|
dependencies = [
|
|
2276
2285
|
"proc-macro2",
|
|
2277
2286
|
"quote",
|
|
@@ -2352,15 +2361,15 @@ checksum = "e502f78cdbb8ba4718f566c418c52bc729126ffd16baee5baa718cf25dd5a69a"
|
|
|
2352
2361
|
|
|
2353
2362
|
[[package]]
|
|
2354
2363
|
name = "tempfile"
|
|
2355
|
-
version = "3.
|
|
2364
|
+
version = "3.27.0"
|
|
2356
2365
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2357
|
-
checksum = "
|
|
2366
|
+
checksum = "32497e9a4c7b38532efcdebeef879707aa9f794296a4f0244f6f69e9bc8574bd"
|
|
2358
2367
|
dependencies = [
|
|
2359
2368
|
"fastrand",
|
|
2360
2369
|
"getrandom 0.3.2",
|
|
2361
2370
|
"once_cell",
|
|
2362
|
-
"rustix 1.
|
|
2363
|
-
"windows-sys 0.
|
|
2371
|
+
"rustix 1.1.4",
|
|
2372
|
+
"windows-sys 0.61.2",
|
|
2364
2373
|
]
|
|
2365
2374
|
|
|
2366
2375
|
[[package]]
|
|
@@ -2383,11 +2392,11 @@ dependencies = [
|
|
|
2383
2392
|
|
|
2384
2393
|
[[package]]
|
|
2385
2394
|
name = "thiserror"
|
|
2386
|
-
version = "2.0.
|
|
2395
|
+
version = "2.0.18"
|
|
2387
2396
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2388
|
-
checksum = "
|
|
2397
|
+
checksum = "4288b5bcbc7920c07a1149a35cf9590a2aa808e0bc1eafaade0b80947865fbc4"
|
|
2389
2398
|
dependencies = [
|
|
2390
|
-
"thiserror-impl 2.0.
|
|
2399
|
+
"thiserror-impl 2.0.18",
|
|
2391
2400
|
]
|
|
2392
2401
|
|
|
2393
2402
|
[[package]]
|
|
@@ -2403,9 +2412,9 @@ dependencies = [
|
|
|
2403
2412
|
|
|
2404
2413
|
[[package]]
|
|
2405
2414
|
name = "thiserror-impl"
|
|
2406
|
-
version = "2.0.
|
|
2415
|
+
version = "2.0.18"
|
|
2407
2416
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2408
|
-
checksum = "
|
|
2417
|
+
checksum = "ebc4ee7f67670e9b64d05fa4253e753e016c6c95ff35b89b7941d6b856dec1d5"
|
|
2409
2418
|
dependencies = [
|
|
2410
2419
|
"proc-macro2",
|
|
2411
2420
|
"quote",
|
|
@@ -2424,26 +2433,25 @@ dependencies = [
|
|
|
2424
2433
|
|
|
2425
2434
|
[[package]]
|
|
2426
2435
|
name = "tokio"
|
|
2427
|
-
version = "1.
|
|
2436
|
+
version = "1.50.0"
|
|
2428
2437
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2429
|
-
checksum = "
|
|
2438
|
+
checksum = "27ad5e34374e03cfffefc301becb44e9dc3c17584f414349ebe29ed26661822d"
|
|
2430
2439
|
dependencies = [
|
|
2431
|
-
"backtrace",
|
|
2432
2440
|
"bytes",
|
|
2433
2441
|
"libc",
|
|
2434
2442
|
"mio",
|
|
2435
2443
|
"pin-project-lite",
|
|
2436
2444
|
"signal-hook-registry",
|
|
2437
|
-
"socket2",
|
|
2445
|
+
"socket2 0.6.3",
|
|
2438
2446
|
"tokio-macros",
|
|
2439
|
-
"windows-sys 0.
|
|
2447
|
+
"windows-sys 0.61.2",
|
|
2440
2448
|
]
|
|
2441
2449
|
|
|
2442
2450
|
[[package]]
|
|
2443
2451
|
name = "tokio-macros"
|
|
2444
|
-
version = "2.
|
|
2452
|
+
version = "2.6.1"
|
|
2445
2453
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2446
|
-
checksum = "
|
|
2454
|
+
checksum = "5c55a2eff8b69ce66c84f85e1da1c233edc36ceb85a2058d11b0d6a3c7e7569c"
|
|
2447
2455
|
dependencies = [
|
|
2448
2456
|
"proc-macro2",
|
|
2449
2457
|
"quote",
|
|
@@ -2485,38 +2493,43 @@ dependencies = [
|
|
|
2485
2493
|
|
|
2486
2494
|
[[package]]
|
|
2487
2495
|
name = "toml"
|
|
2488
|
-
version = "0.
|
|
2496
|
+
version = "0.9.12+spec-1.1.0"
|
|
2489
2497
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2490
|
-
checksum = "
|
|
2498
|
+
checksum = "cf92845e79fc2e2def6a5d828f0801e29a2f8acc037becc5ab08595c7d5e9863"
|
|
2491
2499
|
dependencies = [
|
|
2492
|
-
"
|
|
2500
|
+
"indexmap",
|
|
2501
|
+
"serde_core",
|
|
2493
2502
|
"serde_spanned",
|
|
2494
2503
|
"toml_datetime",
|
|
2495
|
-
"
|
|
2504
|
+
"toml_parser",
|
|
2505
|
+
"toml_writer",
|
|
2506
|
+
"winnow",
|
|
2496
2507
|
]
|
|
2497
2508
|
|
|
2498
2509
|
[[package]]
|
|
2499
2510
|
name = "toml_datetime"
|
|
2500
|
-
version = "0.
|
|
2511
|
+
version = "0.7.5+spec-1.1.0"
|
|
2501
2512
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2502
|
-
checksum = "
|
|
2513
|
+
checksum = "92e1cfed4a3038bc5a127e35a2d360f145e1f4b971b551a2ba5fd7aedf7e1347"
|
|
2503
2514
|
dependencies = [
|
|
2504
|
-
"
|
|
2515
|
+
"serde_core",
|
|
2505
2516
|
]
|
|
2506
2517
|
|
|
2507
2518
|
[[package]]
|
|
2508
|
-
name = "
|
|
2509
|
-
version = "0.
|
|
2519
|
+
name = "toml_parser"
|
|
2520
|
+
version = "1.0.9+spec-1.1.0"
|
|
2510
2521
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2511
|
-
checksum = "
|
|
2522
|
+
checksum = "702d4415e08923e7e1ef96cd5727c0dfed80b4d2fa25db9647fe5eb6f7c5a4c4"
|
|
2512
2523
|
dependencies = [
|
|
2513
|
-
"indexmap",
|
|
2514
|
-
"serde",
|
|
2515
|
-
"serde_spanned",
|
|
2516
|
-
"toml_datetime",
|
|
2517
2524
|
"winnow",
|
|
2518
2525
|
]
|
|
2519
2526
|
|
|
2527
|
+
[[package]]
|
|
2528
|
+
name = "toml_writer"
|
|
2529
|
+
version = "1.0.6+spec-1.1.0"
|
|
2530
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2531
|
+
checksum = "ab16f14aed21ee8bfd8ec22513f7287cd4a91aa92e44edfe2c17ddd004e92607"
|
|
2532
|
+
|
|
2520
2533
|
[[package]]
|
|
2521
2534
|
name = "tower"
|
|
2522
2535
|
version = "0.5.2"
|
|
@@ -2576,17 +2589,6 @@ dependencies = [
|
|
|
2576
2589
|
"once_cell",
|
|
2577
2590
|
]
|
|
2578
2591
|
|
|
2579
|
-
[[package]]
|
|
2580
|
-
name = "trait-variant"
|
|
2581
|
-
version = "0.1.2"
|
|
2582
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2583
|
-
checksum = "70977707304198400eb4835a78f6a9f928bf41bba420deb8fdb175cd965d77a7"
|
|
2584
|
-
dependencies = [
|
|
2585
|
-
"proc-macro2",
|
|
2586
|
-
"quote",
|
|
2587
|
-
"syn",
|
|
2588
|
-
]
|
|
2589
|
-
|
|
2590
2592
|
[[package]]
|
|
2591
2593
|
name = "try-lock"
|
|
2592
2594
|
version = "0.2.5"
|
|
@@ -2625,13 +2627,14 @@ checksum = "8ecb6da28b8a351d773b68d5825ac39017e680750f980f3a1a85cd8dd28a47c1"
|
|
|
2625
2627
|
|
|
2626
2628
|
[[package]]
|
|
2627
2629
|
name = "url"
|
|
2628
|
-
version = "2.5.
|
|
2630
|
+
version = "2.5.8"
|
|
2629
2631
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2630
|
-
checksum = "
|
|
2632
|
+
checksum = "ff67a8a4397373c3ef660812acab3268222035010ab8680ec4215f38ba3d0eed"
|
|
2631
2633
|
dependencies = [
|
|
2632
2634
|
"form_urlencoded",
|
|
2633
2635
|
"idna",
|
|
2634
2636
|
"percent-encoding",
|
|
2637
|
+
"serde",
|
|
2635
2638
|
]
|
|
2636
2639
|
|
|
2637
2640
|
[[package]]
|
|
@@ -2759,34 +2762,51 @@ dependencies = [
|
|
|
2759
2762
|
"unicode-ident",
|
|
2760
2763
|
]
|
|
2761
2764
|
|
|
2765
|
+
[[package]]
|
|
2766
|
+
name = "wasm-compose"
|
|
2767
|
+
version = "0.246.2"
|
|
2768
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2769
|
+
checksum = "f05a2b3bad87cc1ce45b63425ec09a854cc4cb369231c9fed1fee31538103efb"
|
|
2770
|
+
dependencies = [
|
|
2771
|
+
"anyhow",
|
|
2772
|
+
"heck",
|
|
2773
|
+
"indexmap",
|
|
2774
|
+
"log",
|
|
2775
|
+
"petgraph",
|
|
2776
|
+
"smallvec",
|
|
2777
|
+
"wasm-encoder 0.246.2",
|
|
2778
|
+
"wasmparser 0.246.2",
|
|
2779
|
+
"wat",
|
|
2780
|
+
]
|
|
2781
|
+
|
|
2762
2782
|
[[package]]
|
|
2763
2783
|
name = "wasm-encoder"
|
|
2764
|
-
version = "0.
|
|
2784
|
+
version = "0.246.2"
|
|
2765
2785
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2766
|
-
checksum = "
|
|
2786
|
+
checksum = "61fb705ce81adde29d2a8e99d87995e39a6e927358c91398f374474746070ef7"
|
|
2767
2787
|
dependencies = [
|
|
2768
2788
|
"leb128fmt",
|
|
2769
|
-
"wasmparser 0.
|
|
2789
|
+
"wasmparser 0.246.2",
|
|
2770
2790
|
]
|
|
2771
2791
|
|
|
2772
2792
|
[[package]]
|
|
2773
2793
|
name = "wasm-encoder"
|
|
2774
|
-
version = "0.
|
|
2794
|
+
version = "0.252.0"
|
|
2775
2795
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2776
|
-
checksum = "
|
|
2796
|
+
checksum = "8185ae345fa5687c054626ff9a50e7089797a343d9904d1dc9820eb4c4d3196f"
|
|
2777
2797
|
dependencies = [
|
|
2778
2798
|
"leb128fmt",
|
|
2779
|
-
"wasmparser 0.
|
|
2799
|
+
"wasmparser 0.252.0",
|
|
2780
2800
|
]
|
|
2781
2801
|
|
|
2782
2802
|
[[package]]
|
|
2783
2803
|
name = "wasmparser"
|
|
2784
|
-
version = "0.
|
|
2804
|
+
version = "0.246.2"
|
|
2785
2805
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2786
|
-
checksum = "
|
|
2806
|
+
checksum = "71cde4757396defafd25417cfb36aa3161027d06d865b0c24baaae229aac005d"
|
|
2787
2807
|
dependencies = [
|
|
2788
2808
|
"bitflags",
|
|
2789
|
-
"hashbrown",
|
|
2809
|
+
"hashbrown 0.16.1",
|
|
2790
2810
|
"indexmap",
|
|
2791
2811
|
"semver",
|
|
2792
2812
|
"serde",
|
|
@@ -2794,9 +2814,9 @@ dependencies = [
|
|
|
2794
2814
|
|
|
2795
2815
|
[[package]]
|
|
2796
2816
|
name = "wasmparser"
|
|
2797
|
-
version = "0.
|
|
2817
|
+
version = "0.252.0"
|
|
2798
2818
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2799
|
-
checksum = "
|
|
2819
|
+
checksum = "d3eb099dcadcde5be9eef55e3a337128efd4e44b4c93122487e4d2e4e1c6627c"
|
|
2800
2820
|
dependencies = [
|
|
2801
2821
|
"bitflags",
|
|
2802
2822
|
"indexmap",
|
|
@@ -2805,33 +2825,31 @@ dependencies = [
|
|
|
2805
2825
|
|
|
2806
2826
|
[[package]]
|
|
2807
2827
|
name = "wasmprinter"
|
|
2808
|
-
version = "0.
|
|
2828
|
+
version = "0.246.2"
|
|
2809
2829
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2810
|
-
checksum = "
|
|
2830
|
+
checksum = "6e41f7493ba994b8a779430a4c25ff550fd5a40d291693af43a6ef48688f00e3"
|
|
2811
2831
|
dependencies = [
|
|
2812
2832
|
"anyhow",
|
|
2813
2833
|
"termcolor",
|
|
2814
|
-
"wasmparser 0.
|
|
2834
|
+
"wasmparser 0.246.2",
|
|
2815
2835
|
]
|
|
2816
2836
|
|
|
2817
2837
|
[[package]]
|
|
2818
2838
|
name = "wasmtime"
|
|
2819
|
-
version = "
|
|
2839
|
+
version = "44.0.3"
|
|
2820
2840
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2821
|
-
checksum = "
|
|
2841
|
+
checksum = "d807f646bfecc1dbb4990d8c864beebccbdb3f2cd1b39b2b82957b4e294c6058"
|
|
2822
2842
|
dependencies = [
|
|
2823
2843
|
"addr2line",
|
|
2824
|
-
"anyhow",
|
|
2825
2844
|
"async-trait",
|
|
2826
2845
|
"bitflags",
|
|
2827
2846
|
"bumpalo",
|
|
2828
2847
|
"cc",
|
|
2829
2848
|
"cfg-if",
|
|
2830
2849
|
"encoding_rs",
|
|
2850
|
+
"futures",
|
|
2831
2851
|
"fxprof-processed-profile",
|
|
2832
2852
|
"gimli",
|
|
2833
|
-
"hashbrown",
|
|
2834
|
-
"indexmap",
|
|
2835
2853
|
"ittapi",
|
|
2836
2854
|
"libc",
|
|
2837
2855
|
"log",
|
|
@@ -2840,94 +2858,125 @@ dependencies = [
|
|
|
2840
2858
|
"object",
|
|
2841
2859
|
"once_cell",
|
|
2842
2860
|
"postcard",
|
|
2843
|
-
"psm",
|
|
2844
2861
|
"pulley-interpreter",
|
|
2845
2862
|
"rayon",
|
|
2846
|
-
"rustix 1.
|
|
2863
|
+
"rustix 1.1.4",
|
|
2847
2864
|
"semver",
|
|
2848
2865
|
"serde",
|
|
2849
2866
|
"serde_derive",
|
|
2850
2867
|
"serde_json",
|
|
2851
2868
|
"smallvec",
|
|
2852
|
-
"sptr",
|
|
2853
2869
|
"target-lexicon",
|
|
2854
|
-
"
|
|
2855
|
-
"wasm-
|
|
2856
|
-
"
|
|
2857
|
-
"
|
|
2858
|
-
"wasmtime-cache",
|
|
2859
|
-
"wasmtime-component-macro",
|
|
2860
|
-
"wasmtime-component-util",
|
|
2861
|
-
"wasmtime-cranelift",
|
|
2870
|
+
"tempfile",
|
|
2871
|
+
"wasm-compose",
|
|
2872
|
+
"wasm-encoder 0.246.2",
|
|
2873
|
+
"wasmparser 0.246.2",
|
|
2862
2874
|
"wasmtime-environ",
|
|
2863
|
-
"wasmtime-
|
|
2864
|
-
"wasmtime-
|
|
2865
|
-
"wasmtime-
|
|
2866
|
-
"wasmtime-
|
|
2867
|
-
"wasmtime-
|
|
2868
|
-
"wasmtime-
|
|
2869
|
-
"wasmtime-
|
|
2875
|
+
"wasmtime-internal-cache",
|
|
2876
|
+
"wasmtime-internal-component-macro",
|
|
2877
|
+
"wasmtime-internal-component-util",
|
|
2878
|
+
"wasmtime-internal-core",
|
|
2879
|
+
"wasmtime-internal-cranelift",
|
|
2880
|
+
"wasmtime-internal-fiber",
|
|
2881
|
+
"wasmtime-internal-jit-debug",
|
|
2882
|
+
"wasmtime-internal-jit-icache-coherence",
|
|
2883
|
+
"wasmtime-internal-unwinder",
|
|
2884
|
+
"wasmtime-internal-versioned-export-macros",
|
|
2885
|
+
"wasmtime-internal-winch",
|
|
2870
2886
|
"wat",
|
|
2871
|
-
"windows-sys 0.
|
|
2887
|
+
"windows-sys 0.61.2",
|
|
2872
2888
|
]
|
|
2873
2889
|
|
|
2874
2890
|
[[package]]
|
|
2875
|
-
name = "wasmtime-
|
|
2876
|
-
version = "
|
|
2891
|
+
name = "wasmtime-environ"
|
|
2892
|
+
version = "44.0.3"
|
|
2877
2893
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2878
|
-
checksum = "
|
|
2894
|
+
checksum = "48b945309908f22473ebcd585ac2993948044228491cd96941d367aa81a49c3f"
|
|
2879
2895
|
dependencies = [
|
|
2880
|
-
"
|
|
2896
|
+
"anyhow",
|
|
2897
|
+
"cpp_demangle",
|
|
2898
|
+
"cranelift-bforest",
|
|
2899
|
+
"cranelift-bitset",
|
|
2900
|
+
"cranelift-entity",
|
|
2901
|
+
"gimli",
|
|
2902
|
+
"hashbrown 0.16.1",
|
|
2903
|
+
"indexmap",
|
|
2904
|
+
"log",
|
|
2905
|
+
"object",
|
|
2906
|
+
"postcard",
|
|
2907
|
+
"rustc-demangle",
|
|
2908
|
+
"semver",
|
|
2909
|
+
"serde",
|
|
2910
|
+
"serde_derive",
|
|
2911
|
+
"sha2",
|
|
2912
|
+
"smallvec",
|
|
2913
|
+
"target-lexicon",
|
|
2914
|
+
"wasm-encoder 0.246.2",
|
|
2915
|
+
"wasmparser 0.246.2",
|
|
2916
|
+
"wasmprinter",
|
|
2917
|
+
"wasmtime-internal-component-util",
|
|
2918
|
+
"wasmtime-internal-core",
|
|
2881
2919
|
]
|
|
2882
2920
|
|
|
2883
2921
|
[[package]]
|
|
2884
|
-
name = "wasmtime-cache"
|
|
2885
|
-
version = "
|
|
2922
|
+
name = "wasmtime-internal-cache"
|
|
2923
|
+
version = "44.0.3"
|
|
2886
2924
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2887
|
-
checksum = "
|
|
2925
|
+
checksum = "f14b8b93c2137c88ed84114d9a09cb11cb8bf9394aba4856e48f5304a4f99eec"
|
|
2888
2926
|
dependencies = [
|
|
2889
|
-
"anyhow",
|
|
2890
2927
|
"base64",
|
|
2891
2928
|
"directories-next",
|
|
2892
2929
|
"log",
|
|
2893
2930
|
"postcard",
|
|
2894
|
-
"rustix 1.
|
|
2931
|
+
"rustix 1.1.4",
|
|
2895
2932
|
"serde",
|
|
2896
2933
|
"serde_derive",
|
|
2897
2934
|
"sha2",
|
|
2898
2935
|
"toml",
|
|
2899
|
-
"
|
|
2936
|
+
"wasmtime-environ",
|
|
2937
|
+
"windows-sys 0.61.2",
|
|
2900
2938
|
"zstd",
|
|
2901
2939
|
]
|
|
2902
2940
|
|
|
2903
2941
|
[[package]]
|
|
2904
|
-
name = "wasmtime-component-macro"
|
|
2905
|
-
version = "
|
|
2942
|
+
name = "wasmtime-internal-component-macro"
|
|
2943
|
+
version = "44.0.3"
|
|
2906
2944
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2907
|
-
checksum = "
|
|
2945
|
+
checksum = "7307dec6251a18ffa9df03120d2945ac2476ce150b5b099f39b199e8f81464dc"
|
|
2908
2946
|
dependencies = [
|
|
2909
2947
|
"anyhow",
|
|
2910
2948
|
"proc-macro2",
|
|
2911
2949
|
"quote",
|
|
2912
2950
|
"syn",
|
|
2913
|
-
"wasmtime-component-util",
|
|
2914
|
-
"wasmtime-wit-bindgen",
|
|
2951
|
+
"wasmtime-internal-component-util",
|
|
2952
|
+
"wasmtime-internal-wit-bindgen",
|
|
2915
2953
|
"wit-parser",
|
|
2916
2954
|
]
|
|
2917
2955
|
|
|
2918
2956
|
[[package]]
|
|
2919
|
-
name = "wasmtime-component-util"
|
|
2920
|
-
version = "
|
|
2957
|
+
name = "wasmtime-internal-component-util"
|
|
2958
|
+
version = "44.0.3"
|
|
2921
2959
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2922
|
-
checksum = "
|
|
2960
|
+
checksum = "7a3d899b0270bcf04852f141bd9538cb162a436e7f56b2c6e0f4e57ecc70743a"
|
|
2923
2961
|
|
|
2924
2962
|
[[package]]
|
|
2925
|
-
name = "wasmtime-
|
|
2926
|
-
version = "
|
|
2963
|
+
name = "wasmtime-internal-core"
|
|
2964
|
+
version = "44.0.3"
|
|
2927
2965
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2928
|
-
checksum = "
|
|
2966
|
+
checksum = "aedd3947487d0afdd37accb981466fcd60571e898004c8955111f88686581dfc"
|
|
2929
2967
|
dependencies = [
|
|
2930
2968
|
"anyhow",
|
|
2969
|
+
"hashbrown 0.16.1",
|
|
2970
|
+
"libm",
|
|
2971
|
+
"serde",
|
|
2972
|
+
]
|
|
2973
|
+
|
|
2974
|
+
[[package]]
|
|
2975
|
+
name = "wasmtime-internal-cranelift"
|
|
2976
|
+
version = "44.0.3"
|
|
2977
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2978
|
+
checksum = "512fd846630c064bfc42909eeba90a7d26703b6ded09ad4778ff6afcbdc868dd"
|
|
2979
|
+
dependencies = [
|
|
2931
2980
|
"cfg-if",
|
|
2932
2981
|
"cranelift-codegen",
|
|
2933
2982
|
"cranelift-control",
|
|
@@ -2941,111 +2990,113 @@ dependencies = [
|
|
|
2941
2990
|
"pulley-interpreter",
|
|
2942
2991
|
"smallvec",
|
|
2943
2992
|
"target-lexicon",
|
|
2944
|
-
"thiserror 2.0.
|
|
2945
|
-
"wasmparser 0.
|
|
2993
|
+
"thiserror 2.0.18",
|
|
2994
|
+
"wasmparser 0.246.2",
|
|
2946
2995
|
"wasmtime-environ",
|
|
2947
|
-
"wasmtime-
|
|
2996
|
+
"wasmtime-internal-core",
|
|
2997
|
+
"wasmtime-internal-unwinder",
|
|
2998
|
+
"wasmtime-internal-versioned-export-macros",
|
|
2948
2999
|
]
|
|
2949
3000
|
|
|
2950
3001
|
[[package]]
|
|
2951
|
-
name = "wasmtime-
|
|
2952
|
-
version = "
|
|
3002
|
+
name = "wasmtime-internal-fiber"
|
|
3003
|
+
version = "44.0.3"
|
|
2953
3004
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2954
|
-
checksum = "
|
|
3005
|
+
checksum = "15629ea71394be5812a52cb8fbc6cd039484ab1dd48fce5e1ef58ae89606289a"
|
|
2955
3006
|
dependencies = [
|
|
2956
|
-
"
|
|
2957
|
-
"
|
|
2958
|
-
"
|
|
2959
|
-
"
|
|
2960
|
-
"
|
|
2961
|
-
"
|
|
2962
|
-
"
|
|
2963
|
-
"object",
|
|
2964
|
-
"postcard",
|
|
2965
|
-
"rustc-demangle",
|
|
2966
|
-
"semver",
|
|
2967
|
-
"serde",
|
|
2968
|
-
"serde_derive",
|
|
2969
|
-
"smallvec",
|
|
2970
|
-
"target-lexicon",
|
|
2971
|
-
"wasm-encoder 0.229.0",
|
|
2972
|
-
"wasmparser 0.229.0",
|
|
2973
|
-
"wasmprinter",
|
|
2974
|
-
"wasmtime-component-util",
|
|
3007
|
+
"cc",
|
|
3008
|
+
"cfg-if",
|
|
3009
|
+
"libc",
|
|
3010
|
+
"rustix 1.1.4",
|
|
3011
|
+
"wasmtime-environ",
|
|
3012
|
+
"wasmtime-internal-versioned-export-macros",
|
|
3013
|
+
"windows-sys 0.61.2",
|
|
2975
3014
|
]
|
|
2976
3015
|
|
|
2977
3016
|
[[package]]
|
|
2978
|
-
name = "wasmtime-
|
|
2979
|
-
version = "
|
|
3017
|
+
name = "wasmtime-internal-jit-debug"
|
|
3018
|
+
version = "44.0.3"
|
|
2980
3019
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2981
|
-
checksum = "
|
|
3020
|
+
checksum = "f5fce5fedc1c952a64cdf3c87e4632af072d2aca0bc2c460d53296fb2654757d"
|
|
2982
3021
|
dependencies = [
|
|
2983
|
-
"anyhow",
|
|
2984
3022
|
"cc",
|
|
2985
|
-
"
|
|
2986
|
-
"rustix 1.
|
|
2987
|
-
"wasmtime-
|
|
2988
|
-
"wasmtime-versioned-export-macros",
|
|
2989
|
-
"windows-sys 0.59.0",
|
|
3023
|
+
"object",
|
|
3024
|
+
"rustix 1.1.4",
|
|
3025
|
+
"wasmtime-internal-versioned-export-macros",
|
|
2990
3026
|
]
|
|
2991
3027
|
|
|
2992
3028
|
[[package]]
|
|
2993
|
-
name = "wasmtime-jit-
|
|
2994
|
-
version = "
|
|
3029
|
+
name = "wasmtime-internal-jit-icache-coherence"
|
|
3030
|
+
version = "44.0.3"
|
|
2995
3031
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2996
|
-
checksum = "
|
|
3032
|
+
checksum = "10005b038e662775ac002f233e429447a58892e89918580fa67ce8cdd9192d0a"
|
|
2997
3033
|
dependencies = [
|
|
2998
|
-
"
|
|
2999
|
-
"
|
|
3000
|
-
"
|
|
3001
|
-
"
|
|
3034
|
+
"cfg-if",
|
|
3035
|
+
"libc",
|
|
3036
|
+
"wasmtime-internal-core",
|
|
3037
|
+
"windows-sys 0.61.2",
|
|
3002
3038
|
]
|
|
3003
3039
|
|
|
3004
3040
|
[[package]]
|
|
3005
|
-
name = "wasmtime-
|
|
3006
|
-
version = "
|
|
3041
|
+
name = "wasmtime-internal-unwinder"
|
|
3042
|
+
version = "44.0.3"
|
|
3007
3043
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3008
|
-
checksum = "
|
|
3044
|
+
checksum = "03f3e0f474281b405a3e9d97239f83f643b572324d292e1ef9dc5e3e0ab04c68"
|
|
3009
3045
|
dependencies = [
|
|
3010
|
-
"anyhow",
|
|
3011
3046
|
"cfg-if",
|
|
3012
|
-
"
|
|
3013
|
-
"
|
|
3047
|
+
"cranelift-codegen",
|
|
3048
|
+
"log",
|
|
3049
|
+
"object",
|
|
3050
|
+
"wasmtime-environ",
|
|
3014
3051
|
]
|
|
3015
3052
|
|
|
3016
3053
|
[[package]]
|
|
3017
|
-
name = "wasmtime-
|
|
3018
|
-
version = "
|
|
3054
|
+
name = "wasmtime-internal-versioned-export-macros"
|
|
3055
|
+
version = "44.0.3"
|
|
3019
3056
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3020
|
-
checksum = "
|
|
3057
|
+
checksum = "910e5393af4aca456113581a5913b8d499cd2189013e983f8764d06ebc42b2ed"
|
|
3021
3058
|
dependencies = [
|
|
3022
|
-
"
|
|
3059
|
+
"proc-macro2",
|
|
3060
|
+
"quote",
|
|
3061
|
+
"syn",
|
|
3023
3062
|
]
|
|
3024
3063
|
|
|
3025
3064
|
[[package]]
|
|
3026
|
-
name = "wasmtime-
|
|
3027
|
-
version = "
|
|
3065
|
+
name = "wasmtime-internal-winch"
|
|
3066
|
+
version = "44.0.3"
|
|
3028
3067
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3029
|
-
checksum = "
|
|
3068
|
+
checksum = "55481651bea5b8336fb200fa49914ccf802f5e7617ba9ab0b4691f16d4f97ff8"
|
|
3069
|
+
dependencies = [
|
|
3070
|
+
"cranelift-codegen",
|
|
3071
|
+
"gimli",
|
|
3072
|
+
"log",
|
|
3073
|
+
"object",
|
|
3074
|
+
"target-lexicon",
|
|
3075
|
+
"wasmparser 0.246.2",
|
|
3076
|
+
"wasmtime-environ",
|
|
3077
|
+
"wasmtime-internal-cranelift",
|
|
3078
|
+
"winch-codegen",
|
|
3079
|
+
]
|
|
3030
3080
|
|
|
3031
3081
|
[[package]]
|
|
3032
|
-
name = "wasmtime-
|
|
3033
|
-
version = "
|
|
3082
|
+
name = "wasmtime-internal-wit-bindgen"
|
|
3083
|
+
version = "44.0.3"
|
|
3034
3084
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3035
|
-
checksum = "
|
|
3085
|
+
checksum = "d890c3804d0e46000fa901c86ac1a9fdedf684e72dfd64e582b56bb4a78a6746"
|
|
3036
3086
|
dependencies = [
|
|
3037
|
-
"
|
|
3038
|
-
"
|
|
3039
|
-
"
|
|
3087
|
+
"anyhow",
|
|
3088
|
+
"bitflags",
|
|
3089
|
+
"heck",
|
|
3090
|
+
"indexmap",
|
|
3091
|
+
"wit-parser",
|
|
3040
3092
|
]
|
|
3041
3093
|
|
|
3042
3094
|
[[package]]
|
|
3043
3095
|
name = "wasmtime-wasi"
|
|
3044
|
-
version = "
|
|
3096
|
+
version = "44.0.3"
|
|
3045
3097
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3046
|
-
checksum = "
|
|
3098
|
+
checksum = "5aa7f927779d92863a1447c1d88192b2242080608cb91ece69c177321488948b"
|
|
3047
3099
|
dependencies = [
|
|
3048
|
-
"anyhow",
|
|
3049
3100
|
"async-trait",
|
|
3050
3101
|
"bitflags",
|
|
3051
3102
|
"bytes",
|
|
@@ -3058,60 +3109,31 @@ dependencies = [
|
|
|
3058
3109
|
"futures",
|
|
3059
3110
|
"io-extras",
|
|
3060
3111
|
"io-lifetimes",
|
|
3061
|
-
"rustix 1.
|
|
3112
|
+
"rustix 1.1.4",
|
|
3062
3113
|
"system-interface",
|
|
3063
|
-
"thiserror 2.0.
|
|
3114
|
+
"thiserror 2.0.18",
|
|
3064
3115
|
"tokio",
|
|
3065
3116
|
"tracing",
|
|
3066
3117
|
"url",
|
|
3067
3118
|
"wasmtime",
|
|
3068
3119
|
"wasmtime-wasi-io",
|
|
3069
3120
|
"wiggle",
|
|
3070
|
-
"windows-sys 0.
|
|
3121
|
+
"windows-sys 0.61.2",
|
|
3071
3122
|
]
|
|
3072
3123
|
|
|
3073
3124
|
[[package]]
|
|
3074
3125
|
name = "wasmtime-wasi-io"
|
|
3075
|
-
version = "
|
|
3126
|
+
version = "44.0.3"
|
|
3076
3127
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3077
|
-
checksum = "
|
|
3128
|
+
checksum = "d6fd8b702c2aa82bb4907da5ad44120b4385048f6a20731908a6e2485ea7567e"
|
|
3078
3129
|
dependencies = [
|
|
3079
|
-
"anyhow",
|
|
3080
3130
|
"async-trait",
|
|
3081
3131
|
"bytes",
|
|
3082
3132
|
"futures",
|
|
3133
|
+
"tracing",
|
|
3083
3134
|
"wasmtime",
|
|
3084
3135
|
]
|
|
3085
3136
|
|
|
3086
|
-
[[package]]
|
|
3087
|
-
name = "wasmtime-winch"
|
|
3088
|
-
version = "33.0.2"
|
|
3089
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3090
|
-
checksum = "cbc3b117d03d6eeabfa005a880c5c22c06503bb8820f3aa2e30f0e8d87b6752f"
|
|
3091
|
-
dependencies = [
|
|
3092
|
-
"anyhow",
|
|
3093
|
-
"cranelift-codegen",
|
|
3094
|
-
"gimli",
|
|
3095
|
-
"object",
|
|
3096
|
-
"target-lexicon",
|
|
3097
|
-
"wasmparser 0.229.0",
|
|
3098
|
-
"wasmtime-cranelift",
|
|
3099
|
-
"wasmtime-environ",
|
|
3100
|
-
"winch-codegen",
|
|
3101
|
-
]
|
|
3102
|
-
|
|
3103
|
-
[[package]]
|
|
3104
|
-
name = "wasmtime-wit-bindgen"
|
|
3105
|
-
version = "33.0.2"
|
|
3106
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3107
|
-
checksum = "1382f4f09390eab0d75d4994d0c3b0f6279f86a571807ec67a8253c87cf6a145"
|
|
3108
|
-
dependencies = [
|
|
3109
|
-
"anyhow",
|
|
3110
|
-
"heck",
|
|
3111
|
-
"indexmap",
|
|
3112
|
-
"wit-parser",
|
|
3113
|
-
]
|
|
3114
|
-
|
|
3115
3137
|
[[package]]
|
|
3116
3138
|
name = "wast"
|
|
3117
3139
|
version = "35.0.2"
|
|
@@ -3123,24 +3145,24 @@ dependencies = [
|
|
|
3123
3145
|
|
|
3124
3146
|
[[package]]
|
|
3125
3147
|
name = "wast"
|
|
3126
|
-
version = "
|
|
3148
|
+
version = "252.0.0"
|
|
3127
3149
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3128
|
-
checksum = "
|
|
3150
|
+
checksum = "942a3449d6a593fccc111a6241c8df52bda168af30e40bf9580d4394d7374c65"
|
|
3129
3151
|
dependencies = [
|
|
3130
3152
|
"bumpalo",
|
|
3131
3153
|
"leb128fmt",
|
|
3132
3154
|
"memchr",
|
|
3133
3155
|
"unicode-width",
|
|
3134
|
-
"wasm-encoder 0.
|
|
3156
|
+
"wasm-encoder 0.252.0",
|
|
3135
3157
|
]
|
|
3136
3158
|
|
|
3137
3159
|
[[package]]
|
|
3138
3160
|
name = "wat"
|
|
3139
|
-
version = "1.
|
|
3161
|
+
version = "1.252.0"
|
|
3140
3162
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3141
|
-
checksum = "
|
|
3163
|
+
checksum = "c72a4ba7088f7bac94cf516e49882bdf97068904a563768cf249efc839ec42cb"
|
|
3142
3164
|
dependencies = [
|
|
3143
|
-
"wast
|
|
3165
|
+
"wast 252.0.0",
|
|
3144
3166
|
]
|
|
3145
3167
|
|
|
3146
3168
|
[[package]]
|
|
@@ -3155,38 +3177,37 @@ dependencies = [
|
|
|
3155
3177
|
|
|
3156
3178
|
[[package]]
|
|
3157
3179
|
name = "wiggle"
|
|
3158
|
-
version = "
|
|
3180
|
+
version = "44.0.3"
|
|
3159
3181
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3160
|
-
checksum = "
|
|
3182
|
+
checksum = "165512f7870210d0fd45911990b832782b5fb82d40f4ce28cf86b40aaecd453c"
|
|
3161
3183
|
dependencies = [
|
|
3162
|
-
"anyhow",
|
|
3163
|
-
"async-trait",
|
|
3164
3184
|
"bitflags",
|
|
3165
|
-
"thiserror 2.0.
|
|
3185
|
+
"thiserror 2.0.18",
|
|
3166
3186
|
"tracing",
|
|
3167
3187
|
"wasmtime",
|
|
3188
|
+
"wasmtime-environ",
|
|
3168
3189
|
"wiggle-macro",
|
|
3169
3190
|
]
|
|
3170
3191
|
|
|
3171
3192
|
[[package]]
|
|
3172
3193
|
name = "wiggle-generate"
|
|
3173
|
-
version = "
|
|
3194
|
+
version = "44.0.3"
|
|
3174
3195
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3175
|
-
checksum = "
|
|
3196
|
+
checksum = "f7f63d06fdf2e9a133407b318574574f66ea6590ea7a42c4a7554c029824454a"
|
|
3176
3197
|
dependencies = [
|
|
3177
|
-
"anyhow",
|
|
3178
3198
|
"heck",
|
|
3179
3199
|
"proc-macro2",
|
|
3180
3200
|
"quote",
|
|
3181
3201
|
"syn",
|
|
3202
|
+
"wasmtime-environ",
|
|
3182
3203
|
"witx",
|
|
3183
3204
|
]
|
|
3184
3205
|
|
|
3185
3206
|
[[package]]
|
|
3186
3207
|
name = "wiggle-macro"
|
|
3187
|
-
version = "
|
|
3208
|
+
version = "44.0.3"
|
|
3188
3209
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3189
|
-
checksum = "
|
|
3210
|
+
checksum = "1b976b7285ca32a637e21721021442691a2d7938ab4650cb99472a672e9def6c"
|
|
3190
3211
|
dependencies = [
|
|
3191
3212
|
"proc-macro2",
|
|
3192
3213
|
"quote",
|
|
@@ -3227,21 +3248,21 @@ checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f"
|
|
|
3227
3248
|
|
|
3228
3249
|
[[package]]
|
|
3229
3250
|
name = "winch-codegen"
|
|
3230
|
-
version = "
|
|
3251
|
+
version = "44.0.3"
|
|
3231
3252
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3232
|
-
checksum = "
|
|
3253
|
+
checksum = "436a7fa4109b13b0e555d01ec615ab8b928b7834639aca7b2fdc1f55d70a1f0c"
|
|
3233
3254
|
dependencies = [
|
|
3234
|
-
"anyhow",
|
|
3235
3255
|
"cranelift-assembler-x64",
|
|
3236
3256
|
"cranelift-codegen",
|
|
3237
3257
|
"gimli",
|
|
3238
3258
|
"regalloc2",
|
|
3239
3259
|
"smallvec",
|
|
3240
3260
|
"target-lexicon",
|
|
3241
|
-
"thiserror 2.0.
|
|
3242
|
-
"wasmparser 0.
|
|
3243
|
-
"wasmtime-cranelift",
|
|
3261
|
+
"thiserror 2.0.18",
|
|
3262
|
+
"wasmparser 0.246.2",
|
|
3244
3263
|
"wasmtime-environ",
|
|
3264
|
+
"wasmtime-internal-core",
|
|
3265
|
+
"wasmtime-internal-cranelift",
|
|
3245
3266
|
]
|
|
3246
3267
|
|
|
3247
3268
|
[[package]]
|
|
@@ -3252,7 +3273,7 @@ checksum = "4763c1de310c86d75a878046489e2e5ba02c649d185f21c67d4cf8a56d098980"
|
|
|
3252
3273
|
dependencies = [
|
|
3253
3274
|
"windows-implement",
|
|
3254
3275
|
"windows-interface",
|
|
3255
|
-
"windows-link",
|
|
3276
|
+
"windows-link 0.1.1",
|
|
3256
3277
|
"windows-result",
|
|
3257
3278
|
"windows-strings 0.4.0",
|
|
3258
3279
|
]
|
|
@@ -3285,6 +3306,12 @@ version = "0.1.1"
|
|
|
3285
3306
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3286
3307
|
checksum = "76840935b766e1b0a05c0066835fb9ec80071d4c09a16f6bd5f7e655e3c14c38"
|
|
3287
3308
|
|
|
3309
|
+
[[package]]
|
|
3310
|
+
name = "windows-link"
|
|
3311
|
+
version = "0.2.1"
|
|
3312
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3313
|
+
checksum = "f0805222e57f7521d6a62e36fa9163bc891acd422f971defe97d64e70d0a4fe5"
|
|
3314
|
+
|
|
3288
3315
|
[[package]]
|
|
3289
3316
|
name = "windows-registry"
|
|
3290
3317
|
version = "0.4.0"
|
|
@@ -3302,7 +3329,7 @@ version = "0.3.2"
|
|
|
3302
3329
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3303
3330
|
checksum = "c64fd11a4fd95df68efcfee5f44a294fe71b8bc6a91993e2791938abcc712252"
|
|
3304
3331
|
dependencies = [
|
|
3305
|
-
"windows-link",
|
|
3332
|
+
"windows-link 0.1.1",
|
|
3306
3333
|
]
|
|
3307
3334
|
|
|
3308
3335
|
[[package]]
|
|
@@ -3311,7 +3338,7 @@ version = "0.3.1"
|
|
|
3311
3338
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3312
3339
|
checksum = "87fa48cc5d406560701792be122a10132491cff9d0aeb23583cc2dcafc847319"
|
|
3313
3340
|
dependencies = [
|
|
3314
|
-
"windows-link",
|
|
3341
|
+
"windows-link 0.1.1",
|
|
3315
3342
|
]
|
|
3316
3343
|
|
|
3317
3344
|
[[package]]
|
|
@@ -3320,7 +3347,7 @@ version = "0.4.0"
|
|
|
3320
3347
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3321
3348
|
checksum = "7a2ba9642430ee452d5a7aa78d72907ebe8cfda358e8cb7918a2050581322f97"
|
|
3322
3349
|
dependencies = [
|
|
3323
|
-
"windows-link",
|
|
3350
|
+
"windows-link 0.1.1",
|
|
3324
3351
|
]
|
|
3325
3352
|
|
|
3326
3353
|
[[package]]
|
|
@@ -3341,6 +3368,15 @@ dependencies = [
|
|
|
3341
3368
|
"windows-targets 0.52.6",
|
|
3342
3369
|
]
|
|
3343
3370
|
|
|
3371
|
+
[[package]]
|
|
3372
|
+
name = "windows-sys"
|
|
3373
|
+
version = "0.61.2"
|
|
3374
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3375
|
+
checksum = "ae137229bcbd6cdf0f7b80a31df61766145077ddf49416a728b02cb3921ff3fc"
|
|
3376
|
+
dependencies = [
|
|
3377
|
+
"windows-link 0.2.1",
|
|
3378
|
+
]
|
|
3379
|
+
|
|
3344
3380
|
[[package]]
|
|
3345
3381
|
name = "windows-targets"
|
|
3346
3382
|
version = "0.52.6"
|
|
@@ -3471,12 +3507,9 @@ checksum = "271414315aff87387382ec3d271b52d7ae78726f5d44ac98b4f4030c91880486"
|
|
|
3471
3507
|
|
|
3472
3508
|
[[package]]
|
|
3473
3509
|
name = "winnow"
|
|
3474
|
-
version = "0.7.
|
|
3510
|
+
version = "0.7.15"
|
|
3475
3511
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3476
|
-
checksum = "
|
|
3477
|
-
dependencies = [
|
|
3478
|
-
"memchr",
|
|
3479
|
-
]
|
|
3512
|
+
checksum = "df79d97927682d2fd8adb29682d1140b343be4ac0f08fd68b7765d9c059d3945"
|
|
3480
3513
|
|
|
3481
3514
|
[[package]]
|
|
3482
3515
|
name = "winx"
|
|
@@ -3499,11 +3532,12 @@ dependencies = [
|
|
|
3499
3532
|
|
|
3500
3533
|
[[package]]
|
|
3501
3534
|
name = "wit-parser"
|
|
3502
|
-
version = "0.
|
|
3535
|
+
version = "0.246.2"
|
|
3503
3536
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3504
|
-
checksum = "
|
|
3537
|
+
checksum = "fd979042b5ff288607ccf3b314145435453f20fc67173195f91062d2289b204d"
|
|
3505
3538
|
dependencies = [
|
|
3506
3539
|
"anyhow",
|
|
3540
|
+
"hashbrown 0.16.1",
|
|
3507
3541
|
"id-arena",
|
|
3508
3542
|
"indexmap",
|
|
3509
3543
|
"log",
|
|
@@ -3512,7 +3546,7 @@ dependencies = [
|
|
|
3512
3546
|
"serde_derive",
|
|
3513
3547
|
"serde_json",
|
|
3514
3548
|
"unicode-xid",
|
|
3515
|
-
"wasmparser 0.
|
|
3549
|
+
"wasmparser 0.246.2",
|
|
3516
3550
|
]
|
|
3517
3551
|
|
|
3518
3552
|
[[package]]
|