ruby_wasm 2.5.0.pre.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (69) hide show
  1. checksums.yaml +7 -0
  2. data/.clang-format +8 -0
  3. data/CONTRIBUTING.md +124 -0
  4. data/Cargo.lock +2452 -0
  5. data/Cargo.toml +7 -0
  6. data/Gemfile +17 -0
  7. data/LICENSE +21 -0
  8. data/NOTICE +1293 -0
  9. data/README.md +161 -0
  10. data/Rakefile +164 -0
  11. data/Steepfile +24 -0
  12. data/benchmarks/vm_deep_call.rb +55 -0
  13. data/builders/wasm32-unknown-emscripten/Dockerfile +43 -0
  14. data/builders/wasm32-unknown-emscripten/entrypoint.sh +7 -0
  15. data/builders/wasm32-unknown-wasi/Dockerfile +47 -0
  16. data/builders/wasm32-unknown-wasi/entrypoint.sh +7 -0
  17. data/docs/api.md +2 -0
  18. data/docs/cheat_sheet.md +195 -0
  19. data/docs/faq.md +25 -0
  20. data/exe/rbwasm +7 -0
  21. data/ext/.gitignore +2 -0
  22. data/ext/README.md +11 -0
  23. data/ext/extinit.c.erb +32 -0
  24. data/ext/ruby_wasm/Cargo.toml +17 -0
  25. data/ext/ruby_wasm/extconf.rb +6 -0
  26. data/ext/ruby_wasm/src/lib.rs +69 -0
  27. data/lib/ruby_wasm/build/build_params.rb +3 -0
  28. data/lib/ruby_wasm/build/downloader.rb +18 -0
  29. data/lib/ruby_wasm/build/executor.rb +187 -0
  30. data/lib/ruby_wasm/build/product/baseruby.rb +37 -0
  31. data/lib/ruby_wasm/build/product/crossruby.rb +326 -0
  32. data/lib/ruby_wasm/build/product/libyaml.rb +68 -0
  33. data/lib/ruby_wasm/build/product/openssl.rb +88 -0
  34. data/lib/ruby_wasm/build/product/product.rb +39 -0
  35. data/lib/ruby_wasm/build/product/ruby_source.rb +103 -0
  36. data/lib/ruby_wasm/build/product/wasi_vfs.rb +83 -0
  37. data/lib/ruby_wasm/build/product/zlib.rb +68 -0
  38. data/lib/ruby_wasm/build/product.rb +8 -0
  39. data/lib/ruby_wasm/build/toolchain/wit_bindgen.rb +31 -0
  40. data/lib/ruby_wasm/build/toolchain.rb +193 -0
  41. data/lib/ruby_wasm/build.rb +88 -0
  42. data/lib/ruby_wasm/cli.rb +195 -0
  43. data/lib/ruby_wasm/packager/core.rb +156 -0
  44. data/lib/ruby_wasm/packager/file_system.rb +157 -0
  45. data/lib/ruby_wasm/packager.rb +159 -0
  46. data/lib/ruby_wasm/rake_task.rb +58 -0
  47. data/lib/ruby_wasm/util.rb +15 -0
  48. data/lib/ruby_wasm/version.rb +3 -0
  49. data/lib/ruby_wasm.rb +33 -0
  50. data/package-lock.json +9500 -0
  51. data/package.json +12 -0
  52. data/ruby_wasm.gemspec +32 -0
  53. data/sig/open_uri.rbs +4 -0
  54. data/sig/ruby_wasm/build.rbs +322 -0
  55. data/sig/ruby_wasm/cli.rbs +24 -0
  56. data/sig/ruby_wasm/ext.rbs +11 -0
  57. data/sig/ruby_wasm/packager.rbs +91 -0
  58. data/sig/ruby_wasm/util.rbs +5 -0
  59. data/tasks/check.rake +37 -0
  60. data/tasks/ci.rake +152 -0
  61. data/tasks/doc.rake +24 -0
  62. data/tasks/format.rake +34 -0
  63. data/tasks/gem.rake +19 -0
  64. data/tasks/packaging.rake +148 -0
  65. data/tasks/version.rake +38 -0
  66. data/tools/clang-format-diff.sh +18 -0
  67. data/tools/exe/rbminify +12 -0
  68. data/tools/lib/syntax_tree/minify_ruby.rb +63 -0
  69. metadata +115 -0
data/Cargo.lock ADDED
@@ -0,0 +1,2452 @@
1
+ # This file is automatically @generated by Cargo.
2
+ # It is not intended for manual editing.
3
+ version = 3
4
+
5
+ [[package]]
6
+ name = "addr2line"
7
+ version = "0.19.0"
8
+ source = "registry+https://github.com/rust-lang/crates.io-index"
9
+ checksum = "a76fd60b23679b7d19bd066031410fb7e458ccc5e958eb5c325888ce4baedc97"
10
+ dependencies = [
11
+ "gimli",
12
+ ]
13
+
14
+ [[package]]
15
+ name = "ahash"
16
+ version = "0.8.7"
17
+ source = "registry+https://github.com/rust-lang/crates.io-index"
18
+ checksum = "77c3a9648d43b9cd48db467b3f87fdd6e146bcc88ab0180006cef2179fe11d01"
19
+ dependencies = [
20
+ "cfg-if",
21
+ "once_cell",
22
+ "version_check",
23
+ "zerocopy",
24
+ ]
25
+
26
+ [[package]]
27
+ name = "aho-corasick"
28
+ version = "1.1.2"
29
+ source = "registry+https://github.com/rust-lang/crates.io-index"
30
+ checksum = "b2969dcb958b36655471fc61f7e416fa76033bdd4bfed0678d8fee1e2d07a1f0"
31
+ dependencies = [
32
+ "memchr",
33
+ ]
34
+
35
+ [[package]]
36
+ name = "ambient-authority"
37
+ version = "0.0.1"
38
+ source = "registry+https://github.com/rust-lang/crates.io-index"
39
+ checksum = "ec8ad6edb4840b78c5c3d88de606b22252d552b55f3a4699fbb10fc070ec3049"
40
+
41
+ [[package]]
42
+ name = "ambient-authority"
43
+ version = "0.0.2"
44
+ source = "registry+https://github.com/rust-lang/crates.io-index"
45
+ checksum = "e9d4ee0d472d1cd2e28c97dfa124b3d8d992e10eb0a035f33f5d12e3a177ba3b"
46
+
47
+ [[package]]
48
+ name = "ansi_term"
49
+ version = "0.12.1"
50
+ source = "registry+https://github.com/rust-lang/crates.io-index"
51
+ checksum = "d52a9bb7ec0cf484c551830a7ce27bd20d67eac647e1befb56b0be4ee39a55d2"
52
+ dependencies = [
53
+ "winapi",
54
+ ]
55
+
56
+ [[package]]
57
+ name = "anyhow"
58
+ version = "1.0.77"
59
+ source = "registry+https://github.com/rust-lang/crates.io-index"
60
+ checksum = "c9d19de80eff169429ac1e9f48fffb163916b448a44e8e046186232046d9e1f9"
61
+
62
+ [[package]]
63
+ name = "arbitrary"
64
+ version = "1.3.2"
65
+ source = "registry+https://github.com/rust-lang/crates.io-index"
66
+ checksum = "7d5a26814d8dcb93b0e5a0ff3c6d80a8843bafb21b39e8e18a6f05471870e110"
67
+
68
+ [[package]]
69
+ name = "async-trait"
70
+ version = "0.1.75"
71
+ source = "registry+https://github.com/rust-lang/crates.io-index"
72
+ checksum = "fdf6721fb0140e4f897002dd086c06f6c27775df19cfe1fccb21181a48fd2c98"
73
+ dependencies = [
74
+ "proc-macro2",
75
+ "quote",
76
+ "syn 2.0.43",
77
+ ]
78
+
79
+ [[package]]
80
+ name = "atty"
81
+ version = "0.2.14"
82
+ source = "registry+https://github.com/rust-lang/crates.io-index"
83
+ checksum = "d9b39be18770d11421cdb1b9947a45dd3f37e93092cbf377614828a319d5fee8"
84
+ dependencies = [
85
+ "hermit-abi 0.1.19",
86
+ "libc",
87
+ "winapi",
88
+ ]
89
+
90
+ [[package]]
91
+ name = "autocfg"
92
+ version = "1.1.0"
93
+ source = "registry+https://github.com/rust-lang/crates.io-index"
94
+ checksum = "d468802bab17cbc0cc575e9b053f41e72aa36bfa6b7f55e3529ffa43161b97fa"
95
+
96
+ [[package]]
97
+ name = "base64"
98
+ version = "0.21.5"
99
+ source = "registry+https://github.com/rust-lang/crates.io-index"
100
+ checksum = "35636a1494ede3b646cc98f74f8e62c773a38a659ebc777a2cf26b9b74171df9"
101
+
102
+ [[package]]
103
+ name = "bincode"
104
+ version = "1.3.3"
105
+ source = "registry+https://github.com/rust-lang/crates.io-index"
106
+ checksum = "b1f45e9417d87227c7a56d22e471c6206462cba514c7590c09aff4cf6d1ddcad"
107
+ dependencies = [
108
+ "serde",
109
+ ]
110
+
111
+ [[package]]
112
+ name = "bindgen"
113
+ version = "0.69.1"
114
+ source = "registry+https://github.com/rust-lang/crates.io-index"
115
+ checksum = "9ffcebc3849946a7170a05992aac39da343a90676ab392c51a4280981d6379c2"
116
+ dependencies = [
117
+ "bitflags 2.4.1",
118
+ "cexpr",
119
+ "clang-sys",
120
+ "lazy_static",
121
+ "lazycell",
122
+ "peeking_take_while",
123
+ "proc-macro2",
124
+ "quote",
125
+ "regex",
126
+ "rustc-hash",
127
+ "shlex",
128
+ "syn 2.0.43",
129
+ ]
130
+
131
+ [[package]]
132
+ name = "bitflags"
133
+ version = "1.3.2"
134
+ source = "registry+https://github.com/rust-lang/crates.io-index"
135
+ checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a"
136
+
137
+ [[package]]
138
+ name = "bitflags"
139
+ version = "2.4.1"
140
+ source = "registry+https://github.com/rust-lang/crates.io-index"
141
+ checksum = "327762f6e5a765692301e5bb513e0d9fef63be86bbc14528052b1cd3e6f03e07"
142
+
143
+ [[package]]
144
+ name = "block-buffer"
145
+ version = "0.10.4"
146
+ source = "registry+https://github.com/rust-lang/crates.io-index"
147
+ checksum = "3078c7629b62d3f0439517fa394996acacc5cbc91c5a20d8c658e77abd503a71"
148
+ dependencies = [
149
+ "generic-array",
150
+ ]
151
+
152
+ [[package]]
153
+ name = "bumpalo"
154
+ version = "3.14.0"
155
+ source = "registry+https://github.com/rust-lang/crates.io-index"
156
+ checksum = "7f30e7476521f6f8af1a1c4c0b8cc94f0bee37d91763d0ca2665f299b6cd8aec"
157
+
158
+ [[package]]
159
+ name = "byteorder"
160
+ version = "1.5.0"
161
+ source = "registry+https://github.com/rust-lang/crates.io-index"
162
+ checksum = "1fd0f2584146f6f2ef48085050886acf353beff7305ebd1ae69500e27c67f64b"
163
+
164
+ [[package]]
165
+ name = "cap-fs-ext"
166
+ version = "1.0.15"
167
+ source = "registry+https://github.com/rust-lang/crates.io-index"
168
+ checksum = "58bc48200a1a0fa6fba138b1802ad7def18ec1cdd92f7b2a04e21f1bd887f7b9"
169
+ dependencies = [
170
+ "cap-primitives 1.0.15",
171
+ "cap-std 1.0.15",
172
+ "io-lifetimes 1.0.11",
173
+ "windows-sys 0.48.0",
174
+ ]
175
+
176
+ [[package]]
177
+ name = "cap-primitives"
178
+ version = "0.24.4"
179
+ source = "registry+https://github.com/rust-lang/crates.io-index"
180
+ checksum = "fb8fca3e81fae1d91a36e9784ca22a39ef623702b5f7904d89dc31f10184a178"
181
+ dependencies = [
182
+ "ambient-authority 0.0.1",
183
+ "errno 0.2.8",
184
+ "fs-set-times 0.15.0",
185
+ "io-extras 0.13.2",
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",
193
+ ]
194
+
195
+ [[package]]
196
+ name = "cap-primitives"
197
+ version = "1.0.15"
198
+ source = "registry+https://github.com/rust-lang/crates.io-index"
199
+ checksum = "a4b6df5b295dca8d56f35560be8c391d59f0420f72e546997154e24e765e6451"
200
+ dependencies = [
201
+ "ambient-authority 0.0.2",
202
+ "fs-set-times 0.19.2",
203
+ "io-extras 0.17.4",
204
+ "io-lifetimes 1.0.11",
205
+ "ipnet",
206
+ "maybe-owned",
207
+ "rustix 0.37.27",
208
+ "windows-sys 0.48.0",
209
+ "winx 0.35.1",
210
+ ]
211
+
212
+ [[package]]
213
+ name = "cap-rand"
214
+ version = "1.0.15"
215
+ source = "registry+https://github.com/rust-lang/crates.io-index"
216
+ checksum = "4d25555efacb0b5244cf1d35833d55d21abc916fff0eaad254b8e2453ea9b8ab"
217
+ dependencies = [
218
+ "ambient-authority 0.0.2",
219
+ "rand",
220
+ ]
221
+
222
+ [[package]]
223
+ name = "cap-std"
224
+ version = "0.24.4"
225
+ source = "registry+https://github.com/rust-lang/crates.io-index"
226
+ checksum = "2247568946095c7765ad2b441a56caffc08027734c634a6d5edda648f04e32eb"
227
+ dependencies = [
228
+ "cap-primitives 0.24.4",
229
+ "io-extras 0.13.2",
230
+ "io-lifetimes 0.5.3",
231
+ "ipnet",
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",
245
+ ]
246
+
247
+ [[package]]
248
+ name = "cap-time-ext"
249
+ version = "1.0.15"
250
+ source = "registry+https://github.com/rust-lang/crates.io-index"
251
+ checksum = "e95002993b7baee6b66c8950470e59e5226a23b3af39fc59c47fe416dd39821a"
252
+ dependencies = [
253
+ "cap-primitives 1.0.15",
254
+ "once_cell",
255
+ "rustix 0.37.27",
256
+ "winx 0.35.1",
257
+ ]
258
+
259
+ [[package]]
260
+ name = "cc"
261
+ version = "1.0.83"
262
+ source = "registry+https://github.com/rust-lang/crates.io-index"
263
+ checksum = "f1174fb0b6ec23863f8b971027804a42614e347eafb0a95bf0b12cdae21fc4d0"
264
+ dependencies = [
265
+ "jobserver",
266
+ "libc",
267
+ ]
268
+
269
+ [[package]]
270
+ name = "cexpr"
271
+ version = "0.6.0"
272
+ source = "registry+https://github.com/rust-lang/crates.io-index"
273
+ checksum = "6fac387a98bb7c37292057cffc56d62ecb629900026402633ae9160df93a8766"
274
+ dependencies = [
275
+ "nom",
276
+ ]
277
+
278
+ [[package]]
279
+ name = "cfg-if"
280
+ version = "1.0.0"
281
+ source = "registry+https://github.com/rust-lang/crates.io-index"
282
+ checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd"
283
+
284
+ [[package]]
285
+ name = "clang-sys"
286
+ version = "1.6.1"
287
+ source = "registry+https://github.com/rust-lang/crates.io-index"
288
+ checksum = "c688fc74432808e3eb684cae8830a86be1d66a2bd58e1f248ed0960a590baf6f"
289
+ dependencies = [
290
+ "glob",
291
+ "libc",
292
+ "libloading",
293
+ ]
294
+
295
+ [[package]]
296
+ name = "clap"
297
+ version = "2.34.0"
298
+ source = "registry+https://github.com/rust-lang/crates.io-index"
299
+ checksum = "a0610544180c38b88101fecf2dd634b174a62eef6946f84dfc6a7127512b381c"
300
+ dependencies = [
301
+ "ansi_term",
302
+ "atty",
303
+ "bitflags 1.3.2",
304
+ "strsim",
305
+ "textwrap",
306
+ "unicode-width",
307
+ "vec_map",
308
+ ]
309
+
310
+ [[package]]
311
+ name = "cpp_demangle"
312
+ version = "0.3.5"
313
+ source = "registry+https://github.com/rust-lang/crates.io-index"
314
+ checksum = "eeaa953eaad386a53111e47172c2fedba671e5684c8dd601a5f474f4f118710f"
315
+ dependencies = [
316
+ "cfg-if",
317
+ ]
318
+
319
+ [[package]]
320
+ name = "cpufeatures"
321
+ version = "0.2.11"
322
+ source = "registry+https://github.com/rust-lang/crates.io-index"
323
+ checksum = "ce420fe07aecd3e67c5f910618fe65e94158f6dcc0adf44e00d69ce2bdfe0fd0"
324
+ dependencies = [
325
+ "libc",
326
+ ]
327
+
328
+ [[package]]
329
+ name = "cranelift-bforest"
330
+ version = "0.96.4"
331
+ source = "registry+https://github.com/rust-lang/crates.io-index"
332
+ checksum = "182b82f78049f54d3aee5a19870d356ef754226665a695ce2fcdd5d55379718e"
333
+ dependencies = [
334
+ "cranelift-entity",
335
+ ]
336
+
337
+ [[package]]
338
+ name = "cranelift-codegen"
339
+ version = "0.96.4"
340
+ source = "registry+https://github.com/rust-lang/crates.io-index"
341
+ checksum = "e7c027bf04ecae5b048d3554deb888061bc26f426afff47bf06d6ac933dce0a6"
342
+ dependencies = [
343
+ "bumpalo",
344
+ "cranelift-bforest",
345
+ "cranelift-codegen-meta",
346
+ "cranelift-codegen-shared",
347
+ "cranelift-control",
348
+ "cranelift-entity",
349
+ "cranelift-isle",
350
+ "gimli",
351
+ "hashbrown 0.13.2",
352
+ "log",
353
+ "regalloc2",
354
+ "smallvec",
355
+ "target-lexicon",
356
+ ]
357
+
358
+ [[package]]
359
+ name = "cranelift-codegen-meta"
360
+ version = "0.96.4"
361
+ source = "registry+https://github.com/rust-lang/crates.io-index"
362
+ checksum = "649f70038235e4c81dba5680d7e5ae83e1081f567232425ab98b55b03afd9904"
363
+ dependencies = [
364
+ "cranelift-codegen-shared",
365
+ ]
366
+
367
+ [[package]]
368
+ name = "cranelift-codegen-shared"
369
+ version = "0.96.4"
370
+ source = "registry+https://github.com/rust-lang/crates.io-index"
371
+ checksum = "7a1d1c5ee2611c6a0bdc8d42d5d3dc5ce8bf53a8040561e26e88b9b21f966417"
372
+
373
+ [[package]]
374
+ name = "cranelift-control"
375
+ version = "0.96.4"
376
+ source = "registry+https://github.com/rust-lang/crates.io-index"
377
+ checksum = "da66a68b1f48da863d1d53209b8ddb1a6236411d2d72a280ffa8c2f734f7219e"
378
+ dependencies = [
379
+ "arbitrary",
380
+ ]
381
+
382
+ [[package]]
383
+ name = "cranelift-entity"
384
+ version = "0.96.4"
385
+ source = "registry+https://github.com/rust-lang/crates.io-index"
386
+ checksum = "9bd897422dbb66621fa558f4d9209875530c53e3c8f4b13b2849fbb667c431a6"
387
+ dependencies = [
388
+ "serde",
389
+ ]
390
+
391
+ [[package]]
392
+ name = "cranelift-frontend"
393
+ version = "0.96.4"
394
+ source = "registry+https://github.com/rust-lang/crates.io-index"
395
+ checksum = "05db883114c98cfcd6959f72278d2fec42e01ea6a6982cfe4f20e88eebe86653"
396
+ dependencies = [
397
+ "cranelift-codegen",
398
+ "log",
399
+ "smallvec",
400
+ "target-lexicon",
401
+ ]
402
+
403
+ [[package]]
404
+ name = "cranelift-isle"
405
+ version = "0.96.4"
406
+ source = "registry+https://github.com/rust-lang/crates.io-index"
407
+ checksum = "84559de86e2564152c87e299c8b2559f9107e9c6d274b24ebeb04fb0a5f4abf8"
408
+
409
+ [[package]]
410
+ name = "cranelift-native"
411
+ version = "0.96.4"
412
+ source = "registry+https://github.com/rust-lang/crates.io-index"
413
+ checksum = "3f40b57f187f0fe1ffaf281df4adba2b4bc623a0f6651954da9f3c184be72761"
414
+ dependencies = [
415
+ "cranelift-codegen",
416
+ "libc",
417
+ "target-lexicon",
418
+ ]
419
+
420
+ [[package]]
421
+ name = "cranelift-wasm"
422
+ version = "0.96.4"
423
+ source = "registry+https://github.com/rust-lang/crates.io-index"
424
+ checksum = "f3eab6084cc789b9dd0b1316241efeb2968199fee709f4bb4fe0fb0923bb468b"
425
+ dependencies = [
426
+ "cranelift-codegen",
427
+ "cranelift-entity",
428
+ "cranelift-frontend",
429
+ "itertools",
430
+ "log",
431
+ "smallvec",
432
+ "wasmparser 0.103.0",
433
+ "wasmtime-types",
434
+ ]
435
+
436
+ [[package]]
437
+ name = "crc32fast"
438
+ version = "1.3.2"
439
+ source = "registry+https://github.com/rust-lang/crates.io-index"
440
+ checksum = "b540bd8bc810d3885c6ea91e2018302f68baba2129ab3e88f32389ee9370880d"
441
+ dependencies = [
442
+ "cfg-if",
443
+ ]
444
+
445
+ [[package]]
446
+ name = "crossbeam-deque"
447
+ version = "0.8.4"
448
+ source = "registry+https://github.com/rust-lang/crates.io-index"
449
+ checksum = "fca89a0e215bab21874660c67903c5f143333cab1da83d041c7ded6053774751"
450
+ dependencies = [
451
+ "cfg-if",
452
+ "crossbeam-epoch",
453
+ "crossbeam-utils",
454
+ ]
455
+
456
+ [[package]]
457
+ name = "crossbeam-epoch"
458
+ version = "0.9.17"
459
+ source = "registry+https://github.com/rust-lang/crates.io-index"
460
+ checksum = "0e3681d554572a651dda4186cd47240627c3d0114d45a95f6ad27f2f22e7548d"
461
+ dependencies = [
462
+ "autocfg",
463
+ "cfg-if",
464
+ "crossbeam-utils",
465
+ ]
466
+
467
+ [[package]]
468
+ name = "crossbeam-utils"
469
+ version = "0.8.18"
470
+ source = "registry+https://github.com/rust-lang/crates.io-index"
471
+ checksum = "c3a430a770ebd84726f584a90ee7f020d28db52c6d02138900f22341f866d39c"
472
+ dependencies = [
473
+ "cfg-if",
474
+ ]
475
+
476
+ [[package]]
477
+ name = "crypto-common"
478
+ version = "0.1.6"
479
+ source = "registry+https://github.com/rust-lang/crates.io-index"
480
+ checksum = "1bfb12502f3fc46cca1bb51ac28df9d618d813cdc3d2f25b9fe775a34af26bb3"
481
+ dependencies = [
482
+ "generic-array",
483
+ "typenum",
484
+ ]
485
+
486
+ [[package]]
487
+ name = "debugid"
488
+ version = "0.8.0"
489
+ source = "registry+https://github.com/rust-lang/crates.io-index"
490
+ checksum = "bef552e6f588e446098f6ba40d89ac146c8c7b64aade83c051ee00bb5d2bc18d"
491
+ dependencies = [
492
+ "uuid",
493
+ ]
494
+
495
+ [[package]]
496
+ name = "digest"
497
+ version = "0.10.7"
498
+ source = "registry+https://github.com/rust-lang/crates.io-index"
499
+ checksum = "9ed9a281f7bc9b7576e61468ba615a66a5c8cfdff42420a70aa82701a3b1e292"
500
+ dependencies = [
501
+ "block-buffer",
502
+ "crypto-common",
503
+ ]
504
+
505
+ [[package]]
506
+ name = "directories-next"
507
+ version = "2.0.0"
508
+ source = "registry+https://github.com/rust-lang/crates.io-index"
509
+ checksum = "339ee130d97a610ea5a5872d2bbb130fdf68884ff09d3028b81bec8a1ac23bbc"
510
+ dependencies = [
511
+ "cfg-if",
512
+ "dirs-sys-next",
513
+ ]
514
+
515
+ [[package]]
516
+ name = "dirs"
517
+ version = "4.0.0"
518
+ source = "registry+https://github.com/rust-lang/crates.io-index"
519
+ checksum = "ca3aa72a6f96ea37bbc5aa912f6788242832f75369bdfdadcb0e38423f100059"
520
+ dependencies = [
521
+ "dirs-sys",
522
+ ]
523
+
524
+ [[package]]
525
+ name = "dirs-sys"
526
+ version = "0.3.7"
527
+ source = "registry+https://github.com/rust-lang/crates.io-index"
528
+ checksum = "1b1d1d91c932ef41c0f2663aa8b0ca0342d444d842c06914aa0a7e352d0bada6"
529
+ dependencies = [
530
+ "libc",
531
+ "redox_users",
532
+ "winapi",
533
+ ]
534
+
535
+ [[package]]
536
+ name = "dirs-sys-next"
537
+ version = "0.1.2"
538
+ source = "registry+https://github.com/rust-lang/crates.io-index"
539
+ checksum = "4ebda144c4fe02d1f7ea1a7d9641b6fc6b580adcfa024ae48797ecdeb6825b4d"
540
+ dependencies = [
541
+ "libc",
542
+ "redox_users",
543
+ "winapi",
544
+ ]
545
+
546
+ [[package]]
547
+ name = "either"
548
+ version = "1.9.0"
549
+ source = "registry+https://github.com/rust-lang/crates.io-index"
550
+ checksum = "a26ae43d7bcc3b814de94796a5e736d4029efb0ee900c12e2d54c993ad1a1e07"
551
+
552
+ [[package]]
553
+ name = "env_logger"
554
+ version = "0.10.1"
555
+ source = "registry+https://github.com/rust-lang/crates.io-index"
556
+ checksum = "95b3f3e67048839cb0d0781f445682a35113da7121f7c949db0e2be96a4fbece"
557
+ dependencies = [
558
+ "humantime",
559
+ "is-terminal",
560
+ "log",
561
+ "regex",
562
+ "termcolor",
563
+ ]
564
+
565
+ [[package]]
566
+ name = "errno"
567
+ version = "0.2.8"
568
+ source = "registry+https://github.com/rust-lang/crates.io-index"
569
+ checksum = "f639046355ee4f37944e44f60642c6f3a7efa3cf6b78c78a0d989a8ce6c396a1"
570
+ dependencies = [
571
+ "errno-dragonfly",
572
+ "libc",
573
+ "winapi",
574
+ ]
575
+
576
+ [[package]]
577
+ name = "errno"
578
+ version = "0.3.8"
579
+ source = "registry+https://github.com/rust-lang/crates.io-index"
580
+ checksum = "a258e46cdc063eb8519c00b9fc845fc47bcfca4130e2f08e88665ceda8474245"
581
+ dependencies = [
582
+ "libc",
583
+ "windows-sys 0.52.0",
584
+ ]
585
+
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
+ [[package]]
597
+ name = "fallible-iterator"
598
+ version = "0.2.0"
599
+ source = "registry+https://github.com/rust-lang/crates.io-index"
600
+ checksum = "4443176a9f2c162692bd3d352d745ef9413eec5782a80d8fd6f8a1ac692a07f7"
601
+
602
+ [[package]]
603
+ name = "fd-lock"
604
+ version = "4.0.2"
605
+ source = "registry+https://github.com/rust-lang/crates.io-index"
606
+ checksum = "7e5768da2206272c81ef0b5e951a41862938a6070da63bcea197899942d3b947"
607
+ dependencies = [
608
+ "cfg-if",
609
+ "rustix 0.38.28",
610
+ "windows-sys 0.52.0",
611
+ ]
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
+ [[package]]
624
+ name = "form_urlencoded"
625
+ version = "1.2.1"
626
+ source = "registry+https://github.com/rust-lang/crates.io-index"
627
+ checksum = "e13624c2627564efccf4934284bdd98cbaa14e79b0b5a141218e507b3a823456"
628
+ dependencies = [
629
+ "percent-encoding",
630
+ ]
631
+
632
+ [[package]]
633
+ name = "fs-set-times"
634
+ version = "0.15.0"
635
+ source = "registry+https://github.com/rust-lang/crates.io-index"
636
+ checksum = "7df62ee66ee2d532ea8d567b5a3f0d03ecd64636b98bad5be1e93dcc918b92aa"
637
+ dependencies = [
638
+ "io-lifetimes 0.5.3",
639
+ "rustix 0.33.7",
640
+ "winapi",
641
+ ]
642
+
643
+ [[package]]
644
+ name = "fs-set-times"
645
+ version = "0.19.2"
646
+ source = "registry+https://github.com/rust-lang/crates.io-index"
647
+ checksum = "6d167b646a876ba8fda6b50ac645cfd96242553cbaf0ca4fccaa39afcbf0801f"
648
+ dependencies = [
649
+ "io-lifetimes 1.0.11",
650
+ "rustix 0.38.28",
651
+ "windows-sys 0.48.0",
652
+ ]
653
+
654
+ [[package]]
655
+ name = "fxhash"
656
+ version = "0.2.1"
657
+ source = "registry+https://github.com/rust-lang/crates.io-index"
658
+ checksum = "c31b6d751ae2c7f11320402d34e41349dd1016f8d5d45e48c4312bc8625af50c"
659
+ dependencies = [
660
+ "byteorder",
661
+ ]
662
+
663
+ [[package]]
664
+ name = "fxprof-processed-profile"
665
+ version = "0.6.0"
666
+ source = "registry+https://github.com/rust-lang/crates.io-index"
667
+ checksum = "27d12c0aed7f1e24276a241aadc4cb8ea9f83000f34bc062b7cc2d51e3b0fabd"
668
+ dependencies = [
669
+ "bitflags 2.4.1",
670
+ "debugid",
671
+ "fxhash",
672
+ "serde",
673
+ "serde_json",
674
+ ]
675
+
676
+ [[package]]
677
+ name = "generic-array"
678
+ version = "0.14.7"
679
+ source = "registry+https://github.com/rust-lang/crates.io-index"
680
+ checksum = "85649ca51fd72272d7821adaf274ad91c288277713d9c18820d8499a7ff69e9a"
681
+ dependencies = [
682
+ "typenum",
683
+ "version_check",
684
+ ]
685
+
686
+ [[package]]
687
+ name = "getrandom"
688
+ version = "0.2.11"
689
+ source = "registry+https://github.com/rust-lang/crates.io-index"
690
+ checksum = "fe9006bed769170c11f845cf00c7c1e9092aeb3f268e007c3e760ac68008070f"
691
+ dependencies = [
692
+ "cfg-if",
693
+ "libc",
694
+ "wasi",
695
+ ]
696
+
697
+ [[package]]
698
+ name = "gimli"
699
+ version = "0.27.3"
700
+ source = "registry+https://github.com/rust-lang/crates.io-index"
701
+ checksum = "b6c80984affa11d98d1b88b66ac8853f143217b399d3c74116778ff8fdb4ed2e"
702
+ dependencies = [
703
+ "fallible-iterator",
704
+ "indexmap",
705
+ "stable_deref_trait",
706
+ ]
707
+
708
+ [[package]]
709
+ name = "glob"
710
+ version = "0.3.1"
711
+ source = "registry+https://github.com/rust-lang/crates.io-index"
712
+ checksum = "d2fabcfbdc87f4758337ca535fb41a6d701b65693ce38287d856d1674551ec9b"
713
+
714
+ [[package]]
715
+ name = "hashbrown"
716
+ version = "0.12.3"
717
+ source = "registry+https://github.com/rust-lang/crates.io-index"
718
+ checksum = "8a9ee70c43aaf417c914396645a0fa852624801b24ebb7ae78fe8272889ac888"
719
+
720
+ [[package]]
721
+ name = "hashbrown"
722
+ version = "0.13.2"
723
+ source = "registry+https://github.com/rust-lang/crates.io-index"
724
+ checksum = "43a3c133739dddd0d2990f9a4bdf8eb4b21ef50e4851ca85ab661199821d510e"
725
+ dependencies = [
726
+ "ahash",
727
+ ]
728
+
729
+ [[package]]
730
+ name = "heck"
731
+ version = "0.3.3"
732
+ source = "registry+https://github.com/rust-lang/crates.io-index"
733
+ checksum = "6d621efb26863f0e9924c6ac577e8275e5e6b77455db64ffa6c65c904e9e132c"
734
+ dependencies = [
735
+ "unicode-segmentation",
736
+ ]
737
+
738
+ [[package]]
739
+ name = "heck"
740
+ version = "0.4.1"
741
+ source = "registry+https://github.com/rust-lang/crates.io-index"
742
+ checksum = "95505c38b4572b2d910cecb0281560f54b440a19336cbbcb27bf6ce6adc6f5a8"
743
+
744
+ [[package]]
745
+ name = "hermit-abi"
746
+ version = "0.1.19"
747
+ source = "registry+https://github.com/rust-lang/crates.io-index"
748
+ checksum = "62b467343b94ba476dcb2500d242dadbb39557df889310ac77c5d99100aaac33"
749
+ dependencies = [
750
+ "libc",
751
+ ]
752
+
753
+ [[package]]
754
+ name = "hermit-abi"
755
+ version = "0.3.3"
756
+ source = "registry+https://github.com/rust-lang/crates.io-index"
757
+ checksum = "d77f7ec81a6d05a3abb01ab6eb7590f6083d08449fe5a1c8b1e620283546ccb7"
758
+
759
+ [[package]]
760
+ name = "humantime"
761
+ version = "2.1.0"
762
+ source = "registry+https://github.com/rust-lang/crates.io-index"
763
+ checksum = "9a3a5bfb195931eeb336b2a7b4d761daec841b97f947d34394601737a7bba5e4"
764
+
765
+ [[package]]
766
+ name = "id-arena"
767
+ version = "2.2.1"
768
+ source = "registry+https://github.com/rust-lang/crates.io-index"
769
+ checksum = "25a2bc672d1148e28034f176e01fffebb08b35768468cc954630da77a1449005"
770
+
771
+ [[package]]
772
+ name = "idna"
773
+ version = "0.5.0"
774
+ source = "registry+https://github.com/rust-lang/crates.io-index"
775
+ checksum = "634d9b1461af396cad843f47fdba5597a4f9e6ddd4bfb6ff5d85028c25cb12f6"
776
+ dependencies = [
777
+ "unicode-bidi",
778
+ "unicode-normalization",
779
+ ]
780
+
781
+ [[package]]
782
+ name = "indexmap"
783
+ version = "1.9.3"
784
+ source = "registry+https://github.com/rust-lang/crates.io-index"
785
+ checksum = "bd070e393353796e801d209ad339e89596eb4c8d430d18ede6a1cced8fafbd99"
786
+ dependencies = [
787
+ "autocfg",
788
+ "hashbrown 0.12.3",
789
+ "serde",
790
+ ]
791
+
792
+ [[package]]
793
+ name = "io-extras"
794
+ version = "0.13.2"
795
+ source = "registry+https://github.com/rust-lang/crates.io-index"
796
+ checksum = "d0c937cc9891c12eaa8c63ad347e4a288364b1328b924886970b47a14ab8f8f8"
797
+ dependencies = [
798
+ "io-lifetimes 0.5.3",
799
+ "winapi",
800
+ ]
801
+
802
+ [[package]]
803
+ name = "io-extras"
804
+ version = "0.17.4"
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"
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",
827
+ ]
828
+
829
+ [[package]]
830
+ name = "io-lifetimes"
831
+ version = "2.0.3"
832
+ source = "registry+https://github.com/rust-lang/crates.io-index"
833
+ checksum = "5a611371471e98973dbcab4e0ec66c31a10bc356eeb4d54a0e05eac8158fe38c"
834
+
835
+ [[package]]
836
+ name = "ipnet"
837
+ version = "2.9.0"
838
+ source = "registry+https://github.com/rust-lang/crates.io-index"
839
+ checksum = "8f518f335dce6725a761382244631d86cf0ccb2863413590b31338feb467f9c3"
840
+
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
+ [[package]]
853
+ name = "itertools"
854
+ version = "0.10.5"
855
+ source = "registry+https://github.com/rust-lang/crates.io-index"
856
+ checksum = "b0fd2260e829bddf4cb6ea802289de2f86d6a7a690192fbe91b3f46e0f2c8473"
857
+ dependencies = [
858
+ "either",
859
+ ]
860
+
861
+ [[package]]
862
+ name = "itoa"
863
+ version = "1.0.10"
864
+ source = "registry+https://github.com/rust-lang/crates.io-index"
865
+ checksum = "b1a46d1a171d865aa5f83f92695765caa047a9b4cbae2cbf37dbd613a793fd4c"
866
+
867
+ [[package]]
868
+ name = "ittapi"
869
+ version = "0.3.5"
870
+ source = "registry+https://github.com/rust-lang/crates.io-index"
871
+ checksum = "25a5c0b993601cad796222ea076565c5d9f337d35592f8622c753724f06d7271"
872
+ dependencies = [
873
+ "anyhow",
874
+ "ittapi-sys",
875
+ "log",
876
+ ]
877
+
878
+ [[package]]
879
+ name = "ittapi-sys"
880
+ version = "0.3.5"
881
+ source = "registry+https://github.com/rust-lang/crates.io-index"
882
+ checksum = "cb7b5e473765060536a660eed127f758cf1a810c73e49063264959c60d1727d9"
883
+ dependencies = [
884
+ "cc",
885
+ ]
886
+
887
+ [[package]]
888
+ name = "jobserver"
889
+ version = "0.1.27"
890
+ source = "registry+https://github.com/rust-lang/crates.io-index"
891
+ checksum = "8c37f63953c4c63420ed5fd3d6d398c719489b9f872b9fa683262f8edd363c7d"
892
+ dependencies = [
893
+ "libc",
894
+ ]
895
+
896
+ [[package]]
897
+ name = "lazy_static"
898
+ version = "1.4.0"
899
+ source = "registry+https://github.com/rust-lang/crates.io-index"
900
+ checksum = "e2abad23fbc42b3700f2f279844dc832adb2b2eb069b2df918f455c4e18cc646"
901
+
902
+ [[package]]
903
+ name = "lazycell"
904
+ version = "1.3.0"
905
+ source = "registry+https://github.com/rust-lang/crates.io-index"
906
+ checksum = "830d08ce1d1d941e6b30645f1a0eb5643013d835ce3779a5fc208261dbe10f55"
907
+
908
+ [[package]]
909
+ name = "leb128"
910
+ version = "0.2.5"
911
+ source = "registry+https://github.com/rust-lang/crates.io-index"
912
+ checksum = "884e2677b40cc8c339eaefcb701c32ef1fd2493d71118dc0ca4b6a736c93bd67"
913
+
914
+ [[package]]
915
+ name = "libc"
916
+ version = "0.2.151"
917
+ source = "registry+https://github.com/rust-lang/crates.io-index"
918
+ checksum = "302d7ab3130588088d277783b1e2d2e10c9e9e4a16dd9050e6ec93fb3e7048f4"
919
+
920
+ [[package]]
921
+ name = "libloading"
922
+ version = "0.7.4"
923
+ source = "registry+https://github.com/rust-lang/crates.io-index"
924
+ checksum = "b67380fd3b2fbe7527a606e18729d21c6f3951633d0500574c4dc22d2d638b9f"
925
+ dependencies = [
926
+ "cfg-if",
927
+ "winapi",
928
+ ]
929
+
930
+ [[package]]
931
+ name = "libredox"
932
+ version = "0.0.1"
933
+ source = "registry+https://github.com/rust-lang/crates.io-index"
934
+ checksum = "85c833ca1e66078851dba29046874e38f08b2c883700aa29a03ddd3b23814ee8"
935
+ dependencies = [
936
+ "bitflags 2.4.1",
937
+ "libc",
938
+ "redox_syscall",
939
+ ]
940
+
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
+ [[package]]
954
+ name = "linux-raw-sys"
955
+ version = "0.4.12"
956
+ source = "registry+https://github.com/rust-lang/crates.io-index"
957
+ checksum = "c4cd1a83af159aa67994778be9070f0ae1bd732942279cabb14f86f986a21456"
958
+
959
+ [[package]]
960
+ name = "log"
961
+ version = "0.4.20"
962
+ source = "registry+https://github.com/rust-lang/crates.io-index"
963
+ checksum = "b5e6163cb8c49088c2c36f57875e58ccd8c87c7427f7fbd50ea6710b2f3f2e8f"
964
+
965
+ [[package]]
966
+ name = "mach"
967
+ version = "0.3.2"
968
+ source = "registry+https://github.com/rust-lang/crates.io-index"
969
+ checksum = "b823e83b2affd8f40a9ee8c29dbc56404c1e34cd2710921f2801e2cf29527afa"
970
+ dependencies = [
971
+ "libc",
972
+ ]
973
+
974
+ [[package]]
975
+ name = "magnus"
976
+ version = "0.6.2"
977
+ source = "registry+https://github.com/rust-lang/crates.io-index"
978
+ checksum = "4778544796676e8428e9c622460ebf284bea52d8b10db3aeb449d8b5e61b3a13"
979
+ dependencies = [
980
+ "magnus-macros",
981
+ "rb-sys",
982
+ "rb-sys-env",
983
+ "seq-macro",
984
+ ]
985
+
986
+ [[package]]
987
+ name = "magnus-macros"
988
+ version = "0.6.0"
989
+ source = "registry+https://github.com/rust-lang/crates.io-index"
990
+ checksum = "5968c820e2960565f647819f5928a42d6e874551cab9d88d75e3e0660d7f71e3"
991
+ dependencies = [
992
+ "proc-macro2",
993
+ "quote",
994
+ "syn 2.0.43",
995
+ ]
996
+
997
+ [[package]]
998
+ name = "maybe-owned"
999
+ version = "0.3.4"
1000
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1001
+ checksum = "4facc753ae494aeb6e3c22f839b158aebd4f9270f55cd3c79906c45476c47ab4"
1002
+
1003
+ [[package]]
1004
+ name = "memchr"
1005
+ version = "2.7.1"
1006
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1007
+ checksum = "523dc4f511e55ab87b694dc30d0f820d60906ef06413f93d4d7a1385599cc149"
1008
+
1009
+ [[package]]
1010
+ name = "memfd"
1011
+ version = "0.6.4"
1012
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1013
+ checksum = "b2cffa4ad52c6f791f4f8b15f0c05f9824b2ced1160e88cc393d64fff9a8ac64"
1014
+ dependencies = [
1015
+ "rustix 0.38.28",
1016
+ ]
1017
+
1018
+ [[package]]
1019
+ name = "memoffset"
1020
+ version = "0.8.0"
1021
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1022
+ checksum = "d61c719bcfbcf5d62b3a09efa6088de8c54bc0bfcd3ea7ae39fcc186108b8de1"
1023
+ dependencies = [
1024
+ "autocfg",
1025
+ ]
1026
+
1027
+ [[package]]
1028
+ name = "minimal-lexical"
1029
+ version = "0.2.1"
1030
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1031
+ checksum = "68354c5c6bd36d73ff3feceb05efa59b6acb7626617f4962be322a825e61f79a"
1032
+
1033
+ [[package]]
1034
+ name = "nom"
1035
+ version = "7.1.3"
1036
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1037
+ checksum = "d273983c5a657a70a3e8f2a01329822f3b8c8172b73826411a55751e404a0a4a"
1038
+ dependencies = [
1039
+ "memchr",
1040
+ "minimal-lexical",
1041
+ ]
1042
+
1043
+ [[package]]
1044
+ name = "object"
1045
+ version = "0.30.4"
1046
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1047
+ checksum = "03b4680b86d9cfafba8fc491dc9b6df26b68cf40e9e6cd73909194759a63c385"
1048
+ dependencies = [
1049
+ "crc32fast",
1050
+ "hashbrown 0.13.2",
1051
+ "indexmap",
1052
+ "memchr",
1053
+ ]
1054
+
1055
+ [[package]]
1056
+ name = "once_cell"
1057
+ version = "1.19.0"
1058
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1059
+ checksum = "3fdb12b2476b595f9358c5161aa467c2438859caa136dec86c26fdd2efe17b92"
1060
+
1061
+ [[package]]
1062
+ name = "paste"
1063
+ version = "1.0.14"
1064
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1065
+ checksum = "de3145af08024dea9fa9914f381a17b8fc6034dfb00f3a84013f7ff43f29ed4c"
1066
+
1067
+ [[package]]
1068
+ name = "peeking_take_while"
1069
+ version = "0.1.2"
1070
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1071
+ checksum = "19b17cddbe7ec3f8bc800887bab5e717348c95ea2ca0b1bf0837fb964dc67099"
1072
+
1073
+ [[package]]
1074
+ name = "percent-encoding"
1075
+ version = "2.3.1"
1076
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1077
+ checksum = "e3148f5046208a5d56bcfc03053e3ca6334e51da8dfb19b6cdc8b306fae3283e"
1078
+
1079
+ [[package]]
1080
+ name = "pin-project-lite"
1081
+ version = "0.2.13"
1082
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1083
+ checksum = "8afb450f006bf6385ca15ef45d71d2288452bc3683ce2e2cacc0d18e4be60b58"
1084
+
1085
+ [[package]]
1086
+ name = "pkg-config"
1087
+ version = "0.3.28"
1088
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1089
+ checksum = "69d3587f8a9e599cc7ec2c00e331f71c4e69a5f9a4b8a6efd5b07466b9736f9a"
1090
+
1091
+ [[package]]
1092
+ name = "ppv-lite86"
1093
+ version = "0.2.17"
1094
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1095
+ checksum = "5b40af805b3121feab8a3c29f04d8ad262fa8e0561883e7653e024ae4479e6de"
1096
+
1097
+ [[package]]
1098
+ name = "proc-macro-error"
1099
+ version = "1.0.4"
1100
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1101
+ checksum = "da25490ff9892aab3fcf7c36f08cfb902dd3e71ca0f9f9517bea02a73a5ce38c"
1102
+ dependencies = [
1103
+ "proc-macro-error-attr",
1104
+ "proc-macro2",
1105
+ "quote",
1106
+ "syn 1.0.109",
1107
+ "version_check",
1108
+ ]
1109
+
1110
+ [[package]]
1111
+ name = "proc-macro-error-attr"
1112
+ version = "1.0.4"
1113
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1114
+ checksum = "a1be40180e52ecc98ad80b184934baf3d0d29f979574e439af5a55274b35f869"
1115
+ dependencies = [
1116
+ "proc-macro2",
1117
+ "quote",
1118
+ "version_check",
1119
+ ]
1120
+
1121
+ [[package]]
1122
+ name = "proc-macro2"
1123
+ version = "1.0.71"
1124
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1125
+ checksum = "75cb1540fadbd5b8fbccc4dddad2734eba435053f725621c070711a14bb5f4b8"
1126
+ dependencies = [
1127
+ "unicode-ident",
1128
+ ]
1129
+
1130
+ [[package]]
1131
+ name = "psm"
1132
+ version = "0.1.21"
1133
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1134
+ checksum = "5787f7cda34e3033a72192c018bc5883100330f362ef279a8cbccfce8bb4e874"
1135
+ dependencies = [
1136
+ "cc",
1137
+ ]
1138
+
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
+ [[package]]
1151
+ name = "quote"
1152
+ version = "1.0.33"
1153
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1154
+ checksum = "5267fca4496028628a95160fc423a33e8b2e6af8a5302579e322e4b520293cae"
1155
+ dependencies = [
1156
+ "proc-macro2",
1157
+ ]
1158
+
1159
+ [[package]]
1160
+ name = "rand"
1161
+ version = "0.8.5"
1162
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1163
+ checksum = "34af8d1a0e25924bc5b7c43c079c942339d8f0a8b57c39049bef581b46327404"
1164
+ dependencies = [
1165
+ "libc",
1166
+ "rand_chacha",
1167
+ "rand_core",
1168
+ ]
1169
+
1170
+ [[package]]
1171
+ name = "rand_chacha"
1172
+ version = "0.3.1"
1173
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1174
+ checksum = "e6c10a63a0fa32252be49d21e7709d4d4baf8d231c2dbce1eaa8141b9b127d88"
1175
+ dependencies = [
1176
+ "ppv-lite86",
1177
+ "rand_core",
1178
+ ]
1179
+
1180
+ [[package]]
1181
+ name = "rand_core"
1182
+ version = "0.6.4"
1183
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1184
+ checksum = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c"
1185
+ dependencies = [
1186
+ "getrandom",
1187
+ ]
1188
+
1189
+ [[package]]
1190
+ name = "rayon"
1191
+ version = "1.8.0"
1192
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1193
+ checksum = "9c27db03db7734835b3f53954b534c91069375ce6ccaa2e065441e07d9b6cdb1"
1194
+ dependencies = [
1195
+ "either",
1196
+ "rayon-core",
1197
+ ]
1198
+
1199
+ [[package]]
1200
+ name = "rayon-core"
1201
+ version = "1.12.0"
1202
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1203
+ checksum = "5ce3fb6ad83f861aac485e76e1985cd109d9a3713802152be56c3b1f0e0658ed"
1204
+ dependencies = [
1205
+ "crossbeam-deque",
1206
+ "crossbeam-utils",
1207
+ ]
1208
+
1209
+ [[package]]
1210
+ name = "rb-sys"
1211
+ version = "0.9.85"
1212
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1213
+ checksum = "05b780e6858b0b0eced1d55d0f097c024b77a37b41f83bd35341130f78e37c51"
1214
+ dependencies = [
1215
+ "rb-sys-build",
1216
+ ]
1217
+
1218
+ [[package]]
1219
+ name = "rb-sys-build"
1220
+ version = "0.9.85"
1221
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1222
+ checksum = "44957a3bc513dad1b0f20bdd0ee3b82e729a59da44086a6b40d8bc71958a6db8"
1223
+ dependencies = [
1224
+ "bindgen",
1225
+ "lazy_static",
1226
+ "proc-macro2",
1227
+ "quote",
1228
+ "regex",
1229
+ "shell-words",
1230
+ "syn 2.0.43",
1231
+ ]
1232
+
1233
+ [[package]]
1234
+ name = "rb-sys-env"
1235
+ version = "0.1.2"
1236
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1237
+ checksum = "a35802679f07360454b418a5d1735c89716bde01d35b1560fc953c1415a0b3bb"
1238
+
1239
+ [[package]]
1240
+ name = "redox_syscall"
1241
+ version = "0.4.1"
1242
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1243
+ checksum = "4722d768eff46b75989dd134e5c353f0d6296e5aaa3132e776cbdb56be7731aa"
1244
+ dependencies = [
1245
+ "bitflags 1.3.2",
1246
+ ]
1247
+
1248
+ [[package]]
1249
+ name = "redox_users"
1250
+ version = "0.4.4"
1251
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1252
+ checksum = "a18479200779601e498ada4e8c1e1f50e3ee19deb0259c25825a98b5603b2cb4"
1253
+ dependencies = [
1254
+ "getrandom",
1255
+ "libredox",
1256
+ "thiserror",
1257
+ ]
1258
+
1259
+ [[package]]
1260
+ name = "regalloc2"
1261
+ version = "0.8.1"
1262
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1263
+ checksum = "d4a52e724646c6c0800fc456ec43b4165d2f91fba88ceaca06d9e0b400023478"
1264
+ dependencies = [
1265
+ "hashbrown 0.13.2",
1266
+ "log",
1267
+ "rustc-hash",
1268
+ "slice-group-by",
1269
+ "smallvec",
1270
+ ]
1271
+
1272
+ [[package]]
1273
+ name = "regex"
1274
+ version = "1.10.2"
1275
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1276
+ checksum = "380b951a9c5e80ddfd6136919eef32310721aa4aacd4889a8d39124b026ab343"
1277
+ dependencies = [
1278
+ "aho-corasick",
1279
+ "memchr",
1280
+ "regex-automata",
1281
+ "regex-syntax",
1282
+ ]
1283
+
1284
+ [[package]]
1285
+ name = "regex-automata"
1286
+ version = "0.4.3"
1287
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1288
+ checksum = "5f804c7828047e88b2d32e2d7fe5a105da8ee3264f01902f796c8e067dc2483f"
1289
+ dependencies = [
1290
+ "aho-corasick",
1291
+ "memchr",
1292
+ "regex-syntax",
1293
+ ]
1294
+
1295
+ [[package]]
1296
+ name = "regex-syntax"
1297
+ version = "0.8.2"
1298
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1299
+ checksum = "c08c74e62047bb2de4ff487b251e4a92e24f48745648451635cec7d591162d9f"
1300
+
1301
+ [[package]]
1302
+ name = "ruby_wasm"
1303
+ version = "0.0.0"
1304
+ dependencies = [
1305
+ "magnus",
1306
+ "wasi-cap-std-sync",
1307
+ "wasi-vfs-cli",
1308
+ "wasmtime-wasi",
1309
+ "wizer 3.0.0",
1310
+ ]
1311
+
1312
+ [[package]]
1313
+ name = "rustc-demangle"
1314
+ version = "0.1.23"
1315
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1316
+ checksum = "d626bb9dae77e28219937af045c257c28bfd3f69333c512553507f5f9798cb76"
1317
+
1318
+ [[package]]
1319
+ name = "rustc-hash"
1320
+ version = "1.1.0"
1321
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1322
+ checksum = "08d43f7aa6b08d49f382cde6a7982047c3426db949b1424bc4b7ec9ae12c6ce2"
1323
+
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
+ [[package]]
1357
+ name = "rustix"
1358
+ version = "0.38.28"
1359
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1360
+ checksum = "72e572a5e8ca657d7366229cdde4bd14c4eb5499a9573d4d366fe1b599daa316"
1361
+ dependencies = [
1362
+ "bitflags 2.4.1",
1363
+ "errno 0.3.8",
1364
+ "libc",
1365
+ "linux-raw-sys 0.4.12",
1366
+ "windows-sys 0.52.0",
1367
+ ]
1368
+
1369
+ [[package]]
1370
+ name = "ryu"
1371
+ version = "1.0.16"
1372
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1373
+ checksum = "f98d2aa92eebf49b69786be48e4477826b256916e84a57ff2a4f21923b48eb4c"
1374
+
1375
+ [[package]]
1376
+ name = "seq-macro"
1377
+ version = "0.3.5"
1378
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1379
+ checksum = "a3f0bf26fd526d2a95683cd0f87bf103b8539e2ca1ef48ce002d67aad59aa0b4"
1380
+
1381
+ [[package]]
1382
+ name = "serde"
1383
+ version = "1.0.193"
1384
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1385
+ checksum = "25dd9975e68d0cb5aa1120c288333fc98731bd1dd12f561e468ea4728c042b89"
1386
+ dependencies = [
1387
+ "serde_derive",
1388
+ ]
1389
+
1390
+ [[package]]
1391
+ name = "serde_derive"
1392
+ version = "1.0.193"
1393
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1394
+ checksum = "43576ca501357b9b071ac53cdc7da8ef0cbd9493d8df094cd821777ea6e894d3"
1395
+ dependencies = [
1396
+ "proc-macro2",
1397
+ "quote",
1398
+ "syn 2.0.43",
1399
+ ]
1400
+
1401
+ [[package]]
1402
+ name = "serde_json"
1403
+ version = "1.0.108"
1404
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1405
+ checksum = "3d1c7e3eac408d115102c4c24ad393e0821bb3a5df4d506a80f85f7a742a526b"
1406
+ dependencies = [
1407
+ "itoa",
1408
+ "ryu",
1409
+ "serde",
1410
+ ]
1411
+
1412
+ [[package]]
1413
+ name = "sha2"
1414
+ version = "0.10.8"
1415
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1416
+ checksum = "793db75ad2bcafc3ffa7c68b215fee268f537982cd901d132f89c6343f3a3dc8"
1417
+ dependencies = [
1418
+ "cfg-if",
1419
+ "cpufeatures",
1420
+ "digest",
1421
+ ]
1422
+
1423
+ [[package]]
1424
+ name = "shell-words"
1425
+ version = "1.1.0"
1426
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1427
+ checksum = "24188a676b6ae68c3b2cb3a01be17fbf7240ce009799bb56d5b1409051e78fde"
1428
+
1429
+ [[package]]
1430
+ name = "shellexpand"
1431
+ version = "2.1.2"
1432
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1433
+ checksum = "7ccc8076840c4da029af4f87e4e8daeb0fca6b87bbb02e10cb60b791450e11e4"
1434
+ dependencies = [
1435
+ "dirs",
1436
+ ]
1437
+
1438
+ [[package]]
1439
+ name = "shlex"
1440
+ version = "1.2.0"
1441
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1442
+ checksum = "a7cee0529a6d40f580e7a5e6c495c8fbfe21b7b52795ed4bb5e62cdf92bc6380"
1443
+
1444
+ [[package]]
1445
+ name = "slice-group-by"
1446
+ version = "0.3.1"
1447
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1448
+ checksum = "826167069c09b99d56f31e9ae5c99049e932a98c9dc2dac47645b08dbbf76ba7"
1449
+
1450
+ [[package]]
1451
+ name = "smallvec"
1452
+ version = "1.11.2"
1453
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1454
+ checksum = "4dccd0940a2dcdf68d092b8cbab7dc0ad8fa938bf95787e1b916b0e3d0e8e970"
1455
+
1456
+ [[package]]
1457
+ name = "stable_deref_trait"
1458
+ version = "1.2.0"
1459
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1460
+ checksum = "a8f112729512f8e442d81f95a8a7ddf2b7c6b8a1a6f509a95864142b30cab2d3"
1461
+
1462
+ [[package]]
1463
+ name = "strsim"
1464
+ version = "0.8.0"
1465
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1466
+ checksum = "8ea5119cdb4c55b55d432abb513a0429384878c15dde60cc77b1c99de1a95a6a"
1467
+
1468
+ [[package]]
1469
+ name = "structopt"
1470
+ version = "0.3.26"
1471
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1472
+ checksum = "0c6b5c64445ba8094a6ab0c3cd2ad323e07171012d9c98b0b15651daf1787a10"
1473
+ dependencies = [
1474
+ "clap",
1475
+ "lazy_static",
1476
+ "structopt-derive",
1477
+ ]
1478
+
1479
+ [[package]]
1480
+ name = "structopt-derive"
1481
+ version = "0.4.18"
1482
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1483
+ checksum = "dcb5ae327f9cc13b68763b5749770cb9e048a99bd9dfdfa58d0cf05d5f64afe0"
1484
+ dependencies = [
1485
+ "heck 0.3.3",
1486
+ "proc-macro-error",
1487
+ "proc-macro2",
1488
+ "quote",
1489
+ "syn 1.0.109",
1490
+ ]
1491
+
1492
+ [[package]]
1493
+ name = "syn"
1494
+ version = "1.0.109"
1495
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1496
+ checksum = "72b64191b275b66ffe2469e8af2c1cfe3bafa67b529ead792a6d0160888b4237"
1497
+ dependencies = [
1498
+ "proc-macro2",
1499
+ "quote",
1500
+ "unicode-ident",
1501
+ ]
1502
+
1503
+ [[package]]
1504
+ name = "syn"
1505
+ version = "2.0.43"
1506
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1507
+ checksum = "ee659fb5f3d355364e1f3e5bc10fb82068efbf824a1e9d1c9504244a6469ad53"
1508
+ dependencies = [
1509
+ "proc-macro2",
1510
+ "quote",
1511
+ "unicode-ident",
1512
+ ]
1513
+
1514
+ [[package]]
1515
+ name = "system-interface"
1516
+ version = "0.25.9"
1517
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1518
+ checksum = "10081a99cbecbc363d381b9503563785f0b02735fccbb0d4c1a2cb3d39f7e7fe"
1519
+ dependencies = [
1520
+ "bitflags 2.4.1",
1521
+ "cap-fs-ext",
1522
+ "cap-std 1.0.15",
1523
+ "fd-lock",
1524
+ "io-lifetimes 2.0.3",
1525
+ "rustix 0.38.28",
1526
+ "windows-sys 0.48.0",
1527
+ "winx 0.36.3",
1528
+ ]
1529
+
1530
+ [[package]]
1531
+ name = "target-lexicon"
1532
+ version = "0.12.12"
1533
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1534
+ checksum = "14c39fd04924ca3a864207c66fc2cd7d22d7c016007f9ce846cbb9326331930a"
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
+ ]
1544
+
1545
+ [[package]]
1546
+ name = "textwrap"
1547
+ version = "0.11.0"
1548
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1549
+ checksum = "d326610f408c7a4eb6f51c37c330e496b08506c9457c9d34287ecc38809fb060"
1550
+ dependencies = [
1551
+ "unicode-width",
1552
+ ]
1553
+
1554
+ [[package]]
1555
+ name = "thiserror"
1556
+ version = "1.0.52"
1557
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1558
+ checksum = "83a48fd946b02c0a526b2e9481c8e2a17755e47039164a86c4070446e3a4614d"
1559
+ dependencies = [
1560
+ "thiserror-impl",
1561
+ ]
1562
+
1563
+ [[package]]
1564
+ name = "thiserror-impl"
1565
+ version = "1.0.52"
1566
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1567
+ checksum = "e7fbe9b594d6568a6a1443250a7e67d80b74e1e96f6d1715e1e21cc1888291d3"
1568
+ dependencies = [
1569
+ "proc-macro2",
1570
+ "quote",
1571
+ "syn 2.0.43",
1572
+ ]
1573
+
1574
+ [[package]]
1575
+ name = "tinyvec"
1576
+ version = "1.6.0"
1577
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1578
+ checksum = "87cc5ceb3875bb20c2890005a4e226a4651264a5c75edb2421b52861a0a0cb50"
1579
+ dependencies = [
1580
+ "tinyvec_macros",
1581
+ ]
1582
+
1583
+ [[package]]
1584
+ name = "tinyvec_macros"
1585
+ version = "0.1.1"
1586
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1587
+ checksum = "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20"
1588
+
1589
+ [[package]]
1590
+ name = "toml"
1591
+ version = "0.5.11"
1592
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1593
+ checksum = "f4f7f0dd8d50a853a531c426359045b1998f04219d88799810762cd4ad314234"
1594
+ dependencies = [
1595
+ "serde",
1596
+ ]
1597
+
1598
+ [[package]]
1599
+ name = "tracing"
1600
+ version = "0.1.40"
1601
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1602
+ checksum = "c3523ab5a71916ccf420eebdf5521fcef02141234bbc0b8a49f2fdc4544364ef"
1603
+ dependencies = [
1604
+ "log",
1605
+ "pin-project-lite",
1606
+ "tracing-attributes",
1607
+ "tracing-core",
1608
+ ]
1609
+
1610
+ [[package]]
1611
+ name = "tracing-attributes"
1612
+ version = "0.1.27"
1613
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1614
+ checksum = "34704c8d6ebcbc939824180af020566b01a7c01f80641264eba0999f6c2b6be7"
1615
+ dependencies = [
1616
+ "proc-macro2",
1617
+ "quote",
1618
+ "syn 2.0.43",
1619
+ ]
1620
+
1621
+ [[package]]
1622
+ name = "tracing-core"
1623
+ version = "0.1.32"
1624
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1625
+ checksum = "c06d3da6113f116aaee68e4d601191614c9053067f9ab7f6edbcb161237daa54"
1626
+ dependencies = [
1627
+ "once_cell",
1628
+ ]
1629
+
1630
+ [[package]]
1631
+ name = "typenum"
1632
+ version = "1.17.0"
1633
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1634
+ checksum = "42ff0bf0c66b8238c6f3b578df37d0b7848e55df8577b3f74f92a69acceeb825"
1635
+
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
+ [[package]]
1646
+ name = "unicode-bidi"
1647
+ version = "0.3.14"
1648
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1649
+ checksum = "6f2528f27a9eb2b21e69c95319b30bd0efd85d09c379741b0f78ea1d86be2416"
1650
+
1651
+ [[package]]
1652
+ name = "unicode-ident"
1653
+ version = "1.0.12"
1654
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1655
+ checksum = "3354b9ac3fae1ff6755cb6db53683adb661634f67557942dea4facebec0fee4b"
1656
+
1657
+ [[package]]
1658
+ name = "unicode-normalization"
1659
+ version = "0.1.22"
1660
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1661
+ checksum = "5c5713f0fc4b5db668a2ac63cdb7bb4469d8c9fed047b1d0292cc7b0ce2ba921"
1662
+ dependencies = [
1663
+ "tinyvec",
1664
+ ]
1665
+
1666
+ [[package]]
1667
+ name = "unicode-segmentation"
1668
+ version = "1.10.1"
1669
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1670
+ checksum = "1dd624098567895118886609431a7c3b8f516e41d30e0643f03d94592a147e36"
1671
+
1672
+ [[package]]
1673
+ name = "unicode-width"
1674
+ version = "0.1.11"
1675
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1676
+ checksum = "e51733f11c9c4f72aa0c160008246859e340b00807569a0da0e7a1079b27ba85"
1677
+
1678
+ [[package]]
1679
+ name = "unicode-xid"
1680
+ version = "0.2.4"
1681
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1682
+ checksum = "f962df74c8c05a667b5ee8bcf162993134c104e96440b663c8daa176dc772d8c"
1683
+
1684
+ [[package]]
1685
+ name = "url"
1686
+ version = "2.5.0"
1687
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1688
+ checksum = "31e6302e3bb753d46e83516cae55ae196fc0c309407cf11ab35cc51a4c2a4633"
1689
+ dependencies = [
1690
+ "form_urlencoded",
1691
+ "idna",
1692
+ "percent-encoding",
1693
+ ]
1694
+
1695
+ [[package]]
1696
+ name = "uuid"
1697
+ version = "1.6.1"
1698
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1699
+ checksum = "5e395fcf16a7a3d8127ec99782007af141946b4795001f876d54fb0d55978560"
1700
+
1701
+ [[package]]
1702
+ name = "vec_map"
1703
+ version = "0.8.2"
1704
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1705
+ checksum = "f1bddf1187be692e79c5ffeab891132dfb0f236ed36a43c7ed39f1165ee20191"
1706
+
1707
+ [[package]]
1708
+ name = "version_check"
1709
+ version = "0.9.4"
1710
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1711
+ checksum = "49874b5167b65d7193b8aba1567f5c7d93d001cafc34600cee003eda787e483f"
1712
+
1713
+ [[package]]
1714
+ name = "wasi"
1715
+ version = "0.11.0+wasi-snapshot-preview1"
1716
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1717
+ checksum = "9c8d87e72b64a3b4db28d11ce29237c246188f4f51057d65a7eab63b7987e423"
1718
+
1719
+ [[package]]
1720
+ name = "wasi-cap-std-sync"
1721
+ version = "9.0.4"
1722
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1723
+ checksum = "5d29c5da3b5cfc9212a7fa824224875cb67fb89d2a8392db655e4c59b8ab2ae7"
1724
+ dependencies = [
1725
+ "anyhow",
1726
+ "async-trait",
1727
+ "cap-fs-ext",
1728
+ "cap-rand",
1729
+ "cap-std 1.0.15",
1730
+ "cap-time-ext",
1731
+ "fs-set-times 0.19.2",
1732
+ "io-extras 0.17.4",
1733
+ "io-lifetimes 1.0.11",
1734
+ "is-terminal",
1735
+ "once_cell",
1736
+ "rustix 0.37.27",
1737
+ "system-interface",
1738
+ "tracing",
1739
+ "wasi-common",
1740
+ "windows-sys 0.48.0",
1741
+ ]
1742
+
1743
+ [[package]]
1744
+ name = "wasi-common"
1745
+ version = "9.0.4"
1746
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1747
+ checksum = "f8bd905dcec1448664bf63d42d291cbae0feeea3ad41631817b8819e096d76bd"
1748
+ dependencies = [
1749
+ "anyhow",
1750
+ "bitflags 1.3.2",
1751
+ "cap-rand",
1752
+ "cap-std 1.0.15",
1753
+ "io-extras 0.17.4",
1754
+ "log",
1755
+ "rustix 0.37.27",
1756
+ "thiserror",
1757
+ "tracing",
1758
+ "wasmtime",
1759
+ "wiggle",
1760
+ "windows-sys 0.48.0",
1761
+ ]
1762
+
1763
+ [[package]]
1764
+ name = "wasi-vfs-cli"
1765
+ version = "0.4.0"
1766
+ source = "git+https://github.com/kateinoigakukun/wasi-vfs/?rev=b1e4e5d9cd6322e8745e67c092b495973835a94f#b1e4e5d9cd6322e8745e67c092b495973835a94f"
1767
+ dependencies = [
1768
+ "anyhow",
1769
+ "structopt",
1770
+ "wasm-encoder 0.38.1",
1771
+ "wasmparser 0.106.0",
1772
+ "wizer 3.0.1",
1773
+ ]
1774
+
1775
+ [[package]]
1776
+ name = "wasm-encoder"
1777
+ version = "0.28.0"
1778
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1779
+ checksum = "83c94f464d50e31da425794a02da1a82d4b96a657dcb152a6664e8aa915be517"
1780
+ dependencies = [
1781
+ "leb128",
1782
+ ]
1783
+
1784
+ [[package]]
1785
+ name = "wasm-encoder"
1786
+ version = "0.38.1"
1787
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1788
+ checksum = "0ad2b51884de9c7f4fe2fd1043fccb8dcad4b1e29558146ee57a144d15779f3f"
1789
+ dependencies = [
1790
+ "leb128",
1791
+ ]
1792
+
1793
+ [[package]]
1794
+ name = "wasmparser"
1795
+ version = "0.103.0"
1796
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1797
+ checksum = "2c437373cac5ea84f1113d648d51f71751ffbe3d90c00ae67618cf20d0b5ee7b"
1798
+ dependencies = [
1799
+ "indexmap",
1800
+ "url",
1801
+ ]
1802
+
1803
+ [[package]]
1804
+ name = "wasmparser"
1805
+ version = "0.106.0"
1806
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1807
+ checksum = "d014e33793cab91655fa6349b0bc974984de106b2e0f6b0dfe6f6594b260624d"
1808
+ dependencies = [
1809
+ "indexmap",
1810
+ "url",
1811
+ ]
1812
+
1813
+ [[package]]
1814
+ name = "wasmtime"
1815
+ version = "9.0.4"
1816
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1817
+ checksum = "634357e8668774b24c80b210552f3f194e2342a065d6d83845ba22c5817d0770"
1818
+ dependencies = [
1819
+ "anyhow",
1820
+ "async-trait",
1821
+ "bincode",
1822
+ "bumpalo",
1823
+ "cfg-if",
1824
+ "fxprof-processed-profile",
1825
+ "indexmap",
1826
+ "libc",
1827
+ "log",
1828
+ "object",
1829
+ "once_cell",
1830
+ "paste",
1831
+ "psm",
1832
+ "rayon",
1833
+ "serde",
1834
+ "serde_json",
1835
+ "target-lexicon",
1836
+ "wasmparser 0.103.0",
1837
+ "wasmtime-cache",
1838
+ "wasmtime-component-macro",
1839
+ "wasmtime-cranelift",
1840
+ "wasmtime-environ",
1841
+ "wasmtime-fiber",
1842
+ "wasmtime-jit",
1843
+ "wasmtime-runtime",
1844
+ "wat",
1845
+ "windows-sys 0.48.0",
1846
+ ]
1847
+
1848
+ [[package]]
1849
+ name = "wasmtime-asm-macros"
1850
+ version = "9.0.4"
1851
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1852
+ checksum = "d33c73c24ce79b0483a3b091a9acf88871f4490b88998e8974b22236264d304c"
1853
+ dependencies = [
1854
+ "cfg-if",
1855
+ ]
1856
+
1857
+ [[package]]
1858
+ name = "wasmtime-cache"
1859
+ version = "9.0.4"
1860
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1861
+ checksum = "6107809b2d9f5b2fd3ddbaddb3bb92ff8048b62f4030debf1408119ffd38c6cb"
1862
+ dependencies = [
1863
+ "anyhow",
1864
+ "base64",
1865
+ "bincode",
1866
+ "directories-next",
1867
+ "file-per-thread-logger",
1868
+ "log",
1869
+ "rustix 0.37.27",
1870
+ "serde",
1871
+ "sha2",
1872
+ "toml",
1873
+ "windows-sys 0.48.0",
1874
+ "zstd",
1875
+ ]
1876
+
1877
+ [[package]]
1878
+ name = "wasmtime-component-macro"
1879
+ version = "9.0.4"
1880
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1881
+ checksum = "e5ba489850d9c91c6c5b9e1696ee89e7a69d9796236a005f7e9131b6746e13b6"
1882
+ dependencies = [
1883
+ "anyhow",
1884
+ "proc-macro2",
1885
+ "quote",
1886
+ "syn 1.0.109",
1887
+ "wasmtime-component-util",
1888
+ "wasmtime-wit-bindgen",
1889
+ "wit-parser",
1890
+ ]
1891
+
1892
+ [[package]]
1893
+ name = "wasmtime-component-util"
1894
+ version = "9.0.4"
1895
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1896
+ checksum = "7fa88f9e77d80f828c9d684741a9da649366c6d1cceb814755dd9cab7112d1d1"
1897
+
1898
+ [[package]]
1899
+ name = "wasmtime-cranelift"
1900
+ version = "9.0.4"
1901
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1902
+ checksum = "5800616a28ed6bd5e8b99ea45646c956d798ae030494ac0689bc3e45d3b689c1"
1903
+ dependencies = [
1904
+ "anyhow",
1905
+ "cranelift-codegen",
1906
+ "cranelift-control",
1907
+ "cranelift-entity",
1908
+ "cranelift-frontend",
1909
+ "cranelift-native",
1910
+ "cranelift-wasm",
1911
+ "gimli",
1912
+ "log",
1913
+ "object",
1914
+ "target-lexicon",
1915
+ "thiserror",
1916
+ "wasmparser 0.103.0",
1917
+ "wasmtime-cranelift-shared",
1918
+ "wasmtime-environ",
1919
+ ]
1920
+
1921
+ [[package]]
1922
+ name = "wasmtime-cranelift-shared"
1923
+ version = "9.0.4"
1924
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1925
+ checksum = "27e4030b959ac5c5d6ee500078977e813f8768fa2b92fc12be01856cd0c76c55"
1926
+ dependencies = [
1927
+ "anyhow",
1928
+ "cranelift-codegen",
1929
+ "cranelift-control",
1930
+ "cranelift-native",
1931
+ "gimli",
1932
+ "object",
1933
+ "target-lexicon",
1934
+ "wasmtime-environ",
1935
+ ]
1936
+
1937
+ [[package]]
1938
+ name = "wasmtime-environ"
1939
+ version = "9.0.4"
1940
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1941
+ checksum = "9ec815d01a8d38aceb7ed4678f9ba551ae6b8a568a63810ac3ad9293b0fd01c8"
1942
+ dependencies = [
1943
+ "anyhow",
1944
+ "cranelift-entity",
1945
+ "gimli",
1946
+ "indexmap",
1947
+ "log",
1948
+ "object",
1949
+ "serde",
1950
+ "target-lexicon",
1951
+ "thiserror",
1952
+ "wasmparser 0.103.0",
1953
+ "wasmtime-types",
1954
+ ]
1955
+
1956
+ [[package]]
1957
+ name = "wasmtime-fiber"
1958
+ version = "9.0.4"
1959
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1960
+ checksum = "23c5127908fdf720614891ec741c13dd70c844e102caa393e2faca1ee68e9bfb"
1961
+ dependencies = [
1962
+ "cc",
1963
+ "cfg-if",
1964
+ "rustix 0.37.27",
1965
+ "wasmtime-asm-macros",
1966
+ "windows-sys 0.48.0",
1967
+ ]
1968
+
1969
+ [[package]]
1970
+ name = "wasmtime-jit"
1971
+ version = "9.0.4"
1972
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1973
+ checksum = "2712eafe829778b426cad0e1769fef944898923dd29f0039e34e0d53ba72b234"
1974
+ dependencies = [
1975
+ "addr2line",
1976
+ "anyhow",
1977
+ "bincode",
1978
+ "cfg-if",
1979
+ "cpp_demangle",
1980
+ "gimli",
1981
+ "ittapi",
1982
+ "log",
1983
+ "object",
1984
+ "rustc-demangle",
1985
+ "serde",
1986
+ "target-lexicon",
1987
+ "wasmtime-environ",
1988
+ "wasmtime-jit-debug",
1989
+ "wasmtime-jit-icache-coherence",
1990
+ "wasmtime-runtime",
1991
+ "windows-sys 0.48.0",
1992
+ ]
1993
+
1994
+ [[package]]
1995
+ name = "wasmtime-jit-debug"
1996
+ version = "9.0.4"
1997
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1998
+ checksum = "65fb78eacf4a6e47260d8ef8cc81ea8ddb91397b2e848b3fb01567adebfe89b5"
1999
+ dependencies = [
2000
+ "object",
2001
+ "once_cell",
2002
+ "rustix 0.37.27",
2003
+ ]
2004
+
2005
+ [[package]]
2006
+ name = "wasmtime-jit-icache-coherence"
2007
+ version = "9.0.4"
2008
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2009
+ checksum = "d1364900b05f7d6008516121e8e62767ddb3e176bdf4c84dfa85da1734aeab79"
2010
+ dependencies = [
2011
+ "cfg-if",
2012
+ "libc",
2013
+ "windows-sys 0.48.0",
2014
+ ]
2015
+
2016
+ [[package]]
2017
+ name = "wasmtime-runtime"
2018
+ version = "9.0.4"
2019
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2020
+ checksum = "4a16ffe4de9ac9669175c0ea5c6c51ffc596dfb49320aaa6f6c57eff58cef069"
2021
+ dependencies = [
2022
+ "anyhow",
2023
+ "cc",
2024
+ "cfg-if",
2025
+ "indexmap",
2026
+ "libc",
2027
+ "log",
2028
+ "mach",
2029
+ "memfd",
2030
+ "memoffset",
2031
+ "paste",
2032
+ "rand",
2033
+ "rustix 0.37.27",
2034
+ "wasmtime-asm-macros",
2035
+ "wasmtime-environ",
2036
+ "wasmtime-fiber",
2037
+ "wasmtime-jit-debug",
2038
+ "windows-sys 0.48.0",
2039
+ ]
2040
+
2041
+ [[package]]
2042
+ name = "wasmtime-types"
2043
+ version = "9.0.4"
2044
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2045
+ checksum = "19961c9a3b04d5e766875a5c467f6f5d693f508b3e81f8dc4a1444aa94f041c9"
2046
+ dependencies = [
2047
+ "cranelift-entity",
2048
+ "serde",
2049
+ "thiserror",
2050
+ "wasmparser 0.103.0",
2051
+ ]
2052
+
2053
+ [[package]]
2054
+ name = "wasmtime-wasi"
2055
+ version = "9.0.4"
2056
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2057
+ checksum = "21080ff62878f1d7c53d9571053dbe96552c0f982f9f29eac65ea89974fabfd7"
2058
+ dependencies = [
2059
+ "anyhow",
2060
+ "libc",
2061
+ "wasi-cap-std-sync",
2062
+ "wasi-common",
2063
+ "wasmtime",
2064
+ "wiggle",
2065
+ ]
2066
+
2067
+ [[package]]
2068
+ name = "wasmtime-wit-bindgen"
2069
+ version = "9.0.4"
2070
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2071
+ checksum = "421f0d16cc5c612b35ae53a0be3d3124c72296f18e5be3468263c745d56d37ab"
2072
+ dependencies = [
2073
+ "anyhow",
2074
+ "heck 0.4.1",
2075
+ "wit-parser",
2076
+ ]
2077
+
2078
+ [[package]]
2079
+ name = "wast"
2080
+ version = "35.0.2"
2081
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2082
+ checksum = "2ef140f1b49946586078353a453a1d28ba90adfc54dde75710bc1931de204d68"
2083
+ dependencies = [
2084
+ "leb128",
2085
+ ]
2086
+
2087
+ [[package]]
2088
+ name = "wast"
2089
+ version = "69.0.1"
2090
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2091
+ checksum = "c1ee37317321afde358e4d7593745942c48d6d17e0e6e943704de9bbee121e7a"
2092
+ dependencies = [
2093
+ "leb128",
2094
+ "memchr",
2095
+ "unicode-width",
2096
+ "wasm-encoder 0.38.1",
2097
+ ]
2098
+
2099
+ [[package]]
2100
+ name = "wat"
2101
+ version = "1.0.82"
2102
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2103
+ checksum = "aeb338ee8dee4d4cd05e6426683f21c5087dc7cfc8903e839ccf48d43332da3c"
2104
+ dependencies = [
2105
+ "wast 69.0.1",
2106
+ ]
2107
+
2108
+ [[package]]
2109
+ name = "wiggle"
2110
+ version = "9.0.4"
2111
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2112
+ checksum = "5b34e40b7b17a920d03449ca78b0319984379eed01a9a11c1def9c3d3832d85a"
2113
+ dependencies = [
2114
+ "anyhow",
2115
+ "async-trait",
2116
+ "bitflags 1.3.2",
2117
+ "thiserror",
2118
+ "tracing",
2119
+ "wasmtime",
2120
+ "wiggle-macro",
2121
+ ]
2122
+
2123
+ [[package]]
2124
+ name = "wiggle-generate"
2125
+ version = "9.0.4"
2126
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2127
+ checksum = "9eefda132eaa84fe5f15d23a55a912f8417385aee65d0141d78a3b65e46201ed"
2128
+ dependencies = [
2129
+ "anyhow",
2130
+ "heck 0.4.1",
2131
+ "proc-macro2",
2132
+ "quote",
2133
+ "shellexpand",
2134
+ "syn 1.0.109",
2135
+ "witx",
2136
+ ]
2137
+
2138
+ [[package]]
2139
+ name = "wiggle-macro"
2140
+ version = "9.0.4"
2141
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2142
+ checksum = "6ca1a344a0ba781e2a94b27be5bb78f23e43d52336bd663b810d49d7189ad334"
2143
+ dependencies = [
2144
+ "proc-macro2",
2145
+ "quote",
2146
+ "syn 1.0.109",
2147
+ "wiggle-generate",
2148
+ ]
2149
+
2150
+ [[package]]
2151
+ name = "winapi"
2152
+ version = "0.3.9"
2153
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2154
+ checksum = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419"
2155
+ dependencies = [
2156
+ "winapi-i686-pc-windows-gnu",
2157
+ "winapi-x86_64-pc-windows-gnu",
2158
+ ]
2159
+
2160
+ [[package]]
2161
+ name = "winapi-i686-pc-windows-gnu"
2162
+ version = "0.4.0"
2163
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2164
+ checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6"
2165
+
2166
+ [[package]]
2167
+ name = "winapi-util"
2168
+ version = "0.1.6"
2169
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2170
+ checksum = "f29e6f9198ba0d26b4c9f07dbe6f9ed633e1f3d5b8b414090084349e46a52596"
2171
+ dependencies = [
2172
+ "winapi",
2173
+ ]
2174
+
2175
+ [[package]]
2176
+ name = "winapi-x86_64-pc-windows-gnu"
2177
+ version = "0.4.0"
2178
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2179
+ checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f"
2180
+
2181
+ [[package]]
2182
+ name = "windows-sys"
2183
+ version = "0.48.0"
2184
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2185
+ checksum = "677d2418bec65e3338edb076e806bc1ec15693c5d0104683f2efe857f61056a9"
2186
+ dependencies = [
2187
+ "windows-targets 0.48.5",
2188
+ ]
2189
+
2190
+ [[package]]
2191
+ name = "windows-sys"
2192
+ version = "0.52.0"
2193
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2194
+ checksum = "282be5f36a8ce781fad8c8ae18fa3f9beff57ec1b52cb3de0789201425d9a33d"
2195
+ dependencies = [
2196
+ "windows-targets 0.52.0",
2197
+ ]
2198
+
2199
+ [[package]]
2200
+ name = "windows-targets"
2201
+ version = "0.48.5"
2202
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2203
+ checksum = "9a2fa6e2155d7247be68c096456083145c183cbbbc2764150dda45a87197940c"
2204
+ dependencies = [
2205
+ "windows_aarch64_gnullvm 0.48.5",
2206
+ "windows_aarch64_msvc 0.48.5",
2207
+ "windows_i686_gnu 0.48.5",
2208
+ "windows_i686_msvc 0.48.5",
2209
+ "windows_x86_64_gnu 0.48.5",
2210
+ "windows_x86_64_gnullvm 0.48.5",
2211
+ "windows_x86_64_msvc 0.48.5",
2212
+ ]
2213
+
2214
+ [[package]]
2215
+ name = "windows-targets"
2216
+ version = "0.52.0"
2217
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2218
+ checksum = "8a18201040b24831fbb9e4eb208f8892e1f50a37feb53cc7ff887feb8f50e7cd"
2219
+ dependencies = [
2220
+ "windows_aarch64_gnullvm 0.52.0",
2221
+ "windows_aarch64_msvc 0.52.0",
2222
+ "windows_i686_gnu 0.52.0",
2223
+ "windows_i686_msvc 0.52.0",
2224
+ "windows_x86_64_gnu 0.52.0",
2225
+ "windows_x86_64_gnullvm 0.52.0",
2226
+ "windows_x86_64_msvc 0.52.0",
2227
+ ]
2228
+
2229
+ [[package]]
2230
+ name = "windows_aarch64_gnullvm"
2231
+ version = "0.48.5"
2232
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2233
+ checksum = "2b38e32f0abccf9987a4e3079dfb67dcd799fb61361e53e2882c3cbaf0d905d8"
2234
+
2235
+ [[package]]
2236
+ name = "windows_aarch64_gnullvm"
2237
+ version = "0.52.0"
2238
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2239
+ checksum = "cb7764e35d4db8a7921e09562a0304bf2f93e0a51bfccee0bd0bb0b666b015ea"
2240
+
2241
+ [[package]]
2242
+ name = "windows_aarch64_msvc"
2243
+ version = "0.48.5"
2244
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2245
+ checksum = "dc35310971f3b2dbbf3f0690a219f40e2d9afcf64f9ab7cc1be722937c26b4bc"
2246
+
2247
+ [[package]]
2248
+ name = "windows_aarch64_msvc"
2249
+ version = "0.52.0"
2250
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2251
+ checksum = "bbaa0368d4f1d2aaefc55b6fcfee13f41544ddf36801e793edbbfd7d7df075ef"
2252
+
2253
+ [[package]]
2254
+ name = "windows_i686_gnu"
2255
+ version = "0.48.5"
2256
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2257
+ checksum = "a75915e7def60c94dcef72200b9a8e58e5091744960da64ec734a6c6e9b3743e"
2258
+
2259
+ [[package]]
2260
+ name = "windows_i686_gnu"
2261
+ version = "0.52.0"
2262
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2263
+ checksum = "a28637cb1fa3560a16915793afb20081aba2c92ee8af57b4d5f28e4b3e7df313"
2264
+
2265
+ [[package]]
2266
+ name = "windows_i686_msvc"
2267
+ version = "0.48.5"
2268
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2269
+ checksum = "8f55c233f70c4b27f66c523580f78f1004e8b5a8b659e05a4eb49d4166cca406"
2270
+
2271
+ [[package]]
2272
+ name = "windows_i686_msvc"
2273
+ version = "0.52.0"
2274
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2275
+ checksum = "ffe5e8e31046ce6230cc7215707b816e339ff4d4d67c65dffa206fd0f7aa7b9a"
2276
+
2277
+ [[package]]
2278
+ name = "windows_x86_64_gnu"
2279
+ version = "0.48.5"
2280
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2281
+ checksum = "53d40abd2583d23e4718fddf1ebec84dbff8381c07cae67ff7768bbf19c6718e"
2282
+
2283
+ [[package]]
2284
+ name = "windows_x86_64_gnu"
2285
+ version = "0.52.0"
2286
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2287
+ checksum = "3d6fa32db2bc4a2f5abeacf2b69f7992cd09dca97498da74a151a3132c26befd"
2288
+
2289
+ [[package]]
2290
+ name = "windows_x86_64_gnullvm"
2291
+ version = "0.48.5"
2292
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2293
+ checksum = "0b7b52767868a23d5bab768e390dc5f5c55825b6d30b86c844ff2dc7414044cc"
2294
+
2295
+ [[package]]
2296
+ name = "windows_x86_64_gnullvm"
2297
+ version = "0.52.0"
2298
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2299
+ checksum = "1a657e1e9d3f514745a572a6846d3c7aa7dbe1658c056ed9c3344c4109a6949e"
2300
+
2301
+ [[package]]
2302
+ name = "windows_x86_64_msvc"
2303
+ version = "0.48.5"
2304
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2305
+ checksum = "ed94fce61571a4006852b7389a063ab983c02eb1bb37b47f8272ce92d06d9538"
2306
+
2307
+ [[package]]
2308
+ name = "windows_x86_64_msvc"
2309
+ version = "0.52.0"
2310
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2311
+ checksum = "dff9641d1cd4be8d1a070daf9e3773c5f67e78b4d9d42263020c057706765c04"
2312
+
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
+ [[package]]
2336
+ name = "winx"
2337
+ version = "0.36.3"
2338
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2339
+ checksum = "f9643b83820c0cd246ecabe5fa454dd04ba4fa67996369466d0747472d337346"
2340
+ dependencies = [
2341
+ "bitflags 2.4.1",
2342
+ "windows-sys 0.52.0",
2343
+ ]
2344
+
2345
+ [[package]]
2346
+ name = "wit-parser"
2347
+ version = "0.7.1"
2348
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2349
+ checksum = "5ca2581061573ef6d1754983d7a9b3ed5871ef859d52708ea9a0f5af32919172"
2350
+ dependencies = [
2351
+ "anyhow",
2352
+ "id-arena",
2353
+ "indexmap",
2354
+ "log",
2355
+ "pulldown-cmark",
2356
+ "unicode-xid",
2357
+ "url",
2358
+ ]
2359
+
2360
+ [[package]]
2361
+ name = "witx"
2362
+ version = "0.9.1"
2363
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2364
+ checksum = "e366f27a5cabcddb2706a78296a40b8fcc451e1a6aba2fc1d94b4a01bdaaef4b"
2365
+ dependencies = [
2366
+ "anyhow",
2367
+ "log",
2368
+ "thiserror",
2369
+ "wast 35.0.2",
2370
+ ]
2371
+
2372
+ [[package]]
2373
+ name = "wizer"
2374
+ version = "3.0.0"
2375
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2376
+ checksum = "bdbf85c6302a99e5c9d15655abd804c0e204a278fdb62c1e53a37ba4f3550b8b"
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"
2393
+ dependencies = [
2394
+ "anyhow",
2395
+ "cap-std 0.24.4",
2396
+ "log",
2397
+ "rayon",
2398
+ "wasi-cap-std-sync",
2399
+ "wasm-encoder 0.28.0",
2400
+ "wasmparser 0.106.0",
2401
+ "wasmtime",
2402
+ "wasmtime-wasi",
2403
+ ]
2404
+
2405
+ [[package]]
2406
+ name = "zerocopy"
2407
+ version = "0.7.32"
2408
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2409
+ checksum = "74d4d3961e53fa4c9a25a8637fc2bfaf2595b3d3ae34875568a5cf64787716be"
2410
+ dependencies = [
2411
+ "zerocopy-derive",
2412
+ ]
2413
+
2414
+ [[package]]
2415
+ name = "zerocopy-derive"
2416
+ version = "0.7.32"
2417
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2418
+ checksum = "9ce1b18ccd8e73a9321186f97e46f9f04b778851177567b1975109d26a08d2a6"
2419
+ dependencies = [
2420
+ "proc-macro2",
2421
+ "quote",
2422
+ "syn 2.0.43",
2423
+ ]
2424
+
2425
+ [[package]]
2426
+ name = "zstd"
2427
+ version = "0.11.2+zstd.1.5.2"
2428
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2429
+ checksum = "20cc960326ece64f010d2d2107537f26dc589a6573a316bd5b1dba685fa5fde4"
2430
+ dependencies = [
2431
+ "zstd-safe",
2432
+ ]
2433
+
2434
+ [[package]]
2435
+ name = "zstd-safe"
2436
+ version = "5.0.2+zstd.1.5.2"
2437
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2438
+ checksum = "1d2a5585e04f9eea4b2a3d1eca508c4dee9592a89ef6f450c11719da0726f4db"
2439
+ dependencies = [
2440
+ "libc",
2441
+ "zstd-sys",
2442
+ ]
2443
+
2444
+ [[package]]
2445
+ name = "zstd-sys"
2446
+ version = "2.0.9+zstd.1.5.5"
2447
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2448
+ checksum = "9e16efa8a874a0481a574084d34cc26fdb3b99627480f785888deb6386506656"
2449
+ dependencies = [
2450
+ "cc",
2451
+ "pkg-config",
2452
+ ]