ruby_wasm 2.5.0.pre.1 → 2.5.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/CONTRIBUTING.md +13 -9
- data/Cargo.lock +705 -451
- data/Gemfile +1 -1
- data/README.md +12 -19
- data/Rakefile +9 -9
- data/benchmarks/vm_deep_call.rb +2 -2
- data/docs/cheat_sheet.md +8 -8
- data/ext/ruby_wasm/Cargo.toml +6 -5
- data/ext/ruby_wasm/src/lib.rs +208 -7
- data/lib/ruby_wasm/build/executor.rb +4 -0
- data/lib/ruby_wasm/build/product/crossruby.rb +57 -23
- data/lib/ruby_wasm/build/product/libyaml.rb +5 -3
- data/lib/ruby_wasm/build/product/openssl.rb +7 -2
- data/lib/ruby_wasm/build/product/product.rb +3 -3
- data/lib/ruby_wasm/build/product/ruby_source.rb +3 -3
- data/lib/ruby_wasm/build/product/wasi_vfs.rb +1 -39
- data/lib/ruby_wasm/build/product/zlib.rb +5 -3
- data/lib/ruby_wasm/build/target.rb +24 -0
- data/lib/ruby_wasm/build/toolchain.rb +1 -1
- data/lib/ruby_wasm/build.rb +7 -3
- data/lib/ruby_wasm/cli.rb +171 -13
- data/lib/ruby_wasm/feature_set.rb +30 -0
- data/lib/ruby_wasm/packager/component_adapter/wasi_snapshot_preview1.command.wasm +0 -0
- data/lib/ruby_wasm/packager/component_adapter/wasi_snapshot_preview1.reactor.wasm +0 -0
- data/lib/ruby_wasm/packager/component_adapter.rb +14 -0
- data/lib/ruby_wasm/packager/core.rb +192 -4
- data/lib/ruby_wasm/packager/file_system.rb +20 -17
- data/lib/ruby_wasm/packager.rb +21 -83
- data/lib/ruby_wasm/rake_task.rb +2 -0
- data/lib/ruby_wasm/version.rb +1 -1
- data/lib/ruby_wasm.rb +2 -0
- data/package-lock.json +410 -133
- data/package.json +3 -3
- data/{tasks → rakelib}/ci.rake +3 -3
- 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 +34 -17
- data/{tasks → rakelib}/version.rake +2 -0
- data/sig/ruby_wasm/build.rbs +36 -31
- data/sig/ruby_wasm/cli.rbs +30 -3
- data/sig/ruby_wasm/ext.rbs +28 -3
- data/sig/ruby_wasm/feature_set.rbs +12 -0
- data/sig/ruby_wasm/packager.rbs +44 -7
- metadata +16 -15
- data/builders/wasm32-unknown-emscripten/Dockerfile +0 -43
- data/builders/wasm32-unknown-emscripten/entrypoint.sh +0 -7
- data/builders/wasm32-unknown-wasi/Dockerfile +0 -47
- data/builders/wasm32-unknown-wasi/entrypoint.sh +0 -7
- data/ruby_wasm.gemspec +0 -32
- /data/{tasks → rakelib}/check.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.
|
870
|
+
version = "0.18.1"
|
805
871
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
806
|
-
checksum = "
|
872
|
+
checksum = "c301e73fb90e8a29e600a9f402d095765f74310d582916a952f618836a1bd1ed"
|
807
873
|
dependencies = [
|
808
|
-
"io-lifetimes
|
809
|
-
"windows-sys 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"
|
821
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
822
|
-
checksum = "eae7b9aee968036d54dce06cebaefd919e4472e753296daccd6d344e3e2df0c2"
|
823
|
-
dependencies = [
|
824
|
-
"hermit-abi 0.3.3",
|
825
|
-
"libc",
|
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"
|
@@ -977,6 +1012,7 @@ version = "0.6.2"
|
|
977
1012
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
978
1013
|
checksum = "4778544796676e8428e9c622460ebf284bea52d8b10db3aeb449d8b5e61b3a13"
|
979
1014
|
dependencies = [
|
1015
|
+
"bytes",
|
980
1016
|
"magnus-macros",
|
981
1017
|
"rb-sys",
|
982
1018
|
"rb-sys-env",
|
@@ -991,7 +1027,7 @@ checksum = "5968c820e2960565f647819f5928a42d6e874551cab9d88d75e3e0660d7f71e3"
|
|
991
1027
|
dependencies = [
|
992
1028
|
"proc-macro2",
|
993
1029
|
"quote",
|
994
|
-
"syn 2.0.
|
1030
|
+
"syn 2.0.48",
|
995
1031
|
]
|
996
1032
|
|
997
1033
|
[[package]]
|
@@ -1012,14 +1048,14 @@ version = "0.6.4"
|
|
1012
1048
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1013
1049
|
checksum = "b2cffa4ad52c6f791f4f8b15f0c05f9824b2ced1160e88cc393d64fff9a8ac64"
|
1014
1050
|
dependencies = [
|
1015
|
-
"rustix
|
1051
|
+
"rustix",
|
1016
1052
|
]
|
1017
1053
|
|
1018
1054
|
[[package]]
|
1019
1055
|
name = "memoffset"
|
1020
|
-
version = "0.
|
1056
|
+
version = "0.9.0"
|
1021
1057
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1022
|
-
checksum = "
|
1058
|
+
checksum = "5a634b1c61a95585bd15607c6ab0c4e5b226e695ff2800ba0cdccddf208c406c"
|
1023
1059
|
dependencies = [
|
1024
1060
|
"autocfg",
|
1025
1061
|
]
|
@@ -1030,6 +1066,26 @@ version = "0.2.1"
|
|
1030
1066
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1031
1067
|
checksum = "68354c5c6bd36d73ff3feceb05efa59b6acb7626617f4962be322a825e61f79a"
|
1032
1068
|
|
1069
|
+
[[package]]
|
1070
|
+
name = "miniz_oxide"
|
1071
|
+
version = "0.7.1"
|
1072
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1073
|
+
checksum = "e7810e0be55b428ada41041c41f32c9f1a42817901b4ccf45fa3d4b6561e74c7"
|
1074
|
+
dependencies = [
|
1075
|
+
"adler",
|
1076
|
+
]
|
1077
|
+
|
1078
|
+
[[package]]
|
1079
|
+
name = "mio"
|
1080
|
+
version = "0.8.10"
|
1081
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1082
|
+
checksum = "8f3d0b296e374a4e6f3c7b0a1f5a51d748a0d34c85e7dc48fc3fa9a87657fe09"
|
1083
|
+
dependencies = [
|
1084
|
+
"libc",
|
1085
|
+
"wasi",
|
1086
|
+
"windows-sys 0.48.0",
|
1087
|
+
]
|
1088
|
+
|
1033
1089
|
[[package]]
|
1034
1090
|
name = "nom"
|
1035
1091
|
version = "7.1.3"
|
@@ -1040,15 +1096,25 @@ dependencies = [
|
|
1040
1096
|
"minimal-lexical",
|
1041
1097
|
]
|
1042
1098
|
|
1099
|
+
[[package]]
|
1100
|
+
name = "num_cpus"
|
1101
|
+
version = "1.16.0"
|
1102
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1103
|
+
checksum = "4161fcb6d602d4d2081af7c3a45852d875a03dd337a6bfdd6e06407b61342a43"
|
1104
|
+
dependencies = [
|
1105
|
+
"hermit-abi 0.3.3",
|
1106
|
+
"libc",
|
1107
|
+
]
|
1108
|
+
|
1043
1109
|
[[package]]
|
1044
1110
|
name = "object"
|
1045
|
-
version = "0.
|
1111
|
+
version = "0.32.2"
|
1046
1112
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1047
|
-
checksum = "
|
1113
|
+
checksum = "a6a622008b6e321afc04970976f62ee297fdbaa6f95318ca343e3eebb9648441"
|
1048
1114
|
dependencies = [
|
1049
1115
|
"crc32fast",
|
1050
|
-
"hashbrown 0.
|
1051
|
-
"indexmap",
|
1116
|
+
"hashbrown 0.14.3",
|
1117
|
+
"indexmap 2.1.0",
|
1052
1118
|
"memchr",
|
1053
1119
|
]
|
1054
1120
|
|
@@ -1082,6 +1148,12 @@ version = "0.2.13"
|
|
1082
1148
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1083
1149
|
checksum = "8afb450f006bf6385ca15ef45d71d2288452bc3683ce2e2cacc0d18e4be60b58"
|
1084
1150
|
|
1151
|
+
[[package]]
|
1152
|
+
name = "pin-utils"
|
1153
|
+
version = "0.1.0"
|
1154
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1155
|
+
checksum = "8b870d8c151b6f2fb93e84a13146138f05d02ed11c7e7c54f8826aaaf7c9f184"
|
1156
|
+
|
1085
1157
|
[[package]]
|
1086
1158
|
name = "pkg-config"
|
1087
1159
|
version = "0.3.28"
|
@@ -1120,9 +1192,9 @@ dependencies = [
|
|
1120
1192
|
|
1121
1193
|
[[package]]
|
1122
1194
|
name = "proc-macro2"
|
1123
|
-
version = "1.0.
|
1195
|
+
version = "1.0.76"
|
1124
1196
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1125
|
-
checksum = "
|
1197
|
+
checksum = "95fc56cda0b5c3325f5fbbd7ff9fda9e02bb00bb3dac51252d2f1bfa1cb8cc8c"
|
1126
1198
|
dependencies = [
|
1127
1199
|
"unicode-ident",
|
1128
1200
|
]
|
@@ -1136,22 +1208,11 @@ dependencies = [
|
|
1136
1208
|
"cc",
|
1137
1209
|
]
|
1138
1210
|
|
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
1211
|
[[package]]
|
1151
1212
|
name = "quote"
|
1152
|
-
version = "1.0.
|
1213
|
+
version = "1.0.35"
|
1153
1214
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1154
|
-
checksum = "
|
1215
|
+
checksum = "291ec9ab5efd934aaf503a6466c5d5251535d108ee747472c3977cc5acc868ef"
|
1155
1216
|
dependencies = [
|
1156
1217
|
"proc-macro2",
|
1157
1218
|
]
|
@@ -1208,18 +1269,18 @@ dependencies = [
|
|
1208
1269
|
|
1209
1270
|
[[package]]
|
1210
1271
|
name = "rb-sys"
|
1211
|
-
version = "0.9.
|
1272
|
+
version = "0.9.97"
|
1212
1273
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1213
|
-
checksum = "
|
1274
|
+
checksum = "47d30bcad206b51f2f66121190ca678dce1fdf3a2eae0ac5d838d1818b19bdf5"
|
1214
1275
|
dependencies = [
|
1215
1276
|
"rb-sys-build",
|
1216
1277
|
]
|
1217
1278
|
|
1218
1279
|
[[package]]
|
1219
1280
|
name = "rb-sys-build"
|
1220
|
-
version = "0.9.
|
1281
|
+
version = "0.9.97"
|
1221
1282
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1222
|
-
checksum = "
|
1283
|
+
checksum = "3cbd92f281615f3c2dcb9dcb0f0576624752afbf9a7f99173b37c4b55b62dd8a"
|
1223
1284
|
dependencies = [
|
1224
1285
|
"bindgen",
|
1225
1286
|
"lazy_static",
|
@@ -1227,7 +1288,7 @@ dependencies = [
|
|
1227
1288
|
"quote",
|
1228
1289
|
"regex",
|
1229
1290
|
"shell-words",
|
1230
|
-
"syn 2.0.
|
1291
|
+
"syn 2.0.48",
|
1231
1292
|
]
|
1232
1293
|
|
1233
1294
|
[[package]]
|
@@ -1258,9 +1319,9 @@ dependencies = [
|
|
1258
1319
|
|
1259
1320
|
[[package]]
|
1260
1321
|
name = "regalloc2"
|
1261
|
-
version = "0.
|
1322
|
+
version = "0.9.3"
|
1262
1323
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1263
|
-
checksum = "
|
1324
|
+
checksum = "ad156d539c879b7a24a363a2016d77961786e71f48f2e2fc8302a92abd2429a6"
|
1264
1325
|
dependencies = [
|
1265
1326
|
"hashbrown 0.13.2",
|
1266
1327
|
"log",
|
@@ -1302,11 +1363,12 @@ checksum = "c08c74e62047bb2de4ff487b251e4a92e24f48745648451635cec7d591162d9f"
|
|
1302
1363
|
name = "ruby_wasm"
|
1303
1364
|
version = "0.0.0"
|
1304
1365
|
dependencies = [
|
1366
|
+
"bytes",
|
1305
1367
|
"magnus",
|
1306
|
-
"
|
1368
|
+
"structopt",
|
1307
1369
|
"wasi-vfs-cli",
|
1308
|
-
"
|
1309
|
-
"wizer
|
1370
|
+
"wit-component",
|
1371
|
+
"wizer",
|
1310
1372
|
]
|
1311
1373
|
|
1312
1374
|
[[package]]
|
@@ -1321,38 +1383,6 @@ version = "1.1.0"
|
|
1321
1383
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1322
1384
|
checksum = "08d43f7aa6b08d49f382cde6a7982047c3426db949b1424bc4b7ec9ae12c6ce2"
|
1323
1385
|
|
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
1386
|
[[package]]
|
1357
1387
|
name = "rustix"
|
1358
1388
|
version = "0.38.28"
|
@@ -1360,9 +1390,11 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1360
1390
|
checksum = "72e572a5e8ca657d7366229cdde4bd14c4eb5499a9573d4d366fe1b599daa316"
|
1361
1391
|
dependencies = [
|
1362
1392
|
"bitflags 2.4.1",
|
1363
|
-
"errno
|
1393
|
+
"errno",
|
1394
|
+
"itoa",
|
1364
1395
|
"libc",
|
1365
|
-
"linux-raw-sys
|
1396
|
+
"linux-raw-sys",
|
1397
|
+
"once_cell",
|
1366
1398
|
"windows-sys 0.52.0",
|
1367
1399
|
]
|
1368
1400
|
|
@@ -1372,6 +1404,12 @@ version = "1.0.16"
|
|
1372
1404
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1373
1405
|
checksum = "f98d2aa92eebf49b69786be48e4477826b256916e84a57ff2a4f21923b48eb4c"
|
1374
1406
|
|
1407
|
+
[[package]]
|
1408
|
+
name = "semver"
|
1409
|
+
version = "1.0.21"
|
1410
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1411
|
+
checksum = "b97ed7a9823b74f99c7742f5336af7be5ecd3eeafcb1507d1fa93347b1d589b0"
|
1412
|
+
|
1375
1413
|
[[package]]
|
1376
1414
|
name = "seq-macro"
|
1377
1415
|
version = "0.3.5"
|
@@ -1380,29 +1418,29 @@ checksum = "a3f0bf26fd526d2a95683cd0f87bf103b8539e2ca1ef48ce002d67aad59aa0b4"
|
|
1380
1418
|
|
1381
1419
|
[[package]]
|
1382
1420
|
name = "serde"
|
1383
|
-
version = "1.0.
|
1421
|
+
version = "1.0.195"
|
1384
1422
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1385
|
-
checksum = "
|
1423
|
+
checksum = "63261df402c67811e9ac6def069e4786148c4563f4b50fd4bf30aa370d626b02"
|
1386
1424
|
dependencies = [
|
1387
1425
|
"serde_derive",
|
1388
1426
|
]
|
1389
1427
|
|
1390
1428
|
[[package]]
|
1391
1429
|
name = "serde_derive"
|
1392
|
-
version = "1.0.
|
1430
|
+
version = "1.0.195"
|
1393
1431
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1394
|
-
checksum = "
|
1432
|
+
checksum = "46fe8f8603d81ba86327b23a2e9cdf49e1255fb94a4c5f297f6ee0547178ea2c"
|
1395
1433
|
dependencies = [
|
1396
1434
|
"proc-macro2",
|
1397
1435
|
"quote",
|
1398
|
-
"syn 2.0.
|
1436
|
+
"syn 2.0.48",
|
1399
1437
|
]
|
1400
1438
|
|
1401
1439
|
[[package]]
|
1402
1440
|
name = "serde_json"
|
1403
|
-
version = "1.0.
|
1441
|
+
version = "1.0.111"
|
1404
1442
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1405
|
-
checksum = "
|
1443
|
+
checksum = "176e46fa42316f18edd598015a5166857fc835ec732f5215eac6b7bdbf0a84f4"
|
1406
1444
|
dependencies = [
|
1407
1445
|
"itoa",
|
1408
1446
|
"ryu",
|
@@ -1453,6 +1491,31 @@ version = "1.11.2"
|
|
1453
1491
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1454
1492
|
checksum = "4dccd0940a2dcdf68d092b8cbab7dc0ad8fa938bf95787e1b916b0e3d0e8e970"
|
1455
1493
|
|
1494
|
+
[[package]]
|
1495
|
+
name = "socket2"
|
1496
|
+
version = "0.5.5"
|
1497
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1498
|
+
checksum = "7b5fac59a5cb5dd637972e5fca70daf0523c9067fcdc4842f053dae04a18f8e9"
|
1499
|
+
dependencies = [
|
1500
|
+
"libc",
|
1501
|
+
"windows-sys 0.48.0",
|
1502
|
+
]
|
1503
|
+
|
1504
|
+
[[package]]
|
1505
|
+
name = "spdx"
|
1506
|
+
version = "0.10.4"
|
1507
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1508
|
+
checksum = "29ef1a0fa1e39ac22972c8db23ff89aea700ab96aa87114e1fb55937a631a0c9"
|
1509
|
+
dependencies = [
|
1510
|
+
"smallvec",
|
1511
|
+
]
|
1512
|
+
|
1513
|
+
[[package]]
|
1514
|
+
name = "sptr"
|
1515
|
+
version = "0.3.2"
|
1516
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1517
|
+
checksum = "3b9b39299b249ad65f3b7e96443bad61c02ca5cd3589f46cb6d610a0fd6c0d6a"
|
1518
|
+
|
1456
1519
|
[[package]]
|
1457
1520
|
name = "stable_deref_trait"
|
1458
1521
|
version = "1.2.0"
|
@@ -1502,9 +1565,9 @@ dependencies = [
|
|
1502
1565
|
|
1503
1566
|
[[package]]
|
1504
1567
|
name = "syn"
|
1505
|
-
version = "2.0.
|
1568
|
+
version = "2.0.48"
|
1506
1569
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1507
|
-
checksum = "
|
1570
|
+
checksum = "0f3531638e407dfc0814761abb7c00a5b54992b849452a0646b7f65c9f770f3f"
|
1508
1571
|
dependencies = [
|
1509
1572
|
"proc-macro2",
|
1510
1573
|
"quote",
|
@@ -1513,34 +1576,25 @@ dependencies = [
|
|
1513
1576
|
|
1514
1577
|
[[package]]
|
1515
1578
|
name = "system-interface"
|
1516
|
-
version = "0.
|
1579
|
+
version = "0.26.1"
|
1517
1580
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1518
|
-
checksum = "
|
1581
|
+
checksum = "0682e006dd35771e392a6623ac180999a9a854b1d4a6c12fb2e804941c2b1f58"
|
1519
1582
|
dependencies = [
|
1520
1583
|
"bitflags 2.4.1",
|
1521
1584
|
"cap-fs-ext",
|
1522
|
-
"cap-std
|
1585
|
+
"cap-std",
|
1523
1586
|
"fd-lock",
|
1524
|
-
"io-lifetimes
|
1525
|
-
"rustix
|
1526
|
-
"windows-sys 0.
|
1527
|
-
"winx
|
1587
|
+
"io-lifetimes",
|
1588
|
+
"rustix",
|
1589
|
+
"windows-sys 0.52.0",
|
1590
|
+
"winx",
|
1528
1591
|
]
|
1529
1592
|
|
1530
1593
|
[[package]]
|
1531
1594
|
name = "target-lexicon"
|
1532
|
-
version = "0.12.
|
1595
|
+
version = "0.12.13"
|
1533
1596
|
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
|
-
]
|
1597
|
+
checksum = "69758bda2e78f098e4ccb393021a0963bb3442eac05f135c30f61b7370bbafae"
|
1544
1598
|
|
1545
1599
|
[[package]]
|
1546
1600
|
name = "textwrap"
|
@@ -1553,22 +1607,22 @@ dependencies = [
|
|
1553
1607
|
|
1554
1608
|
[[package]]
|
1555
1609
|
name = "thiserror"
|
1556
|
-
version = "1.0.
|
1610
|
+
version = "1.0.56"
|
1557
1611
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1558
|
-
checksum = "
|
1612
|
+
checksum = "d54378c645627613241d077a3a79db965db602882668f9136ac42af9ecb730ad"
|
1559
1613
|
dependencies = [
|
1560
1614
|
"thiserror-impl",
|
1561
1615
|
]
|
1562
1616
|
|
1563
1617
|
[[package]]
|
1564
1618
|
name = "thiserror-impl"
|
1565
|
-
version = "1.0.
|
1619
|
+
version = "1.0.56"
|
1566
1620
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1567
|
-
checksum = "
|
1621
|
+
checksum = "fa0faa943b50f3db30a20aa7e265dbc66076993efed8463e8de414e5d06d3471"
|
1568
1622
|
dependencies = [
|
1569
1623
|
"proc-macro2",
|
1570
1624
|
"quote",
|
1571
|
-
"syn 2.0.
|
1625
|
+
"syn 2.0.48",
|
1572
1626
|
]
|
1573
1627
|
|
1574
1628
|
[[package]]
|
@@ -1586,6 +1640,22 @@ version = "0.1.1"
|
|
1586
1640
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1587
1641
|
checksum = "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20"
|
1588
1642
|
|
1643
|
+
[[package]]
|
1644
|
+
name = "tokio"
|
1645
|
+
version = "1.35.1"
|
1646
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1647
|
+
checksum = "c89b4efa943be685f629b149f53829423f8f5531ea21249408e8e2f8671ec104"
|
1648
|
+
dependencies = [
|
1649
|
+
"backtrace",
|
1650
|
+
"bytes",
|
1651
|
+
"libc",
|
1652
|
+
"mio",
|
1653
|
+
"num_cpus",
|
1654
|
+
"pin-project-lite",
|
1655
|
+
"socket2",
|
1656
|
+
"windows-sys 0.48.0",
|
1657
|
+
]
|
1658
|
+
|
1589
1659
|
[[package]]
|
1590
1660
|
name = "toml"
|
1591
1661
|
version = "0.5.11"
|
@@ -1615,7 +1685,7 @@ checksum = "34704c8d6ebcbc939824180af020566b01a7c01f80641264eba0999f6c2b6be7"
|
|
1615
1685
|
dependencies = [
|
1616
1686
|
"proc-macro2",
|
1617
1687
|
"quote",
|
1618
|
-
"syn 2.0.
|
1688
|
+
"syn 2.0.48",
|
1619
1689
|
]
|
1620
1690
|
|
1621
1691
|
[[package]]
|
@@ -1633,15 +1703,6 @@ version = "1.17.0"
|
|
1633
1703
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1634
1704
|
checksum = "42ff0bf0c66b8238c6f3b578df37d0b7848e55df8577b3f74f92a69acceeb825"
|
1635
1705
|
|
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
1706
|
[[package]]
|
1646
1707
|
name = "unicode-bidi"
|
1647
1708
|
version = "0.3.14"
|
@@ -1718,22 +1779,21 @@ checksum = "9c8d87e72b64a3b4db28d11ce29237c246188f4f51057d65a7eab63b7987e423"
|
|
1718
1779
|
|
1719
1780
|
[[package]]
|
1720
1781
|
name = "wasi-cap-std-sync"
|
1721
|
-
version = "
|
1782
|
+
version = "16.0.0"
|
1722
1783
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1723
|
-
checksum = "
|
1784
|
+
checksum = "154528979a211aa28d969846e883df75705809ed9bcc70aba61460683ea7355b"
|
1724
1785
|
dependencies = [
|
1725
1786
|
"anyhow",
|
1726
1787
|
"async-trait",
|
1727
1788
|
"cap-fs-ext",
|
1728
1789
|
"cap-rand",
|
1729
|
-
"cap-std
|
1790
|
+
"cap-std",
|
1730
1791
|
"cap-time-ext",
|
1731
|
-
"fs-set-times
|
1732
|
-
"io-extras
|
1733
|
-
"io-lifetimes
|
1734
|
-
"is-terminal",
|
1792
|
+
"fs-set-times",
|
1793
|
+
"io-extras",
|
1794
|
+
"io-lifetimes",
|
1735
1795
|
"once_cell",
|
1736
|
-
"rustix
|
1796
|
+
"rustix",
|
1737
1797
|
"system-interface",
|
1738
1798
|
"tracing",
|
1739
1799
|
"wasi-common",
|
@@ -1742,17 +1802,17 @@ dependencies = [
|
|
1742
1802
|
|
1743
1803
|
[[package]]
|
1744
1804
|
name = "wasi-common"
|
1745
|
-
version = "
|
1805
|
+
version = "16.0.0"
|
1746
1806
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1747
|
-
checksum = "
|
1807
|
+
checksum = "3d888b611fee7d273dd057dc009d2dd3132736f36710ffd65657ac83628d1e3b"
|
1748
1808
|
dependencies = [
|
1749
1809
|
"anyhow",
|
1750
|
-
"bitflags
|
1810
|
+
"bitflags 2.4.1",
|
1751
1811
|
"cap-rand",
|
1752
|
-
"cap-std
|
1753
|
-
"io-extras
|
1812
|
+
"cap-std",
|
1813
|
+
"io-extras",
|
1754
1814
|
"log",
|
1755
|
-
"rustix
|
1815
|
+
"rustix",
|
1756
1816
|
"thiserror",
|
1757
1817
|
"tracing",
|
1758
1818
|
"wasmtime",
|
@@ -1762,21 +1822,75 @@ dependencies = [
|
|
1762
1822
|
|
1763
1823
|
[[package]]
|
1764
1824
|
name = "wasi-vfs-cli"
|
1765
|
-
version = "0.
|
1766
|
-
source = "git+https://github.com/kateinoigakukun/wasi-vfs/?
|
1825
|
+
version = "0.5.2"
|
1826
|
+
source = "git+https://github.com/kateinoigakukun/wasi-vfs/?tag=0.5.2#ad74438287035ea01f3ce895e495740f7981215c"
|
1767
1827
|
dependencies = [
|
1768
1828
|
"anyhow",
|
1769
1829
|
"structopt",
|
1770
1830
|
"wasm-encoder 0.38.1",
|
1771
1831
|
"wasmparser 0.106.0",
|
1772
|
-
"wizer
|
1832
|
+
"wizer",
|
1833
|
+
]
|
1834
|
+
|
1835
|
+
[[package]]
|
1836
|
+
name = "wasm-bindgen"
|
1837
|
+
version = "0.2.89"
|
1838
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1839
|
+
checksum = "0ed0d4f68a3015cc185aff4db9506a015f4b96f95303897bfa23f846db54064e"
|
1840
|
+
dependencies = [
|
1841
|
+
"cfg-if",
|
1842
|
+
"wasm-bindgen-macro",
|
1843
|
+
]
|
1844
|
+
|
1845
|
+
[[package]]
|
1846
|
+
name = "wasm-bindgen-backend"
|
1847
|
+
version = "0.2.89"
|
1848
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1849
|
+
checksum = "1b56f625e64f3a1084ded111c4d5f477df9f8c92df113852fa5a374dbda78826"
|
1850
|
+
dependencies = [
|
1851
|
+
"bumpalo",
|
1852
|
+
"log",
|
1853
|
+
"once_cell",
|
1854
|
+
"proc-macro2",
|
1855
|
+
"quote",
|
1856
|
+
"syn 2.0.48",
|
1857
|
+
"wasm-bindgen-shared",
|
1858
|
+
]
|
1859
|
+
|
1860
|
+
[[package]]
|
1861
|
+
name = "wasm-bindgen-macro"
|
1862
|
+
version = "0.2.89"
|
1863
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1864
|
+
checksum = "0162dbf37223cd2afce98f3d0785506dcb8d266223983e4b5b525859e6e182b2"
|
1865
|
+
dependencies = [
|
1866
|
+
"quote",
|
1867
|
+
"wasm-bindgen-macro-support",
|
1868
|
+
]
|
1869
|
+
|
1870
|
+
[[package]]
|
1871
|
+
name = "wasm-bindgen-macro-support"
|
1872
|
+
version = "0.2.89"
|
1873
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1874
|
+
checksum = "f0eb82fcb7930ae6219a7ecfd55b217f5f0893484b7a13022ebb2b2bf20b5283"
|
1875
|
+
dependencies = [
|
1876
|
+
"proc-macro2",
|
1877
|
+
"quote",
|
1878
|
+
"syn 2.0.48",
|
1879
|
+
"wasm-bindgen-backend",
|
1880
|
+
"wasm-bindgen-shared",
|
1773
1881
|
]
|
1774
1882
|
|
1883
|
+
[[package]]
|
1884
|
+
name = "wasm-bindgen-shared"
|
1885
|
+
version = "0.2.89"
|
1886
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1887
|
+
checksum = "7ab9b36309365056cd639da3134bf87fa8f3d86008abf99e612384a6eecd459f"
|
1888
|
+
|
1775
1889
|
[[package]]
|
1776
1890
|
name = "wasm-encoder"
|
1777
|
-
version = "0.
|
1891
|
+
version = "0.30.0"
|
1778
1892
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1779
|
-
checksum = "
|
1893
|
+
checksum = "b2f8e9778e04cbf44f58acc301372577375a666b966c50b03ef46144f80436a8"
|
1780
1894
|
dependencies = [
|
1781
1895
|
"leb128",
|
1782
1896
|
]
|
@@ -1791,13 +1905,28 @@ dependencies = [
|
|
1791
1905
|
]
|
1792
1906
|
|
1793
1907
|
[[package]]
|
1794
|
-
name = "
|
1795
|
-
version = "0.
|
1908
|
+
name = "wasm-encoder"
|
1909
|
+
version = "0.203.0"
|
1796
1910
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1797
|
-
checksum = "
|
1911
|
+
checksum = "87e3b46a0d9d9143d57aa926c42e2af284b5cb8f0c7b71079afc7a6fca42db50"
|
1798
1912
|
dependencies = [
|
1799
|
-
"
|
1800
|
-
|
1913
|
+
"leb128",
|
1914
|
+
]
|
1915
|
+
|
1916
|
+
[[package]]
|
1917
|
+
name = "wasm-metadata"
|
1918
|
+
version = "0.203.0"
|
1919
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1920
|
+
checksum = "19fbd9b7017bdb3ceb63503a18d1aa7b0d026e18ce659d40b93bd9a15391424f"
|
1921
|
+
dependencies = [
|
1922
|
+
"anyhow",
|
1923
|
+
"indexmap 2.1.0",
|
1924
|
+
"serde",
|
1925
|
+
"serde_derive",
|
1926
|
+
"serde_json",
|
1927
|
+
"spdx",
|
1928
|
+
"wasm-encoder 0.203.0",
|
1929
|
+
"wasmparser 0.203.0",
|
1801
1930
|
]
|
1802
1931
|
|
1803
1932
|
[[package]]
|
@@ -1806,68 +1935,103 @@ version = "0.106.0"
|
|
1806
1935
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1807
1936
|
checksum = "d014e33793cab91655fa6349b0bc974984de106b2e0f6b0dfe6f6594b260624d"
|
1808
1937
|
dependencies = [
|
1809
|
-
"indexmap",
|
1938
|
+
"indexmap 1.9.3",
|
1810
1939
|
"url",
|
1811
1940
|
]
|
1812
1941
|
|
1942
|
+
[[package]]
|
1943
|
+
name = "wasmparser"
|
1944
|
+
version = "0.118.1"
|
1945
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1946
|
+
checksum = "95ee9723b928e735d53000dec9eae7b07a60e490c85ab54abb66659fc61bfcd9"
|
1947
|
+
dependencies = [
|
1948
|
+
"indexmap 2.1.0",
|
1949
|
+
"semver",
|
1950
|
+
]
|
1951
|
+
|
1952
|
+
[[package]]
|
1953
|
+
name = "wasmparser"
|
1954
|
+
version = "0.203.0"
|
1955
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1956
|
+
checksum = "1b473b35fff082e8c8377f4e2c8d48075e562aa051e48a02229bdcafbf349d37"
|
1957
|
+
dependencies = [
|
1958
|
+
"bitflags 2.4.1",
|
1959
|
+
"indexmap 2.1.0",
|
1960
|
+
"semver",
|
1961
|
+
]
|
1962
|
+
|
1963
|
+
[[package]]
|
1964
|
+
name = "wasmprinter"
|
1965
|
+
version = "0.2.75"
|
1966
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1967
|
+
checksum = "3d027eb8294904fc715ac0870cebe6b0271e96b90605ee21511e7565c4ce568c"
|
1968
|
+
dependencies = [
|
1969
|
+
"anyhow",
|
1970
|
+
"wasmparser 0.118.1",
|
1971
|
+
]
|
1972
|
+
|
1813
1973
|
[[package]]
|
1814
1974
|
name = "wasmtime"
|
1815
|
-
version = "
|
1975
|
+
version = "16.0.0"
|
1816
1976
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1817
|
-
checksum = "
|
1977
|
+
checksum = "a8e539fded2495422ea3c4dfa7beeddba45904eece182cf315294009e1a323bf"
|
1818
1978
|
dependencies = [
|
1819
1979
|
"anyhow",
|
1820
1980
|
"async-trait",
|
1821
1981
|
"bincode",
|
1822
1982
|
"bumpalo",
|
1823
1983
|
"cfg-if",
|
1984
|
+
"encoding_rs",
|
1824
1985
|
"fxprof-processed-profile",
|
1825
|
-
"indexmap",
|
1986
|
+
"indexmap 2.1.0",
|
1826
1987
|
"libc",
|
1827
1988
|
"log",
|
1828
1989
|
"object",
|
1829
1990
|
"once_cell",
|
1830
1991
|
"paste",
|
1831
|
-
"psm",
|
1832
1992
|
"rayon",
|
1833
1993
|
"serde",
|
1994
|
+
"serde_derive",
|
1834
1995
|
"serde_json",
|
1835
1996
|
"target-lexicon",
|
1836
|
-
"
|
1997
|
+
"wasm-encoder 0.38.1",
|
1998
|
+
"wasmparser 0.118.1",
|
1837
1999
|
"wasmtime-cache",
|
1838
2000
|
"wasmtime-component-macro",
|
2001
|
+
"wasmtime-component-util",
|
1839
2002
|
"wasmtime-cranelift",
|
1840
2003
|
"wasmtime-environ",
|
1841
2004
|
"wasmtime-fiber",
|
1842
2005
|
"wasmtime-jit",
|
1843
2006
|
"wasmtime-runtime",
|
2007
|
+
"wasmtime-winch",
|
1844
2008
|
"wat",
|
1845
2009
|
"windows-sys 0.48.0",
|
1846
2010
|
]
|
1847
2011
|
|
1848
2012
|
[[package]]
|
1849
2013
|
name = "wasmtime-asm-macros"
|
1850
|
-
version = "
|
2014
|
+
version = "16.0.0"
|
1851
2015
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1852
|
-
checksum = "
|
2016
|
+
checksum = "660ba9143e15a2acd921820df221b73aee256bd3ca2d208d73d8adc9587ccbb9"
|
1853
2017
|
dependencies = [
|
1854
2018
|
"cfg-if",
|
1855
2019
|
]
|
1856
2020
|
|
1857
2021
|
[[package]]
|
1858
2022
|
name = "wasmtime-cache"
|
1859
|
-
version = "
|
2023
|
+
version = "16.0.0"
|
1860
2024
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1861
|
-
checksum = "
|
2025
|
+
checksum = "a3ce373743892002f9391c6741ef0cb0335b55ec899d874f311222b7e36f4594"
|
1862
2026
|
dependencies = [
|
1863
2027
|
"anyhow",
|
1864
2028
|
"base64",
|
1865
2029
|
"bincode",
|
1866
2030
|
"directories-next",
|
1867
|
-
"file-per-thread-logger",
|
1868
2031
|
"log",
|
1869
|
-
"rustix
|
2032
|
+
"rustix",
|
1870
2033
|
"serde",
|
2034
|
+
"serde_derive",
|
1871
2035
|
"sha2",
|
1872
2036
|
"toml",
|
1873
2037
|
"windows-sys 0.48.0",
|
@@ -1876,32 +2040,33 @@ dependencies = [
|
|
1876
2040
|
|
1877
2041
|
[[package]]
|
1878
2042
|
name = "wasmtime-component-macro"
|
1879
|
-
version = "
|
2043
|
+
version = "16.0.0"
|
1880
2044
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1881
|
-
checksum = "
|
2045
|
+
checksum = "12ef32643324e564e1c359e9044daa06cbf90d7e2d6c99a738d17a12959f01a5"
|
1882
2046
|
dependencies = [
|
1883
2047
|
"anyhow",
|
1884
2048
|
"proc-macro2",
|
1885
2049
|
"quote",
|
1886
|
-
"syn
|
2050
|
+
"syn 2.0.48",
|
1887
2051
|
"wasmtime-component-util",
|
1888
2052
|
"wasmtime-wit-bindgen",
|
1889
|
-
"wit-parser",
|
2053
|
+
"wit-parser 0.13.0",
|
1890
2054
|
]
|
1891
2055
|
|
1892
2056
|
[[package]]
|
1893
2057
|
name = "wasmtime-component-util"
|
1894
|
-
version = "
|
2058
|
+
version = "16.0.0"
|
1895
2059
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1896
|
-
checksum = "
|
2060
|
+
checksum = "8c87d06c18d21a4818f354c00a85f4ebc62b2270961cd022968452b0e4dbed9d"
|
1897
2061
|
|
1898
2062
|
[[package]]
|
1899
2063
|
name = "wasmtime-cranelift"
|
1900
|
-
version = "
|
2064
|
+
version = "16.0.0"
|
1901
2065
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1902
|
-
checksum = "
|
2066
|
+
checksum = "2d648c8b4064a7911093b02237cd5569f71ca171d3a0a486bf80600b19e1cba2"
|
1903
2067
|
dependencies = [
|
1904
2068
|
"anyhow",
|
2069
|
+
"cfg-if",
|
1905
2070
|
"cranelift-codegen",
|
1906
2071
|
"cranelift-control",
|
1907
2072
|
"cranelift-entity",
|
@@ -1913,16 +2078,17 @@ dependencies = [
|
|
1913
2078
|
"object",
|
1914
2079
|
"target-lexicon",
|
1915
2080
|
"thiserror",
|
1916
|
-
"wasmparser 0.
|
2081
|
+
"wasmparser 0.118.1",
|
1917
2082
|
"wasmtime-cranelift-shared",
|
1918
2083
|
"wasmtime-environ",
|
2084
|
+
"wasmtime-versioned-export-macros",
|
1919
2085
|
]
|
1920
2086
|
|
1921
2087
|
[[package]]
|
1922
2088
|
name = "wasmtime-cranelift-shared"
|
1923
|
-
version = "
|
2089
|
+
version = "16.0.0"
|
1924
2090
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1925
|
-
checksum = "
|
2091
|
+
checksum = "290a89027688782da8ff60b12bb95695494b1874e0d0ba2ba387d23dace6d70c"
|
1926
2092
|
dependencies = [
|
1927
2093
|
"anyhow",
|
1928
2094
|
"cranelift-codegen",
|
@@ -1936,41 +2102,47 @@ dependencies = [
|
|
1936
2102
|
|
1937
2103
|
[[package]]
|
1938
2104
|
name = "wasmtime-environ"
|
1939
|
-
version = "
|
2105
|
+
version = "16.0.0"
|
1940
2106
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1941
|
-
checksum = "
|
2107
|
+
checksum = "61eb64fb3e0da883e2df4a13a81d6282e072336e6cb6295021d0f7ab2e352754"
|
1942
2108
|
dependencies = [
|
1943
2109
|
"anyhow",
|
1944
2110
|
"cranelift-entity",
|
1945
2111
|
"gimli",
|
1946
|
-
"indexmap",
|
2112
|
+
"indexmap 2.1.0",
|
1947
2113
|
"log",
|
1948
2114
|
"object",
|
1949
2115
|
"serde",
|
2116
|
+
"serde_derive",
|
1950
2117
|
"target-lexicon",
|
1951
2118
|
"thiserror",
|
1952
|
-
"
|
2119
|
+
"wasm-encoder 0.38.1",
|
2120
|
+
"wasmparser 0.118.1",
|
2121
|
+
"wasmprinter",
|
2122
|
+
"wasmtime-component-util",
|
1953
2123
|
"wasmtime-types",
|
1954
2124
|
]
|
1955
2125
|
|
1956
2126
|
[[package]]
|
1957
2127
|
name = "wasmtime-fiber"
|
1958
|
-
version = "
|
2128
|
+
version = "16.0.0"
|
1959
2129
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1960
|
-
checksum = "
|
2130
|
+
checksum = "40ecf1d3a838b0956b71ad3f8cb80069a228339775bf02dd35d86a5a68bbe443"
|
1961
2131
|
dependencies = [
|
2132
|
+
"anyhow",
|
1962
2133
|
"cc",
|
1963
2134
|
"cfg-if",
|
1964
|
-
"rustix
|
2135
|
+
"rustix",
|
1965
2136
|
"wasmtime-asm-macros",
|
2137
|
+
"wasmtime-versioned-export-macros",
|
1966
2138
|
"windows-sys 0.48.0",
|
1967
2139
|
]
|
1968
2140
|
|
1969
2141
|
[[package]]
|
1970
2142
|
name = "wasmtime-jit"
|
1971
|
-
version = "
|
2143
|
+
version = "16.0.0"
|
1972
2144
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1973
|
-
checksum = "
|
2145
|
+
checksum = "f485336add49267d8859e8f8084d2d4b9a4b1564496b6f30ba5b168d50c10ceb"
|
1974
2146
|
dependencies = [
|
1975
2147
|
"addr2line",
|
1976
2148
|
"anyhow",
|
@@ -1982,7 +2154,9 @@ dependencies = [
|
|
1982
2154
|
"log",
|
1983
2155
|
"object",
|
1984
2156
|
"rustc-demangle",
|
2157
|
+
"rustix",
|
1985
2158
|
"serde",
|
2159
|
+
"serde_derive",
|
1986
2160
|
"target-lexicon",
|
1987
2161
|
"wasmtime-environ",
|
1988
2162
|
"wasmtime-jit-debug",
|
@@ -1993,20 +2167,21 @@ dependencies = [
|
|
1993
2167
|
|
1994
2168
|
[[package]]
|
1995
2169
|
name = "wasmtime-jit-debug"
|
1996
|
-
version = "
|
2170
|
+
version = "16.0.0"
|
1997
2171
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1998
|
-
checksum = "
|
2172
|
+
checksum = "65e119affec40edb2fab9044f188759a00c2df9c3017278d047012a2de1efb4f"
|
1999
2173
|
dependencies = [
|
2000
2174
|
"object",
|
2001
2175
|
"once_cell",
|
2002
|
-
"rustix
|
2176
|
+
"rustix",
|
2177
|
+
"wasmtime-versioned-export-macros",
|
2003
2178
|
]
|
2004
2179
|
|
2005
2180
|
[[package]]
|
2006
2181
|
name = "wasmtime-jit-icache-coherence"
|
2007
|
-
version = "
|
2182
|
+
version = "16.0.0"
|
2008
2183
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2009
|
-
checksum = "
|
2184
|
+
checksum = "6b6d197fcc34ad32ed440e1f9552fd57d1f377d9699d31dee1b5b457322c1f8a"
|
2010
2185
|
dependencies = [
|
2011
2186
|
"cfg-if",
|
2012
2187
|
"libc",
|
@@ -2015,66 +2190,128 @@ dependencies = [
|
|
2015
2190
|
|
2016
2191
|
[[package]]
|
2017
2192
|
name = "wasmtime-runtime"
|
2018
|
-
version = "
|
2193
|
+
version = "16.0.0"
|
2019
2194
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2020
|
-
checksum = "
|
2195
|
+
checksum = "794b2bb19b99ef8322ff0dd9fe1ba7e19c41036dfb260b3f99ecce128c42ff92"
|
2021
2196
|
dependencies = [
|
2022
2197
|
"anyhow",
|
2023
2198
|
"cc",
|
2024
2199
|
"cfg-if",
|
2025
|
-
"
|
2200
|
+
"encoding_rs",
|
2201
|
+
"indexmap 2.1.0",
|
2026
2202
|
"libc",
|
2027
2203
|
"log",
|
2028
2204
|
"mach",
|
2029
2205
|
"memfd",
|
2030
2206
|
"memoffset",
|
2031
2207
|
"paste",
|
2032
|
-
"
|
2033
|
-
"rustix
|
2208
|
+
"psm",
|
2209
|
+
"rustix",
|
2210
|
+
"sptr",
|
2211
|
+
"wasm-encoder 0.38.1",
|
2034
2212
|
"wasmtime-asm-macros",
|
2035
2213
|
"wasmtime-environ",
|
2036
2214
|
"wasmtime-fiber",
|
2037
2215
|
"wasmtime-jit-debug",
|
2216
|
+
"wasmtime-versioned-export-macros",
|
2217
|
+
"wasmtime-wmemcheck",
|
2038
2218
|
"windows-sys 0.48.0",
|
2039
2219
|
]
|
2040
2220
|
|
2041
2221
|
[[package]]
|
2042
2222
|
name = "wasmtime-types"
|
2043
|
-
version = "
|
2223
|
+
version = "16.0.0"
|
2044
2224
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2045
|
-
checksum = "
|
2225
|
+
checksum = "d995db8bb56f2cd8d2dc0ed5ffab94ffb435283b0fe6747f80f7aab40b2d06a1"
|
2046
2226
|
dependencies = [
|
2047
2227
|
"cranelift-entity",
|
2048
2228
|
"serde",
|
2229
|
+
"serde_derive",
|
2049
2230
|
"thiserror",
|
2050
|
-
"wasmparser 0.
|
2231
|
+
"wasmparser 0.118.1",
|
2232
|
+
]
|
2233
|
+
|
2234
|
+
[[package]]
|
2235
|
+
name = "wasmtime-versioned-export-macros"
|
2236
|
+
version = "16.0.0"
|
2237
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2238
|
+
checksum = "f55c5565959287c21dd0f4277ae3518dd2ae62679f655ee2dbc4396e19d210db"
|
2239
|
+
dependencies = [
|
2240
|
+
"proc-macro2",
|
2241
|
+
"quote",
|
2242
|
+
"syn 2.0.48",
|
2051
2243
|
]
|
2052
2244
|
|
2053
2245
|
[[package]]
|
2054
2246
|
name = "wasmtime-wasi"
|
2055
|
-
version = "
|
2247
|
+
version = "16.0.0"
|
2056
2248
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2057
|
-
checksum = "
|
2249
|
+
checksum = "ccd8370078149d49a3a47e93741553fd79b700421464b6a27ca32718192ab130"
|
2058
2250
|
dependencies = [
|
2059
2251
|
"anyhow",
|
2252
|
+
"async-trait",
|
2253
|
+
"bitflags 2.4.1",
|
2254
|
+
"bytes",
|
2255
|
+
"cap-fs-ext",
|
2256
|
+
"cap-net-ext",
|
2257
|
+
"cap-rand",
|
2258
|
+
"cap-std",
|
2259
|
+
"cap-time-ext",
|
2260
|
+
"fs-set-times",
|
2261
|
+
"futures",
|
2262
|
+
"io-extras",
|
2263
|
+
"io-lifetimes",
|
2060
2264
|
"libc",
|
2265
|
+
"log",
|
2266
|
+
"once_cell",
|
2267
|
+
"rustix",
|
2268
|
+
"system-interface",
|
2269
|
+
"thiserror",
|
2270
|
+
"tokio",
|
2271
|
+
"tracing",
|
2272
|
+
"url",
|
2061
2273
|
"wasi-cap-std-sync",
|
2062
2274
|
"wasi-common",
|
2063
2275
|
"wasmtime",
|
2064
2276
|
"wiggle",
|
2277
|
+
"windows-sys 0.48.0",
|
2278
|
+
]
|
2279
|
+
|
2280
|
+
[[package]]
|
2281
|
+
name = "wasmtime-winch"
|
2282
|
+
version = "16.0.0"
|
2283
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2284
|
+
checksum = "2c6f945ff9bad96e0a69973d74f193c19f627c8adbf250e7cb73ae7564b6cc8a"
|
2285
|
+
dependencies = [
|
2286
|
+
"anyhow",
|
2287
|
+
"cranelift-codegen",
|
2288
|
+
"gimli",
|
2289
|
+
"object",
|
2290
|
+
"target-lexicon",
|
2291
|
+
"wasmparser 0.118.1",
|
2292
|
+
"wasmtime-cranelift-shared",
|
2293
|
+
"wasmtime-environ",
|
2294
|
+
"winch-codegen",
|
2065
2295
|
]
|
2066
2296
|
|
2067
2297
|
[[package]]
|
2068
2298
|
name = "wasmtime-wit-bindgen"
|
2069
|
-
version = "
|
2299
|
+
version = "16.0.0"
|
2070
2300
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2071
|
-
checksum = "
|
2301
|
+
checksum = "f328b2d4a690270324756e886ed5be3a4da4c00be0eea48253f4595ad068062b"
|
2072
2302
|
dependencies = [
|
2073
2303
|
"anyhow",
|
2074
2304
|
"heck 0.4.1",
|
2075
|
-
"
|
2305
|
+
"indexmap 2.1.0",
|
2306
|
+
"wit-parser 0.13.0",
|
2076
2307
|
]
|
2077
2308
|
|
2309
|
+
[[package]]
|
2310
|
+
name = "wasmtime-wmemcheck"
|
2311
|
+
version = "16.0.0"
|
2312
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2313
|
+
checksum = "67761d8f8c0b3c13a5d34356274b10a40baba67fe9cfabbfc379a8b414e45de2"
|
2314
|
+
|
2078
2315
|
[[package]]
|
2079
2316
|
name = "wast"
|
2080
2317
|
version = "35.0.2"
|
@@ -2107,13 +2344,13 @@ dependencies = [
|
|
2107
2344
|
|
2108
2345
|
[[package]]
|
2109
2346
|
name = "wiggle"
|
2110
|
-
version = "
|
2347
|
+
version = "16.0.0"
|
2111
2348
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2112
|
-
checksum = "
|
2349
|
+
checksum = "0afb26cd3269289bb314a361ff0a6685e5ce793b62181a9fe3f81ace15051697"
|
2113
2350
|
dependencies = [
|
2114
2351
|
"anyhow",
|
2115
2352
|
"async-trait",
|
2116
|
-
"bitflags
|
2353
|
+
"bitflags 2.4.1",
|
2117
2354
|
"thiserror",
|
2118
2355
|
"tracing",
|
2119
2356
|
"wasmtime",
|
@@ -2122,28 +2359,28 @@ dependencies = [
|
|
2122
2359
|
|
2123
2360
|
[[package]]
|
2124
2361
|
name = "wiggle-generate"
|
2125
|
-
version = "
|
2362
|
+
version = "16.0.0"
|
2126
2363
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2127
|
-
checksum = "
|
2364
|
+
checksum = "cef2868fed7584d2b552fa317104858ded80021d23b073b2d682d3c932a027bd"
|
2128
2365
|
dependencies = [
|
2129
2366
|
"anyhow",
|
2130
2367
|
"heck 0.4.1",
|
2131
2368
|
"proc-macro2",
|
2132
2369
|
"quote",
|
2133
2370
|
"shellexpand",
|
2134
|
-
"syn
|
2371
|
+
"syn 2.0.48",
|
2135
2372
|
"witx",
|
2136
2373
|
]
|
2137
2374
|
|
2138
2375
|
[[package]]
|
2139
2376
|
name = "wiggle-macro"
|
2140
|
-
version = "
|
2377
|
+
version = "16.0.0"
|
2141
2378
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2142
|
-
checksum = "
|
2379
|
+
checksum = "31ae1ec11a17ea481539ee9a5719a278c9790d974060fbf71db4b2c05378780b"
|
2143
2380
|
dependencies = [
|
2144
2381
|
"proc-macro2",
|
2145
2382
|
"quote",
|
2146
|
-
"syn
|
2383
|
+
"syn 2.0.48",
|
2147
2384
|
"wiggle-generate",
|
2148
2385
|
]
|
2149
2386
|
|
@@ -2164,19 +2401,35 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2164
2401
|
checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6"
|
2165
2402
|
|
2166
2403
|
[[package]]
|
2167
|
-
name = "winapi-
|
2168
|
-
version = "0.
|
2404
|
+
name = "winapi-x86_64-pc-windows-gnu"
|
2405
|
+
version = "0.4.0"
|
2169
2406
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2170
|
-
checksum = "
|
2407
|
+
checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f"
|
2408
|
+
|
2409
|
+
[[package]]
|
2410
|
+
name = "winch-codegen"
|
2411
|
+
version = "0.14.0"
|
2412
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2413
|
+
checksum = "58e58c236a6abdd9ab454552b4f29e16cfa837a86897c1503313b2e62e7609ec"
|
2171
2414
|
dependencies = [
|
2172
|
-
"
|
2415
|
+
"anyhow",
|
2416
|
+
"cranelift-codegen",
|
2417
|
+
"gimli",
|
2418
|
+
"regalloc2",
|
2419
|
+
"smallvec",
|
2420
|
+
"target-lexicon",
|
2421
|
+
"wasmparser 0.118.1",
|
2422
|
+
"wasmtime-environ",
|
2173
2423
|
]
|
2174
2424
|
|
2175
2425
|
[[package]]
|
2176
|
-
name = "
|
2177
|
-
version = "0.
|
2426
|
+
name = "windows-core"
|
2427
|
+
version = "0.52.0"
|
2178
2428
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2179
|
-
checksum = "
|
2429
|
+
checksum = "33ab640c8d7e35bf8ba19b884ba838ceb4fba93a4e8c65a9059d08afcfc683d9"
|
2430
|
+
dependencies = [
|
2431
|
+
"windows-targets 0.52.0",
|
2432
|
+
]
|
2180
2433
|
|
2181
2434
|
[[package]]
|
2182
2435
|
name = "windows-sys"
|
@@ -2312,49 +2565,66 @@ checksum = "dff9641d1cd4be8d1a070daf9e3773c5f67e78b4d9d42263020c057706765c04"
|
|
2312
2565
|
|
2313
2566
|
[[package]]
|
2314
2567
|
name = "winx"
|
2315
|
-
version = "0.
|
2568
|
+
version = "0.36.3"
|
2316
2569
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2317
|
-
checksum = "
|
2570
|
+
checksum = "f9643b83820c0cd246ecabe5fa454dd04ba4fa67996369466d0747472d337346"
|
2318
2571
|
dependencies = [
|
2319
|
-
"bitflags
|
2320
|
-
"
|
2321
|
-
"winapi",
|
2572
|
+
"bitflags 2.4.1",
|
2573
|
+
"windows-sys 0.52.0",
|
2322
2574
|
]
|
2323
2575
|
|
2324
2576
|
[[package]]
|
2325
|
-
name = "
|
2326
|
-
version = "0.
|
2577
|
+
name = "wit-component"
|
2578
|
+
version = "0.203.0"
|
2327
2579
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2328
|
-
checksum = "
|
2580
|
+
checksum = "379c4e193d37b3e2c808e99515c2a91dc19e7b3b160adfbb374463875375d6ff"
|
2329
2581
|
dependencies = [
|
2330
|
-
"
|
2331
|
-
"
|
2332
|
-
"
|
2582
|
+
"anyhow",
|
2583
|
+
"bitflags 2.4.1",
|
2584
|
+
"indexmap 2.1.0",
|
2585
|
+
"log",
|
2586
|
+
"serde",
|
2587
|
+
"serde_derive",
|
2588
|
+
"serde_json",
|
2589
|
+
"wasm-encoder 0.203.0",
|
2590
|
+
"wasm-metadata",
|
2591
|
+
"wasmparser 0.203.0",
|
2592
|
+
"wit-parser 0.203.0",
|
2333
2593
|
]
|
2334
2594
|
|
2335
2595
|
[[package]]
|
2336
|
-
name = "
|
2337
|
-
version = "0.
|
2596
|
+
name = "wit-parser"
|
2597
|
+
version = "0.13.0"
|
2338
2598
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2339
|
-
checksum = "
|
2599
|
+
checksum = "15df6b7b28ce94b8be39d8df5cb21a08a4f3b9f33b631aedb4aa5776f785ead3"
|
2340
2600
|
dependencies = [
|
2341
|
-
"
|
2342
|
-
"
|
2601
|
+
"anyhow",
|
2602
|
+
"id-arena",
|
2603
|
+
"indexmap 2.1.0",
|
2604
|
+
"log",
|
2605
|
+
"semver",
|
2606
|
+
"serde",
|
2607
|
+
"serde_derive",
|
2608
|
+
"serde_json",
|
2609
|
+
"unicode-xid",
|
2343
2610
|
]
|
2344
2611
|
|
2345
2612
|
[[package]]
|
2346
2613
|
name = "wit-parser"
|
2347
|
-
version = "0.
|
2614
|
+
version = "0.203.0"
|
2348
2615
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2349
|
-
checksum = "
|
2616
|
+
checksum = "3f547f9154c0fbd020c81c348d703b549bafd16ea68b15927acb5c890467e734"
|
2350
2617
|
dependencies = [
|
2351
2618
|
"anyhow",
|
2352
2619
|
"id-arena",
|
2353
|
-
"indexmap",
|
2620
|
+
"indexmap 2.1.0",
|
2354
2621
|
"log",
|
2355
|
-
"
|
2622
|
+
"semver",
|
2623
|
+
"serde",
|
2624
|
+
"serde_derive",
|
2625
|
+
"serde_json",
|
2356
2626
|
"unicode-xid",
|
2357
|
-
"
|
2627
|
+
"wasmparser 0.203.0",
|
2358
2628
|
]
|
2359
2629
|
|
2360
2630
|
[[package]]
|
@@ -2371,32 +2641,16 @@ dependencies = [
|
|
2371
2641
|
|
2372
2642
|
[[package]]
|
2373
2643
|
name = "wizer"
|
2374
|
-
version = "
|
2644
|
+
version = "4.0.0"
|
2375
2645
|
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"
|
2646
|
+
checksum = "31f1f0143257faa028962616998d9bcf456f2b92b41d923fb630d0c62250f1fc"
|
2393
2647
|
dependencies = [
|
2394
2648
|
"anyhow",
|
2395
|
-
"cap-std
|
2649
|
+
"cap-std",
|
2396
2650
|
"log",
|
2397
2651
|
"rayon",
|
2398
2652
|
"wasi-cap-std-sync",
|
2399
|
-
"wasm-encoder 0.
|
2653
|
+
"wasm-encoder 0.30.0",
|
2400
2654
|
"wasmparser 0.106.0",
|
2401
2655
|
"wasmtime",
|
2402
2656
|
"wasmtime-wasi",
|
@@ -2419,7 +2673,7 @@ checksum = "9ce1b18ccd8e73a9321186f97e46f9f04b778851177567b1975109d26a08d2a6"
|
|
2419
2673
|
dependencies = [
|
2420
2674
|
"proc-macro2",
|
2421
2675
|
"quote",
|
2422
|
-
"syn 2.0.
|
2676
|
+
"syn 2.0.48",
|
2423
2677
|
]
|
2424
2678
|
|
2425
2679
|
[[package]]
|