ruby_wasm 2.5.0.pre.1 → 2.5.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/CONTRIBUTING.md +10 -6
- data/Cargo.lock +625 -456
- data/Gemfile +1 -1
- data/README.md +8 -15
- data/Rakefile +2 -3
- data/benchmarks/vm_deep_call.rb +2 -2
- data/builders/wasm32-unknown-emscripten/Dockerfile +1 -1
- data/builders/wasm32-unknown-wasi/Dockerfile +1 -1
- data/docs/cheat_sheet.md +8 -8
- data/ext/ruby_wasm/Cargo.toml +3 -4
- data/ext/ruby_wasm/src/lib.rs +11 -0
- data/lib/ruby_wasm/build/product/crossruby.rb +4 -0
- data/lib/ruby_wasm/build/product/wasi_vfs.rb +0 -38
- data/lib/ruby_wasm/build/product/zlib.rb +2 -2
- data/lib/ruby_wasm/cli.rb +24 -2
- data/lib/ruby_wasm/packager/file_system.rb +15 -14
- data/lib/ruby_wasm/packager.rb +2 -2
- data/lib/ruby_wasm/rake_task.rb +1 -0
- data/lib/ruby_wasm/version.rb +1 -1
- data/package-lock.json +5 -5
- data/{tasks → rakelib}/doc.rake +6 -1
- data/{tasks → rakelib}/format.rake +3 -2
- data/{tasks → rakelib}/gem.rake +4 -1
- data/{tasks → rakelib}/packaging.rake +8 -5
- data/{tasks → rakelib}/version.rake +2 -0
- data/sig/ruby_wasm/build.rbs +0 -4
- data/sig/ruby_wasm/cli.rbs +3 -0
- data/sig/ruby_wasm/ext.rbs +3 -1
- metadata +9 -10
- data/ruby_wasm.gemspec +0 -32
- /data/{tasks → rakelib}/check.rake +0 -0
- /data/{tasks → rakelib}/ci.rake +0 -0
data/Cargo.lock
CHANGED
@@ -4,13 +4,19 @@ version = 3
|
|
4
4
|
|
5
5
|
[[package]]
|
6
6
|
name = "addr2line"
|
7
|
-
version = "0.
|
7
|
+
version = "0.21.0"
|
8
8
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
9
|
-
checksum = "
|
9
|
+
checksum = "8a30b2e23b9e17a9f90641c7ab1549cd9b44f296d3ccbf309d2863cfe398a0cb"
|
10
10
|
dependencies = [
|
11
11
|
"gimli",
|
12
12
|
]
|
13
13
|
|
14
|
+
[[package]]
|
15
|
+
name = "adler"
|
16
|
+
version = "1.0.2"
|
17
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
18
|
+
checksum = "f26201604c87b1e01bd3d98f8d5d9a8fcbb815e8cedb41ffccbeb4bf593a35fe"
|
19
|
+
|
14
20
|
[[package]]
|
15
21
|
name = "ahash"
|
16
22
|
version = "0.8.7"
|
@@ -34,15 +40,18 @@ dependencies = [
|
|
34
40
|
|
35
41
|
[[package]]
|
36
42
|
name = "ambient-authority"
|
37
|
-
version = "0.0.
|
43
|
+
version = "0.0.2"
|
38
44
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
39
|
-
checksum = "
|
45
|
+
checksum = "e9d4ee0d472d1cd2e28c97dfa124b3d8d992e10eb0a035f33f5d12e3a177ba3b"
|
40
46
|
|
41
47
|
[[package]]
|
42
|
-
name = "
|
43
|
-
version = "0.
|
48
|
+
name = "android_system_properties"
|
49
|
+
version = "0.1.5"
|
44
50
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
45
|
-
checksum = "
|
51
|
+
checksum = "819e7219dbd41043ac279b19830f2efc897156490d7fd6ea916720117ee66311"
|
52
|
+
dependencies = [
|
53
|
+
"libc",
|
54
|
+
]
|
46
55
|
|
47
56
|
[[package]]
|
48
57
|
name = "ansi_term"
|
@@ -55,9 +64,9 @@ dependencies = [
|
|
55
64
|
|
56
65
|
[[package]]
|
57
66
|
name = "anyhow"
|
58
|
-
version = "1.0.
|
67
|
+
version = "1.0.79"
|
59
68
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
60
|
-
checksum = "
|
69
|
+
checksum = "080e9890a082662b09c1ad45f567faeeb47f22b5fb23895fbe1e651e718e25ca"
|
61
70
|
|
62
71
|
[[package]]
|
63
72
|
name = "arbitrary"
|
@@ -67,13 +76,13 @@ checksum = "7d5a26814d8dcb93b0e5a0ff3c6d80a8843bafb21b39e8e18a6f05471870e110"
|
|
67
76
|
|
68
77
|
[[package]]
|
69
78
|
name = "async-trait"
|
70
|
-
version = "0.1.
|
79
|
+
version = "0.1.77"
|
71
80
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
72
|
-
checksum = "
|
81
|
+
checksum = "c980ee35e870bd1a4d2c8294d4c04d0499e67bca1e4b5cefcc693c2fa00caea9"
|
73
82
|
dependencies = [
|
74
83
|
"proc-macro2",
|
75
84
|
"quote",
|
76
|
-
"syn 2.0.
|
85
|
+
"syn 2.0.48",
|
77
86
|
]
|
78
87
|
|
79
88
|
[[package]]
|
@@ -93,6 +102,21 @@ version = "1.1.0"
|
|
93
102
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
94
103
|
checksum = "d468802bab17cbc0cc575e9b053f41e72aa36bfa6b7f55e3529ffa43161b97fa"
|
95
104
|
|
105
|
+
[[package]]
|
106
|
+
name = "backtrace"
|
107
|
+
version = "0.3.69"
|
108
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
109
|
+
checksum = "2089b7e3f35b9dd2d0ed921ead4f6d318c27680d4a5bd167b3ee120edb105837"
|
110
|
+
dependencies = [
|
111
|
+
"addr2line",
|
112
|
+
"cc",
|
113
|
+
"cfg-if",
|
114
|
+
"libc",
|
115
|
+
"miniz_oxide",
|
116
|
+
"object",
|
117
|
+
"rustc-demangle",
|
118
|
+
]
|
119
|
+
|
96
120
|
[[package]]
|
97
121
|
name = "base64"
|
98
122
|
version = "0.21.5"
|
@@ -125,7 +149,7 @@ dependencies = [
|
|
125
149
|
"regex",
|
126
150
|
"rustc-hash",
|
127
151
|
"shlex",
|
128
|
-
"syn 2.0.
|
152
|
+
"syn 2.0.48",
|
129
153
|
]
|
130
154
|
|
131
155
|
[[package]]
|
@@ -161,99 +185,87 @@ version = "1.5.0"
|
|
161
185
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
162
186
|
checksum = "1fd0f2584146f6f2ef48085050886acf353beff7305ebd1ae69500e27c67f64b"
|
163
187
|
|
188
|
+
[[package]]
|
189
|
+
name = "bytes"
|
190
|
+
version = "1.5.0"
|
191
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
192
|
+
checksum = "a2bd12c1caf447e69cd4528f47f94d203fd2582878ecb9e9465484c4148a8223"
|
193
|
+
|
164
194
|
[[package]]
|
165
195
|
name = "cap-fs-ext"
|
166
|
-
version = "
|
196
|
+
version = "2.0.1"
|
167
197
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
168
|
-
checksum = "
|
198
|
+
checksum = "88e341d15ac1029aadce600be764a1a1edafe40e03cde23285bc1d261b3a4866"
|
169
199
|
dependencies = [
|
170
|
-
"cap-primitives
|
171
|
-
"cap-std
|
172
|
-
"io-lifetimes
|
173
|
-
"windows-sys 0.
|
200
|
+
"cap-primitives",
|
201
|
+
"cap-std",
|
202
|
+
"io-lifetimes",
|
203
|
+
"windows-sys 0.52.0",
|
174
204
|
]
|
175
205
|
|
176
206
|
[[package]]
|
177
|
-
name = "cap-
|
178
|
-
version = "0.
|
207
|
+
name = "cap-net-ext"
|
208
|
+
version = "2.0.1"
|
179
209
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
180
|
-
checksum = "
|
210
|
+
checksum = "434168fe6533055f0f4204039abe3ff6d7db338ef46872a5fa39e9d5ad5ab7a9"
|
181
211
|
dependencies = [
|
182
|
-
"
|
183
|
-
"
|
184
|
-
"
|
185
|
-
"
|
186
|
-
"io-lifetimes 0.5.3",
|
187
|
-
"ipnet",
|
188
|
-
"maybe-owned",
|
189
|
-
"rustix 0.33.7",
|
190
|
-
"winapi",
|
191
|
-
"winapi-util",
|
192
|
-
"winx 0.31.0",
|
212
|
+
"cap-primitives",
|
213
|
+
"cap-std",
|
214
|
+
"rustix",
|
215
|
+
"smallvec",
|
193
216
|
]
|
194
217
|
|
195
218
|
[[package]]
|
196
219
|
name = "cap-primitives"
|
197
|
-
version = "
|
220
|
+
version = "2.0.1"
|
198
221
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
199
|
-
checksum = "
|
222
|
+
checksum = "fe16767ed8eee6d3f1f00d6a7576b81c226ab917eb54b96e5f77a5216ef67abb"
|
200
223
|
dependencies = [
|
201
|
-
"ambient-authority
|
202
|
-
"fs-set-times
|
203
|
-
"io-extras
|
204
|
-
"io-lifetimes
|
224
|
+
"ambient-authority",
|
225
|
+
"fs-set-times",
|
226
|
+
"io-extras",
|
227
|
+
"io-lifetimes",
|
205
228
|
"ipnet",
|
206
229
|
"maybe-owned",
|
207
|
-
"rustix
|
208
|
-
"windows-sys 0.
|
209
|
-
"winx
|
230
|
+
"rustix",
|
231
|
+
"windows-sys 0.52.0",
|
232
|
+
"winx",
|
210
233
|
]
|
211
234
|
|
212
235
|
[[package]]
|
213
236
|
name = "cap-rand"
|
214
|
-
version = "
|
237
|
+
version = "2.0.1"
|
215
238
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
216
|
-
checksum = "
|
239
|
+
checksum = "20e5695565f0cd7106bc3c7170323597540e772bb73e0be2cd2c662a0f8fa4ca"
|
217
240
|
dependencies = [
|
218
|
-
"ambient-authority
|
241
|
+
"ambient-authority",
|
219
242
|
"rand",
|
220
243
|
]
|
221
244
|
|
222
245
|
[[package]]
|
223
246
|
name = "cap-std"
|
224
|
-
version = "0.
|
247
|
+
version = "2.0.1"
|
225
248
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
226
|
-
checksum = "
|
249
|
+
checksum = "593db20e4c51f62d3284bae7ee718849c3214f93a3b94ea1899ad85ba119d330"
|
227
250
|
dependencies = [
|
228
|
-
"cap-primitives
|
229
|
-
"io-extras
|
230
|
-
"io-lifetimes
|
231
|
-
"
|
232
|
-
"rustix 0.33.7",
|
233
|
-
]
|
234
|
-
|
235
|
-
[[package]]
|
236
|
-
name = "cap-std"
|
237
|
-
version = "1.0.15"
|
238
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
239
|
-
checksum = "3373a62accd150b4fcba056d4c5f3b552127f0ec86d3c8c102d60b978174a012"
|
240
|
-
dependencies = [
|
241
|
-
"cap-primitives 1.0.15",
|
242
|
-
"io-extras 0.17.4",
|
243
|
-
"io-lifetimes 1.0.11",
|
244
|
-
"rustix 0.37.27",
|
251
|
+
"cap-primitives",
|
252
|
+
"io-extras",
|
253
|
+
"io-lifetimes",
|
254
|
+
"rustix",
|
245
255
|
]
|
246
256
|
|
247
257
|
[[package]]
|
248
258
|
name = "cap-time-ext"
|
249
|
-
version = "
|
259
|
+
version = "2.0.1"
|
250
260
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
251
|
-
checksum = "
|
261
|
+
checksum = "03261630f291f425430a36f38c847828265bc928f517cdd2004c56f4b02f002b"
|
252
262
|
dependencies = [
|
253
|
-
"
|
263
|
+
"ambient-authority",
|
264
|
+
"cap-primitives",
|
265
|
+
"iana-time-zone",
|
254
266
|
"once_cell",
|
255
|
-
"rustix
|
256
|
-
"winx
|
267
|
+
"rustix",
|
268
|
+
"winx",
|
257
269
|
]
|
258
270
|
|
259
271
|
[[package]]
|
@@ -283,9 +295,9 @@ checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd"
|
|
283
295
|
|
284
296
|
[[package]]
|
285
297
|
name = "clang-sys"
|
286
|
-
version = "1.
|
298
|
+
version = "1.7.0"
|
287
299
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
288
|
-
checksum = "
|
300
|
+
checksum = "67523a3b4be3ce1989d607a828d036249522dd9c1c8de7f4dd2dae43a37369d1"
|
289
301
|
dependencies = [
|
290
302
|
"glob",
|
291
303
|
"libc",
|
@@ -307,6 +319,12 @@ dependencies = [
|
|
307
319
|
"vec_map",
|
308
320
|
]
|
309
321
|
|
322
|
+
[[package]]
|
323
|
+
name = "core-foundation-sys"
|
324
|
+
version = "0.8.6"
|
325
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
326
|
+
checksum = "06ea2b9bc92be3c2baa9334a323ebca2d6f074ff852cd1d7b11064035cd3868f"
|
327
|
+
|
310
328
|
[[package]]
|
311
329
|
name = "cpp_demangle"
|
312
330
|
version = "0.3.5"
|
@@ -318,27 +336,27 @@ dependencies = [
|
|
318
336
|
|
319
337
|
[[package]]
|
320
338
|
name = "cpufeatures"
|
321
|
-
version = "0.2.
|
339
|
+
version = "0.2.12"
|
322
340
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
323
|
-
checksum = "
|
341
|
+
checksum = "53fe5e26ff1b7aef8bca9c6080520cfb8d9333c7568e1829cef191a9723e5504"
|
324
342
|
dependencies = [
|
325
343
|
"libc",
|
326
344
|
]
|
327
345
|
|
328
346
|
[[package]]
|
329
347
|
name = "cranelift-bforest"
|
330
|
-
version = "0.
|
348
|
+
version = "0.103.0"
|
331
349
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
332
|
-
checksum = "
|
350
|
+
checksum = "7c22542c0b95bd3302f7ed6839869c561f2324bac2fd5e7e99f5cfa65fdc8b92"
|
333
351
|
dependencies = [
|
334
352
|
"cranelift-entity",
|
335
353
|
]
|
336
354
|
|
337
355
|
[[package]]
|
338
356
|
name = "cranelift-codegen"
|
339
|
-
version = "0.
|
357
|
+
version = "0.103.0"
|
340
358
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
341
|
-
checksum = "
|
359
|
+
checksum = "6b3db903ef2e9c8a4de2ea6db5db052c7857282952f9df604aa55d169e6000d8"
|
342
360
|
dependencies = [
|
343
361
|
"bumpalo",
|
344
362
|
"cranelift-bforest",
|
@@ -348,7 +366,7 @@ dependencies = [
|
|
348
366
|
"cranelift-entity",
|
349
367
|
"cranelift-isle",
|
350
368
|
"gimli",
|
351
|
-
"hashbrown 0.
|
369
|
+
"hashbrown 0.14.3",
|
352
370
|
"log",
|
353
371
|
"regalloc2",
|
354
372
|
"smallvec",
|
@@ -357,42 +375,43 @@ dependencies = [
|
|
357
375
|
|
358
376
|
[[package]]
|
359
377
|
name = "cranelift-codegen-meta"
|
360
|
-
version = "0.
|
378
|
+
version = "0.103.0"
|
361
379
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
362
|
-
checksum = "
|
380
|
+
checksum = "6590feb5a1d6438f974bf6a5ac4dddf69fca14e1f07f3265d880f69e61a94463"
|
363
381
|
dependencies = [
|
364
382
|
"cranelift-codegen-shared",
|
365
383
|
]
|
366
384
|
|
367
385
|
[[package]]
|
368
386
|
name = "cranelift-codegen-shared"
|
369
|
-
version = "0.
|
387
|
+
version = "0.103.0"
|
370
388
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
371
|
-
checksum = "
|
389
|
+
checksum = "7239038c56fafe77fddc8788fc8533dd6c474dc5bdc5637216404f41ba807330"
|
372
390
|
|
373
391
|
[[package]]
|
374
392
|
name = "cranelift-control"
|
375
|
-
version = "0.
|
393
|
+
version = "0.103.0"
|
376
394
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
377
|
-
checksum = "
|
395
|
+
checksum = "f7dc9c595341404d381d27a3d950160856b35b402275f0c3990cd1ad683c8053"
|
378
396
|
dependencies = [
|
379
397
|
"arbitrary",
|
380
398
|
]
|
381
399
|
|
382
400
|
[[package]]
|
383
401
|
name = "cranelift-entity"
|
384
|
-
version = "0.
|
402
|
+
version = "0.103.0"
|
385
403
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
386
|
-
checksum = "
|
404
|
+
checksum = "44e3ee532fc4776c69bcedf7e62f9632cbb3f35776fa9a525cdade3195baa3f7"
|
387
405
|
dependencies = [
|
388
406
|
"serde",
|
407
|
+
"serde_derive",
|
389
408
|
]
|
390
409
|
|
391
410
|
[[package]]
|
392
411
|
name = "cranelift-frontend"
|
393
|
-
version = "0.
|
412
|
+
version = "0.103.0"
|
394
413
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
395
|
-
checksum = "
|
414
|
+
checksum = "a612c94d09e653662ec37681dc2d6fd2b9856e6df7147be0afc9aabb0abf19df"
|
396
415
|
dependencies = [
|
397
416
|
"cranelift-codegen",
|
398
417
|
"log",
|
@@ -402,15 +421,15 @@ dependencies = [
|
|
402
421
|
|
403
422
|
[[package]]
|
404
423
|
name = "cranelift-isle"
|
405
|
-
version = "0.
|
424
|
+
version = "0.103.0"
|
406
425
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
407
|
-
checksum = "
|
426
|
+
checksum = "85db9830abeb1170b7d29b536ffd55af1d4d26ac8a77570b5d1aca003bf225cc"
|
408
427
|
|
409
428
|
[[package]]
|
410
429
|
name = "cranelift-native"
|
411
|
-
version = "0.
|
430
|
+
version = "0.103.0"
|
412
431
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
413
|
-
checksum = "
|
432
|
+
checksum = "301ef0edafeaeda5771a5d2db64ac53e1818ae3111220a185677025fe91db4a1"
|
414
433
|
dependencies = [
|
415
434
|
"cranelift-codegen",
|
416
435
|
"libc",
|
@@ -419,9 +438,9 @@ dependencies = [
|
|
419
438
|
|
420
439
|
[[package]]
|
421
440
|
name = "cranelift-wasm"
|
422
|
-
version = "0.
|
441
|
+
version = "0.103.0"
|
423
442
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
424
|
-
checksum = "
|
443
|
+
checksum = "380f0abe8264e4570ac615fc31cef32a3b90a77f7eb97b08331f9dd357b1f500"
|
425
444
|
dependencies = [
|
426
445
|
"cranelift-codegen",
|
427
446
|
"cranelift-entity",
|
@@ -429,7 +448,7 @@ dependencies = [
|
|
429
448
|
"itertools",
|
430
449
|
"log",
|
431
450
|
"smallvec",
|
432
|
-
"wasmparser 0.
|
451
|
+
"wasmparser 0.118.1",
|
433
452
|
"wasmtime-types",
|
434
453
|
]
|
435
454
|
|
@@ -550,28 +569,19 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
550
569
|
checksum = "a26ae43d7bcc3b814de94796a5e736d4029efb0ee900c12e2d54c993ad1a1e07"
|
551
570
|
|
552
571
|
[[package]]
|
553
|
-
name = "
|
554
|
-
version = "0.
|
572
|
+
name = "encoding_rs"
|
573
|
+
version = "0.8.33"
|
555
574
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
556
|
-
checksum = "
|
575
|
+
checksum = "7268b386296a025e474d5140678f75d6de9493ae55a5d709eeb9dd08149945e1"
|
557
576
|
dependencies = [
|
558
|
-
"
|
559
|
-
"is-terminal",
|
560
|
-
"log",
|
561
|
-
"regex",
|
562
|
-
"termcolor",
|
577
|
+
"cfg-if",
|
563
578
|
]
|
564
579
|
|
565
580
|
[[package]]
|
566
|
-
name = "
|
567
|
-
version = "0.
|
581
|
+
name = "equivalent"
|
582
|
+
version = "1.0.1"
|
568
583
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
569
|
-
checksum = "
|
570
|
-
dependencies = [
|
571
|
-
"errno-dragonfly",
|
572
|
-
"libc",
|
573
|
-
"winapi",
|
574
|
-
]
|
584
|
+
checksum = "5443807d6dff69373d433ab9ef5378ad8df50ca6298caf15de6e52e24aaf54d5"
|
575
585
|
|
576
586
|
[[package]]
|
577
587
|
name = "errno"
|
@@ -583,21 +593,11 @@ dependencies = [
|
|
583
593
|
"windows-sys 0.52.0",
|
584
594
|
]
|
585
595
|
|
586
|
-
[[package]]
|
587
|
-
name = "errno-dragonfly"
|
588
|
-
version = "0.1.2"
|
589
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
590
|
-
checksum = "aa68f1b12764fab894d2755d2518754e71b4fd80ecfb822714a1206c2aab39bf"
|
591
|
-
dependencies = [
|
592
|
-
"cc",
|
593
|
-
"libc",
|
594
|
-
]
|
595
|
-
|
596
596
|
[[package]]
|
597
597
|
name = "fallible-iterator"
|
598
|
-
version = "0.
|
598
|
+
version = "0.3.0"
|
599
599
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
600
|
-
checksum = "
|
600
|
+
checksum = "2acce4a10f12dc2fb14a218589d4f1f62ef011b2d0cc4b3cb1bba8e94da14649"
|
601
601
|
|
602
602
|
[[package]]
|
603
603
|
name = "fd-lock"
|
@@ -606,20 +606,10 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
606
606
|
checksum = "7e5768da2206272c81ef0b5e951a41862938a6070da63bcea197899942d3b947"
|
607
607
|
dependencies = [
|
608
608
|
"cfg-if",
|
609
|
-
"rustix
|
609
|
+
"rustix",
|
610
610
|
"windows-sys 0.52.0",
|
611
611
|
]
|
612
612
|
|
613
|
-
[[package]]
|
614
|
-
name = "file-per-thread-logger"
|
615
|
-
version = "0.1.6"
|
616
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
617
|
-
checksum = "84f2e425d9790201ba4af4630191feac6dcc98765b118d4d18e91d23c2353866"
|
618
|
-
dependencies = [
|
619
|
-
"env_logger",
|
620
|
-
"log",
|
621
|
-
]
|
622
|
-
|
623
613
|
[[package]]
|
624
614
|
name = "form_urlencoded"
|
625
615
|
version = "1.2.1"
|
@@ -631,24 +621,74 @@ dependencies = [
|
|
631
621
|
|
632
622
|
[[package]]
|
633
623
|
name = "fs-set-times"
|
634
|
-
version = "0.
|
624
|
+
version = "0.20.1"
|
635
625
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
636
|
-
checksum = "
|
626
|
+
checksum = "033b337d725b97690d86893f9de22b67b80dcc4e9ad815f348254c38119db8fb"
|
637
627
|
dependencies = [
|
638
|
-
"io-lifetimes
|
639
|
-
"rustix
|
640
|
-
"
|
628
|
+
"io-lifetimes",
|
629
|
+
"rustix",
|
630
|
+
"windows-sys 0.52.0",
|
641
631
|
]
|
642
632
|
|
643
633
|
[[package]]
|
644
|
-
name = "
|
645
|
-
version = "0.
|
634
|
+
name = "futures"
|
635
|
+
version = "0.3.30"
|
646
636
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
647
|
-
checksum = "
|
637
|
+
checksum = "645c6916888f6cb6350d2550b80fb63e734897a8498abe35cfb732b6487804b0"
|
648
638
|
dependencies = [
|
649
|
-
"
|
650
|
-
"
|
651
|
-
"
|
639
|
+
"futures-channel",
|
640
|
+
"futures-core",
|
641
|
+
"futures-io",
|
642
|
+
"futures-sink",
|
643
|
+
"futures-task",
|
644
|
+
"futures-util",
|
645
|
+
]
|
646
|
+
|
647
|
+
[[package]]
|
648
|
+
name = "futures-channel"
|
649
|
+
version = "0.3.30"
|
650
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
651
|
+
checksum = "eac8f7d7865dcb88bd4373ab671c8cf4508703796caa2b1985a9ca867b3fcb78"
|
652
|
+
dependencies = [
|
653
|
+
"futures-core",
|
654
|
+
"futures-sink",
|
655
|
+
]
|
656
|
+
|
657
|
+
[[package]]
|
658
|
+
name = "futures-core"
|
659
|
+
version = "0.3.30"
|
660
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
661
|
+
checksum = "dfc6580bb841c5a68e9ef15c77ccc837b40a7504914d52e47b8b0e9bbda25a1d"
|
662
|
+
|
663
|
+
[[package]]
|
664
|
+
name = "futures-io"
|
665
|
+
version = "0.3.30"
|
666
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
667
|
+
checksum = "a44623e20b9681a318efdd71c299b6b222ed6f231972bfe2f224ebad6311f0c1"
|
668
|
+
|
669
|
+
[[package]]
|
670
|
+
name = "futures-sink"
|
671
|
+
version = "0.3.30"
|
672
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
673
|
+
checksum = "9fb8e00e87438d937621c1c6269e53f536c14d3fbd6a042bb24879e57d474fb5"
|
674
|
+
|
675
|
+
[[package]]
|
676
|
+
name = "futures-task"
|
677
|
+
version = "0.3.30"
|
678
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
679
|
+
checksum = "38d84fa142264698cdce1a9f9172cf383a0c82de1bddcf3092901442c4097004"
|
680
|
+
|
681
|
+
[[package]]
|
682
|
+
name = "futures-util"
|
683
|
+
version = "0.3.30"
|
684
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
685
|
+
checksum = "3d6401deb83407ab3da39eba7e33987a73c3df0c82b4bb5813ee871c19c41d48"
|
686
|
+
dependencies = [
|
687
|
+
"futures-core",
|
688
|
+
"futures-sink",
|
689
|
+
"futures-task",
|
690
|
+
"pin-project-lite",
|
691
|
+
"pin-utils",
|
652
692
|
]
|
653
693
|
|
654
694
|
[[package]]
|
@@ -696,12 +736,12 @@ dependencies = [
|
|
696
736
|
|
697
737
|
[[package]]
|
698
738
|
name = "gimli"
|
699
|
-
version = "0.
|
739
|
+
version = "0.28.1"
|
700
740
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
701
|
-
checksum = "
|
741
|
+
checksum = "4271d37baee1b8c7e4b708028c57d816cf9d2434acb33a549475f78c181f6253"
|
702
742
|
dependencies = [
|
703
743
|
"fallible-iterator",
|
704
|
-
"indexmap",
|
744
|
+
"indexmap 2.1.0",
|
705
745
|
"stable_deref_trait",
|
706
746
|
]
|
707
747
|
|
@@ -726,6 +766,15 @@ dependencies = [
|
|
726
766
|
"ahash",
|
727
767
|
]
|
728
768
|
|
769
|
+
[[package]]
|
770
|
+
name = "hashbrown"
|
771
|
+
version = "0.14.3"
|
772
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
773
|
+
checksum = "290f1a1d9242c78d09ce40a5e87e7554ee637af1351968159f4952f028f75604"
|
774
|
+
dependencies = [
|
775
|
+
"ahash",
|
776
|
+
]
|
777
|
+
|
729
778
|
[[package]]
|
730
779
|
name = "heck"
|
731
780
|
version = "0.3.3"
|
@@ -757,10 +806,27 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
757
806
|
checksum = "d77f7ec81a6d05a3abb01ab6eb7590f6083d08449fe5a1c8b1e620283546ccb7"
|
758
807
|
|
759
808
|
[[package]]
|
760
|
-
name = "
|
761
|
-
version = "
|
809
|
+
name = "iana-time-zone"
|
810
|
+
version = "0.1.59"
|
762
811
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
763
|
-
checksum = "
|
812
|
+
checksum = "b6a67363e2aa4443928ce15e57ebae94fd8949958fd1223c4cfc0cd473ad7539"
|
813
|
+
dependencies = [
|
814
|
+
"android_system_properties",
|
815
|
+
"core-foundation-sys",
|
816
|
+
"iana-time-zone-haiku",
|
817
|
+
"js-sys",
|
818
|
+
"wasm-bindgen",
|
819
|
+
"windows-core",
|
820
|
+
]
|
821
|
+
|
822
|
+
[[package]]
|
823
|
+
name = "iana-time-zone-haiku"
|
824
|
+
version = "0.1.2"
|
825
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
826
|
+
checksum = "f31827a206f56af32e590ba56d5d2d085f558508192593743f16b2306495269f"
|
827
|
+
dependencies = [
|
828
|
+
"cc",
|
829
|
+
]
|
764
830
|
|
765
831
|
[[package]]
|
766
832
|
name = "id-arena"
|
@@ -786,44 +852,27 @@ checksum = "bd070e393353796e801d209ad339e89596eb4c8d430d18ede6a1cced8fafbd99"
|
|
786
852
|
dependencies = [
|
787
853
|
"autocfg",
|
788
854
|
"hashbrown 0.12.3",
|
789
|
-
"serde",
|
790
855
|
]
|
791
856
|
|
792
857
|
[[package]]
|
793
|
-
name = "
|
794
|
-
version = "
|
858
|
+
name = "indexmap"
|
859
|
+
version = "2.1.0"
|
795
860
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
796
|
-
checksum = "
|
861
|
+
checksum = "d530e1a18b1cb4c484e6e34556a0d948706958449fca0cab753d649f2bce3d1f"
|
797
862
|
dependencies = [
|
798
|
-
"
|
799
|
-
"
|
863
|
+
"equivalent",
|
864
|
+
"hashbrown 0.14.3",
|
865
|
+
"serde",
|
800
866
|
]
|
801
867
|
|
802
868
|
[[package]]
|
803
869
|
name = "io-extras"
|
804
|
-
version = "0.
|
805
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
806
|
-
checksum = "fde93d48f0d9277f977a333eca8313695ddd5301dc96f7e02aeddcb0dd99096f"
|
807
|
-
dependencies = [
|
808
|
-
"io-lifetimes 1.0.11",
|
809
|
-
"windows-sys 0.48.0",
|
810
|
-
]
|
811
|
-
|
812
|
-
[[package]]
|
813
|
-
name = "io-lifetimes"
|
814
|
-
version = "0.5.3"
|
815
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
816
|
-
checksum = "ec58677acfea8a15352d42fc87d11d63596ade9239e0a7c9352914417515dbe6"
|
817
|
-
|
818
|
-
[[package]]
|
819
|
-
name = "io-lifetimes"
|
820
|
-
version = "1.0.11"
|
870
|
+
version = "0.18.1"
|
821
871
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
822
|
-
checksum = "
|
872
|
+
checksum = "c301e73fb90e8a29e600a9f402d095765f74310d582916a952f618836a1bd1ed"
|
823
873
|
dependencies = [
|
824
|
-
"
|
825
|
-
"
|
826
|
-
"windows-sys 0.48.0",
|
874
|
+
"io-lifetimes",
|
875
|
+
"windows-sys 0.52.0",
|
827
876
|
]
|
828
877
|
|
829
878
|
[[package]]
|
@@ -838,17 +887,6 @@ version = "2.9.0"
|
|
838
887
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
839
888
|
checksum = "8f518f335dce6725a761382244631d86cf0ccb2863413590b31338feb467f9c3"
|
840
889
|
|
841
|
-
[[package]]
|
842
|
-
name = "is-terminal"
|
843
|
-
version = "0.4.10"
|
844
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
845
|
-
checksum = "0bad00257d07be169d870ab665980b06cdb366d792ad690bf2e76876dc503455"
|
846
|
-
dependencies = [
|
847
|
-
"hermit-abi 0.3.3",
|
848
|
-
"rustix 0.38.28",
|
849
|
-
"windows-sys 0.52.0",
|
850
|
-
]
|
851
|
-
|
852
890
|
[[package]]
|
853
891
|
name = "itertools"
|
854
892
|
version = "0.10.5"
|
@@ -866,9 +904,9 @@ checksum = "b1a46d1a171d865aa5f83f92695765caa047a9b4cbae2cbf37dbd613a793fd4c"
|
|
866
904
|
|
867
905
|
[[package]]
|
868
906
|
name = "ittapi"
|
869
|
-
version = "0.
|
907
|
+
version = "0.4.0"
|
870
908
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
871
|
-
checksum = "
|
909
|
+
checksum = "6b996fe614c41395cdaedf3cf408a9534851090959d90d54a535f675550b64b1"
|
872
910
|
dependencies = [
|
873
911
|
"anyhow",
|
874
912
|
"ittapi-sys",
|
@@ -877,9 +915,9 @@ dependencies = [
|
|
877
915
|
|
878
916
|
[[package]]
|
879
917
|
name = "ittapi-sys"
|
880
|
-
version = "0.
|
918
|
+
version = "0.4.0"
|
881
919
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
882
|
-
checksum = "
|
920
|
+
checksum = "52f5385394064fa2c886205dba02598013ce83d3e92d33dbdc0c52fe0e7bf4fc"
|
883
921
|
dependencies = [
|
884
922
|
"cc",
|
885
923
|
]
|
@@ -893,6 +931,15 @@ dependencies = [
|
|
893
931
|
"libc",
|
894
932
|
]
|
895
933
|
|
934
|
+
[[package]]
|
935
|
+
name = "js-sys"
|
936
|
+
version = "0.3.66"
|
937
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
938
|
+
checksum = "cee9c64da59eae3b50095c18d3e74f8b73c0b86d2792824ff01bbce68ba229ca"
|
939
|
+
dependencies = [
|
940
|
+
"wasm-bindgen",
|
941
|
+
]
|
942
|
+
|
896
943
|
[[package]]
|
897
944
|
name = "lazy_static"
|
898
945
|
version = "1.4.0"
|
@@ -913,18 +960,18 @@ checksum = "884e2677b40cc8c339eaefcb701c32ef1fd2493d71118dc0ca4b6a736c93bd67"
|
|
913
960
|
|
914
961
|
[[package]]
|
915
962
|
name = "libc"
|
916
|
-
version = "0.2.
|
963
|
+
version = "0.2.152"
|
917
964
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
918
|
-
checksum = "
|
965
|
+
checksum = "13e3bf6590cbc649f4d1a3eefc9d5d6eb746f5200ffb04e5e142700b8faa56e7"
|
919
966
|
|
920
967
|
[[package]]
|
921
968
|
name = "libloading"
|
922
|
-
version = "0.
|
969
|
+
version = "0.8.1"
|
923
970
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
924
|
-
checksum = "
|
971
|
+
checksum = "c571b676ddfc9a8c12f1f3d3085a7b163966a8fd8098a90640953ce5f6170161"
|
925
972
|
dependencies = [
|
926
973
|
"cfg-if",
|
927
|
-
"
|
974
|
+
"windows-sys 0.48.0",
|
928
975
|
]
|
929
976
|
|
930
977
|
[[package]]
|
@@ -938,18 +985,6 @@ dependencies = [
|
|
938
985
|
"redox_syscall",
|
939
986
|
]
|
940
987
|
|
941
|
-
[[package]]
|
942
|
-
name = "linux-raw-sys"
|
943
|
-
version = "0.0.42"
|
944
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
945
|
-
checksum = "5284f00d480e1c39af34e72f8ad60b94f47007e3481cd3b731c1d67190ddc7b7"
|
946
|
-
|
947
|
-
[[package]]
|
948
|
-
name = "linux-raw-sys"
|
949
|
-
version = "0.3.8"
|
950
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
951
|
-
checksum = "ef53942eb7bf7ff43a617b3e2c1c4a5ecf5944a7c1bc12d7ee39bbb15e5c1519"
|
952
|
-
|
953
988
|
[[package]]
|
954
989
|
name = "linux-raw-sys"
|
955
990
|
version = "0.4.12"
|
@@ -991,7 +1026,7 @@ checksum = "5968c820e2960565f647819f5928a42d6e874551cab9d88d75e3e0660d7f71e3"
|
|
991
1026
|
dependencies = [
|
992
1027
|
"proc-macro2",
|
993
1028
|
"quote",
|
994
|
-
"syn 2.0.
|
1029
|
+
"syn 2.0.48",
|
995
1030
|
]
|
996
1031
|
|
997
1032
|
[[package]]
|
@@ -1012,14 +1047,14 @@ version = "0.6.4"
|
|
1012
1047
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1013
1048
|
checksum = "b2cffa4ad52c6f791f4f8b15f0c05f9824b2ced1160e88cc393d64fff9a8ac64"
|
1014
1049
|
dependencies = [
|
1015
|
-
"rustix
|
1050
|
+
"rustix",
|
1016
1051
|
]
|
1017
1052
|
|
1018
1053
|
[[package]]
|
1019
1054
|
name = "memoffset"
|
1020
|
-
version = "0.
|
1055
|
+
version = "0.9.0"
|
1021
1056
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1022
|
-
checksum = "
|
1057
|
+
checksum = "5a634b1c61a95585bd15607c6ab0c4e5b226e695ff2800ba0cdccddf208c406c"
|
1023
1058
|
dependencies = [
|
1024
1059
|
"autocfg",
|
1025
1060
|
]
|
@@ -1030,6 +1065,26 @@ version = "0.2.1"
|
|
1030
1065
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1031
1066
|
checksum = "68354c5c6bd36d73ff3feceb05efa59b6acb7626617f4962be322a825e61f79a"
|
1032
1067
|
|
1068
|
+
[[package]]
|
1069
|
+
name = "miniz_oxide"
|
1070
|
+
version = "0.7.1"
|
1071
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1072
|
+
checksum = "e7810e0be55b428ada41041c41f32c9f1a42817901b4ccf45fa3d4b6561e74c7"
|
1073
|
+
dependencies = [
|
1074
|
+
"adler",
|
1075
|
+
]
|
1076
|
+
|
1077
|
+
[[package]]
|
1078
|
+
name = "mio"
|
1079
|
+
version = "0.8.10"
|
1080
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1081
|
+
checksum = "8f3d0b296e374a4e6f3c7b0a1f5a51d748a0d34c85e7dc48fc3fa9a87657fe09"
|
1082
|
+
dependencies = [
|
1083
|
+
"libc",
|
1084
|
+
"wasi",
|
1085
|
+
"windows-sys 0.48.0",
|
1086
|
+
]
|
1087
|
+
|
1033
1088
|
[[package]]
|
1034
1089
|
name = "nom"
|
1035
1090
|
version = "7.1.3"
|
@@ -1040,15 +1095,25 @@ dependencies = [
|
|
1040
1095
|
"minimal-lexical",
|
1041
1096
|
]
|
1042
1097
|
|
1098
|
+
[[package]]
|
1099
|
+
name = "num_cpus"
|
1100
|
+
version = "1.16.0"
|
1101
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1102
|
+
checksum = "4161fcb6d602d4d2081af7c3a45852d875a03dd337a6bfdd6e06407b61342a43"
|
1103
|
+
dependencies = [
|
1104
|
+
"hermit-abi 0.3.3",
|
1105
|
+
"libc",
|
1106
|
+
]
|
1107
|
+
|
1043
1108
|
[[package]]
|
1044
1109
|
name = "object"
|
1045
|
-
version = "0.
|
1110
|
+
version = "0.32.2"
|
1046
1111
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1047
|
-
checksum = "
|
1112
|
+
checksum = "a6a622008b6e321afc04970976f62ee297fdbaa6f95318ca343e3eebb9648441"
|
1048
1113
|
dependencies = [
|
1049
1114
|
"crc32fast",
|
1050
|
-
"hashbrown 0.
|
1051
|
-
"indexmap",
|
1115
|
+
"hashbrown 0.14.3",
|
1116
|
+
"indexmap 2.1.0",
|
1052
1117
|
"memchr",
|
1053
1118
|
]
|
1054
1119
|
|
@@ -1082,6 +1147,12 @@ version = "0.2.13"
|
|
1082
1147
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1083
1148
|
checksum = "8afb450f006bf6385ca15ef45d71d2288452bc3683ce2e2cacc0d18e4be60b58"
|
1084
1149
|
|
1150
|
+
[[package]]
|
1151
|
+
name = "pin-utils"
|
1152
|
+
version = "0.1.0"
|
1153
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1154
|
+
checksum = "8b870d8c151b6f2fb93e84a13146138f05d02ed11c7e7c54f8826aaaf7c9f184"
|
1155
|
+
|
1085
1156
|
[[package]]
|
1086
1157
|
name = "pkg-config"
|
1087
1158
|
version = "0.3.28"
|
@@ -1120,9 +1191,9 @@ dependencies = [
|
|
1120
1191
|
|
1121
1192
|
[[package]]
|
1122
1193
|
name = "proc-macro2"
|
1123
|
-
version = "1.0.
|
1194
|
+
version = "1.0.76"
|
1124
1195
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1125
|
-
checksum = "
|
1196
|
+
checksum = "95fc56cda0b5c3325f5fbbd7ff9fda9e02bb00bb3dac51252d2f1bfa1cb8cc8c"
|
1126
1197
|
dependencies = [
|
1127
1198
|
"unicode-ident",
|
1128
1199
|
]
|
@@ -1136,22 +1207,11 @@ dependencies = [
|
|
1136
1207
|
"cc",
|
1137
1208
|
]
|
1138
1209
|
|
1139
|
-
[[package]]
|
1140
|
-
name = "pulldown-cmark"
|
1141
|
-
version = "0.8.0"
|
1142
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1143
|
-
checksum = "ffade02495f22453cd593159ea2f59827aae7f53fa8323f756799b670881dcf8"
|
1144
|
-
dependencies = [
|
1145
|
-
"bitflags 1.3.2",
|
1146
|
-
"memchr",
|
1147
|
-
"unicase",
|
1148
|
-
]
|
1149
|
-
|
1150
1210
|
[[package]]
|
1151
1211
|
name = "quote"
|
1152
|
-
version = "1.0.
|
1212
|
+
version = "1.0.35"
|
1153
1213
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1154
|
-
checksum = "
|
1214
|
+
checksum = "291ec9ab5efd934aaf503a6466c5d5251535d108ee747472c3977cc5acc868ef"
|
1155
1215
|
dependencies = [
|
1156
1216
|
"proc-macro2",
|
1157
1217
|
]
|
@@ -1208,18 +1268,18 @@ dependencies = [
|
|
1208
1268
|
|
1209
1269
|
[[package]]
|
1210
1270
|
name = "rb-sys"
|
1211
|
-
version = "0.9.
|
1271
|
+
version = "0.9.86"
|
1212
1272
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1213
|
-
checksum = "
|
1273
|
+
checksum = "7285f2a7b92f58ab198e3fd59a71d2861478f9c4642f41e83582385818941697"
|
1214
1274
|
dependencies = [
|
1215
1275
|
"rb-sys-build",
|
1216
1276
|
]
|
1217
1277
|
|
1218
1278
|
[[package]]
|
1219
1279
|
name = "rb-sys-build"
|
1220
|
-
version = "0.9.
|
1280
|
+
version = "0.9.86"
|
1221
1281
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1222
|
-
checksum = "
|
1282
|
+
checksum = "71583945f94dabb6c0dfa63f1b71e929c1901e1e288ef3739ab8bed3b7069550"
|
1223
1283
|
dependencies = [
|
1224
1284
|
"bindgen",
|
1225
1285
|
"lazy_static",
|
@@ -1227,7 +1287,7 @@ dependencies = [
|
|
1227
1287
|
"quote",
|
1228
1288
|
"regex",
|
1229
1289
|
"shell-words",
|
1230
|
-
"syn 2.0.
|
1290
|
+
"syn 2.0.48",
|
1231
1291
|
]
|
1232
1292
|
|
1233
1293
|
[[package]]
|
@@ -1258,9 +1318,9 @@ dependencies = [
|
|
1258
1318
|
|
1259
1319
|
[[package]]
|
1260
1320
|
name = "regalloc2"
|
1261
|
-
version = "0.
|
1321
|
+
version = "0.9.3"
|
1262
1322
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1263
|
-
checksum = "
|
1323
|
+
checksum = "ad156d539c879b7a24a363a2016d77961786e71f48f2e2fc8302a92abd2429a6"
|
1264
1324
|
dependencies = [
|
1265
1325
|
"hashbrown 0.13.2",
|
1266
1326
|
"log",
|
@@ -1303,10 +1363,9 @@ name = "ruby_wasm"
|
|
1303
1363
|
version = "0.0.0"
|
1304
1364
|
dependencies = [
|
1305
1365
|
"magnus",
|
1306
|
-
"
|
1366
|
+
"structopt",
|
1307
1367
|
"wasi-vfs-cli",
|
1308
|
-
"
|
1309
|
-
"wizer 3.0.0",
|
1368
|
+
"wizer",
|
1310
1369
|
]
|
1311
1370
|
|
1312
1371
|
[[package]]
|
@@ -1321,38 +1380,6 @@ version = "1.1.0"
|
|
1321
1380
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1322
1381
|
checksum = "08d43f7aa6b08d49f382cde6a7982047c3426db949b1424bc4b7ec9ae12c6ce2"
|
1323
1382
|
|
1324
|
-
[[package]]
|
1325
|
-
name = "rustix"
|
1326
|
-
version = "0.33.7"
|
1327
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1328
|
-
checksum = "938a344304321a9da4973b9ff4f9f8db9caf4597dfd9dda6a60b523340a0fff0"
|
1329
|
-
dependencies = [
|
1330
|
-
"bitflags 1.3.2",
|
1331
|
-
"errno 0.2.8",
|
1332
|
-
"io-lifetimes 0.5.3",
|
1333
|
-
"itoa",
|
1334
|
-
"libc",
|
1335
|
-
"linux-raw-sys 0.0.42",
|
1336
|
-
"once_cell",
|
1337
|
-
"winapi",
|
1338
|
-
]
|
1339
|
-
|
1340
|
-
[[package]]
|
1341
|
-
name = "rustix"
|
1342
|
-
version = "0.37.27"
|
1343
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1344
|
-
checksum = "fea8ca367a3a01fe35e6943c400addf443c0f57670e6ec51196f71a4b8762dd2"
|
1345
|
-
dependencies = [
|
1346
|
-
"bitflags 1.3.2",
|
1347
|
-
"errno 0.3.8",
|
1348
|
-
"io-lifetimes 1.0.11",
|
1349
|
-
"itoa",
|
1350
|
-
"libc",
|
1351
|
-
"linux-raw-sys 0.3.8",
|
1352
|
-
"once_cell",
|
1353
|
-
"windows-sys 0.48.0",
|
1354
|
-
]
|
1355
|
-
|
1356
1383
|
[[package]]
|
1357
1384
|
name = "rustix"
|
1358
1385
|
version = "0.38.28"
|
@@ -1360,9 +1387,11 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1360
1387
|
checksum = "72e572a5e8ca657d7366229cdde4bd14c4eb5499a9573d4d366fe1b599daa316"
|
1361
1388
|
dependencies = [
|
1362
1389
|
"bitflags 2.4.1",
|
1363
|
-
"errno
|
1390
|
+
"errno",
|
1391
|
+
"itoa",
|
1364
1392
|
"libc",
|
1365
|
-
"linux-raw-sys
|
1393
|
+
"linux-raw-sys",
|
1394
|
+
"once_cell",
|
1366
1395
|
"windows-sys 0.52.0",
|
1367
1396
|
]
|
1368
1397
|
|
@@ -1372,6 +1401,12 @@ version = "1.0.16"
|
|
1372
1401
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1373
1402
|
checksum = "f98d2aa92eebf49b69786be48e4477826b256916e84a57ff2a4f21923b48eb4c"
|
1374
1403
|
|
1404
|
+
[[package]]
|
1405
|
+
name = "semver"
|
1406
|
+
version = "1.0.21"
|
1407
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1408
|
+
checksum = "b97ed7a9823b74f99c7742f5336af7be5ecd3eeafcb1507d1fa93347b1d589b0"
|
1409
|
+
|
1375
1410
|
[[package]]
|
1376
1411
|
name = "seq-macro"
|
1377
1412
|
version = "0.3.5"
|
@@ -1380,29 +1415,29 @@ checksum = "a3f0bf26fd526d2a95683cd0f87bf103b8539e2ca1ef48ce002d67aad59aa0b4"
|
|
1380
1415
|
|
1381
1416
|
[[package]]
|
1382
1417
|
name = "serde"
|
1383
|
-
version = "1.0.
|
1418
|
+
version = "1.0.195"
|
1384
1419
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1385
|
-
checksum = "
|
1420
|
+
checksum = "63261df402c67811e9ac6def069e4786148c4563f4b50fd4bf30aa370d626b02"
|
1386
1421
|
dependencies = [
|
1387
1422
|
"serde_derive",
|
1388
1423
|
]
|
1389
1424
|
|
1390
1425
|
[[package]]
|
1391
1426
|
name = "serde_derive"
|
1392
|
-
version = "1.0.
|
1427
|
+
version = "1.0.195"
|
1393
1428
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1394
|
-
checksum = "
|
1429
|
+
checksum = "46fe8f8603d81ba86327b23a2e9cdf49e1255fb94a4c5f297f6ee0547178ea2c"
|
1395
1430
|
dependencies = [
|
1396
1431
|
"proc-macro2",
|
1397
1432
|
"quote",
|
1398
|
-
"syn 2.0.
|
1433
|
+
"syn 2.0.48",
|
1399
1434
|
]
|
1400
1435
|
|
1401
1436
|
[[package]]
|
1402
1437
|
name = "serde_json"
|
1403
|
-
version = "1.0.
|
1438
|
+
version = "1.0.111"
|
1404
1439
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1405
|
-
checksum = "
|
1440
|
+
checksum = "176e46fa42316f18edd598015a5166857fc835ec732f5215eac6b7bdbf0a84f4"
|
1406
1441
|
dependencies = [
|
1407
1442
|
"itoa",
|
1408
1443
|
"ryu",
|
@@ -1453,6 +1488,22 @@ version = "1.11.2"
|
|
1453
1488
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1454
1489
|
checksum = "4dccd0940a2dcdf68d092b8cbab7dc0ad8fa938bf95787e1b916b0e3d0e8e970"
|
1455
1490
|
|
1491
|
+
[[package]]
|
1492
|
+
name = "socket2"
|
1493
|
+
version = "0.5.5"
|
1494
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1495
|
+
checksum = "7b5fac59a5cb5dd637972e5fca70daf0523c9067fcdc4842f053dae04a18f8e9"
|
1496
|
+
dependencies = [
|
1497
|
+
"libc",
|
1498
|
+
"windows-sys 0.48.0",
|
1499
|
+
]
|
1500
|
+
|
1501
|
+
[[package]]
|
1502
|
+
name = "sptr"
|
1503
|
+
version = "0.3.2"
|
1504
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1505
|
+
checksum = "3b9b39299b249ad65f3b7e96443bad61c02ca5cd3589f46cb6d610a0fd6c0d6a"
|
1506
|
+
|
1456
1507
|
[[package]]
|
1457
1508
|
name = "stable_deref_trait"
|
1458
1509
|
version = "1.2.0"
|
@@ -1502,9 +1553,9 @@ dependencies = [
|
|
1502
1553
|
|
1503
1554
|
[[package]]
|
1504
1555
|
name = "syn"
|
1505
|
-
version = "2.0.
|
1556
|
+
version = "2.0.48"
|
1506
1557
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1507
|
-
checksum = "
|
1558
|
+
checksum = "0f3531638e407dfc0814761abb7c00a5b54992b849452a0646b7f65c9f770f3f"
|
1508
1559
|
dependencies = [
|
1509
1560
|
"proc-macro2",
|
1510
1561
|
"quote",
|
@@ -1513,34 +1564,25 @@ dependencies = [
|
|
1513
1564
|
|
1514
1565
|
[[package]]
|
1515
1566
|
name = "system-interface"
|
1516
|
-
version = "0.
|
1567
|
+
version = "0.26.1"
|
1517
1568
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1518
|
-
checksum = "
|
1569
|
+
checksum = "0682e006dd35771e392a6623ac180999a9a854b1d4a6c12fb2e804941c2b1f58"
|
1519
1570
|
dependencies = [
|
1520
1571
|
"bitflags 2.4.1",
|
1521
1572
|
"cap-fs-ext",
|
1522
|
-
"cap-std
|
1573
|
+
"cap-std",
|
1523
1574
|
"fd-lock",
|
1524
|
-
"io-lifetimes
|
1525
|
-
"rustix
|
1526
|
-
"windows-sys 0.
|
1527
|
-
"winx
|
1575
|
+
"io-lifetimes",
|
1576
|
+
"rustix",
|
1577
|
+
"windows-sys 0.52.0",
|
1578
|
+
"winx",
|
1528
1579
|
]
|
1529
1580
|
|
1530
1581
|
[[package]]
|
1531
1582
|
name = "target-lexicon"
|
1532
|
-
version = "0.12.
|
1583
|
+
version = "0.12.13"
|
1533
1584
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1534
|
-
checksum = "
|
1535
|
-
|
1536
|
-
[[package]]
|
1537
|
-
name = "termcolor"
|
1538
|
-
version = "1.4.0"
|
1539
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1540
|
-
checksum = "ff1bc3d3f05aff0403e8ac0d92ced918ec05b666a43f83297ccef5bea8a3d449"
|
1541
|
-
dependencies = [
|
1542
|
-
"winapi-util",
|
1543
|
-
]
|
1585
|
+
checksum = "69758bda2e78f098e4ccb393021a0963bb3442eac05f135c30f61b7370bbafae"
|
1544
1586
|
|
1545
1587
|
[[package]]
|
1546
1588
|
name = "textwrap"
|
@@ -1553,22 +1595,22 @@ dependencies = [
|
|
1553
1595
|
|
1554
1596
|
[[package]]
|
1555
1597
|
name = "thiserror"
|
1556
|
-
version = "1.0.
|
1598
|
+
version = "1.0.56"
|
1557
1599
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1558
|
-
checksum = "
|
1600
|
+
checksum = "d54378c645627613241d077a3a79db965db602882668f9136ac42af9ecb730ad"
|
1559
1601
|
dependencies = [
|
1560
1602
|
"thiserror-impl",
|
1561
1603
|
]
|
1562
1604
|
|
1563
1605
|
[[package]]
|
1564
1606
|
name = "thiserror-impl"
|
1565
|
-
version = "1.0.
|
1607
|
+
version = "1.0.56"
|
1566
1608
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1567
|
-
checksum = "
|
1609
|
+
checksum = "fa0faa943b50f3db30a20aa7e265dbc66076993efed8463e8de414e5d06d3471"
|
1568
1610
|
dependencies = [
|
1569
1611
|
"proc-macro2",
|
1570
1612
|
"quote",
|
1571
|
-
"syn 2.0.
|
1613
|
+
"syn 2.0.48",
|
1572
1614
|
]
|
1573
1615
|
|
1574
1616
|
[[package]]
|
@@ -1586,6 +1628,22 @@ version = "0.1.1"
|
|
1586
1628
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1587
1629
|
checksum = "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20"
|
1588
1630
|
|
1631
|
+
[[package]]
|
1632
|
+
name = "tokio"
|
1633
|
+
version = "1.35.1"
|
1634
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1635
|
+
checksum = "c89b4efa943be685f629b149f53829423f8f5531ea21249408e8e2f8671ec104"
|
1636
|
+
dependencies = [
|
1637
|
+
"backtrace",
|
1638
|
+
"bytes",
|
1639
|
+
"libc",
|
1640
|
+
"mio",
|
1641
|
+
"num_cpus",
|
1642
|
+
"pin-project-lite",
|
1643
|
+
"socket2",
|
1644
|
+
"windows-sys 0.48.0",
|
1645
|
+
]
|
1646
|
+
|
1589
1647
|
[[package]]
|
1590
1648
|
name = "toml"
|
1591
1649
|
version = "0.5.11"
|
@@ -1615,7 +1673,7 @@ checksum = "34704c8d6ebcbc939824180af020566b01a7c01f80641264eba0999f6c2b6be7"
|
|
1615
1673
|
dependencies = [
|
1616
1674
|
"proc-macro2",
|
1617
1675
|
"quote",
|
1618
|
-
"syn 2.0.
|
1676
|
+
"syn 2.0.48",
|
1619
1677
|
]
|
1620
1678
|
|
1621
1679
|
[[package]]
|
@@ -1633,15 +1691,6 @@ version = "1.17.0"
|
|
1633
1691
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1634
1692
|
checksum = "42ff0bf0c66b8238c6f3b578df37d0b7848e55df8577b3f74f92a69acceeb825"
|
1635
1693
|
|
1636
|
-
[[package]]
|
1637
|
-
name = "unicase"
|
1638
|
-
version = "2.7.0"
|
1639
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1640
|
-
checksum = "f7d2d4dafb69621809a81864c9c1b864479e1235c0dd4e199924b9742439ed89"
|
1641
|
-
dependencies = [
|
1642
|
-
"version_check",
|
1643
|
-
]
|
1644
|
-
|
1645
1694
|
[[package]]
|
1646
1695
|
name = "unicode-bidi"
|
1647
1696
|
version = "0.3.14"
|
@@ -1718,22 +1767,21 @@ checksum = "9c8d87e72b64a3b4db28d11ce29237c246188f4f51057d65a7eab63b7987e423"
|
|
1718
1767
|
|
1719
1768
|
[[package]]
|
1720
1769
|
name = "wasi-cap-std-sync"
|
1721
|
-
version = "
|
1770
|
+
version = "16.0.0"
|
1722
1771
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1723
|
-
checksum = "
|
1772
|
+
checksum = "154528979a211aa28d969846e883df75705809ed9bcc70aba61460683ea7355b"
|
1724
1773
|
dependencies = [
|
1725
1774
|
"anyhow",
|
1726
1775
|
"async-trait",
|
1727
1776
|
"cap-fs-ext",
|
1728
1777
|
"cap-rand",
|
1729
|
-
"cap-std
|
1778
|
+
"cap-std",
|
1730
1779
|
"cap-time-ext",
|
1731
|
-
"fs-set-times
|
1732
|
-
"io-extras
|
1733
|
-
"io-lifetimes
|
1734
|
-
"is-terminal",
|
1780
|
+
"fs-set-times",
|
1781
|
+
"io-extras",
|
1782
|
+
"io-lifetimes",
|
1735
1783
|
"once_cell",
|
1736
|
-
"rustix
|
1784
|
+
"rustix",
|
1737
1785
|
"system-interface",
|
1738
1786
|
"tracing",
|
1739
1787
|
"wasi-common",
|
@@ -1742,17 +1790,17 @@ dependencies = [
|
|
1742
1790
|
|
1743
1791
|
[[package]]
|
1744
1792
|
name = "wasi-common"
|
1745
|
-
version = "
|
1793
|
+
version = "16.0.0"
|
1746
1794
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1747
|
-
checksum = "
|
1795
|
+
checksum = "3d888b611fee7d273dd057dc009d2dd3132736f36710ffd65657ac83628d1e3b"
|
1748
1796
|
dependencies = [
|
1749
1797
|
"anyhow",
|
1750
|
-
"bitflags
|
1798
|
+
"bitflags 2.4.1",
|
1751
1799
|
"cap-rand",
|
1752
|
-
"cap-std
|
1753
|
-
"io-extras
|
1800
|
+
"cap-std",
|
1801
|
+
"io-extras",
|
1754
1802
|
"log",
|
1755
|
-
"rustix
|
1803
|
+
"rustix",
|
1756
1804
|
"thiserror",
|
1757
1805
|
"tracing",
|
1758
1806
|
"wasmtime",
|
@@ -1762,21 +1810,75 @@ dependencies = [
|
|
1762
1810
|
|
1763
1811
|
[[package]]
|
1764
1812
|
name = "wasi-vfs-cli"
|
1765
|
-
version = "0.
|
1766
|
-
source = "git+https://github.com/kateinoigakukun/wasi-vfs/?
|
1813
|
+
version = "0.5.2"
|
1814
|
+
source = "git+https://github.com/kateinoigakukun/wasi-vfs/?tag=0.5.2#ad74438287035ea01f3ce895e495740f7981215c"
|
1767
1815
|
dependencies = [
|
1768
1816
|
"anyhow",
|
1769
1817
|
"structopt",
|
1770
1818
|
"wasm-encoder 0.38.1",
|
1771
1819
|
"wasmparser 0.106.0",
|
1772
|
-
"wizer
|
1820
|
+
"wizer",
|
1821
|
+
]
|
1822
|
+
|
1823
|
+
[[package]]
|
1824
|
+
name = "wasm-bindgen"
|
1825
|
+
version = "0.2.89"
|
1826
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1827
|
+
checksum = "0ed0d4f68a3015cc185aff4db9506a015f4b96f95303897bfa23f846db54064e"
|
1828
|
+
dependencies = [
|
1829
|
+
"cfg-if",
|
1830
|
+
"wasm-bindgen-macro",
|
1831
|
+
]
|
1832
|
+
|
1833
|
+
[[package]]
|
1834
|
+
name = "wasm-bindgen-backend"
|
1835
|
+
version = "0.2.89"
|
1836
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1837
|
+
checksum = "1b56f625e64f3a1084ded111c4d5f477df9f8c92df113852fa5a374dbda78826"
|
1838
|
+
dependencies = [
|
1839
|
+
"bumpalo",
|
1840
|
+
"log",
|
1841
|
+
"once_cell",
|
1842
|
+
"proc-macro2",
|
1843
|
+
"quote",
|
1844
|
+
"syn 2.0.48",
|
1845
|
+
"wasm-bindgen-shared",
|
1846
|
+
]
|
1847
|
+
|
1848
|
+
[[package]]
|
1849
|
+
name = "wasm-bindgen-macro"
|
1850
|
+
version = "0.2.89"
|
1851
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1852
|
+
checksum = "0162dbf37223cd2afce98f3d0785506dcb8d266223983e4b5b525859e6e182b2"
|
1853
|
+
dependencies = [
|
1854
|
+
"quote",
|
1855
|
+
"wasm-bindgen-macro-support",
|
1856
|
+
]
|
1857
|
+
|
1858
|
+
[[package]]
|
1859
|
+
name = "wasm-bindgen-macro-support"
|
1860
|
+
version = "0.2.89"
|
1861
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1862
|
+
checksum = "f0eb82fcb7930ae6219a7ecfd55b217f5f0893484b7a13022ebb2b2bf20b5283"
|
1863
|
+
dependencies = [
|
1864
|
+
"proc-macro2",
|
1865
|
+
"quote",
|
1866
|
+
"syn 2.0.48",
|
1867
|
+
"wasm-bindgen-backend",
|
1868
|
+
"wasm-bindgen-shared",
|
1773
1869
|
]
|
1774
1870
|
|
1871
|
+
[[package]]
|
1872
|
+
name = "wasm-bindgen-shared"
|
1873
|
+
version = "0.2.89"
|
1874
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1875
|
+
checksum = "7ab9b36309365056cd639da3134bf87fa8f3d86008abf99e612384a6eecd459f"
|
1876
|
+
|
1775
1877
|
[[package]]
|
1776
1878
|
name = "wasm-encoder"
|
1777
|
-
version = "0.
|
1879
|
+
version = "0.30.0"
|
1778
1880
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1779
|
-
checksum = "
|
1881
|
+
checksum = "b2f8e9778e04cbf44f58acc301372577375a666b966c50b03ef46144f80436a8"
|
1780
1882
|
dependencies = [
|
1781
1883
|
"leb128",
|
1782
1884
|
]
|
@@ -1792,82 +1894,96 @@ dependencies = [
|
|
1792
1894
|
|
1793
1895
|
[[package]]
|
1794
1896
|
name = "wasmparser"
|
1795
|
-
version = "0.
|
1897
|
+
version = "0.106.0"
|
1796
1898
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1797
|
-
checksum = "
|
1899
|
+
checksum = "d014e33793cab91655fa6349b0bc974984de106b2e0f6b0dfe6f6594b260624d"
|
1798
1900
|
dependencies = [
|
1799
|
-
"indexmap",
|
1901
|
+
"indexmap 1.9.3",
|
1800
1902
|
"url",
|
1801
1903
|
]
|
1802
1904
|
|
1803
1905
|
[[package]]
|
1804
1906
|
name = "wasmparser"
|
1805
|
-
version = "0.
|
1907
|
+
version = "0.118.1"
|
1806
1908
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1807
|
-
checksum = "
|
1909
|
+
checksum = "95ee9723b928e735d53000dec9eae7b07a60e490c85ab54abb66659fc61bfcd9"
|
1808
1910
|
dependencies = [
|
1809
|
-
"indexmap",
|
1810
|
-
"
|
1911
|
+
"indexmap 2.1.0",
|
1912
|
+
"semver",
|
1913
|
+
]
|
1914
|
+
|
1915
|
+
[[package]]
|
1916
|
+
name = "wasmprinter"
|
1917
|
+
version = "0.2.75"
|
1918
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1919
|
+
checksum = "3d027eb8294904fc715ac0870cebe6b0271e96b90605ee21511e7565c4ce568c"
|
1920
|
+
dependencies = [
|
1921
|
+
"anyhow",
|
1922
|
+
"wasmparser 0.118.1",
|
1811
1923
|
]
|
1812
1924
|
|
1813
1925
|
[[package]]
|
1814
1926
|
name = "wasmtime"
|
1815
|
-
version = "
|
1927
|
+
version = "16.0.0"
|
1816
1928
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1817
|
-
checksum = "
|
1929
|
+
checksum = "a8e539fded2495422ea3c4dfa7beeddba45904eece182cf315294009e1a323bf"
|
1818
1930
|
dependencies = [
|
1819
1931
|
"anyhow",
|
1820
1932
|
"async-trait",
|
1821
1933
|
"bincode",
|
1822
1934
|
"bumpalo",
|
1823
1935
|
"cfg-if",
|
1936
|
+
"encoding_rs",
|
1824
1937
|
"fxprof-processed-profile",
|
1825
|
-
"indexmap",
|
1938
|
+
"indexmap 2.1.0",
|
1826
1939
|
"libc",
|
1827
1940
|
"log",
|
1828
1941
|
"object",
|
1829
1942
|
"once_cell",
|
1830
1943
|
"paste",
|
1831
|
-
"psm",
|
1832
1944
|
"rayon",
|
1833
1945
|
"serde",
|
1946
|
+
"serde_derive",
|
1834
1947
|
"serde_json",
|
1835
1948
|
"target-lexicon",
|
1836
|
-
"
|
1949
|
+
"wasm-encoder 0.38.1",
|
1950
|
+
"wasmparser 0.118.1",
|
1837
1951
|
"wasmtime-cache",
|
1838
1952
|
"wasmtime-component-macro",
|
1953
|
+
"wasmtime-component-util",
|
1839
1954
|
"wasmtime-cranelift",
|
1840
1955
|
"wasmtime-environ",
|
1841
1956
|
"wasmtime-fiber",
|
1842
1957
|
"wasmtime-jit",
|
1843
1958
|
"wasmtime-runtime",
|
1959
|
+
"wasmtime-winch",
|
1844
1960
|
"wat",
|
1845
1961
|
"windows-sys 0.48.0",
|
1846
1962
|
]
|
1847
1963
|
|
1848
1964
|
[[package]]
|
1849
1965
|
name = "wasmtime-asm-macros"
|
1850
|
-
version = "
|
1966
|
+
version = "16.0.0"
|
1851
1967
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1852
|
-
checksum = "
|
1968
|
+
checksum = "660ba9143e15a2acd921820df221b73aee256bd3ca2d208d73d8adc9587ccbb9"
|
1853
1969
|
dependencies = [
|
1854
1970
|
"cfg-if",
|
1855
1971
|
]
|
1856
1972
|
|
1857
1973
|
[[package]]
|
1858
1974
|
name = "wasmtime-cache"
|
1859
|
-
version = "
|
1975
|
+
version = "16.0.0"
|
1860
1976
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1861
|
-
checksum = "
|
1977
|
+
checksum = "a3ce373743892002f9391c6741ef0cb0335b55ec899d874f311222b7e36f4594"
|
1862
1978
|
dependencies = [
|
1863
1979
|
"anyhow",
|
1864
1980
|
"base64",
|
1865
1981
|
"bincode",
|
1866
1982
|
"directories-next",
|
1867
|
-
"file-per-thread-logger",
|
1868
1983
|
"log",
|
1869
|
-
"rustix
|
1984
|
+
"rustix",
|
1870
1985
|
"serde",
|
1986
|
+
"serde_derive",
|
1871
1987
|
"sha2",
|
1872
1988
|
"toml",
|
1873
1989
|
"windows-sys 0.48.0",
|
@@ -1876,14 +1992,14 @@ dependencies = [
|
|
1876
1992
|
|
1877
1993
|
[[package]]
|
1878
1994
|
name = "wasmtime-component-macro"
|
1879
|
-
version = "
|
1995
|
+
version = "16.0.0"
|
1880
1996
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1881
|
-
checksum = "
|
1997
|
+
checksum = "12ef32643324e564e1c359e9044daa06cbf90d7e2d6c99a738d17a12959f01a5"
|
1882
1998
|
dependencies = [
|
1883
1999
|
"anyhow",
|
1884
2000
|
"proc-macro2",
|
1885
2001
|
"quote",
|
1886
|
-
"syn
|
2002
|
+
"syn 2.0.48",
|
1887
2003
|
"wasmtime-component-util",
|
1888
2004
|
"wasmtime-wit-bindgen",
|
1889
2005
|
"wit-parser",
|
@@ -1891,17 +2007,18 @@ dependencies = [
|
|
1891
2007
|
|
1892
2008
|
[[package]]
|
1893
2009
|
name = "wasmtime-component-util"
|
1894
|
-
version = "
|
2010
|
+
version = "16.0.0"
|
1895
2011
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1896
|
-
checksum = "
|
2012
|
+
checksum = "8c87d06c18d21a4818f354c00a85f4ebc62b2270961cd022968452b0e4dbed9d"
|
1897
2013
|
|
1898
2014
|
[[package]]
|
1899
2015
|
name = "wasmtime-cranelift"
|
1900
|
-
version = "
|
2016
|
+
version = "16.0.0"
|
1901
2017
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1902
|
-
checksum = "
|
2018
|
+
checksum = "2d648c8b4064a7911093b02237cd5569f71ca171d3a0a486bf80600b19e1cba2"
|
1903
2019
|
dependencies = [
|
1904
2020
|
"anyhow",
|
2021
|
+
"cfg-if",
|
1905
2022
|
"cranelift-codegen",
|
1906
2023
|
"cranelift-control",
|
1907
2024
|
"cranelift-entity",
|
@@ -1913,16 +2030,17 @@ dependencies = [
|
|
1913
2030
|
"object",
|
1914
2031
|
"target-lexicon",
|
1915
2032
|
"thiserror",
|
1916
|
-
"wasmparser 0.
|
2033
|
+
"wasmparser 0.118.1",
|
1917
2034
|
"wasmtime-cranelift-shared",
|
1918
2035
|
"wasmtime-environ",
|
2036
|
+
"wasmtime-versioned-export-macros",
|
1919
2037
|
]
|
1920
2038
|
|
1921
2039
|
[[package]]
|
1922
2040
|
name = "wasmtime-cranelift-shared"
|
1923
|
-
version = "
|
2041
|
+
version = "16.0.0"
|
1924
2042
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1925
|
-
checksum = "
|
2043
|
+
checksum = "290a89027688782da8ff60b12bb95695494b1874e0d0ba2ba387d23dace6d70c"
|
1926
2044
|
dependencies = [
|
1927
2045
|
"anyhow",
|
1928
2046
|
"cranelift-codegen",
|
@@ -1936,41 +2054,47 @@ dependencies = [
|
|
1936
2054
|
|
1937
2055
|
[[package]]
|
1938
2056
|
name = "wasmtime-environ"
|
1939
|
-
version = "
|
2057
|
+
version = "16.0.0"
|
1940
2058
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1941
|
-
checksum = "
|
2059
|
+
checksum = "61eb64fb3e0da883e2df4a13a81d6282e072336e6cb6295021d0f7ab2e352754"
|
1942
2060
|
dependencies = [
|
1943
2061
|
"anyhow",
|
1944
2062
|
"cranelift-entity",
|
1945
2063
|
"gimli",
|
1946
|
-
"indexmap",
|
2064
|
+
"indexmap 2.1.0",
|
1947
2065
|
"log",
|
1948
2066
|
"object",
|
1949
2067
|
"serde",
|
2068
|
+
"serde_derive",
|
1950
2069
|
"target-lexicon",
|
1951
2070
|
"thiserror",
|
1952
|
-
"
|
2071
|
+
"wasm-encoder 0.38.1",
|
2072
|
+
"wasmparser 0.118.1",
|
2073
|
+
"wasmprinter",
|
2074
|
+
"wasmtime-component-util",
|
1953
2075
|
"wasmtime-types",
|
1954
2076
|
]
|
1955
2077
|
|
1956
2078
|
[[package]]
|
1957
2079
|
name = "wasmtime-fiber"
|
1958
|
-
version = "
|
2080
|
+
version = "16.0.0"
|
1959
2081
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1960
|
-
checksum = "
|
2082
|
+
checksum = "40ecf1d3a838b0956b71ad3f8cb80069a228339775bf02dd35d86a5a68bbe443"
|
1961
2083
|
dependencies = [
|
2084
|
+
"anyhow",
|
1962
2085
|
"cc",
|
1963
2086
|
"cfg-if",
|
1964
|
-
"rustix
|
2087
|
+
"rustix",
|
1965
2088
|
"wasmtime-asm-macros",
|
2089
|
+
"wasmtime-versioned-export-macros",
|
1966
2090
|
"windows-sys 0.48.0",
|
1967
2091
|
]
|
1968
2092
|
|
1969
2093
|
[[package]]
|
1970
2094
|
name = "wasmtime-jit"
|
1971
|
-
version = "
|
2095
|
+
version = "16.0.0"
|
1972
2096
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1973
|
-
checksum = "
|
2097
|
+
checksum = "f485336add49267d8859e8f8084d2d4b9a4b1564496b6f30ba5b168d50c10ceb"
|
1974
2098
|
dependencies = [
|
1975
2099
|
"addr2line",
|
1976
2100
|
"anyhow",
|
@@ -1982,7 +2106,9 @@ dependencies = [
|
|
1982
2106
|
"log",
|
1983
2107
|
"object",
|
1984
2108
|
"rustc-demangle",
|
2109
|
+
"rustix",
|
1985
2110
|
"serde",
|
2111
|
+
"serde_derive",
|
1986
2112
|
"target-lexicon",
|
1987
2113
|
"wasmtime-environ",
|
1988
2114
|
"wasmtime-jit-debug",
|
@@ -1993,20 +2119,21 @@ dependencies = [
|
|
1993
2119
|
|
1994
2120
|
[[package]]
|
1995
2121
|
name = "wasmtime-jit-debug"
|
1996
|
-
version = "
|
2122
|
+
version = "16.0.0"
|
1997
2123
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1998
|
-
checksum = "
|
2124
|
+
checksum = "65e119affec40edb2fab9044f188759a00c2df9c3017278d047012a2de1efb4f"
|
1999
2125
|
dependencies = [
|
2000
2126
|
"object",
|
2001
2127
|
"once_cell",
|
2002
|
-
"rustix
|
2128
|
+
"rustix",
|
2129
|
+
"wasmtime-versioned-export-macros",
|
2003
2130
|
]
|
2004
2131
|
|
2005
2132
|
[[package]]
|
2006
2133
|
name = "wasmtime-jit-icache-coherence"
|
2007
|
-
version = "
|
2134
|
+
version = "16.0.0"
|
2008
2135
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2009
|
-
checksum = "
|
2136
|
+
checksum = "6b6d197fcc34ad32ed440e1f9552fd57d1f377d9699d31dee1b5b457322c1f8a"
|
2010
2137
|
dependencies = [
|
2011
2138
|
"cfg-if",
|
2012
2139
|
"libc",
|
@@ -2015,66 +2142,128 @@ dependencies = [
|
|
2015
2142
|
|
2016
2143
|
[[package]]
|
2017
2144
|
name = "wasmtime-runtime"
|
2018
|
-
version = "
|
2145
|
+
version = "16.0.0"
|
2019
2146
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2020
|
-
checksum = "
|
2147
|
+
checksum = "794b2bb19b99ef8322ff0dd9fe1ba7e19c41036dfb260b3f99ecce128c42ff92"
|
2021
2148
|
dependencies = [
|
2022
2149
|
"anyhow",
|
2023
2150
|
"cc",
|
2024
2151
|
"cfg-if",
|
2025
|
-
"
|
2152
|
+
"encoding_rs",
|
2153
|
+
"indexmap 2.1.0",
|
2026
2154
|
"libc",
|
2027
2155
|
"log",
|
2028
2156
|
"mach",
|
2029
2157
|
"memfd",
|
2030
2158
|
"memoffset",
|
2031
2159
|
"paste",
|
2032
|
-
"
|
2033
|
-
"rustix
|
2160
|
+
"psm",
|
2161
|
+
"rustix",
|
2162
|
+
"sptr",
|
2163
|
+
"wasm-encoder 0.38.1",
|
2034
2164
|
"wasmtime-asm-macros",
|
2035
2165
|
"wasmtime-environ",
|
2036
2166
|
"wasmtime-fiber",
|
2037
2167
|
"wasmtime-jit-debug",
|
2168
|
+
"wasmtime-versioned-export-macros",
|
2169
|
+
"wasmtime-wmemcheck",
|
2038
2170
|
"windows-sys 0.48.0",
|
2039
2171
|
]
|
2040
2172
|
|
2041
2173
|
[[package]]
|
2042
2174
|
name = "wasmtime-types"
|
2043
|
-
version = "
|
2175
|
+
version = "16.0.0"
|
2044
2176
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2045
|
-
checksum = "
|
2177
|
+
checksum = "d995db8bb56f2cd8d2dc0ed5ffab94ffb435283b0fe6747f80f7aab40b2d06a1"
|
2046
2178
|
dependencies = [
|
2047
2179
|
"cranelift-entity",
|
2048
2180
|
"serde",
|
2181
|
+
"serde_derive",
|
2049
2182
|
"thiserror",
|
2050
|
-
"wasmparser 0.
|
2183
|
+
"wasmparser 0.118.1",
|
2184
|
+
]
|
2185
|
+
|
2186
|
+
[[package]]
|
2187
|
+
name = "wasmtime-versioned-export-macros"
|
2188
|
+
version = "16.0.0"
|
2189
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2190
|
+
checksum = "f55c5565959287c21dd0f4277ae3518dd2ae62679f655ee2dbc4396e19d210db"
|
2191
|
+
dependencies = [
|
2192
|
+
"proc-macro2",
|
2193
|
+
"quote",
|
2194
|
+
"syn 2.0.48",
|
2051
2195
|
]
|
2052
2196
|
|
2053
2197
|
[[package]]
|
2054
2198
|
name = "wasmtime-wasi"
|
2055
|
-
version = "
|
2199
|
+
version = "16.0.0"
|
2056
2200
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2057
|
-
checksum = "
|
2201
|
+
checksum = "ccd8370078149d49a3a47e93741553fd79b700421464b6a27ca32718192ab130"
|
2058
2202
|
dependencies = [
|
2059
2203
|
"anyhow",
|
2204
|
+
"async-trait",
|
2205
|
+
"bitflags 2.4.1",
|
2206
|
+
"bytes",
|
2207
|
+
"cap-fs-ext",
|
2208
|
+
"cap-net-ext",
|
2209
|
+
"cap-rand",
|
2210
|
+
"cap-std",
|
2211
|
+
"cap-time-ext",
|
2212
|
+
"fs-set-times",
|
2213
|
+
"futures",
|
2214
|
+
"io-extras",
|
2215
|
+
"io-lifetimes",
|
2060
2216
|
"libc",
|
2217
|
+
"log",
|
2218
|
+
"once_cell",
|
2219
|
+
"rustix",
|
2220
|
+
"system-interface",
|
2221
|
+
"thiserror",
|
2222
|
+
"tokio",
|
2223
|
+
"tracing",
|
2224
|
+
"url",
|
2061
2225
|
"wasi-cap-std-sync",
|
2062
2226
|
"wasi-common",
|
2063
2227
|
"wasmtime",
|
2064
2228
|
"wiggle",
|
2229
|
+
"windows-sys 0.48.0",
|
2230
|
+
]
|
2231
|
+
|
2232
|
+
[[package]]
|
2233
|
+
name = "wasmtime-winch"
|
2234
|
+
version = "16.0.0"
|
2235
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2236
|
+
checksum = "2c6f945ff9bad96e0a69973d74f193c19f627c8adbf250e7cb73ae7564b6cc8a"
|
2237
|
+
dependencies = [
|
2238
|
+
"anyhow",
|
2239
|
+
"cranelift-codegen",
|
2240
|
+
"gimli",
|
2241
|
+
"object",
|
2242
|
+
"target-lexicon",
|
2243
|
+
"wasmparser 0.118.1",
|
2244
|
+
"wasmtime-cranelift-shared",
|
2245
|
+
"wasmtime-environ",
|
2246
|
+
"winch-codegen",
|
2065
2247
|
]
|
2066
2248
|
|
2067
2249
|
[[package]]
|
2068
2250
|
name = "wasmtime-wit-bindgen"
|
2069
|
-
version = "
|
2251
|
+
version = "16.0.0"
|
2070
2252
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2071
|
-
checksum = "
|
2253
|
+
checksum = "f328b2d4a690270324756e886ed5be3a4da4c00be0eea48253f4595ad068062b"
|
2072
2254
|
dependencies = [
|
2073
2255
|
"anyhow",
|
2074
2256
|
"heck 0.4.1",
|
2257
|
+
"indexmap 2.1.0",
|
2075
2258
|
"wit-parser",
|
2076
2259
|
]
|
2077
2260
|
|
2261
|
+
[[package]]
|
2262
|
+
name = "wasmtime-wmemcheck"
|
2263
|
+
version = "16.0.0"
|
2264
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2265
|
+
checksum = "67761d8f8c0b3c13a5d34356274b10a40baba67fe9cfabbfc379a8b414e45de2"
|
2266
|
+
|
2078
2267
|
[[package]]
|
2079
2268
|
name = "wast"
|
2080
2269
|
version = "35.0.2"
|
@@ -2107,13 +2296,13 @@ dependencies = [
|
|
2107
2296
|
|
2108
2297
|
[[package]]
|
2109
2298
|
name = "wiggle"
|
2110
|
-
version = "
|
2299
|
+
version = "16.0.0"
|
2111
2300
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2112
|
-
checksum = "
|
2301
|
+
checksum = "0afb26cd3269289bb314a361ff0a6685e5ce793b62181a9fe3f81ace15051697"
|
2113
2302
|
dependencies = [
|
2114
2303
|
"anyhow",
|
2115
2304
|
"async-trait",
|
2116
|
-
"bitflags
|
2305
|
+
"bitflags 2.4.1",
|
2117
2306
|
"thiserror",
|
2118
2307
|
"tracing",
|
2119
2308
|
"wasmtime",
|
@@ -2122,28 +2311,28 @@ dependencies = [
|
|
2122
2311
|
|
2123
2312
|
[[package]]
|
2124
2313
|
name = "wiggle-generate"
|
2125
|
-
version = "
|
2314
|
+
version = "16.0.0"
|
2126
2315
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2127
|
-
checksum = "
|
2316
|
+
checksum = "cef2868fed7584d2b552fa317104858ded80021d23b073b2d682d3c932a027bd"
|
2128
2317
|
dependencies = [
|
2129
2318
|
"anyhow",
|
2130
2319
|
"heck 0.4.1",
|
2131
2320
|
"proc-macro2",
|
2132
2321
|
"quote",
|
2133
2322
|
"shellexpand",
|
2134
|
-
"syn
|
2323
|
+
"syn 2.0.48",
|
2135
2324
|
"witx",
|
2136
2325
|
]
|
2137
2326
|
|
2138
2327
|
[[package]]
|
2139
2328
|
name = "wiggle-macro"
|
2140
|
-
version = "
|
2329
|
+
version = "16.0.0"
|
2141
2330
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2142
|
-
checksum = "
|
2331
|
+
checksum = "31ae1ec11a17ea481539ee9a5719a278c9790d974060fbf71db4b2c05378780b"
|
2143
2332
|
dependencies = [
|
2144
2333
|
"proc-macro2",
|
2145
2334
|
"quote",
|
2146
|
-
"syn
|
2335
|
+
"syn 2.0.48",
|
2147
2336
|
"wiggle-generate",
|
2148
2337
|
]
|
2149
2338
|
|
@@ -2164,19 +2353,35 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2164
2353
|
checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6"
|
2165
2354
|
|
2166
2355
|
[[package]]
|
2167
|
-
name = "winapi-
|
2168
|
-
version = "0.
|
2356
|
+
name = "winapi-x86_64-pc-windows-gnu"
|
2357
|
+
version = "0.4.0"
|
2169
2358
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2170
|
-
checksum = "
|
2359
|
+
checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f"
|
2360
|
+
|
2361
|
+
[[package]]
|
2362
|
+
name = "winch-codegen"
|
2363
|
+
version = "0.14.0"
|
2364
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2365
|
+
checksum = "58e58c236a6abdd9ab454552b4f29e16cfa837a86897c1503313b2e62e7609ec"
|
2171
2366
|
dependencies = [
|
2172
|
-
"
|
2367
|
+
"anyhow",
|
2368
|
+
"cranelift-codegen",
|
2369
|
+
"gimli",
|
2370
|
+
"regalloc2",
|
2371
|
+
"smallvec",
|
2372
|
+
"target-lexicon",
|
2373
|
+
"wasmparser 0.118.1",
|
2374
|
+
"wasmtime-environ",
|
2173
2375
|
]
|
2174
2376
|
|
2175
2377
|
[[package]]
|
2176
|
-
name = "
|
2177
|
-
version = "0.
|
2378
|
+
name = "windows-core"
|
2379
|
+
version = "0.52.0"
|
2178
2380
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2179
|
-
checksum = "
|
2381
|
+
checksum = "33ab640c8d7e35bf8ba19b884ba838ceb4fba93a4e8c65a9059d08afcfc683d9"
|
2382
|
+
dependencies = [
|
2383
|
+
"windows-targets 0.52.0",
|
2384
|
+
]
|
2180
2385
|
|
2181
2386
|
[[package]]
|
2182
2387
|
name = "windows-sys"
|
@@ -2310,28 +2515,6 @@ version = "0.52.0"
|
|
2310
2515
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2311
2516
|
checksum = "dff9641d1cd4be8d1a070daf9e3773c5f67e78b4d9d42263020c057706765c04"
|
2312
2517
|
|
2313
|
-
[[package]]
|
2314
|
-
name = "winx"
|
2315
|
-
version = "0.31.0"
|
2316
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2317
|
-
checksum = "08d5973cb8cd94a77d03ad7e23bbe14889cb29805da1cec0e4aff75e21aebded"
|
2318
|
-
dependencies = [
|
2319
|
-
"bitflags 1.3.2",
|
2320
|
-
"io-lifetimes 0.5.3",
|
2321
|
-
"winapi",
|
2322
|
-
]
|
2323
|
-
|
2324
|
-
[[package]]
|
2325
|
-
name = "winx"
|
2326
|
-
version = "0.35.1"
|
2327
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2328
|
-
checksum = "1c52a121f0fbf9320d5f2a9a5d82f6cb7557eda5e8b47fc3e7f359ec866ae960"
|
2329
|
-
dependencies = [
|
2330
|
-
"bitflags 1.3.2",
|
2331
|
-
"io-lifetimes 1.0.11",
|
2332
|
-
"windows-sys 0.48.0",
|
2333
|
-
]
|
2334
|
-
|
2335
2518
|
[[package]]
|
2336
2519
|
name = "winx"
|
2337
2520
|
version = "0.36.3"
|
@@ -2344,17 +2527,19 @@ dependencies = [
|
|
2344
2527
|
|
2345
2528
|
[[package]]
|
2346
2529
|
name = "wit-parser"
|
2347
|
-
version = "0.
|
2530
|
+
version = "0.13.0"
|
2348
2531
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2349
|
-
checksum = "
|
2532
|
+
checksum = "15df6b7b28ce94b8be39d8df5cb21a08a4f3b9f33b631aedb4aa5776f785ead3"
|
2350
2533
|
dependencies = [
|
2351
2534
|
"anyhow",
|
2352
2535
|
"id-arena",
|
2353
|
-
"indexmap",
|
2536
|
+
"indexmap 2.1.0",
|
2354
2537
|
"log",
|
2355
|
-
"
|
2538
|
+
"semver",
|
2539
|
+
"serde",
|
2540
|
+
"serde_derive",
|
2541
|
+
"serde_json",
|
2356
2542
|
"unicode-xid",
|
2357
|
-
"url",
|
2358
2543
|
]
|
2359
2544
|
|
2360
2545
|
[[package]]
|
@@ -2371,32 +2556,16 @@ dependencies = [
|
|
2371
2556
|
|
2372
2557
|
[[package]]
|
2373
2558
|
name = "wizer"
|
2374
|
-
version = "
|
2559
|
+
version = "4.0.0"
|
2375
2560
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2376
|
-
checksum = "
|
2377
|
-
dependencies = [
|
2378
|
-
"anyhow",
|
2379
|
-
"cap-std 0.24.4",
|
2380
|
-
"log",
|
2381
|
-
"rayon",
|
2382
|
-
"wasi-cap-std-sync",
|
2383
|
-
"wasm-encoder 0.28.0",
|
2384
|
-
"wasmparser 0.106.0",
|
2385
|
-
"wasmtime",
|
2386
|
-
"wasmtime-wasi",
|
2387
|
-
]
|
2388
|
-
|
2389
|
-
[[package]]
|
2390
|
-
name = "wizer"
|
2391
|
-
version = "3.0.1"
|
2392
|
-
source = "git+https://github.com/bytecodealliance/wizer.git?rev=v3.0.1#a0125eb591a77bbf61af15d4f8675243a5651229"
|
2561
|
+
checksum = "31f1f0143257faa028962616998d9bcf456f2b92b41d923fb630d0c62250f1fc"
|
2393
2562
|
dependencies = [
|
2394
2563
|
"anyhow",
|
2395
|
-
"cap-std
|
2564
|
+
"cap-std",
|
2396
2565
|
"log",
|
2397
2566
|
"rayon",
|
2398
2567
|
"wasi-cap-std-sync",
|
2399
|
-
"wasm-encoder 0.
|
2568
|
+
"wasm-encoder 0.30.0",
|
2400
2569
|
"wasmparser 0.106.0",
|
2401
2570
|
"wasmtime",
|
2402
2571
|
"wasmtime-wasi",
|
@@ -2419,7 +2588,7 @@ checksum = "9ce1b18ccd8e73a9321186f97e46f9f04b778851177567b1975109d26a08d2a6"
|
|
2419
2588
|
dependencies = [
|
2420
2589
|
"proc-macro2",
|
2421
2590
|
"quote",
|
2422
|
-
"syn 2.0.
|
2591
|
+
"syn 2.0.48",
|
2423
2592
|
]
|
2424
2593
|
|
2425
2594
|
[[package]]
|