fastly-compute 0.1.1__tar.gz

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.
Files changed (90) hide show
  1. fastly_compute-0.1.1/Cargo.lock +4570 -0
  2. fastly_compute-0.1.1/Cargo.toml +4 -0
  3. fastly_compute-0.1.1/LICENSE +222 -0
  4. fastly_compute-0.1.1/PKG-INFO +142 -0
  5. fastly_compute-0.1.1/README.md +121 -0
  6. fastly_compute-0.1.1/crates/fastly-compute-py/Cargo.toml +41 -0
  7. fastly_compute-0.1.1/crates/fastly-compute-py/build.rs +125 -0
  8. fastly_compute-0.1.1/crates/fastly-compute-py/src/cli.rs +57 -0
  9. fastly_compute-0.1.1/crates/fastly-compute-py/src/config.rs +112 -0
  10. fastly_compute-0.1.1/crates/fastly-compute-py/src/lib.rs +343 -0
  11. fastly_compute-0.1.1/crates/fastly-compute-py/src/main.rs +8 -0
  12. fastly_compute-0.1.1/crates/fastly-compute-py/src/site_packages.rs +181 -0
  13. fastly_compute-0.1.1/fastly_compute/__init__.py +13 -0
  14. fastly_compute-0.1.1/fastly_compute/_resource.py +99 -0
  15. fastly_compute-0.1.1/fastly_compute/config_store.py +90 -0
  16. fastly_compute-0.1.1/fastly_compute/exceptions/__init__.py +29 -0
  17. fastly_compute-0.1.1/fastly_compute/exceptions/acl/__init__.py +4 -0
  18. fastly_compute-0.1.1/fastly_compute/exceptions/acl/acl_error.py +23 -0
  19. fastly_compute-0.1.1/fastly_compute/exceptions/http_body/__init__.py +1 -0
  20. fastly_compute-0.1.1/fastly_compute/exceptions/http_body/trailer_error.py +21 -0
  21. fastly_compute-0.1.1/fastly_compute/exceptions/http_req/__init__.py +9 -0
  22. fastly_compute-0.1.1/fastly_compute/exceptions/kv_store/__init__.py +7 -0
  23. fastly_compute-0.1.1/fastly_compute/exceptions/kv_store/kv_error.py +57 -0
  24. fastly_compute-0.1.1/fastly_compute/exceptions/types/__init__.py +1 -0
  25. fastly_compute-0.1.1/fastly_compute/exceptions/types/error.py +116 -0
  26. fastly_compute-0.1.1/fastly_compute/exceptions/types/open_error.py +47 -0
  27. fastly_compute-0.1.1/fastly_compute/fastly_compute_py.py +14 -0
  28. fastly_compute-0.1.1/fastly_compute/log.py +239 -0
  29. fastly_compute-0.1.1/fastly_compute/pytest_plugin.py +31 -0
  30. fastly_compute-0.1.1/fastly_compute/requests/__init__.py +289 -0
  31. fastly_compute-0.1.1/fastly_compute/requests/backend.py +113 -0
  32. fastly_compute-0.1.1/fastly_compute/requests/exceptions.py +213 -0
  33. fastly_compute-0.1.1/fastly_compute/requests/response.py +176 -0
  34. fastly_compute-0.1.1/fastly_compute/requests/timeout.py +83 -0
  35. fastly_compute-0.1.1/fastly_compute/runtime_patching/__init__.py +1 -0
  36. fastly_compute-0.1.1/fastly_compute/runtime_patching/decorators.py +65 -0
  37. fastly_compute-0.1.1/fastly_compute/runtime_patching/patches.py +276 -0
  38. fastly_compute-0.1.1/fastly_compute/testing/__init__.py +14 -0
  39. fastly_compute-0.1.1/fastly_compute/testing/mock_http_server.py +223 -0
  40. fastly_compute-0.1.1/fastly_compute/testing/stubs/componentize_py_async_support/__init__.py +529 -0
  41. fastly_compute-0.1.1/fastly_compute/testing/stubs/componentize_py_async_support/futures.py +93 -0
  42. fastly_compute-0.1.1/fastly_compute/testing/stubs/componentize_py_async_support/streams.py +189 -0
  43. fastly_compute-0.1.1/fastly_compute/testing/stubs/componentize_py_runtime.pyi +34 -0
  44. fastly_compute-0.1.1/fastly_compute/testing/stubs/componentize_py_types.py +19 -0
  45. fastly_compute-0.1.1/fastly_compute/testing/stubs/poll_loop.py +440 -0
  46. fastly_compute-0.1.1/fastly_compute/testing/stubs/wit_world/__init__.py +15 -0
  47. fastly_compute-0.1.1/fastly_compute/testing/stubs/wit_world/exports/__init__.py +33 -0
  48. fastly_compute-0.1.1/fastly_compute/testing/stubs/wit_world/exports/http_incoming.py +21 -0
  49. fastly_compute-0.1.1/fastly_compute/testing/stubs/wit_world/imports/__init__.py +0 -0
  50. fastly_compute-0.1.1/fastly_compute/testing/stubs/wit_world/imports/acl.py +62 -0
  51. fastly_compute-0.1.1/fastly_compute/testing/stubs/wit_world/imports/async_io.py +105 -0
  52. fastly_compute-0.1.1/fastly_compute/testing/stubs/wit_world/imports/backend.py +444 -0
  53. fastly_compute-0.1.1/fastly_compute/testing/stubs/wit_world/imports/cache.py +485 -0
  54. fastly_compute-0.1.1/fastly_compute/testing/stubs/wit_world/imports/compute_runtime.py +151 -0
  55. fastly_compute-0.1.1/fastly_compute/testing/stubs/wit_world/imports/config_store.py +51 -0
  56. fastly_compute-0.1.1/fastly_compute/testing/stubs/wit_world/imports/device_detection.py +28 -0
  57. fastly_compute-0.1.1/fastly_compute/testing/stubs/wit_world/imports/dictionary.py +54 -0
  58. fastly_compute-0.1.1/fastly_compute/testing/stubs/wit_world/imports/environment.py +36 -0
  59. fastly_compute-0.1.1/fastly_compute/testing/stubs/wit_world/imports/erl.py +128 -0
  60. fastly_compute-0.1.1/fastly_compute/testing/stubs/wit_world/imports/error.py +56 -0
  61. fastly_compute-0.1.1/fastly_compute/testing/stubs/wit_world/imports/exit.py +18 -0
  62. fastly_compute-0.1.1/fastly_compute/testing/stubs/wit_world/imports/geo.py +30 -0
  63. fastly_compute-0.1.1/fastly_compute/testing/stubs/wit_world/imports/http_body.py +155 -0
  64. fastly_compute-0.1.1/fastly_compute/testing/stubs/wit_world/imports/http_cache.py +448 -0
  65. fastly_compute-0.1.1/fastly_compute/testing/stubs/wit_world/imports/http_downstream.py +239 -0
  66. fastly_compute-0.1.1/fastly_compute/testing/stubs/wit_world/imports/http_req.py +565 -0
  67. fastly_compute-0.1.1/fastly_compute/testing/stubs/wit_world/imports/http_resp.py +209 -0
  68. fastly_compute-0.1.1/fastly_compute/testing/stubs/wit_world/imports/http_types.py +55 -0
  69. fastly_compute-0.1.1/fastly_compute/testing/stubs/wit_world/imports/image_optimizer.py +47 -0
  70. fastly_compute-0.1.1/fastly_compute/testing/stubs/wit_world/imports/insecure.py +39 -0
  71. fastly_compute-0.1.1/fastly_compute/testing/stubs/wit_world/imports/insecure_seed.py +40 -0
  72. fastly_compute-0.1.1/fastly_compute/testing/stubs/wit_world/imports/kv_store.py +349 -0
  73. fastly_compute-0.1.1/fastly_compute/testing/stubs/wit_world/imports/log.py +59 -0
  74. fastly_compute-0.1.1/fastly_compute/testing/stubs/wit_world/imports/monotonic_clock.py +49 -0
  75. fastly_compute-0.1.1/fastly_compute/testing/stubs/wit_world/imports/poll.py +72 -0
  76. fastly_compute-0.1.1/fastly_compute/testing/stubs/wit_world/imports/purge.py +63 -0
  77. fastly_compute-0.1.1/fastly_compute/testing/stubs/wit_world/imports/random.py +43 -0
  78. fastly_compute-0.1.1/fastly_compute/testing/stubs/wit_world/imports/secret_store.py +95 -0
  79. fastly_compute-0.1.1/fastly_compute/testing/stubs/wit_world/imports/security.py +57 -0
  80. fastly_compute-0.1.1/fastly_compute/testing/stubs/wit_world/imports/shielding.py +51 -0
  81. fastly_compute-0.1.1/fastly_compute/testing/stubs/wit_world/imports/stderr.py +15 -0
  82. fastly_compute-0.1.1/fastly_compute/testing/stubs/wit_world/imports/stdin.py +15 -0
  83. fastly_compute-0.1.1/fastly_compute/testing/stubs/wit_world/imports/stdout.py +15 -0
  84. fastly_compute-0.1.1/fastly_compute/testing/stubs/wit_world/imports/streams.py +330 -0
  85. fastly_compute-0.1.1/fastly_compute/testing/stubs/wit_world/imports/types.py +116 -0
  86. fastly_compute-0.1.1/fastly_compute/testing/stubs/wit_world/imports/wall_clock.py +61 -0
  87. fastly_compute-0.1.1/fastly_compute/testing/viceroy.py +479 -0
  88. fastly_compute-0.1.1/fastly_compute/utils.py +82 -0
  89. fastly_compute-0.1.1/fastly_compute/wsgi.py +237 -0
  90. fastly_compute-0.1.1/pyproject.toml +120 -0
@@ -0,0 +1,4570 @@
1
+ # This file is automatically @generated by Cargo.
2
+ # It is not intended for manual editing.
3
+ version = 4
4
+
5
+ [[package]]
6
+ name = "addr2line"
7
+ version = "0.26.1"
8
+ source = "registry+https://github.com/rust-lang/crates.io-index"
9
+ checksum = "59317f77929f0e679d39364702289274de2f0f0b22cbf50b2b8cff2169a0b27a"
10
+ dependencies = [
11
+ "gimli",
12
+ ]
13
+
14
+ [[package]]
15
+ name = "adler2"
16
+ version = "2.0.1"
17
+ source = "registry+https://github.com/rust-lang/crates.io-index"
18
+ checksum = "320119579fcad9c21884f5c4861d16174d0e06250625266f50fe6898340abefa"
19
+
20
+ [[package]]
21
+ name = "ahash"
22
+ version = "0.8.12"
23
+ source = "registry+https://github.com/rust-lang/crates.io-index"
24
+ checksum = "5a15f179cd60c4584b8a8c596927aadc462e27f2ca70c04e0071964a73ba7a75"
25
+ dependencies = [
26
+ "cfg-if",
27
+ "once_cell",
28
+ "version_check",
29
+ "zerocopy",
30
+ ]
31
+
32
+ [[package]]
33
+ name = "aho-corasick"
34
+ version = "1.1.4"
35
+ source = "registry+https://github.com/rust-lang/crates.io-index"
36
+ checksum = "ddd31a130427c27518df266943a5308ed92d4b226cc639f5a8f1002816174301"
37
+ dependencies = [
38
+ "memchr",
39
+ ]
40
+
41
+ [[package]]
42
+ name = "alloc-no-stdlib"
43
+ version = "2.0.4"
44
+ source = "registry+https://github.com/rust-lang/crates.io-index"
45
+ checksum = "cc7bb162ec39d46ab1ca8c77bf72e890535becd1751bb45f64c597edb4c8c6b3"
46
+
47
+ [[package]]
48
+ name = "alloc-stdlib"
49
+ version = "0.2.2"
50
+ source = "registry+https://github.com/rust-lang/crates.io-index"
51
+ checksum = "94fb8275041c72129eb51b7d0322c29b8387a0386127718b096429201a5d6ece"
52
+ dependencies = [
53
+ "alloc-no-stdlib",
54
+ ]
55
+
56
+ [[package]]
57
+ name = "allocator-api2"
58
+ version = "0.2.21"
59
+ source = "registry+https://github.com/rust-lang/crates.io-index"
60
+ checksum = "683d7910e743518b0e34f1186f92494becacb047c7b6bf616c96772180fef923"
61
+
62
+ [[package]]
63
+ name = "ambient-authority"
64
+ version = "0.0.2"
65
+ source = "registry+https://github.com/rust-lang/crates.io-index"
66
+ checksum = "e9d4ee0d472d1cd2e28c97dfa124b3d8d992e10eb0a035f33f5d12e3a177ba3b"
67
+
68
+ [[package]]
69
+ name = "android_system_properties"
70
+ version = "0.1.5"
71
+ source = "registry+https://github.com/rust-lang/crates.io-index"
72
+ checksum = "819e7219dbd41043ac279b19830f2efc897156490d7fd6ea916720117ee66311"
73
+ dependencies = [
74
+ "libc",
75
+ ]
76
+
77
+ [[package]]
78
+ name = "anstream"
79
+ version = "1.0.0"
80
+ source = "registry+https://github.com/rust-lang/crates.io-index"
81
+ checksum = "824a212faf96e9acacdbd09febd34438f8f711fb84e09a8916013cd7815ca28d"
82
+ dependencies = [
83
+ "anstyle",
84
+ "anstyle-parse",
85
+ "anstyle-query",
86
+ "anstyle-wincon",
87
+ "colorchoice",
88
+ "is_terminal_polyfill",
89
+ "utf8parse",
90
+ ]
91
+
92
+ [[package]]
93
+ name = "anstyle"
94
+ version = "1.0.14"
95
+ source = "registry+https://github.com/rust-lang/crates.io-index"
96
+ checksum = "940b3a0ca603d1eade50a4846a2afffd5ef57a9feac2c0e2ec2e14f9ead76000"
97
+
98
+ [[package]]
99
+ name = "anstyle-parse"
100
+ version = "1.0.0"
101
+ source = "registry+https://github.com/rust-lang/crates.io-index"
102
+ checksum = "52ce7f38b242319f7cabaa6813055467063ecdc9d355bbb4ce0c68908cd8130e"
103
+ dependencies = [
104
+ "utf8parse",
105
+ ]
106
+
107
+ [[package]]
108
+ name = "anstyle-query"
109
+ version = "1.1.5"
110
+ source = "registry+https://github.com/rust-lang/crates.io-index"
111
+ checksum = "40c48f72fd53cd289104fc64099abca73db4166ad86ea0b4341abe65af83dadc"
112
+ dependencies = [
113
+ "windows-sys 0.61.2",
114
+ ]
115
+
116
+ [[package]]
117
+ name = "anstyle-wincon"
118
+ version = "3.0.11"
119
+ source = "registry+https://github.com/rust-lang/crates.io-index"
120
+ checksum = "291e6a250ff86cd4a820112fb8898808a366d8f9f58ce16d1f538353ad55747d"
121
+ dependencies = [
122
+ "anstyle",
123
+ "once_cell_polyfill",
124
+ "windows-sys 0.61.2",
125
+ ]
126
+
127
+ [[package]]
128
+ name = "anyhow"
129
+ version = "1.0.102"
130
+ source = "registry+https://github.com/rust-lang/crates.io-index"
131
+ checksum = "7f202df86484c868dbad7eaa557ef785d5c66295e41b460ef922eca0723b842c"
132
+
133
+ [[package]]
134
+ name = "arbitrary"
135
+ version = "1.4.2"
136
+ source = "registry+https://github.com/rust-lang/crates.io-index"
137
+ checksum = "c3d036a3c4ab069c7b410a2ce876bd74808d2d0888a82667669f8e783a898bf1"
138
+
139
+ [[package]]
140
+ name = "async-compression"
141
+ version = "0.4.42"
142
+ source = "registry+https://github.com/rust-lang/crates.io-index"
143
+ checksum = "e79b3f8a79cccc2898f31920fc69f304859b3bd567490f75ebf51ae1c792a9ac"
144
+ dependencies = [
145
+ "compression-codecs",
146
+ "compression-core",
147
+ "pin-project-lite",
148
+ "tokio",
149
+ ]
150
+
151
+ [[package]]
152
+ name = "async-trait"
153
+ version = "0.1.89"
154
+ source = "registry+https://github.com/rust-lang/crates.io-index"
155
+ checksum = "9035ad2d096bed7955a320ee7e2230574d28fd3c3a0f186cbea1ff3c7eed5dbb"
156
+ dependencies = [
157
+ "proc-macro2",
158
+ "quote",
159
+ "syn",
160
+ ]
161
+
162
+ [[package]]
163
+ name = "atomic-waker"
164
+ version = "1.1.2"
165
+ source = "registry+https://github.com/rust-lang/crates.io-index"
166
+ checksum = "1505bd5d3d116872e7271a6d4e16d81d0c8570876c8de68093a09ac269d8aac0"
167
+
168
+ [[package]]
169
+ name = "auditable-serde"
170
+ version = "0.8.0"
171
+ source = "registry+https://github.com/rust-lang/crates.io-index"
172
+ checksum = "5c7bf8143dfc3c0258df908843e169b5cc5fcf76c7718bd66135ef4a9cd558c5"
173
+ dependencies = [
174
+ "semver",
175
+ "serde",
176
+ "serde_json",
177
+ "topological-sort",
178
+ ]
179
+
180
+ [[package]]
181
+ name = "autocfg"
182
+ version = "1.5.1"
183
+ source = "registry+https://github.com/rust-lang/crates.io-index"
184
+ checksum = "f2032f911046de80f0a198e0901378627c33f59ea0ac00e363d481118bd70a53"
185
+
186
+ [[package]]
187
+ name = "base64"
188
+ version = "0.22.1"
189
+ source = "registry+https://github.com/rust-lang/crates.io-index"
190
+ checksum = "72b3254f16251a8381aa12e40e3c4d2f0199f8c6508fbecb9d91f575e0fbb8c6"
191
+
192
+ [[package]]
193
+ name = "beef"
194
+ version = "0.5.2"
195
+ source = "registry+https://github.com/rust-lang/crates.io-index"
196
+ checksum = "3a8241f3ebb85c056b509d4327ad0358fbbba6ffb340bf388f26350aeda225b1"
197
+
198
+ [[package]]
199
+ name = "bincode"
200
+ version = "1.3.3"
201
+ source = "registry+https://github.com/rust-lang/crates.io-index"
202
+ checksum = "b1f45e9417d87227c7a56d22e471c6206462cba514c7590c09aff4cf6d1ddcad"
203
+ dependencies = [
204
+ "serde",
205
+ ]
206
+
207
+ [[package]]
208
+ name = "bit-set"
209
+ version = "0.8.0"
210
+ source = "registry+https://github.com/rust-lang/crates.io-index"
211
+ checksum = "08807e080ed7f9d5433fa9b275196cfc35414f66a0c79d864dc51a0d825231a3"
212
+ dependencies = [
213
+ "bit-vec",
214
+ ]
215
+
216
+ [[package]]
217
+ name = "bit-vec"
218
+ version = "0.8.0"
219
+ source = "registry+https://github.com/rust-lang/crates.io-index"
220
+ checksum = "5e764a1d40d510daf35e07be9eb06e75770908c27d411ee6c92109c9840eaaf7"
221
+
222
+ [[package]]
223
+ name = "bitflags"
224
+ version = "2.11.1"
225
+ source = "registry+https://github.com/rust-lang/crates.io-index"
226
+ checksum = "c4512299f36f043ab09a583e57bceb5a5aab7a73db1805848e8fef3c9e8c78b3"
227
+
228
+ [[package]]
229
+ name = "bitmaps"
230
+ version = "2.1.0"
231
+ source = "registry+https://github.com/rust-lang/crates.io-index"
232
+ checksum = "031043d04099746d8db04daf1fa424b2bc8bd69d92b25962dcde24da39ab64a2"
233
+ dependencies = [
234
+ "typenum",
235
+ ]
236
+
237
+ [[package]]
238
+ name = "block-buffer"
239
+ version = "0.10.4"
240
+ source = "registry+https://github.com/rust-lang/crates.io-index"
241
+ checksum = "3078c7629b62d3f0439517fa394996acacc5cbc91c5a20d8c658e77abd503a71"
242
+ dependencies = [
243
+ "generic-array",
244
+ ]
245
+
246
+ [[package]]
247
+ name = "brotli"
248
+ version = "8.0.3"
249
+ source = "registry+https://github.com/rust-lang/crates.io-index"
250
+ checksum = "8119e4516436f5708bbc474a9d395bf12f1b5395e93a92a56e647ac3388c8610"
251
+ dependencies = [
252
+ "alloc-no-stdlib",
253
+ "alloc-stdlib",
254
+ "brotli-decompressor",
255
+ ]
256
+
257
+ [[package]]
258
+ name = "brotli-decompressor"
259
+ version = "5.0.1"
260
+ source = "registry+https://github.com/rust-lang/crates.io-index"
261
+ checksum = "5962523e1b92ce1b5e793d9169b9943eece10d39f62550bc04bb605d75b94924"
262
+ dependencies = [
263
+ "alloc-no-stdlib",
264
+ "alloc-stdlib",
265
+ ]
266
+
267
+ [[package]]
268
+ name = "bumpalo"
269
+ version = "3.20.3"
270
+ source = "registry+https://github.com/rust-lang/crates.io-index"
271
+ checksum = "72f5acc6cb2ba439de613abc23857ec3d78374d8ed5ac84e9d11336e87da8649"
272
+ dependencies = [
273
+ "allocator-api2",
274
+ ]
275
+
276
+ [[package]]
277
+ name = "bytes"
278
+ version = "1.11.1"
279
+ source = "registry+https://github.com/rust-lang/crates.io-index"
280
+ checksum = "1e748733b7cbc798e1434b6ac524f0c1ff2ab456fe201501e6497c8417a4fc33"
281
+
282
+ [[package]]
283
+ name = "camino"
284
+ version = "1.2.2"
285
+ source = "registry+https://github.com/rust-lang/crates.io-index"
286
+ checksum = "e629a66d692cb9ff1a1c664e41771b3dcaf961985a9774c0eb0bd1b51cf60a48"
287
+ dependencies = [
288
+ "serde_core",
289
+ ]
290
+
291
+ [[package]]
292
+ name = "cap-fs-ext"
293
+ version = "3.4.5"
294
+ source = "registry+https://github.com/rust-lang/crates.io-index"
295
+ checksum = "d5528f85b1e134ae811704e41ef80930f56e795923f866813255bc342cc20654"
296
+ dependencies = [
297
+ "cap-primitives",
298
+ "cap-std",
299
+ "io-lifetimes",
300
+ "windows-sys 0.59.0",
301
+ ]
302
+
303
+ [[package]]
304
+ name = "cap-net-ext"
305
+ version = "3.4.5"
306
+ source = "registry+https://github.com/rust-lang/crates.io-index"
307
+ checksum = "20a158160765c6a7d0d8c072a53d772e4cb243f38b04bfcf6b4939cfbe7482e7"
308
+ dependencies = [
309
+ "cap-primitives",
310
+ "cap-std",
311
+ "rustix 1.1.4",
312
+ "smallvec",
313
+ ]
314
+
315
+ [[package]]
316
+ name = "cap-primitives"
317
+ version = "3.4.5"
318
+ source = "registry+https://github.com/rust-lang/crates.io-index"
319
+ checksum = "b6cf3aea8a5081171859ef57bc1606b1df6999df4f1110f8eef68b30098d1d3a"
320
+ dependencies = [
321
+ "ambient-authority",
322
+ "fs-set-times",
323
+ "io-extras",
324
+ "io-lifetimes",
325
+ "ipnet",
326
+ "maybe-owned",
327
+ "rustix 1.1.4",
328
+ "rustix-linux-procfs",
329
+ "windows-sys 0.59.0",
330
+ "winx",
331
+ ]
332
+
333
+ [[package]]
334
+ name = "cap-rand"
335
+ version = "3.4.5"
336
+ source = "registry+https://github.com/rust-lang/crates.io-index"
337
+ checksum = "d8144c22e24bbcf26ade86cb6501a0916c46b7e4787abdb0045a467eb1645a1d"
338
+ dependencies = [
339
+ "ambient-authority",
340
+ "rand 0.8.6",
341
+ ]
342
+
343
+ [[package]]
344
+ name = "cap-std"
345
+ version = "3.4.5"
346
+ source = "registry+https://github.com/rust-lang/crates.io-index"
347
+ checksum = "b6dc3090992a735d23219de5c204927163d922f42f575a0189b005c62d37549a"
348
+ dependencies = [
349
+ "cap-primitives",
350
+ "io-extras",
351
+ "io-lifetimes",
352
+ "rustix 1.1.4",
353
+ ]
354
+
355
+ [[package]]
356
+ name = "cap-time-ext"
357
+ version = "3.4.5"
358
+ source = "registry+https://github.com/rust-lang/crates.io-index"
359
+ checksum = "def102506ce40c11710a9b16e614af0cde8e76ae51b1f48c04b8d79f4b671a80"
360
+ dependencies = [
361
+ "ambient-authority",
362
+ "cap-primitives",
363
+ "iana-time-zone",
364
+ "once_cell",
365
+ "rustix 1.1.4",
366
+ "winx",
367
+ ]
368
+
369
+ [[package]]
370
+ name = "cargo-platform"
371
+ version = "0.3.3"
372
+ source = "registry+https://github.com/rust-lang/crates.io-index"
373
+ checksum = "dd0061da739915fae12ea00e16397555ed4371a6bb285431aab930f61b0aa4ba"
374
+ dependencies = [
375
+ "serde",
376
+ "serde_core",
377
+ ]
378
+
379
+ [[package]]
380
+ name = "cargo_metadata"
381
+ version = "0.23.1"
382
+ source = "registry+https://github.com/rust-lang/crates.io-index"
383
+ checksum = "ef987d17b0a113becdd19d3d0022d04d7ef41f9efe4f3fb63ac44ba61df3ade9"
384
+ dependencies = [
385
+ "camino",
386
+ "cargo-platform",
387
+ "semver",
388
+ "serde",
389
+ "serde_json",
390
+ "thiserror 2.0.18",
391
+ ]
392
+
393
+ [[package]]
394
+ name = "cc"
395
+ version = "1.2.63"
396
+ source = "registry+https://github.com/rust-lang/crates.io-index"
397
+ checksum = "556e016178bb5662a08681bbe0f00f8e17631781a4dfc8c45e466e4b185ec27f"
398
+ dependencies = [
399
+ "find-msvc-tools",
400
+ "jobserver",
401
+ "libc",
402
+ "shlex",
403
+ ]
404
+
405
+ [[package]]
406
+ name = "cfg-if"
407
+ version = "1.0.4"
408
+ source = "registry+https://github.com/rust-lang/crates.io-index"
409
+ checksum = "9330f8b2ff13f34540b44e946ef35111825727b38d33286ef986142615121801"
410
+
411
+ [[package]]
412
+ name = "cfg_aliases"
413
+ version = "0.2.1"
414
+ source = "registry+https://github.com/rust-lang/crates.io-index"
415
+ checksum = "613afe47fcd5fac7ccf1db93babcb082c5994d996f20b8b159f2ad1658eb5724"
416
+
417
+ [[package]]
418
+ name = "clap"
419
+ version = "4.6.1"
420
+ source = "registry+https://github.com/rust-lang/crates.io-index"
421
+ checksum = "1ddb117e43bbf7dacf0a4190fef4d345b9bad68dfc649cb349e7d17d28428e51"
422
+ dependencies = [
423
+ "clap_builder",
424
+ "clap_derive",
425
+ ]
426
+
427
+ [[package]]
428
+ name = "clap_builder"
429
+ version = "4.6.0"
430
+ source = "registry+https://github.com/rust-lang/crates.io-index"
431
+ checksum = "714a53001bf66416adb0e2ef5ac857140e7dc3a0c48fb28b2f10762fc4b5069f"
432
+ dependencies = [
433
+ "anstream",
434
+ "anstyle",
435
+ "clap_lex",
436
+ "strsim",
437
+ ]
438
+
439
+ [[package]]
440
+ name = "clap_derive"
441
+ version = "4.6.1"
442
+ source = "registry+https://github.com/rust-lang/crates.io-index"
443
+ checksum = "f2ce8604710f6733aa641a2b3731eaa1e8b3d9973d5e3565da11800813f997a9"
444
+ dependencies = [
445
+ "heck",
446
+ "proc-macro2",
447
+ "quote",
448
+ "syn",
449
+ ]
450
+
451
+ [[package]]
452
+ name = "clap_lex"
453
+ version = "1.1.0"
454
+ source = "registry+https://github.com/rust-lang/crates.io-index"
455
+ checksum = "c8d4a3bb8b1e0c1050499d1815f5ab16d04f0959b233085fb31653fbfc9d98f9"
456
+
457
+ [[package]]
458
+ name = "cobs"
459
+ version = "0.3.0"
460
+ source = "registry+https://github.com/rust-lang/crates.io-index"
461
+ checksum = "0fa961b519f0b462e3a3b4a34b64d119eeaca1d59af726fe450bbba07a9fc0a1"
462
+ dependencies = [
463
+ "thiserror 2.0.18",
464
+ ]
465
+
466
+ [[package]]
467
+ name = "colorchoice"
468
+ version = "1.0.5"
469
+ source = "registry+https://github.com/rust-lang/crates.io-index"
470
+ checksum = "1d07550c9036bf2ae0c684c4297d503f838287c83c53686d05370d0e139ae570"
471
+
472
+ [[package]]
473
+ name = "component-init-transform"
474
+ version = "0.2.0"
475
+ source = "git+https://github.com/dicej/component-init?rev=1de5906c#1de5906ca8c5f7093eaa9f6565f1dde5fc9608d3"
476
+ dependencies = [
477
+ "anyhow",
478
+ "async-trait",
479
+ "futures",
480
+ "wasm-encoder 0.244.0",
481
+ "wasm-metadata 0.244.0",
482
+ "wasmparser 0.244.0",
483
+ ]
484
+
485
+ [[package]]
486
+ name = "componentize-py"
487
+ version = "0.23.0"
488
+ source = "git+https://github.com/bytecodealliance/componentize-py?tag=v0.23.0#911ef76cc949ff11696232c00737c0a4a7474d1e"
489
+ dependencies = [
490
+ "anyhow",
491
+ "async-trait",
492
+ "bincode",
493
+ "bytes",
494
+ "cap-std",
495
+ "clap",
496
+ "component-init-transform",
497
+ "flate2",
498
+ "futures",
499
+ "heck",
500
+ "im-rc",
501
+ "indexmap",
502
+ "once_cell",
503
+ "pretty_env_logger",
504
+ "reqwest",
505
+ "semver",
506
+ "serde",
507
+ "tar",
508
+ "tempfile",
509
+ "test-generator",
510
+ "tokio",
511
+ "toml 0.8.23",
512
+ "wasm-encoder 0.245.1",
513
+ "wasmparser 0.245.1",
514
+ "wasmtime",
515
+ "wasmtime-wasi",
516
+ "wit-bindgen-core 0.53.1",
517
+ "wit-component 0.245.1",
518
+ "wit-dylib",
519
+ "wit-parser 0.245.1",
520
+ "zstd",
521
+ ]
522
+
523
+ [[package]]
524
+ name = "compression-codecs"
525
+ version = "0.4.38"
526
+ source = "registry+https://github.com/rust-lang/crates.io-index"
527
+ checksum = "ce2548391e9c1929c21bf6aa2680af86fe4c1b33e6cea9ac1cfeec0bd11218cf"
528
+ dependencies = [
529
+ "brotli",
530
+ "compression-core",
531
+ "flate2",
532
+ "memchr",
533
+ "zstd",
534
+ "zstd-safe",
535
+ ]
536
+
537
+ [[package]]
538
+ name = "compression-core"
539
+ version = "0.4.32"
540
+ source = "registry+https://github.com/rust-lang/crates.io-index"
541
+ checksum = "cc14f565cf027a105f7a44ccf9e5b424348421a1d8952a8fc9d499d313107789"
542
+
543
+ [[package]]
544
+ name = "core-foundation-sys"
545
+ version = "0.8.7"
546
+ source = "registry+https://github.com/rust-lang/crates.io-index"
547
+ checksum = "773648b94d0e5d620f64f280777445740e61fe701025087ec8b57f45c791888b"
548
+
549
+ [[package]]
550
+ name = "cpp_demangle"
551
+ version = "0.4.5"
552
+ source = "registry+https://github.com/rust-lang/crates.io-index"
553
+ checksum = "f2bb79cb74d735044c972aae58ed0aaa9a837e85b01106a54c39e42e97f62253"
554
+ dependencies = [
555
+ "cfg-if",
556
+ ]
557
+
558
+ [[package]]
559
+ name = "cpufeatures"
560
+ version = "0.2.17"
561
+ source = "registry+https://github.com/rust-lang/crates.io-index"
562
+ checksum = "59ed5838eebb26a2bb2e58f6d5b5316989ae9d08bab10e0e6d103e656d1b0280"
563
+ dependencies = [
564
+ "libc",
565
+ ]
566
+
567
+ [[package]]
568
+ name = "cranelift-assembler-x64"
569
+ version = "0.130.2"
570
+ source = "registry+https://github.com/rust-lang/crates.io-index"
571
+ checksum = "adc822414b18d1f5b1b33ce1441534e311e62fef86ebb5b9d382af857d0272c9"
572
+ dependencies = [
573
+ "cranelift-assembler-x64-meta",
574
+ ]
575
+
576
+ [[package]]
577
+ name = "cranelift-assembler-x64-meta"
578
+ version = "0.130.2"
579
+ source = "registry+https://github.com/rust-lang/crates.io-index"
580
+ checksum = "8c646808b06f4532478d8d6057d74f15c3322f10d995d9486e7dcea405bf521a"
581
+ dependencies = [
582
+ "cranelift-srcgen",
583
+ ]
584
+
585
+ [[package]]
586
+ name = "cranelift-bforest"
587
+ version = "0.130.2"
588
+ source = "registry+https://github.com/rust-lang/crates.io-index"
589
+ checksum = "7b5996f01a686b2349cdb379083ec5ad3e8cb8767fb2d495d3a4f2ee4163a18d"
590
+ dependencies = [
591
+ "cranelift-entity",
592
+ "wasmtime-internal-core",
593
+ ]
594
+
595
+ [[package]]
596
+ name = "cranelift-bitset"
597
+ version = "0.130.2"
598
+ source = "registry+https://github.com/rust-lang/crates.io-index"
599
+ checksum = "523fea83273f6a985520f57788809a4de2165794d9ab00fb1254fceb4f5aa00c"
600
+ dependencies = [
601
+ "serde",
602
+ "serde_derive",
603
+ "wasmtime-internal-core",
604
+ ]
605
+
606
+ [[package]]
607
+ name = "cranelift-codegen"
608
+ version = "0.130.2"
609
+ source = "registry+https://github.com/rust-lang/crates.io-index"
610
+ checksum = "d73d1e372730b5f64ed1a2bd9f01fe4686c8ec14a28034e3084e530c8d951878"
611
+ dependencies = [
612
+ "bumpalo",
613
+ "cranelift-assembler-x64",
614
+ "cranelift-bforest",
615
+ "cranelift-bitset",
616
+ "cranelift-codegen-meta",
617
+ "cranelift-codegen-shared",
618
+ "cranelift-control",
619
+ "cranelift-entity",
620
+ "cranelift-isle",
621
+ "gimli",
622
+ "hashbrown 0.16.1",
623
+ "libm",
624
+ "log",
625
+ "pulley-interpreter",
626
+ "regalloc2",
627
+ "rustc-hash",
628
+ "serde",
629
+ "smallvec",
630
+ "target-lexicon",
631
+ "wasmtime-internal-core",
632
+ ]
633
+
634
+ [[package]]
635
+ name = "cranelift-codegen-meta"
636
+ version = "0.130.2"
637
+ source = "registry+https://github.com/rust-lang/crates.io-index"
638
+ checksum = "b0319c18165e93dc1ebf78946a8da0b1c341c95b4a39729a69574671639bdb5f"
639
+ dependencies = [
640
+ "cranelift-assembler-x64-meta",
641
+ "cranelift-codegen-shared",
642
+ "cranelift-srcgen",
643
+ "heck",
644
+ "pulley-interpreter",
645
+ ]
646
+
647
+ [[package]]
648
+ name = "cranelift-codegen-shared"
649
+ version = "0.130.2"
650
+ source = "registry+https://github.com/rust-lang/crates.io-index"
651
+ checksum = "9195cd8aeecb55e401aa96b2eaa55921636e8246c127ed7908f7ef7e0d40f270"
652
+
653
+ [[package]]
654
+ name = "cranelift-control"
655
+ version = "0.130.2"
656
+ source = "registry+https://github.com/rust-lang/crates.io-index"
657
+ checksum = "8976c2154b74136322befc74222ab5c7249edd7e2604f8cbef2b94975541ffb9"
658
+ dependencies = [
659
+ "arbitrary",
660
+ ]
661
+
662
+ [[package]]
663
+ name = "cranelift-entity"
664
+ version = "0.130.2"
665
+ source = "registry+https://github.com/rust-lang/crates.io-index"
666
+ checksum = "6038b3147c7982f4951150d5f96c7c06c1e7214b99d4b4a98607aadf8ded89d1"
667
+ dependencies = [
668
+ "cranelift-bitset",
669
+ "serde",
670
+ "serde_derive",
671
+ "wasmtime-internal-core",
672
+ ]
673
+
674
+ [[package]]
675
+ name = "cranelift-frontend"
676
+ version = "0.130.2"
677
+ source = "registry+https://github.com/rust-lang/crates.io-index"
678
+ checksum = "4cbd294abe236e23cc3d907b0936226b6a8342db7636daa9c7c72be1e323420e"
679
+ dependencies = [
680
+ "cranelift-codegen",
681
+ "log",
682
+ "smallvec",
683
+ "target-lexicon",
684
+ ]
685
+
686
+ [[package]]
687
+ name = "cranelift-isle"
688
+ version = "0.130.2"
689
+ source = "registry+https://github.com/rust-lang/crates.io-index"
690
+ checksum = "b5a90b6ed3aba84189352a87badeb93b2126d3724225a42dc67fdce53d1b139c"
691
+
692
+ [[package]]
693
+ name = "cranelift-native"
694
+ version = "0.130.2"
695
+ source = "registry+https://github.com/rust-lang/crates.io-index"
696
+ checksum = "c3ec0cc1a54e22925eacf4fc3dc815f907734d3b377899d19d52bec04863e853"
697
+ dependencies = [
698
+ "cranelift-codegen",
699
+ "libc",
700
+ "target-lexicon",
701
+ ]
702
+
703
+ [[package]]
704
+ name = "cranelift-srcgen"
705
+ version = "0.130.2"
706
+ source = "registry+https://github.com/rust-lang/crates.io-index"
707
+ checksum = "948865622f87f30907bb46fbb081b235ae63c1896a99a83c26a003305c1fa82d"
708
+
709
+ [[package]]
710
+ name = "crc32fast"
711
+ version = "1.5.0"
712
+ source = "registry+https://github.com/rust-lang/crates.io-index"
713
+ checksum = "9481c1c90cbf2ac953f07c8d4a58aa3945c425b7185c9154d67a65e4230da511"
714
+ dependencies = [
715
+ "cfg-if",
716
+ ]
717
+
718
+ [[package]]
719
+ name = "crossbeam-deque"
720
+ version = "0.8.6"
721
+ source = "registry+https://github.com/rust-lang/crates.io-index"
722
+ checksum = "9dd111b7b7f7d55b72c0a6ae361660ee5853c9af73f70c3c2ef6858b950e2e51"
723
+ dependencies = [
724
+ "crossbeam-epoch",
725
+ "crossbeam-utils",
726
+ ]
727
+
728
+ [[package]]
729
+ name = "crossbeam-epoch"
730
+ version = "0.9.18"
731
+ source = "registry+https://github.com/rust-lang/crates.io-index"
732
+ checksum = "5b82ac4a3c2ca9c3460964f020e1402edd5753411d7737aa39c3714ad1b5420e"
733
+ dependencies = [
734
+ "crossbeam-utils",
735
+ ]
736
+
737
+ [[package]]
738
+ name = "crossbeam-utils"
739
+ version = "0.8.21"
740
+ source = "registry+https://github.com/rust-lang/crates.io-index"
741
+ checksum = "d0a5c400df2834b80a4c3327b3aad3a4c4cd4de0629063962b03235697506a28"
742
+
743
+ [[package]]
744
+ name = "crypto-common"
745
+ version = "0.1.7"
746
+ source = "registry+https://github.com/rust-lang/crates.io-index"
747
+ checksum = "78c8292055d1c1df0cce5d180393dc8cce0abec0a7102adb6c7b1eef6016d60a"
748
+ dependencies = [
749
+ "generic-array",
750
+ "typenum",
751
+ ]
752
+
753
+ [[package]]
754
+ name = "debugid"
755
+ version = "0.8.0"
756
+ source = "registry+https://github.com/rust-lang/crates.io-index"
757
+ checksum = "bef552e6f588e446098f6ba40d89ac146c8c7b64aade83c051ee00bb5d2bc18d"
758
+ dependencies = [
759
+ "uuid",
760
+ ]
761
+
762
+ [[package]]
763
+ name = "digest"
764
+ version = "0.10.7"
765
+ source = "registry+https://github.com/rust-lang/crates.io-index"
766
+ checksum = "9ed9a281f7bc9b7576e61468ba615a66a5c8cfdff42420a70aa82701a3b1e292"
767
+ dependencies = [
768
+ "block-buffer",
769
+ "crypto-common",
770
+ ]
771
+
772
+ [[package]]
773
+ name = "directories-next"
774
+ version = "2.0.0"
775
+ source = "registry+https://github.com/rust-lang/crates.io-index"
776
+ checksum = "339ee130d97a610ea5a5872d2bbb130fdf68884ff09d3028b81bec8a1ac23bbc"
777
+ dependencies = [
778
+ "cfg-if",
779
+ "dirs-sys-next",
780
+ ]
781
+
782
+ [[package]]
783
+ name = "dirs-sys-next"
784
+ version = "0.1.2"
785
+ source = "registry+https://github.com/rust-lang/crates.io-index"
786
+ checksum = "4ebda144c4fe02d1f7ea1a7d9641b6fc6b580adcfa024ae48797ecdeb6825b4d"
787
+ dependencies = [
788
+ "libc",
789
+ "redox_users",
790
+ "winapi",
791
+ ]
792
+
793
+ [[package]]
794
+ name = "displaydoc"
795
+ version = "0.2.6"
796
+ source = "registry+https://github.com/rust-lang/crates.io-index"
797
+ checksum = "1ac70aa55017e108007fbaf5aa0f54b021c98f92ff8af59d42eda9da96e3dd4f"
798
+ dependencies = [
799
+ "proc-macro2",
800
+ "quote",
801
+ "syn",
802
+ ]
803
+
804
+ [[package]]
805
+ name = "either"
806
+ version = "1.16.0"
807
+ source = "registry+https://github.com/rust-lang/crates.io-index"
808
+ checksum = "91622ff5e7162018101f2fea40d6ebf4a78bbe5a49736a2020649edf9693679e"
809
+
810
+ [[package]]
811
+ name = "embedded-io"
812
+ version = "0.4.0"
813
+ source = "registry+https://github.com/rust-lang/crates.io-index"
814
+ checksum = "ef1a6892d9eef45c8fa6b9e0086428a2cca8491aca8f787c534a3d6d0bcb3ced"
815
+
816
+ [[package]]
817
+ name = "embedded-io"
818
+ version = "0.6.1"
819
+ source = "registry+https://github.com/rust-lang/crates.io-index"
820
+ checksum = "edd0f118536f44f5ccd48bcb8b111bdc3de888b58c74639dfb034a357d0f206d"
821
+
822
+ [[package]]
823
+ name = "encoding_rs"
824
+ version = "0.8.35"
825
+ source = "registry+https://github.com/rust-lang/crates.io-index"
826
+ checksum = "75030f3c4f45dafd7586dd6780965a8c7e8e285a5ecb86713e63a79c5b2766f3"
827
+ dependencies = [
828
+ "cfg-if",
829
+ ]
830
+
831
+ [[package]]
832
+ name = "env_filter"
833
+ version = "1.0.1"
834
+ source = "registry+https://github.com/rust-lang/crates.io-index"
835
+ checksum = "32e90c2accc4b07a8456ea0debdc2e7587bdd890680d71173a15d4ae604f6eef"
836
+ dependencies = [
837
+ "log",
838
+ "regex",
839
+ ]
840
+
841
+ [[package]]
842
+ name = "env_logger"
843
+ version = "0.10.2"
844
+ source = "registry+https://github.com/rust-lang/crates.io-index"
845
+ checksum = "4cd405aab171cb85d6735e5c8d9db038c17d3ca007a4d2c25f337935c3d90580"
846
+ dependencies = [
847
+ "humantime",
848
+ "is-terminal",
849
+ "log",
850
+ "regex",
851
+ "termcolor",
852
+ ]
853
+
854
+ [[package]]
855
+ name = "env_logger"
856
+ version = "0.11.10"
857
+ source = "registry+https://github.com/rust-lang/crates.io-index"
858
+ checksum = "0621c04f2196ac3f488dd583365b9c09be011a4ab8b9f37248ffcc8f6198b56a"
859
+ dependencies = [
860
+ "anstream",
861
+ "anstyle",
862
+ "env_filter",
863
+ "jiff",
864
+ "log",
865
+ ]
866
+
867
+ [[package]]
868
+ name = "equivalent"
869
+ version = "1.0.2"
870
+ source = "registry+https://github.com/rust-lang/crates.io-index"
871
+ checksum = "877a4ace8713b0bcf2a4e7eec82529c029f1d0619886d18145fea96c3ffe5c0f"
872
+
873
+ [[package]]
874
+ name = "errno"
875
+ version = "0.3.14"
876
+ source = "registry+https://github.com/rust-lang/crates.io-index"
877
+ checksum = "39cab71617ae0d63f51a36d69f866391735b51691dbda63cf6f96d042b63efeb"
878
+ dependencies = [
879
+ "libc",
880
+ "windows-sys 0.61.2",
881
+ ]
882
+
883
+ [[package]]
884
+ name = "fastly-compute-py"
885
+ version = "0.1.1"
886
+ dependencies = [
887
+ "anyhow",
888
+ "cargo_metadata",
889
+ "clap",
890
+ "componentize-py",
891
+ "env_logger 0.11.10",
892
+ "futures",
893
+ "indexmap",
894
+ "log",
895
+ "pyo3",
896
+ "serde",
897
+ "tempfile",
898
+ "toml 0.8.23",
899
+ "wac-graph",
900
+ "wac-parser",
901
+ "wac-types",
902
+ "wasm-metadata 0.245.1",
903
+ "wit-component 0.219.2",
904
+ "wit-component 0.244.0",
905
+ "wit-parser 0.219.2",
906
+ "wit-parser 0.244.0",
907
+ ]
908
+
909
+ [[package]]
910
+ name = "fastrand"
911
+ version = "2.4.1"
912
+ source = "registry+https://github.com/rust-lang/crates.io-index"
913
+ checksum = "9f1f227452a390804cdb637b74a86990f2a7d7ba4b7d5693aac9b4dd6defd8d6"
914
+
915
+ [[package]]
916
+ name = "fd-lock"
917
+ version = "4.0.4"
918
+ source = "registry+https://github.com/rust-lang/crates.io-index"
919
+ checksum = "0ce92ff622d6dadf7349484f42c93271a0d49b7cc4d466a936405bacbe10aa78"
920
+ dependencies = [
921
+ "cfg-if",
922
+ "rustix 1.1.4",
923
+ "windows-sys 0.59.0",
924
+ ]
925
+
926
+ [[package]]
927
+ name = "filetime"
928
+ version = "0.2.29"
929
+ source = "registry+https://github.com/rust-lang/crates.io-index"
930
+ checksum = "5c287a33c7f0a620c38e641e7f60827713987b3c0f26e8ddc9462cc69cf75759"
931
+ dependencies = [
932
+ "cfg-if",
933
+ "libc",
934
+ ]
935
+
936
+ [[package]]
937
+ name = "find-msvc-tools"
938
+ version = "0.1.9"
939
+ source = "registry+https://github.com/rust-lang/crates.io-index"
940
+ checksum = "5baebc0774151f905a1a2cc41989300b1e6fbb29aff0ceffa1064fdd3088d582"
941
+
942
+ [[package]]
943
+ name = "fixedbitset"
944
+ version = "0.4.2"
945
+ source = "registry+https://github.com/rust-lang/crates.io-index"
946
+ checksum = "0ce7134b9999ecaf8bcd65542e436736ef32ddca1b3e06094cb6ec5755203b80"
947
+
948
+ [[package]]
949
+ name = "flate2"
950
+ version = "1.1.9"
951
+ source = "registry+https://github.com/rust-lang/crates.io-index"
952
+ checksum = "843fba2746e448b37e26a819579957415c8cef339bf08564fe8b7ddbd959573c"
953
+ dependencies = [
954
+ "crc32fast",
955
+ "miniz_oxide",
956
+ ]
957
+
958
+ [[package]]
959
+ name = "fnv"
960
+ version = "1.0.7"
961
+ source = "registry+https://github.com/rust-lang/crates.io-index"
962
+ checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1"
963
+
964
+ [[package]]
965
+ name = "foldhash"
966
+ version = "0.1.5"
967
+ source = "registry+https://github.com/rust-lang/crates.io-index"
968
+ checksum = "d9c4f5dac5e15c24eb999c26181a6ca40b39fe946cbe4c263c7209467bc83af2"
969
+
970
+ [[package]]
971
+ name = "foldhash"
972
+ version = "0.2.0"
973
+ source = "registry+https://github.com/rust-lang/crates.io-index"
974
+ checksum = "77ce24cb58228fbb8aa041425bb1050850ac19177686ea6e0f41a70416f56fdb"
975
+
976
+ [[package]]
977
+ name = "form_urlencoded"
978
+ version = "1.2.2"
979
+ source = "registry+https://github.com/rust-lang/crates.io-index"
980
+ checksum = "cb4cb245038516f5f85277875cdaa4f7d2c9a0fa0468de06ed190163b1581fcf"
981
+ dependencies = [
982
+ "percent-encoding",
983
+ ]
984
+
985
+ [[package]]
986
+ name = "fs-set-times"
987
+ version = "0.20.3"
988
+ source = "registry+https://github.com/rust-lang/crates.io-index"
989
+ checksum = "94e7099f6313ecacbe1256e8ff9d617b75d1bcb16a6fddef94866d225a01a14a"
990
+ dependencies = [
991
+ "io-lifetimes",
992
+ "rustix 1.1.4",
993
+ "windows-sys 0.59.0",
994
+ ]
995
+
996
+ [[package]]
997
+ name = "futures"
998
+ version = "0.3.32"
999
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1000
+ checksum = "8b147ee9d1f6d097cef9ce628cd2ee62288d963e16fb287bd9286455b241382d"
1001
+ dependencies = [
1002
+ "futures-channel",
1003
+ "futures-core",
1004
+ "futures-executor",
1005
+ "futures-io",
1006
+ "futures-sink",
1007
+ "futures-task",
1008
+ "futures-util",
1009
+ ]
1010
+
1011
+ [[package]]
1012
+ name = "futures-channel"
1013
+ version = "0.3.32"
1014
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1015
+ checksum = "07bbe89c50d7a535e539b8c17bc0b49bdb77747034daa8087407d655f3f7cc1d"
1016
+ dependencies = [
1017
+ "futures-core",
1018
+ "futures-sink",
1019
+ ]
1020
+
1021
+ [[package]]
1022
+ name = "futures-core"
1023
+ version = "0.3.32"
1024
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1025
+ checksum = "7e3450815272ef58cec6d564423f6e755e25379b217b0bc688e295ba24df6b1d"
1026
+
1027
+ [[package]]
1028
+ name = "futures-executor"
1029
+ version = "0.3.32"
1030
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1031
+ checksum = "baf29c38818342a3b26b5b923639e7b1f4a61fc5e76102d4b1981c6dc7a7579d"
1032
+ dependencies = [
1033
+ "futures-core",
1034
+ "futures-task",
1035
+ "futures-util",
1036
+ ]
1037
+
1038
+ [[package]]
1039
+ name = "futures-io"
1040
+ version = "0.3.32"
1041
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1042
+ checksum = "cecba35d7ad927e23624b22ad55235f2239cfa44fd10428eecbeba6d6a717718"
1043
+
1044
+ [[package]]
1045
+ name = "futures-macro"
1046
+ version = "0.3.32"
1047
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1048
+ checksum = "e835b70203e41293343137df5c0664546da5745f82ec9b84d40be8336958447b"
1049
+ dependencies = [
1050
+ "proc-macro2",
1051
+ "quote",
1052
+ "syn",
1053
+ ]
1054
+
1055
+ [[package]]
1056
+ name = "futures-sink"
1057
+ version = "0.3.32"
1058
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1059
+ checksum = "c39754e157331b013978ec91992bde1ac089843443c49cbc7f46150b0fad0893"
1060
+
1061
+ [[package]]
1062
+ name = "futures-task"
1063
+ version = "0.3.32"
1064
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1065
+ checksum = "037711b3d59c33004d3856fbdc83b99d4ff37a24768fa1be9ce3538a1cde4393"
1066
+
1067
+ [[package]]
1068
+ name = "futures-util"
1069
+ version = "0.3.32"
1070
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1071
+ checksum = "389ca41296e6190b48053de0321d02a77f32f8a5d2461dd38762c0593805c6d6"
1072
+ dependencies = [
1073
+ "futures-channel",
1074
+ "futures-core",
1075
+ "futures-io",
1076
+ "futures-macro",
1077
+ "futures-sink",
1078
+ "futures-task",
1079
+ "memchr",
1080
+ "pin-project-lite",
1081
+ "slab",
1082
+ ]
1083
+
1084
+ [[package]]
1085
+ name = "fxprof-processed-profile"
1086
+ version = "0.8.1"
1087
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1088
+ checksum = "25234f20a3ec0a962a61770cfe39ecf03cb529a6e474ad8cff025ed497eda557"
1089
+ dependencies = [
1090
+ "bitflags",
1091
+ "debugid",
1092
+ "rustc-hash",
1093
+ "serde",
1094
+ "serde_derive",
1095
+ "serde_json",
1096
+ ]
1097
+
1098
+ [[package]]
1099
+ name = "generic-array"
1100
+ version = "0.14.7"
1101
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1102
+ checksum = "85649ca51fd72272d7821adaf274ad91c288277713d9c18820d8499a7ff69e9a"
1103
+ dependencies = [
1104
+ "typenum",
1105
+ "version_check",
1106
+ ]
1107
+
1108
+ [[package]]
1109
+ name = "getrandom"
1110
+ version = "0.2.17"
1111
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1112
+ checksum = "ff2abc00be7fca6ebc474524697ae276ad847ad0a6b3faa4bcb027e9a4614ad0"
1113
+ dependencies = [
1114
+ "cfg-if",
1115
+ "js-sys",
1116
+ "libc",
1117
+ "wasi",
1118
+ "wasm-bindgen",
1119
+ ]
1120
+
1121
+ [[package]]
1122
+ name = "getrandom"
1123
+ version = "0.3.4"
1124
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1125
+ checksum = "899def5c37c4fd7b2664648c28120ecec138e4d395b459e5ca34f9cce2dd77fd"
1126
+ dependencies = [
1127
+ "cfg-if",
1128
+ "js-sys",
1129
+ "libc",
1130
+ "r-efi 5.3.0",
1131
+ "wasip2",
1132
+ "wasm-bindgen",
1133
+ ]
1134
+
1135
+ [[package]]
1136
+ name = "getrandom"
1137
+ version = "0.4.2"
1138
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1139
+ checksum = "0de51e6874e94e7bf76d726fc5d13ba782deca734ff60d5bb2fb2607c7406555"
1140
+ dependencies = [
1141
+ "cfg-if",
1142
+ "libc",
1143
+ "r-efi 6.0.0",
1144
+ "wasip2",
1145
+ "wasip3",
1146
+ ]
1147
+
1148
+ [[package]]
1149
+ name = "gimli"
1150
+ version = "0.33.0"
1151
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1152
+ checksum = "0bf7f043f89559805f8c7cacc432749b2fa0d0a0a9ee46ce47164ed5ba7f126c"
1153
+ dependencies = [
1154
+ "fnv",
1155
+ "hashbrown 0.16.1",
1156
+ "indexmap",
1157
+ "stable_deref_trait",
1158
+ ]
1159
+
1160
+ [[package]]
1161
+ name = "hashbrown"
1162
+ version = "0.14.5"
1163
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1164
+ checksum = "e5274423e17b7c9fc20b6e7e208532f9b19825d82dfd615708b70edd83df41f1"
1165
+ dependencies = [
1166
+ "ahash",
1167
+ ]
1168
+
1169
+ [[package]]
1170
+ name = "hashbrown"
1171
+ version = "0.15.5"
1172
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1173
+ checksum = "9229cfe53dfd69f0609a49f65461bd93001ea1ef889cd5529dd176593f5338a1"
1174
+ dependencies = [
1175
+ "foldhash 0.1.5",
1176
+ "serde",
1177
+ ]
1178
+
1179
+ [[package]]
1180
+ name = "hashbrown"
1181
+ version = "0.16.1"
1182
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1183
+ checksum = "841d1cc9bed7f9236f321df977030373f4a4163ae1a7dbfe1a51a2c1a51d9100"
1184
+ dependencies = [
1185
+ "foldhash 0.2.0",
1186
+ "serde",
1187
+ "serde_core",
1188
+ ]
1189
+
1190
+ [[package]]
1191
+ name = "hashbrown"
1192
+ version = "0.17.1"
1193
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1194
+ checksum = "ed5909b6e89a2db4456e54cd5f673791d7eca6732202bbf2a9cc504fe2f9b84a"
1195
+
1196
+ [[package]]
1197
+ name = "heck"
1198
+ version = "0.5.0"
1199
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1200
+ checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea"
1201
+
1202
+ [[package]]
1203
+ name = "hermit-abi"
1204
+ version = "0.5.2"
1205
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1206
+ checksum = "fc0fef456e4baa96da950455cd02c081ca953b141298e41db3fc7e36b1da849c"
1207
+
1208
+ [[package]]
1209
+ name = "hex"
1210
+ version = "0.4.3"
1211
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1212
+ checksum = "7f24254aa9a54b5c858eaee2f5bccdb46aaf0e486a595ed5fd8f86ba55232a70"
1213
+
1214
+ [[package]]
1215
+ name = "http"
1216
+ version = "1.4.1"
1217
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1218
+ checksum = "8be7462df143984c4598a256ef469b251d7d7f9e271135073e78fc535414f3d0"
1219
+ dependencies = [
1220
+ "bytes",
1221
+ "itoa",
1222
+ ]
1223
+
1224
+ [[package]]
1225
+ name = "http-body"
1226
+ version = "1.0.1"
1227
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1228
+ checksum = "1efedce1fb8e6913f23e0c92de8e62cd5b772a67e7b3946df930a62566c93184"
1229
+ dependencies = [
1230
+ "bytes",
1231
+ "http",
1232
+ ]
1233
+
1234
+ [[package]]
1235
+ name = "http-body-util"
1236
+ version = "0.1.3"
1237
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1238
+ checksum = "b021d93e26becf5dc7e1b75b1bed1fd93124b374ceb73f43d4d4eafec896a64a"
1239
+ dependencies = [
1240
+ "bytes",
1241
+ "futures-core",
1242
+ "http",
1243
+ "http-body",
1244
+ "pin-project-lite",
1245
+ ]
1246
+
1247
+ [[package]]
1248
+ name = "httparse"
1249
+ version = "1.10.1"
1250
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1251
+ checksum = "6dbf3de79e51f3d586ab4cb9d5c3e2c14aa28ed23d180cf89b4df0454a69cc87"
1252
+
1253
+ [[package]]
1254
+ name = "humantime"
1255
+ version = "2.3.0"
1256
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1257
+ checksum = "135b12329e5e3ce057a9f972339ea52bc954fe1e9358ef27f95e89716fbc5424"
1258
+
1259
+ [[package]]
1260
+ name = "hyper"
1261
+ version = "1.10.1"
1262
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1263
+ checksum = "55281c53a1894c864990125767da440a4e630446785086f52523b20033b74498"
1264
+ dependencies = [
1265
+ "atomic-waker",
1266
+ "bytes",
1267
+ "futures-channel",
1268
+ "futures-core",
1269
+ "http",
1270
+ "http-body",
1271
+ "httparse",
1272
+ "itoa",
1273
+ "pin-project-lite",
1274
+ "smallvec",
1275
+ "tokio",
1276
+ "want",
1277
+ ]
1278
+
1279
+ [[package]]
1280
+ name = "hyper-rustls"
1281
+ version = "0.27.9"
1282
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1283
+ checksum = "33ca68d021ef39cf6463ab54c1d0f5daf03377b70561305bb89a8f83aab66e0f"
1284
+ dependencies = [
1285
+ "http",
1286
+ "hyper",
1287
+ "hyper-util",
1288
+ "rustls",
1289
+ "tokio",
1290
+ "tokio-rustls",
1291
+ "tower-service",
1292
+ "webpki-roots",
1293
+ ]
1294
+
1295
+ [[package]]
1296
+ name = "hyper-util"
1297
+ version = "0.1.20"
1298
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1299
+ checksum = "96547c2556ec9d12fb1578c4eaf448b04993e7fb79cbaad930a656880a6bdfa0"
1300
+ dependencies = [
1301
+ "base64",
1302
+ "bytes",
1303
+ "futures-channel",
1304
+ "futures-util",
1305
+ "http",
1306
+ "http-body",
1307
+ "hyper",
1308
+ "ipnet",
1309
+ "libc",
1310
+ "percent-encoding",
1311
+ "pin-project-lite",
1312
+ "socket2",
1313
+ "tokio",
1314
+ "tower-service",
1315
+ "tracing",
1316
+ ]
1317
+
1318
+ [[package]]
1319
+ name = "iana-time-zone"
1320
+ version = "0.1.65"
1321
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1322
+ checksum = "e31bc9ad994ba00e440a8aa5c9ef0ec67d5cb5e5cb0cc7f8b744a35b389cc470"
1323
+ dependencies = [
1324
+ "android_system_properties",
1325
+ "core-foundation-sys",
1326
+ "iana-time-zone-haiku",
1327
+ "js-sys",
1328
+ "log",
1329
+ "wasm-bindgen",
1330
+ "windows-core",
1331
+ ]
1332
+
1333
+ [[package]]
1334
+ name = "iana-time-zone-haiku"
1335
+ version = "0.1.2"
1336
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1337
+ checksum = "f31827a206f56af32e590ba56d5d2d085f558508192593743f16b2306495269f"
1338
+ dependencies = [
1339
+ "cc",
1340
+ ]
1341
+
1342
+ [[package]]
1343
+ name = "icu_collections"
1344
+ version = "2.2.0"
1345
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1346
+ checksum = "2984d1cd16c883d7935b9e07e44071dca8d917fd52ecc02c04d5fa0b5a3f191c"
1347
+ dependencies = [
1348
+ "displaydoc",
1349
+ "potential_utf",
1350
+ "utf8_iter",
1351
+ "yoke",
1352
+ "zerofrom",
1353
+ "zerovec",
1354
+ ]
1355
+
1356
+ [[package]]
1357
+ name = "icu_locale_core"
1358
+ version = "2.2.0"
1359
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1360
+ checksum = "92219b62b3e2b4d88ac5119f8904c10f8f61bf7e95b640d25ba3075e6cac2c29"
1361
+ dependencies = [
1362
+ "displaydoc",
1363
+ "litemap",
1364
+ "tinystr",
1365
+ "writeable",
1366
+ "zerovec",
1367
+ ]
1368
+
1369
+ [[package]]
1370
+ name = "icu_normalizer"
1371
+ version = "2.2.0"
1372
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1373
+ checksum = "c56e5ee99d6e3d33bd91c5d85458b6005a22140021cc324cea84dd0e72cff3b4"
1374
+ dependencies = [
1375
+ "icu_collections",
1376
+ "icu_normalizer_data",
1377
+ "icu_properties",
1378
+ "icu_provider",
1379
+ "smallvec",
1380
+ "zerovec",
1381
+ ]
1382
+
1383
+ [[package]]
1384
+ name = "icu_normalizer_data"
1385
+ version = "2.2.0"
1386
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1387
+ checksum = "da3be0ae77ea334f4da67c12f149704f19f81d1adf7c51cf482943e84a2bad38"
1388
+
1389
+ [[package]]
1390
+ name = "icu_properties"
1391
+ version = "2.2.0"
1392
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1393
+ checksum = "bee3b67d0ea5c2cca5003417989af8996f8604e34fb9ddf96208a033901e70de"
1394
+ dependencies = [
1395
+ "icu_collections",
1396
+ "icu_locale_core",
1397
+ "icu_properties_data",
1398
+ "icu_provider",
1399
+ "zerotrie",
1400
+ "zerovec",
1401
+ ]
1402
+
1403
+ [[package]]
1404
+ name = "icu_properties_data"
1405
+ version = "2.2.0"
1406
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1407
+ checksum = "8e2bbb201e0c04f7b4b3e14382af113e17ba4f63e2c9d2ee626b720cbce54a14"
1408
+
1409
+ [[package]]
1410
+ name = "icu_provider"
1411
+ version = "2.2.0"
1412
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1413
+ checksum = "139c4cf31c8b5f33d7e199446eff9c1e02decfc2f0eec2c8d71f65befa45b421"
1414
+ dependencies = [
1415
+ "displaydoc",
1416
+ "icu_locale_core",
1417
+ "writeable",
1418
+ "yoke",
1419
+ "zerofrom",
1420
+ "zerotrie",
1421
+ "zerovec",
1422
+ ]
1423
+
1424
+ [[package]]
1425
+ name = "id-arena"
1426
+ version = "2.3.0"
1427
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1428
+ checksum = "3d3067d79b975e8844ca9eb072e16b31c3c1c36928edf9c6789548c524d0d954"
1429
+
1430
+ [[package]]
1431
+ name = "idna"
1432
+ version = "1.1.0"
1433
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1434
+ checksum = "3b0875f23caa03898994f6ddc501886a45c7d3d62d04d2d90788d47be1b1e4de"
1435
+ dependencies = [
1436
+ "idna_adapter",
1437
+ "smallvec",
1438
+ "utf8_iter",
1439
+ ]
1440
+
1441
+ [[package]]
1442
+ name = "idna_adapter"
1443
+ version = "1.2.2"
1444
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1445
+ checksum = "cb68373c0d6620ef8105e855e7745e18b0d00d3bdb07fb532e434244cdb9a714"
1446
+ dependencies = [
1447
+ "icu_normalizer",
1448
+ "icu_properties",
1449
+ ]
1450
+
1451
+ [[package]]
1452
+ name = "im-rc"
1453
+ version = "15.1.0"
1454
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1455
+ checksum = "af1955a75fa080c677d3972822ec4bad316169ab1cfc6c257a942c2265dbe5fe"
1456
+ dependencies = [
1457
+ "bitmaps",
1458
+ "rand_core 0.6.4",
1459
+ "rand_xoshiro",
1460
+ "sized-chunks",
1461
+ "typenum",
1462
+ "version_check",
1463
+ ]
1464
+
1465
+ [[package]]
1466
+ name = "indexmap"
1467
+ version = "2.14.0"
1468
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1469
+ checksum = "d466e9454f08e4a911e14806c24e16fba1b4c121d1ea474396f396069cf949d9"
1470
+ dependencies = [
1471
+ "equivalent",
1472
+ "hashbrown 0.17.1",
1473
+ "serde",
1474
+ "serde_core",
1475
+ ]
1476
+
1477
+ [[package]]
1478
+ name = "io-extras"
1479
+ version = "0.18.4"
1480
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1481
+ checksum = "2285ddfe3054097ef4b2fe909ef8c3bcd1ea52a8f0d274416caebeef39f04a65"
1482
+ dependencies = [
1483
+ "io-lifetimes",
1484
+ "windows-sys 0.59.0",
1485
+ ]
1486
+
1487
+ [[package]]
1488
+ name = "io-lifetimes"
1489
+ version = "2.0.4"
1490
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1491
+ checksum = "06432fb54d3be7964ecd3649233cddf80db2832f47fec34c01f65b3d9d774983"
1492
+
1493
+ [[package]]
1494
+ name = "ipnet"
1495
+ version = "2.12.0"
1496
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1497
+ checksum = "d98f6fed1fde3f8c21bc40a1abb88dd75e67924f9cffc3ef95607bad8017f8e2"
1498
+
1499
+ [[package]]
1500
+ name = "is-terminal"
1501
+ version = "0.4.17"
1502
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1503
+ checksum = "3640c1c38b8e4e43584d8df18be5fc6b0aa314ce6ebf51b53313d4306cca8e46"
1504
+ dependencies = [
1505
+ "hermit-abi",
1506
+ "libc",
1507
+ "windows-sys 0.61.2",
1508
+ ]
1509
+
1510
+ [[package]]
1511
+ name = "is_terminal_polyfill"
1512
+ version = "1.70.2"
1513
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1514
+ checksum = "a6cb138bb79a146c1bd460005623e142ef0181e3d0219cb493e02f7d08a35695"
1515
+
1516
+ [[package]]
1517
+ name = "itertools"
1518
+ version = "0.14.0"
1519
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1520
+ checksum = "2b192c782037fadd9cfa75548310488aabdbf3d2da73885b31bd0abd03351285"
1521
+ dependencies = [
1522
+ "either",
1523
+ ]
1524
+
1525
+ [[package]]
1526
+ name = "itoa"
1527
+ version = "1.0.18"
1528
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1529
+ checksum = "8f42a60cbdf9a97f5d2305f08a87dc4e09308d1276d28c869c684d7777685682"
1530
+
1531
+ [[package]]
1532
+ name = "ittapi"
1533
+ version = "0.4.0"
1534
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1535
+ checksum = "6b996fe614c41395cdaedf3cf408a9534851090959d90d54a535f675550b64b1"
1536
+ dependencies = [
1537
+ "anyhow",
1538
+ "ittapi-sys",
1539
+ "log",
1540
+ ]
1541
+
1542
+ [[package]]
1543
+ name = "ittapi-sys"
1544
+ version = "0.4.0"
1545
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1546
+ checksum = "52f5385394064fa2c886205dba02598013ce83d3e92d33dbdc0c52fe0e7bf4fc"
1547
+ dependencies = [
1548
+ "cc",
1549
+ ]
1550
+
1551
+ [[package]]
1552
+ name = "jiff"
1553
+ version = "0.2.28"
1554
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1555
+ checksum = "4603d3033e49e2b0e31229fcab20a5d40089c607d975cd9c80551dc69eed9102"
1556
+ dependencies = [
1557
+ "jiff-static",
1558
+ "log",
1559
+ "portable-atomic",
1560
+ "portable-atomic-util",
1561
+ "serde_core",
1562
+ ]
1563
+
1564
+ [[package]]
1565
+ name = "jiff-static"
1566
+ version = "0.2.28"
1567
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1568
+ checksum = "782d32378dddf207193ac91cefb848ad41abb58195c95168e1291227a0832b47"
1569
+ dependencies = [
1570
+ "proc-macro2",
1571
+ "quote",
1572
+ "syn",
1573
+ ]
1574
+
1575
+ [[package]]
1576
+ name = "jobserver"
1577
+ version = "0.1.34"
1578
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1579
+ checksum = "9afb3de4395d6b3e67a780b6de64b51c978ecf11cb9a462c66be7d4ca9039d33"
1580
+ dependencies = [
1581
+ "getrandom 0.3.4",
1582
+ "libc",
1583
+ ]
1584
+
1585
+ [[package]]
1586
+ name = "js-sys"
1587
+ version = "0.3.99"
1588
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1589
+ checksum = "142bc4740e452c1e57ade0cbc129f139c9093e354346f0872ef985f4f5cf5f11"
1590
+ dependencies = [
1591
+ "cfg-if",
1592
+ "futures-util",
1593
+ "once_cell",
1594
+ "wasm-bindgen",
1595
+ ]
1596
+
1597
+ [[package]]
1598
+ name = "lazy_static"
1599
+ version = "1.5.0"
1600
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1601
+ checksum = "bbd2bcb4c963f2ddae06a2efc7e9f3591312473c50c6685e1f298068316e66fe"
1602
+
1603
+ [[package]]
1604
+ name = "leb128"
1605
+ version = "0.2.6"
1606
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1607
+ checksum = "6cc46bac87ef8093eed6f272babb833b6443374399985ac8ed28471ee0918545"
1608
+
1609
+ [[package]]
1610
+ name = "leb128fmt"
1611
+ version = "0.1.0"
1612
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1613
+ checksum = "09edd9e8b54e49e587e4f6295a7d29c3ea94d469cb40ab8ca70b288248a81db2"
1614
+
1615
+ [[package]]
1616
+ name = "libc"
1617
+ version = "0.2.186"
1618
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1619
+ checksum = "68ab91017fe16c622486840e4c83c9a37afeff978bd239b5293d61ece587de66"
1620
+
1621
+ [[package]]
1622
+ name = "libm"
1623
+ version = "0.2.16"
1624
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1625
+ checksum = "b6d2cec3eae94f9f509c767b45932f1ada8350c4bdb85af2fcab4a3c14807981"
1626
+
1627
+ [[package]]
1628
+ name = "libredox"
1629
+ version = "0.1.17"
1630
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1631
+ checksum = "f02ab6bace2054fb888a3c16f990117b579d14a3088e472d63c6011fa185c9d3"
1632
+ dependencies = [
1633
+ "libc",
1634
+ ]
1635
+
1636
+ [[package]]
1637
+ name = "linux-raw-sys"
1638
+ version = "0.4.15"
1639
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1640
+ checksum = "d26c52dbd32dccf2d10cac7725f8eae5296885fb5703b261f7d0a0739ec807ab"
1641
+
1642
+ [[package]]
1643
+ name = "linux-raw-sys"
1644
+ version = "0.12.1"
1645
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1646
+ checksum = "32a66949e030da00e8c7d4434b251670a91556f4144941d37452769c25d58a53"
1647
+
1648
+ [[package]]
1649
+ name = "litemap"
1650
+ version = "0.8.2"
1651
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1652
+ checksum = "92daf443525c4cce67b150400bc2316076100ce0b3686209eb8cf3c31612e6f0"
1653
+
1654
+ [[package]]
1655
+ name = "log"
1656
+ version = "0.4.30"
1657
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1658
+ checksum = "616ec5685824bcc94416c6d4a7a446eea774a31efd7062c8480ba6fd06d7a6e5"
1659
+
1660
+ [[package]]
1661
+ name = "logos"
1662
+ version = "0.14.4"
1663
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1664
+ checksum = "7251356ef8cb7aec833ddf598c6cb24d17b689d20b993f9d11a3d764e34e6458"
1665
+ dependencies = [
1666
+ "logos-derive",
1667
+ ]
1668
+
1669
+ [[package]]
1670
+ name = "logos-codegen"
1671
+ version = "0.14.4"
1672
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1673
+ checksum = "59f80069600c0d66734f5ff52cc42f2dabd6b29d205f333d61fd7832e9e9963f"
1674
+ dependencies = [
1675
+ "beef",
1676
+ "fnv",
1677
+ "lazy_static",
1678
+ "proc-macro2",
1679
+ "quote",
1680
+ "regex-syntax",
1681
+ "syn",
1682
+ ]
1683
+
1684
+ [[package]]
1685
+ name = "logos-derive"
1686
+ version = "0.14.4"
1687
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1688
+ checksum = "24fb722b06a9dc12adb0963ed585f19fc61dc5413e6a9be9422ef92c091e731d"
1689
+ dependencies = [
1690
+ "logos-codegen",
1691
+ ]
1692
+
1693
+ [[package]]
1694
+ name = "lru-slab"
1695
+ version = "0.1.2"
1696
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1697
+ checksum = "112b39cec0b298b6c1999fee3e31427f74f676e4cb9879ed1a121b43661a4154"
1698
+
1699
+ [[package]]
1700
+ name = "mach2"
1701
+ version = "0.4.3"
1702
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1703
+ checksum = "d640282b302c0bb0a2a8e0233ead9035e3bed871f0b7e81fe4a1ec829765db44"
1704
+ dependencies = [
1705
+ "libc",
1706
+ ]
1707
+
1708
+ [[package]]
1709
+ name = "maybe-owned"
1710
+ version = "0.3.4"
1711
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1712
+ checksum = "4facc753ae494aeb6e3c22f839b158aebd4f9270f55cd3c79906c45476c47ab4"
1713
+
1714
+ [[package]]
1715
+ name = "memchr"
1716
+ version = "2.8.1"
1717
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1718
+ checksum = "6b947ae49db0d222b1dbc6b113ce7248a3fc3a6ca21b696717bfc000ba4484d8"
1719
+
1720
+ [[package]]
1721
+ name = "memfd"
1722
+ version = "0.6.5"
1723
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1724
+ checksum = "ad38eb12aea514a0466ea40a80fd8cc83637065948eb4a426e4aa46261175227"
1725
+ dependencies = [
1726
+ "rustix 1.1.4",
1727
+ ]
1728
+
1729
+ [[package]]
1730
+ name = "miette"
1731
+ version = "7.6.0"
1732
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1733
+ checksum = "5f98efec8807c63c752b5bd61f862c165c115b0a35685bdcfd9238c7aeb592b7"
1734
+ dependencies = [
1735
+ "cfg-if",
1736
+ "miette-derive",
1737
+ "serde",
1738
+ "unicode-width 0.1.14",
1739
+ ]
1740
+
1741
+ [[package]]
1742
+ name = "miette-derive"
1743
+ version = "7.6.0"
1744
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1745
+ checksum = "db5b29714e950dbb20d5e6f74f9dcec4edbcc1067bb7f8ed198c097b8c1a818b"
1746
+ dependencies = [
1747
+ "proc-macro2",
1748
+ "quote",
1749
+ "syn",
1750
+ ]
1751
+
1752
+ [[package]]
1753
+ name = "miniz_oxide"
1754
+ version = "0.8.9"
1755
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1756
+ checksum = "1fa76a2c86f704bdb222d66965fb3d63269ce38518b83cb0575fca855ebb6316"
1757
+ dependencies = [
1758
+ "adler2",
1759
+ "simd-adler32",
1760
+ ]
1761
+
1762
+ [[package]]
1763
+ name = "mio"
1764
+ version = "1.2.1"
1765
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1766
+ checksum = "02bd0af71c67b473010cbbc60715ee815645a4dc942899111f494b4b737d6fda"
1767
+ dependencies = [
1768
+ "libc",
1769
+ "wasi",
1770
+ "windows-sys 0.61.2",
1771
+ ]
1772
+
1773
+ [[package]]
1774
+ name = "num-traits"
1775
+ version = "0.2.19"
1776
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1777
+ checksum = "071dfc062690e90b734c0b2273ce72ad0ffa95f0c74596bc250dcfd960262841"
1778
+ dependencies = [
1779
+ "autocfg",
1780
+ ]
1781
+
1782
+ [[package]]
1783
+ name = "object"
1784
+ version = "0.38.1"
1785
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1786
+ checksum = "271638cd5fa9cca89c4c304675ca658efc4e64a66c716b7cfe1afb4b9611dbbc"
1787
+ dependencies = [
1788
+ "crc32fast",
1789
+ "hashbrown 0.16.1",
1790
+ "indexmap",
1791
+ "memchr",
1792
+ ]
1793
+
1794
+ [[package]]
1795
+ name = "once_cell"
1796
+ version = "1.21.4"
1797
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1798
+ checksum = "9f7c3e4beb33f85d45ae3e3a1792185706c8e16d043238c593331cc7cd313b50"
1799
+
1800
+ [[package]]
1801
+ name = "once_cell_polyfill"
1802
+ version = "1.70.2"
1803
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1804
+ checksum = "384b8ab6d37215f3c5301a95a4accb5d64aa607f1fcb26a11b5303878451b4fe"
1805
+
1806
+ [[package]]
1807
+ name = "percent-encoding"
1808
+ version = "2.3.2"
1809
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1810
+ checksum = "9b4f627cb1b25917193a259e49bdad08f671f8d9708acfd5fe0a8c1455d87220"
1811
+
1812
+ [[package]]
1813
+ name = "petgraph"
1814
+ version = "0.6.5"
1815
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1816
+ checksum = "b4c5cc86750666a3ed20bdaf5ca2a0344f9c67674cae0515bec2da16fbaa47db"
1817
+ dependencies = [
1818
+ "fixedbitset",
1819
+ "indexmap",
1820
+ ]
1821
+
1822
+ [[package]]
1823
+ name = "pin-project-lite"
1824
+ version = "0.2.17"
1825
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1826
+ checksum = "a89322df9ebe1c1578d689c92318e070967d1042b512afbe49518723f4e6d5cd"
1827
+
1828
+ [[package]]
1829
+ name = "pkg-config"
1830
+ version = "0.3.33"
1831
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1832
+ checksum = "19f132c84eca552bf34cab8ec81f1c1dcc229b811638f9d283dceabe58c5569e"
1833
+
1834
+ [[package]]
1835
+ name = "portable-atomic"
1836
+ version = "1.13.1"
1837
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1838
+ checksum = "c33a9471896f1c69cecef8d20cbe2f7accd12527ce60845ff44c153bb2a21b49"
1839
+
1840
+ [[package]]
1841
+ name = "portable-atomic-util"
1842
+ version = "0.2.7"
1843
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1844
+ checksum = "c2a106d1259c23fac8e543272398ae0e3c0b8d33c88ed73d0cc71b0f1d902618"
1845
+ dependencies = [
1846
+ "portable-atomic",
1847
+ ]
1848
+
1849
+ [[package]]
1850
+ name = "postcard"
1851
+ version = "1.1.3"
1852
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1853
+ checksum = "6764c3b5dd454e283a30e6dfe78e9b31096d9e32036b5d1eaac7a6119ccb9a24"
1854
+ dependencies = [
1855
+ "cobs",
1856
+ "embedded-io 0.4.0",
1857
+ "embedded-io 0.6.1",
1858
+ "serde",
1859
+ ]
1860
+
1861
+ [[package]]
1862
+ name = "potential_utf"
1863
+ version = "0.1.5"
1864
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1865
+ checksum = "0103b1cef7ec0cf76490e969665504990193874ea05c85ff9bab8b911d0a0564"
1866
+ dependencies = [
1867
+ "zerovec",
1868
+ ]
1869
+
1870
+ [[package]]
1871
+ name = "ppv-lite86"
1872
+ version = "0.2.21"
1873
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1874
+ checksum = "85eae3c4ed2f50dcfe72643da4befc30deadb458a9b590d720cde2f2b1e97da9"
1875
+ dependencies = [
1876
+ "zerocopy",
1877
+ ]
1878
+
1879
+ [[package]]
1880
+ name = "pretty_env_logger"
1881
+ version = "0.5.0"
1882
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1883
+ checksum = "865724d4dbe39d9f3dd3b52b88d859d66bcb2d6a0acfd5ea68a65fb66d4bdc1c"
1884
+ dependencies = [
1885
+ "env_logger 0.10.2",
1886
+ "log",
1887
+ ]
1888
+
1889
+ [[package]]
1890
+ name = "prettyplease"
1891
+ version = "0.2.37"
1892
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1893
+ checksum = "479ca8adacdd7ce8f1fb39ce9ecccbfe93a3f1344b3d0d97f20bc0196208f62b"
1894
+ dependencies = [
1895
+ "proc-macro2",
1896
+ "syn",
1897
+ ]
1898
+
1899
+ [[package]]
1900
+ name = "proc-macro2"
1901
+ version = "1.0.106"
1902
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1903
+ checksum = "8fd00f0bb2e90d81d1044c2b32617f68fcb9fa3bb7640c23e9c748e53fb30934"
1904
+ dependencies = [
1905
+ "unicode-ident",
1906
+ ]
1907
+
1908
+ [[package]]
1909
+ name = "proptest"
1910
+ version = "1.11.0"
1911
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1912
+ checksum = "4b45fcc2344c680f5025fe57779faef368840d0bd1f42f216291f0dc4ace4744"
1913
+ dependencies = [
1914
+ "bit-set",
1915
+ "bit-vec",
1916
+ "bitflags",
1917
+ "num-traits",
1918
+ "rand 0.9.4",
1919
+ "rand_chacha 0.9.0",
1920
+ "rand_xorshift",
1921
+ "regex-syntax",
1922
+ "rusty-fork",
1923
+ "tempfile",
1924
+ "unarray",
1925
+ ]
1926
+
1927
+ [[package]]
1928
+ name = "pulley-interpreter"
1929
+ version = "43.0.2"
1930
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1931
+ checksum = "7ec12fe19a9588315a49fe5704502a9c02d6a198303314b0c7c86123b06d29e5"
1932
+ dependencies = [
1933
+ "cranelift-bitset",
1934
+ "log",
1935
+ "pulley-macros",
1936
+ "wasmtime-internal-core",
1937
+ ]
1938
+
1939
+ [[package]]
1940
+ name = "pulley-macros"
1941
+ version = "43.0.2"
1942
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1943
+ checksum = "36f7d5ef31ebf1b46cd7e722ffef934e670d7e462f49aa01cde07b9b76dca580"
1944
+ dependencies = [
1945
+ "proc-macro2",
1946
+ "quote",
1947
+ "syn",
1948
+ ]
1949
+
1950
+ [[package]]
1951
+ name = "pyo3"
1952
+ version = "0.28.3"
1953
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1954
+ checksum = "91fd8e38a3b50ed1167fb981cd6fd60147e091784c427b8f7183a7ee32c31c12"
1955
+ dependencies = [
1956
+ "libc",
1957
+ "once_cell",
1958
+ "portable-atomic",
1959
+ "pyo3-build-config",
1960
+ "pyo3-ffi",
1961
+ "pyo3-macros",
1962
+ ]
1963
+
1964
+ [[package]]
1965
+ name = "pyo3-build-config"
1966
+ version = "0.28.3"
1967
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1968
+ checksum = "e368e7ddfdeb98c9bca7f8383be1648fd84ab466bf2bc015e94008db6d35611e"
1969
+ dependencies = [
1970
+ "target-lexicon",
1971
+ ]
1972
+
1973
+ [[package]]
1974
+ name = "pyo3-ffi"
1975
+ version = "0.28.3"
1976
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1977
+ checksum = "7f29e10af80b1f7ccaf7f69eace800a03ecd13e883acfacc1e5d0988605f651e"
1978
+ dependencies = [
1979
+ "libc",
1980
+ "pyo3-build-config",
1981
+ ]
1982
+
1983
+ [[package]]
1984
+ name = "pyo3-macros"
1985
+ version = "0.28.3"
1986
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1987
+ checksum = "df6e520eff47c45997d2fc7dd8214b25dd1310918bbb2642156ef66a67f29813"
1988
+ dependencies = [
1989
+ "proc-macro2",
1990
+ "pyo3-macros-backend",
1991
+ "quote",
1992
+ "syn",
1993
+ ]
1994
+
1995
+ [[package]]
1996
+ name = "pyo3-macros-backend"
1997
+ version = "0.28.3"
1998
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1999
+ checksum = "c4cdc218d835738f81c2338f822078af45b4afdf8b2e33cbb5916f108b813acb"
2000
+ dependencies = [
2001
+ "heck",
2002
+ "proc-macro2",
2003
+ "pyo3-build-config",
2004
+ "quote",
2005
+ "syn",
2006
+ ]
2007
+
2008
+ [[package]]
2009
+ name = "quick-error"
2010
+ version = "1.2.3"
2011
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2012
+ checksum = "a1d01941d82fa2ab50be1e79e6714289dd7cde78eba4c074bc5a4374f650dfe0"
2013
+
2014
+ [[package]]
2015
+ name = "quinn"
2016
+ version = "0.11.9"
2017
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2018
+ checksum = "b9e20a958963c291dc322d98411f541009df2ced7b5a4f2bd52337638cfccf20"
2019
+ dependencies = [
2020
+ "bytes",
2021
+ "cfg_aliases",
2022
+ "pin-project-lite",
2023
+ "quinn-proto",
2024
+ "quinn-udp",
2025
+ "rustc-hash",
2026
+ "rustls",
2027
+ "socket2",
2028
+ "thiserror 2.0.18",
2029
+ "tokio",
2030
+ "tracing",
2031
+ "web-time",
2032
+ ]
2033
+
2034
+ [[package]]
2035
+ name = "quinn-proto"
2036
+ version = "0.11.14"
2037
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2038
+ checksum = "434b42fec591c96ef50e21e886936e66d3cc3f737104fdb9b737c40ffb94c098"
2039
+ dependencies = [
2040
+ "bytes",
2041
+ "getrandom 0.3.4",
2042
+ "lru-slab",
2043
+ "rand 0.9.4",
2044
+ "ring",
2045
+ "rustc-hash",
2046
+ "rustls",
2047
+ "rustls-pki-types",
2048
+ "slab",
2049
+ "thiserror 2.0.18",
2050
+ "tinyvec",
2051
+ "tracing",
2052
+ "web-time",
2053
+ ]
2054
+
2055
+ [[package]]
2056
+ name = "quinn-udp"
2057
+ version = "0.5.14"
2058
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2059
+ checksum = "addec6a0dcad8a8d96a771f815f0eaf55f9d1805756410b39f5fa81332574cbd"
2060
+ dependencies = [
2061
+ "cfg_aliases",
2062
+ "libc",
2063
+ "once_cell",
2064
+ "socket2",
2065
+ "tracing",
2066
+ "windows-sys 0.60.2",
2067
+ ]
2068
+
2069
+ [[package]]
2070
+ name = "quote"
2071
+ version = "1.0.45"
2072
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2073
+ checksum = "41f2619966050689382d2b44f664f4bc593e129785a36d6ee376ddf37259b924"
2074
+ dependencies = [
2075
+ "proc-macro2",
2076
+ ]
2077
+
2078
+ [[package]]
2079
+ name = "r-efi"
2080
+ version = "5.3.0"
2081
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2082
+ checksum = "69cdb34c158ceb288df11e18b4bd39de994f6657d83847bdffdbd7f346754b0f"
2083
+
2084
+ [[package]]
2085
+ name = "r-efi"
2086
+ version = "6.0.0"
2087
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2088
+ checksum = "f8dcc9c7d52a811697d2151c701e0d08956f92b0e24136cf4cf27b57a6a0d9bf"
2089
+
2090
+ [[package]]
2091
+ name = "rand"
2092
+ version = "0.8.6"
2093
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2094
+ checksum = "5ca0ecfa931c29007047d1bc58e623ab12e5590e8c7cc53200d5202b69266d8a"
2095
+ dependencies = [
2096
+ "libc",
2097
+ "rand_chacha 0.3.1",
2098
+ "rand_core 0.6.4",
2099
+ ]
2100
+
2101
+ [[package]]
2102
+ name = "rand"
2103
+ version = "0.9.4"
2104
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2105
+ checksum = "44c5af06bb1b7d3216d91932aed5265164bf384dc89cd6ba05cf59a35f5f76ea"
2106
+ dependencies = [
2107
+ "rand_chacha 0.9.0",
2108
+ "rand_core 0.9.5",
2109
+ ]
2110
+
2111
+ [[package]]
2112
+ name = "rand_chacha"
2113
+ version = "0.3.1"
2114
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2115
+ checksum = "e6c10a63a0fa32252be49d21e7709d4d4baf8d231c2dbce1eaa8141b9b127d88"
2116
+ dependencies = [
2117
+ "ppv-lite86",
2118
+ "rand_core 0.6.4",
2119
+ ]
2120
+
2121
+ [[package]]
2122
+ name = "rand_chacha"
2123
+ version = "0.9.0"
2124
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2125
+ checksum = "d3022b5f1df60f26e1ffddd6c66e8aa15de382ae63b3a0c1bfc0e4d3e3f325cb"
2126
+ dependencies = [
2127
+ "ppv-lite86",
2128
+ "rand_core 0.9.5",
2129
+ ]
2130
+
2131
+ [[package]]
2132
+ name = "rand_core"
2133
+ version = "0.6.4"
2134
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2135
+ checksum = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c"
2136
+ dependencies = [
2137
+ "getrandom 0.2.17",
2138
+ ]
2139
+
2140
+ [[package]]
2141
+ name = "rand_core"
2142
+ version = "0.9.5"
2143
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2144
+ checksum = "76afc826de14238e6e8c374ddcc1fa19e374fd8dd986b0d2af0d02377261d83c"
2145
+ dependencies = [
2146
+ "getrandom 0.3.4",
2147
+ ]
2148
+
2149
+ [[package]]
2150
+ name = "rand_xorshift"
2151
+ version = "0.4.0"
2152
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2153
+ checksum = "513962919efc330f829edb2535844d1b912b0fbe2ca165d613e4e8788bb05a5a"
2154
+ dependencies = [
2155
+ "rand_core 0.9.5",
2156
+ ]
2157
+
2158
+ [[package]]
2159
+ name = "rand_xoshiro"
2160
+ version = "0.6.0"
2161
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2162
+ checksum = "6f97cdb2a36ed4183de61b2f824cc45c9f1037f28afe0a322e9fff4c108b5aaa"
2163
+ dependencies = [
2164
+ "rand_core 0.6.4",
2165
+ ]
2166
+
2167
+ [[package]]
2168
+ name = "rayon"
2169
+ version = "1.12.0"
2170
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2171
+ checksum = "fb39b166781f92d482534ef4b4b1b2568f42613b53e5b6c160e24cfbfa30926d"
2172
+ dependencies = [
2173
+ "either",
2174
+ "rayon-core",
2175
+ ]
2176
+
2177
+ [[package]]
2178
+ name = "rayon-core"
2179
+ version = "1.13.0"
2180
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2181
+ checksum = "22e18b0f0062d30d4230b2e85ff77fdfe4326feb054b9783a3460d8435c8ab91"
2182
+ dependencies = [
2183
+ "crossbeam-deque",
2184
+ "crossbeam-utils",
2185
+ ]
2186
+
2187
+ [[package]]
2188
+ name = "redox_users"
2189
+ version = "0.4.6"
2190
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2191
+ checksum = "ba009ff324d1fc1b900bd1fdb31564febe58a8ccc8a6fdbb93b543d33b13ca43"
2192
+ dependencies = [
2193
+ "getrandom 0.2.17",
2194
+ "libredox",
2195
+ "thiserror 1.0.69",
2196
+ ]
2197
+
2198
+ [[package]]
2199
+ name = "regalloc2"
2200
+ version = "0.15.1"
2201
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2202
+ checksum = "de2c52737737f8609e94f975dee22854a2d5c125772d4b1cf292120f4d45c186"
2203
+ dependencies = [
2204
+ "allocator-api2",
2205
+ "bumpalo",
2206
+ "hashbrown 0.17.1",
2207
+ "log",
2208
+ "rustc-hash",
2209
+ "smallvec",
2210
+ ]
2211
+
2212
+ [[package]]
2213
+ name = "regex"
2214
+ version = "1.12.3"
2215
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2216
+ checksum = "e10754a14b9137dd7b1e3e5b0493cc9171fdd105e0ab477f51b72e7f3ac0e276"
2217
+ dependencies = [
2218
+ "aho-corasick",
2219
+ "memchr",
2220
+ "regex-automata",
2221
+ "regex-syntax",
2222
+ ]
2223
+
2224
+ [[package]]
2225
+ name = "regex-automata"
2226
+ version = "0.4.14"
2227
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2228
+ checksum = "6e1dd4122fc1595e8162618945476892eefca7b88c52820e74af6262213cae8f"
2229
+ dependencies = [
2230
+ "aho-corasick",
2231
+ "memchr",
2232
+ "regex-syntax",
2233
+ ]
2234
+
2235
+ [[package]]
2236
+ name = "regex-syntax"
2237
+ version = "0.8.10"
2238
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2239
+ checksum = "dc897dd8d9e8bd1ed8cdad82b5966c3e0ecae09fb1907d58efaa013543185d0a"
2240
+
2241
+ [[package]]
2242
+ name = "reqwest"
2243
+ version = "0.12.28"
2244
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2245
+ checksum = "eddd3ca559203180a307f12d114c268abf583f59b03cb906fd0b3ff8646c1147"
2246
+ dependencies = [
2247
+ "base64",
2248
+ "bytes",
2249
+ "futures-channel",
2250
+ "futures-core",
2251
+ "futures-util",
2252
+ "http",
2253
+ "http-body",
2254
+ "http-body-util",
2255
+ "hyper",
2256
+ "hyper-rustls",
2257
+ "hyper-util",
2258
+ "js-sys",
2259
+ "log",
2260
+ "percent-encoding",
2261
+ "pin-project-lite",
2262
+ "quinn",
2263
+ "rustls",
2264
+ "rustls-pki-types",
2265
+ "serde",
2266
+ "serde_json",
2267
+ "serde_urlencoded",
2268
+ "sync_wrapper",
2269
+ "tokio",
2270
+ "tokio-rustls",
2271
+ "tower",
2272
+ "tower-http",
2273
+ "tower-service",
2274
+ "url",
2275
+ "wasm-bindgen",
2276
+ "wasm-bindgen-futures",
2277
+ "web-sys",
2278
+ "webpki-roots",
2279
+ ]
2280
+
2281
+ [[package]]
2282
+ name = "ring"
2283
+ version = "0.17.14"
2284
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2285
+ checksum = "a4689e6c2294d81e88dc6261c768b63bc4fcdb852be6d1352498b114f61383b7"
2286
+ dependencies = [
2287
+ "cc",
2288
+ "cfg-if",
2289
+ "getrandom 0.2.17",
2290
+ "libc",
2291
+ "untrusted",
2292
+ "windows-sys 0.52.0",
2293
+ ]
2294
+
2295
+ [[package]]
2296
+ name = "rustc-demangle"
2297
+ version = "0.1.27"
2298
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2299
+ checksum = "b50b8869d9fc858ce7266cce0194bd74df58b9d0e3f6df3a9fc8eb470d95c09d"
2300
+
2301
+ [[package]]
2302
+ name = "rustc-hash"
2303
+ version = "2.1.2"
2304
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2305
+ checksum = "94300abf3f1ae2e2b8ffb7b58043de3d399c73fa6f4b73826402a5c457614dbe"
2306
+
2307
+ [[package]]
2308
+ name = "rustix"
2309
+ version = "0.38.44"
2310
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2311
+ checksum = "fdb5bc1ae2baa591800df16c9ca78619bf65c0488b41b96ccec5d11220d8c154"
2312
+ dependencies = [
2313
+ "bitflags",
2314
+ "errno",
2315
+ "libc",
2316
+ "linux-raw-sys 0.4.15",
2317
+ "windows-sys 0.59.0",
2318
+ ]
2319
+
2320
+ [[package]]
2321
+ name = "rustix"
2322
+ version = "1.1.4"
2323
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2324
+ checksum = "b6fe4565b9518b83ef4f91bb47ce29620ca828bd32cb7e408f0062e9930ba190"
2325
+ dependencies = [
2326
+ "bitflags",
2327
+ "errno",
2328
+ "libc",
2329
+ "linux-raw-sys 0.12.1",
2330
+ "windows-sys 0.61.2",
2331
+ ]
2332
+
2333
+ [[package]]
2334
+ name = "rustix-linux-procfs"
2335
+ version = "0.1.1"
2336
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2337
+ checksum = "2fc84bf7e9aa16c4f2c758f27412dc9841341e16aa682d9c7ac308fe3ee12056"
2338
+ dependencies = [
2339
+ "once_cell",
2340
+ "rustix 1.1.4",
2341
+ ]
2342
+
2343
+ [[package]]
2344
+ name = "rustls"
2345
+ version = "0.23.40"
2346
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2347
+ checksum = "ef86cd5876211988985292b91c96a8f2d298df24e75989a43a3c73f2d4d8168b"
2348
+ dependencies = [
2349
+ "once_cell",
2350
+ "ring",
2351
+ "rustls-pki-types",
2352
+ "rustls-webpki",
2353
+ "subtle",
2354
+ "zeroize",
2355
+ ]
2356
+
2357
+ [[package]]
2358
+ name = "rustls-pki-types"
2359
+ version = "1.14.1"
2360
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2361
+ checksum = "30a7197ae7eb376e574fe940d068c30fe0462554a3ddbe4eca7838e049c937a9"
2362
+ dependencies = [
2363
+ "web-time",
2364
+ "zeroize",
2365
+ ]
2366
+
2367
+ [[package]]
2368
+ name = "rustls-webpki"
2369
+ version = "0.103.13"
2370
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2371
+ checksum = "61c429a8649f110dddef65e2a5ad240f747e85f7758a6bccc7e5777bd33f756e"
2372
+ dependencies = [
2373
+ "ring",
2374
+ "rustls-pki-types",
2375
+ "untrusted",
2376
+ ]
2377
+
2378
+ [[package]]
2379
+ name = "rustversion"
2380
+ version = "1.0.22"
2381
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2382
+ checksum = "b39cdef0fa800fc44525c84ccb54a029961a8215f9619753635a9c0d2538d46d"
2383
+
2384
+ [[package]]
2385
+ name = "rusty-fork"
2386
+ version = "0.3.1"
2387
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2388
+ checksum = "cc6bf79ff24e648f6da1f8d1f011e9cac26491b619e6b9280f2b47f1774e6ee2"
2389
+ dependencies = [
2390
+ "fnv",
2391
+ "quick-error",
2392
+ "tempfile",
2393
+ "wait-timeout",
2394
+ ]
2395
+
2396
+ [[package]]
2397
+ name = "ryu"
2398
+ version = "1.0.23"
2399
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2400
+ checksum = "9774ba4a74de5f7b1c1451ed6cd5285a32eddb5cccb8cc655a4e50009e06477f"
2401
+
2402
+ [[package]]
2403
+ name = "semver"
2404
+ version = "1.0.28"
2405
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2406
+ checksum = "8a7852d02fc848982e0c167ef163aaff9cd91dc640ba85e263cb1ce46fae51cd"
2407
+ dependencies = [
2408
+ "serde",
2409
+ "serde_core",
2410
+ ]
2411
+
2412
+ [[package]]
2413
+ name = "serde"
2414
+ version = "1.0.228"
2415
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2416
+ checksum = "9a8e94ea7f378bd32cbbd37198a4a91436180c5bb472411e48b5ec2e2124ae9e"
2417
+ dependencies = [
2418
+ "serde_core",
2419
+ "serde_derive",
2420
+ ]
2421
+
2422
+ [[package]]
2423
+ name = "serde_core"
2424
+ version = "1.0.228"
2425
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2426
+ checksum = "41d385c7d4ca58e59fc732af25c3983b67ac852c1a25000afe1175de458b67ad"
2427
+ dependencies = [
2428
+ "serde_derive",
2429
+ ]
2430
+
2431
+ [[package]]
2432
+ name = "serde_derive"
2433
+ version = "1.0.228"
2434
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2435
+ checksum = "d540f220d3187173da220f885ab66608367b6574e925011a9353e4badda91d79"
2436
+ dependencies = [
2437
+ "proc-macro2",
2438
+ "quote",
2439
+ "syn",
2440
+ ]
2441
+
2442
+ [[package]]
2443
+ name = "serde_json"
2444
+ version = "1.0.150"
2445
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2446
+ checksum = "e8014e44b4736ed0538adeecded0fce2a272f22dc9578a7eb6b2d9993c74cfb9"
2447
+ dependencies = [
2448
+ "itoa",
2449
+ "memchr",
2450
+ "serde",
2451
+ "serde_core",
2452
+ "zmij",
2453
+ ]
2454
+
2455
+ [[package]]
2456
+ name = "serde_spanned"
2457
+ version = "0.6.9"
2458
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2459
+ checksum = "bf41e0cfaf7226dca15e8197172c295a782857fcb97fad1808a166870dee75a3"
2460
+ dependencies = [
2461
+ "serde",
2462
+ ]
2463
+
2464
+ [[package]]
2465
+ name = "serde_spanned"
2466
+ version = "1.1.1"
2467
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2468
+ checksum = "6662b5879511e06e8999a8a235d848113e942c9124f211511b16466ee2995f26"
2469
+ dependencies = [
2470
+ "serde_core",
2471
+ ]
2472
+
2473
+ [[package]]
2474
+ name = "serde_urlencoded"
2475
+ version = "0.7.1"
2476
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2477
+ checksum = "d3491c14715ca2294c4d6a88f15e84739788c1d030eed8c110436aafdaa2f3fd"
2478
+ dependencies = [
2479
+ "form_urlencoded",
2480
+ "itoa",
2481
+ "ryu",
2482
+ "serde",
2483
+ ]
2484
+
2485
+ [[package]]
2486
+ name = "serde_yaml"
2487
+ version = "0.9.34+deprecated"
2488
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2489
+ checksum = "6a8b1a1a2ebf674015cc02edccce75287f1a0130d394307b36743c2f5d504b47"
2490
+ dependencies = [
2491
+ "indexmap",
2492
+ "itoa",
2493
+ "ryu",
2494
+ "serde",
2495
+ "unsafe-libyaml",
2496
+ ]
2497
+
2498
+ [[package]]
2499
+ name = "sha2"
2500
+ version = "0.10.9"
2501
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2502
+ checksum = "a7507d819769d01a365ab707794a4084392c824f54a7a6a7862f8c3d0892b283"
2503
+ dependencies = [
2504
+ "cfg-if",
2505
+ "cpufeatures",
2506
+ "digest",
2507
+ ]
2508
+
2509
+ [[package]]
2510
+ name = "shlex"
2511
+ version = "2.0.1"
2512
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2513
+ checksum = "f8fadd59c855ef2080decdef8ff161eb6661b86933c9d82e5ba29dc602a55aba"
2514
+
2515
+ [[package]]
2516
+ name = "simd-adler32"
2517
+ version = "0.3.9"
2518
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2519
+ checksum = "703d5c7ef118737c72f1af64ad2f6f8c5e1921f818cdcb97b8fe6fc69bf66214"
2520
+
2521
+ [[package]]
2522
+ name = "sized-chunks"
2523
+ version = "0.6.5"
2524
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2525
+ checksum = "16d69225bde7a69b235da73377861095455d298f2b970996eec25ddbb42b3d1e"
2526
+ dependencies = [
2527
+ "bitmaps",
2528
+ "typenum",
2529
+ ]
2530
+
2531
+ [[package]]
2532
+ name = "slab"
2533
+ version = "0.4.12"
2534
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2535
+ checksum = "0c790de23124f9ab44544d7ac05d60440adc586479ce501c1d6d7da3cd8c9cf5"
2536
+
2537
+ [[package]]
2538
+ name = "smallvec"
2539
+ version = "1.15.1"
2540
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2541
+ checksum = "67b1b7a3b5fe4f1376887184045fcf45c69e92af734b7aaddc05fb777b6fbd03"
2542
+ dependencies = [
2543
+ "serde",
2544
+ ]
2545
+
2546
+ [[package]]
2547
+ name = "socket2"
2548
+ version = "0.6.4"
2549
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2550
+ checksum = "52d1cfed4120b4d927bf7c0f86d2087a4a7d6027c906d9f9d525a80573b9be51"
2551
+ dependencies = [
2552
+ "libc",
2553
+ "windows-sys 0.61.2",
2554
+ ]
2555
+
2556
+ [[package]]
2557
+ name = "spdx"
2558
+ version = "0.10.9"
2559
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2560
+ checksum = "c3e17e880bafaeb362a7b751ec46bdc5b61445a188f80e0606e68167cd540fa3"
2561
+ dependencies = [
2562
+ "smallvec",
2563
+ ]
2564
+
2565
+ [[package]]
2566
+ name = "stable_deref_trait"
2567
+ version = "1.2.1"
2568
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2569
+ checksum = "6ce2be8dc25455e1f91df71bfa12ad37d7af1092ae736f3a6cd0e37bc7810596"
2570
+
2571
+ [[package]]
2572
+ name = "strsim"
2573
+ version = "0.11.1"
2574
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2575
+ checksum = "7da8b5736845d9f2fcb837ea5d9e2628564b3b043a70948a3f0b778838c5fb4f"
2576
+
2577
+ [[package]]
2578
+ name = "subtle"
2579
+ version = "2.6.1"
2580
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2581
+ checksum = "13c2bddecc57b384dee18652358fb23172facb8a2c51ccc10d74c157bdea3292"
2582
+
2583
+ [[package]]
2584
+ name = "syn"
2585
+ version = "2.0.117"
2586
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2587
+ checksum = "e665b8803e7b1d2a727f4023456bbbbe74da67099c585258af0ad9c5013b9b99"
2588
+ dependencies = [
2589
+ "proc-macro2",
2590
+ "quote",
2591
+ "unicode-ident",
2592
+ ]
2593
+
2594
+ [[package]]
2595
+ name = "sync_wrapper"
2596
+ version = "1.0.2"
2597
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2598
+ checksum = "0bf256ce5efdfa370213c1dabab5935a12e49f2c58d15e9eac2870d3b4f27263"
2599
+ dependencies = [
2600
+ "futures-core",
2601
+ ]
2602
+
2603
+ [[package]]
2604
+ name = "synstructure"
2605
+ version = "0.13.2"
2606
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2607
+ checksum = "728a70f3dbaf5bab7f0c4b1ac8d7ae5ea60a4b5549c8a5914361c99147a709d2"
2608
+ dependencies = [
2609
+ "proc-macro2",
2610
+ "quote",
2611
+ "syn",
2612
+ ]
2613
+
2614
+ [[package]]
2615
+ name = "system-interface"
2616
+ version = "0.27.3"
2617
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2618
+ checksum = "cc4592f674ce18521c2a81483873a49596655b179f71c5e05d10c1fe66c78745"
2619
+ dependencies = [
2620
+ "bitflags",
2621
+ "cap-fs-ext",
2622
+ "cap-std",
2623
+ "fd-lock",
2624
+ "io-lifetimes",
2625
+ "rustix 0.38.44",
2626
+ "windows-sys 0.59.0",
2627
+ "winx",
2628
+ ]
2629
+
2630
+ [[package]]
2631
+ name = "tar"
2632
+ version = "0.4.46"
2633
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2634
+ checksum = "3f6221d9a6003c78398e3b239969f352578258df48c8eb051caadae0015bc840"
2635
+ dependencies = [
2636
+ "filetime",
2637
+ "libc",
2638
+ "xattr",
2639
+ ]
2640
+
2641
+ [[package]]
2642
+ name = "target-lexicon"
2643
+ version = "0.13.5"
2644
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2645
+ checksum = "adb6935a6f5c20170eeceb1a3835a49e12e19d792f6dd344ccc76a985ca5a6ca"
2646
+
2647
+ [[package]]
2648
+ name = "tempfile"
2649
+ version = "3.27.0"
2650
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2651
+ checksum = "32497e9a4c7b38532efcdebeef879707aa9f794296a4f0244f6f69e9bc8574bd"
2652
+ dependencies = [
2653
+ "fastrand",
2654
+ "getrandom 0.4.2",
2655
+ "once_cell",
2656
+ "rustix 1.1.4",
2657
+ "windows-sys 0.61.2",
2658
+ ]
2659
+
2660
+ [[package]]
2661
+ name = "termcolor"
2662
+ version = "1.4.1"
2663
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2664
+ checksum = "06794f8f6c5c898b3275aebefa6b8a1cb24cd2c6c79397ab15774837a0bc5755"
2665
+ dependencies = [
2666
+ "winapi-util",
2667
+ ]
2668
+
2669
+ [[package]]
2670
+ name = "test-generator"
2671
+ version = "0.1.0"
2672
+ source = "git+https://github.com/bytecodealliance/componentize-py?tag=v0.23.0#911ef76cc949ff11696232c00737c0a4a7474d1e"
2673
+ dependencies = [
2674
+ "anyhow",
2675
+ "getrandom 0.2.17",
2676
+ "hex",
2677
+ "proptest",
2678
+ ]
2679
+
2680
+ [[package]]
2681
+ name = "thiserror"
2682
+ version = "1.0.69"
2683
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2684
+ checksum = "b6aaf5339b578ea85b50e080feb250a3e8ae8cfcdff9a461c9ec2904bc923f52"
2685
+ dependencies = [
2686
+ "thiserror-impl 1.0.69",
2687
+ ]
2688
+
2689
+ [[package]]
2690
+ name = "thiserror"
2691
+ version = "2.0.18"
2692
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2693
+ checksum = "4288b5bcbc7920c07a1149a35cf9590a2aa808e0bc1eafaade0b80947865fbc4"
2694
+ dependencies = [
2695
+ "thiserror-impl 2.0.18",
2696
+ ]
2697
+
2698
+ [[package]]
2699
+ name = "thiserror-impl"
2700
+ version = "1.0.69"
2701
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2702
+ checksum = "4fee6c4efc90059e10f81e6d42c60a18f76588c3d74cb83a0b242a2b6c7504c1"
2703
+ dependencies = [
2704
+ "proc-macro2",
2705
+ "quote",
2706
+ "syn",
2707
+ ]
2708
+
2709
+ [[package]]
2710
+ name = "thiserror-impl"
2711
+ version = "2.0.18"
2712
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2713
+ checksum = "ebc4ee7f67670e9b64d05fa4253e753e016c6c95ff35b89b7941d6b856dec1d5"
2714
+ dependencies = [
2715
+ "proc-macro2",
2716
+ "quote",
2717
+ "syn",
2718
+ ]
2719
+
2720
+ [[package]]
2721
+ name = "tinystr"
2722
+ version = "0.8.3"
2723
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2724
+ checksum = "c8323304221c2a851516f22236c5722a72eaa19749016521d6dff0824447d96d"
2725
+ dependencies = [
2726
+ "displaydoc",
2727
+ "zerovec",
2728
+ ]
2729
+
2730
+ [[package]]
2731
+ name = "tinyvec"
2732
+ version = "1.11.0"
2733
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2734
+ checksum = "3e61e67053d25a4e82c844e8424039d9745781b3fc4f32b8d55ed50f5f667ef3"
2735
+ dependencies = [
2736
+ "tinyvec_macros",
2737
+ ]
2738
+
2739
+ [[package]]
2740
+ name = "tinyvec_macros"
2741
+ version = "0.1.1"
2742
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2743
+ checksum = "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20"
2744
+
2745
+ [[package]]
2746
+ name = "tokio"
2747
+ version = "1.52.3"
2748
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2749
+ checksum = "8fc7f01b389ac15039e4dc9531aa973a135d7a4135281b12d7c1bc79fd57fffe"
2750
+ dependencies = [
2751
+ "bytes",
2752
+ "libc",
2753
+ "mio",
2754
+ "pin-project-lite",
2755
+ "socket2",
2756
+ "tokio-macros",
2757
+ "windows-sys 0.61.2",
2758
+ ]
2759
+
2760
+ [[package]]
2761
+ name = "tokio-macros"
2762
+ version = "2.7.0"
2763
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2764
+ checksum = "385a6cb71ab9ab790c5fe8d67f1645e6c450a7ce006a33de03daa956cf70a496"
2765
+ dependencies = [
2766
+ "proc-macro2",
2767
+ "quote",
2768
+ "syn",
2769
+ ]
2770
+
2771
+ [[package]]
2772
+ name = "tokio-rustls"
2773
+ version = "0.26.4"
2774
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2775
+ checksum = "1729aa945f29d91ba541258c8df89027d5792d85a8841fb65e8bf0f4ede4ef61"
2776
+ dependencies = [
2777
+ "rustls",
2778
+ "tokio",
2779
+ ]
2780
+
2781
+ [[package]]
2782
+ name = "tokio-util"
2783
+ version = "0.7.18"
2784
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2785
+ checksum = "9ae9cec805b01e8fc3fd2fe289f89149a9b66dd16786abd8b19cfa7b48cb0098"
2786
+ dependencies = [
2787
+ "bytes",
2788
+ "futures-core",
2789
+ "futures-sink",
2790
+ "pin-project-lite",
2791
+ "tokio",
2792
+ ]
2793
+
2794
+ [[package]]
2795
+ name = "toml"
2796
+ version = "0.8.23"
2797
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2798
+ checksum = "dc1beb996b9d83529a9e75c17a1686767d148d70663143c7854d8b4a09ced362"
2799
+ dependencies = [
2800
+ "serde",
2801
+ "serde_spanned 0.6.9",
2802
+ "toml_datetime 0.6.11",
2803
+ "toml_edit",
2804
+ ]
2805
+
2806
+ [[package]]
2807
+ name = "toml"
2808
+ version = "0.9.12+spec-1.1.0"
2809
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2810
+ checksum = "cf92845e79fc2e2def6a5d828f0801e29a2f8acc037becc5ab08595c7d5e9863"
2811
+ dependencies = [
2812
+ "indexmap",
2813
+ "serde_core",
2814
+ "serde_spanned 1.1.1",
2815
+ "toml_datetime 0.7.5+spec-1.1.0",
2816
+ "toml_parser",
2817
+ "toml_writer",
2818
+ "winnow 0.7.15",
2819
+ ]
2820
+
2821
+ [[package]]
2822
+ name = "toml_datetime"
2823
+ version = "0.6.11"
2824
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2825
+ checksum = "22cddaf88f4fbc13c51aebbf5f8eceb5c7c5a9da2ac40a13519eb5b0a0e8f11c"
2826
+ dependencies = [
2827
+ "serde",
2828
+ ]
2829
+
2830
+ [[package]]
2831
+ name = "toml_datetime"
2832
+ version = "0.7.5+spec-1.1.0"
2833
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2834
+ checksum = "92e1cfed4a3038bc5a127e35a2d360f145e1f4b971b551a2ba5fd7aedf7e1347"
2835
+ dependencies = [
2836
+ "serde_core",
2837
+ ]
2838
+
2839
+ [[package]]
2840
+ name = "toml_edit"
2841
+ version = "0.22.27"
2842
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2843
+ checksum = "41fe8c660ae4257887cf66394862d21dbca4a6ddd26f04a3560410406a2f819a"
2844
+ dependencies = [
2845
+ "indexmap",
2846
+ "serde",
2847
+ "serde_spanned 0.6.9",
2848
+ "toml_datetime 0.6.11",
2849
+ "toml_write",
2850
+ "winnow 0.7.15",
2851
+ ]
2852
+
2853
+ [[package]]
2854
+ name = "toml_parser"
2855
+ version = "1.1.2+spec-1.1.0"
2856
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2857
+ checksum = "a2abe9b86193656635d2411dc43050282ca48aa31c2451210f4202550afb7526"
2858
+ dependencies = [
2859
+ "winnow 1.0.3",
2860
+ ]
2861
+
2862
+ [[package]]
2863
+ name = "toml_write"
2864
+ version = "0.1.2"
2865
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2866
+ checksum = "5d99f8c9a7727884afe522e9bd5edbfc91a3312b36a77b5fb8926e4c31a41801"
2867
+
2868
+ [[package]]
2869
+ name = "toml_writer"
2870
+ version = "1.1.1+spec-1.1.0"
2871
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2872
+ checksum = "756daf9b1013ebe47a8776667b466417e2d4c5679d441c26230efd9ef78692db"
2873
+
2874
+ [[package]]
2875
+ name = "topological-sort"
2876
+ version = "0.2.2"
2877
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2878
+ checksum = "ea68304e134ecd095ac6c3574494fc62b909f416c4fca77e440530221e549d3d"
2879
+
2880
+ [[package]]
2881
+ name = "tower"
2882
+ version = "0.5.3"
2883
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2884
+ checksum = "ebe5ef63511595f1344e2d5cfa636d973292adc0eec1f0ad45fae9f0851ab1d4"
2885
+ dependencies = [
2886
+ "futures-core",
2887
+ "futures-util",
2888
+ "pin-project-lite",
2889
+ "sync_wrapper",
2890
+ "tokio",
2891
+ "tower-layer",
2892
+ "tower-service",
2893
+ ]
2894
+
2895
+ [[package]]
2896
+ name = "tower-http"
2897
+ version = "0.6.11"
2898
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2899
+ checksum = "4cfcf7e2740e6fc6d4d688b4ef00650406bb94adf4731e43c096c3a19fe40840"
2900
+ dependencies = [
2901
+ "async-compression",
2902
+ "bitflags",
2903
+ "bytes",
2904
+ "futures-core",
2905
+ "futures-util",
2906
+ "http",
2907
+ "http-body",
2908
+ "http-body-util",
2909
+ "pin-project-lite",
2910
+ "tokio",
2911
+ "tokio-util",
2912
+ "tower",
2913
+ "tower-layer",
2914
+ "tower-service",
2915
+ "url",
2916
+ ]
2917
+
2918
+ [[package]]
2919
+ name = "tower-layer"
2920
+ version = "0.3.3"
2921
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2922
+ checksum = "121c2a6cda46980bb0fcd1647ffaf6cd3fc79a013de288782836f6df9c48780e"
2923
+
2924
+ [[package]]
2925
+ name = "tower-service"
2926
+ version = "0.3.3"
2927
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2928
+ checksum = "8df9b6e13f2d32c91b9bd719c00d1958837bc7dec474d94952798cc8e69eeec3"
2929
+
2930
+ [[package]]
2931
+ name = "tracing"
2932
+ version = "0.1.44"
2933
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2934
+ checksum = "63e71662fa4b2a2c3a26f570f037eb95bb1f85397f3cd8076caed2f026a6d100"
2935
+ dependencies = [
2936
+ "pin-project-lite",
2937
+ "tracing-attributes",
2938
+ "tracing-core",
2939
+ ]
2940
+
2941
+ [[package]]
2942
+ name = "tracing-attributes"
2943
+ version = "0.1.31"
2944
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2945
+ checksum = "7490cfa5ec963746568740651ac6781f701c9c5ea257c58e057f3ba8cf69e8da"
2946
+ dependencies = [
2947
+ "proc-macro2",
2948
+ "quote",
2949
+ "syn",
2950
+ ]
2951
+
2952
+ [[package]]
2953
+ name = "tracing-core"
2954
+ version = "0.1.36"
2955
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2956
+ checksum = "db97caf9d906fbde555dd62fa95ddba9eecfd14cb388e4f491a66d74cd5fb79a"
2957
+ dependencies = [
2958
+ "once_cell",
2959
+ ]
2960
+
2961
+ [[package]]
2962
+ name = "try-lock"
2963
+ version = "0.2.5"
2964
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2965
+ checksum = "e421abadd41a4225275504ea4d6566923418b7f05506fbc9c0fe86ba7396114b"
2966
+
2967
+ [[package]]
2968
+ name = "typenum"
2969
+ version = "1.20.1"
2970
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2971
+ checksum = "b6f5e870be6c3b371b77fe0ee0bafb859fa4964b4404c27de1d380043c4dda20"
2972
+
2973
+ [[package]]
2974
+ name = "unarray"
2975
+ version = "0.1.4"
2976
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2977
+ checksum = "eaea85b334db583fe3274d12b4cd1880032beab409c0d774be044d4480ab9a94"
2978
+
2979
+ [[package]]
2980
+ name = "unicode-ident"
2981
+ version = "1.0.24"
2982
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2983
+ checksum = "e6e4313cd5fcd3dad5cafa179702e2b244f760991f45397d14d4ebf38247da75"
2984
+
2985
+ [[package]]
2986
+ name = "unicode-width"
2987
+ version = "0.1.14"
2988
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2989
+ checksum = "7dd6e30e90baa6f72411720665d41d89b9a3d039dc45b8faea1ddd07f617f6af"
2990
+
2991
+ [[package]]
2992
+ name = "unicode-width"
2993
+ version = "0.2.2"
2994
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2995
+ checksum = "b4ac048d71ede7ee76d585517add45da530660ef4390e49b098733c6e897f254"
2996
+
2997
+ [[package]]
2998
+ name = "unicode-xid"
2999
+ version = "0.2.6"
3000
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3001
+ checksum = "ebc1c04c71510c7f702b52b7c350734c9ff1295c464a03335b00bb84fc54f853"
3002
+
3003
+ [[package]]
3004
+ name = "unsafe-libyaml"
3005
+ version = "0.2.11"
3006
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3007
+ checksum = "673aac59facbab8a9007c7f6108d11f63b603f7cabff99fabf650fea5c32b861"
3008
+
3009
+ [[package]]
3010
+ name = "untrusted"
3011
+ version = "0.9.0"
3012
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3013
+ checksum = "8ecb6da28b8a351d773b68d5825ac39017e680750f980f3a1a85cd8dd28a47c1"
3014
+
3015
+ [[package]]
3016
+ name = "url"
3017
+ version = "2.5.8"
3018
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3019
+ checksum = "ff67a8a4397373c3ef660812acab3268222035010ab8680ec4215f38ba3d0eed"
3020
+ dependencies = [
3021
+ "form_urlencoded",
3022
+ "idna",
3023
+ "percent-encoding",
3024
+ "serde",
3025
+ ]
3026
+
3027
+ [[package]]
3028
+ name = "utf8_iter"
3029
+ version = "1.0.4"
3030
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3031
+ checksum = "b6c140620e7ffbb22c2dee59cafe6084a59b5ffc27a8859a5f0d494b5d52b6be"
3032
+
3033
+ [[package]]
3034
+ name = "utf8parse"
3035
+ version = "0.2.2"
3036
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3037
+ checksum = "06abde3611657adf66d383f00b093d7faecc7fa57071cce2578660c9f1010821"
3038
+
3039
+ [[package]]
3040
+ name = "uuid"
3041
+ version = "1.23.2"
3042
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3043
+ checksum = "d258b83ceec21034727ecee8c382cfa6c3e133699b0742c64571814fb420c9f7"
3044
+ dependencies = [
3045
+ "js-sys",
3046
+ "wasm-bindgen",
3047
+ ]
3048
+
3049
+ [[package]]
3050
+ name = "version_check"
3051
+ version = "0.9.5"
3052
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3053
+ checksum = "0b928f33d975fc6ad9f86c8f283853ad26bdd5b10b7f1542aa2fa15e2289105a"
3054
+
3055
+ [[package]]
3056
+ name = "wac-graph"
3057
+ version = "0.8.1"
3058
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3059
+ checksum = "d511e0c9462a5f6369e7e17e9f0f3b566eab2a235076a23f2db19ca7bf36d32c"
3060
+ dependencies = [
3061
+ "anyhow",
3062
+ "id-arena",
3063
+ "indexmap",
3064
+ "log",
3065
+ "petgraph",
3066
+ "semver",
3067
+ "thiserror 1.0.69",
3068
+ "wac-types",
3069
+ "wasm-encoder 0.239.0",
3070
+ "wasm-metadata 0.239.0",
3071
+ "wasmparser 0.239.0",
3072
+ ]
3073
+
3074
+ [[package]]
3075
+ name = "wac-parser"
3076
+ version = "0.8.1"
3077
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3078
+ checksum = "b47c29a894f9f82c4da2d036d410babb3bd5aed0acfb4c3d779b536a4316cba0"
3079
+ dependencies = [
3080
+ "anyhow",
3081
+ "id-arena",
3082
+ "indexmap",
3083
+ "log",
3084
+ "logos",
3085
+ "miette",
3086
+ "semver",
3087
+ "serde",
3088
+ "thiserror 1.0.69",
3089
+ "wac-graph",
3090
+ "wasm-encoder 0.239.0",
3091
+ "wasm-metadata 0.239.0",
3092
+ "wasmparser 0.239.0",
3093
+ ]
3094
+
3095
+ [[package]]
3096
+ name = "wac-types"
3097
+ version = "0.8.1"
3098
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3099
+ checksum = "64fdef742a5198856c7c754944b329ed684f703dca477d0a77b474b37d990121"
3100
+ dependencies = [
3101
+ "anyhow",
3102
+ "id-arena",
3103
+ "indexmap",
3104
+ "semver",
3105
+ "wasm-encoder 0.239.0",
3106
+ "wasmparser 0.239.0",
3107
+ ]
3108
+
3109
+ [[package]]
3110
+ name = "wait-timeout"
3111
+ version = "0.2.1"
3112
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3113
+ checksum = "09ac3b126d3914f9849036f826e054cbabdc8519970b8998ddaf3b5bd3c65f11"
3114
+ dependencies = [
3115
+ "libc",
3116
+ ]
3117
+
3118
+ [[package]]
3119
+ name = "want"
3120
+ version = "0.3.1"
3121
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3122
+ checksum = "bfa7760aed19e106de2c7c0b581b509f2f25d3dacaf737cb82ac61bc6d760b0e"
3123
+ dependencies = [
3124
+ "try-lock",
3125
+ ]
3126
+
3127
+ [[package]]
3128
+ name = "wasi"
3129
+ version = "0.11.1+wasi-snapshot-preview1"
3130
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3131
+ checksum = "ccf3ec651a847eb01de73ccad15eb7d99f80485de043efb2f370cd654f4ea44b"
3132
+
3133
+ [[package]]
3134
+ name = "wasiless"
3135
+ version = "0.1.0"
3136
+ dependencies = [
3137
+ "wit-bindgen 0.46.0",
3138
+ ]
3139
+
3140
+ [[package]]
3141
+ name = "wasip2"
3142
+ version = "1.0.3+wasi-0.2.9"
3143
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3144
+ checksum = "20064672db26d7cdc89c7798c48a0fdfac8213434a1186e5ef29fd560ae223d6"
3145
+ dependencies = [
3146
+ "wit-bindgen 0.57.1",
3147
+ ]
3148
+
3149
+ [[package]]
3150
+ name = "wasip3"
3151
+ version = "0.4.0+wasi-0.3.0-rc-2026-01-06"
3152
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3153
+ checksum = "5428f8bf88ea5ddc08faddef2ac4a67e390b88186c703ce6dbd955e1c145aca5"
3154
+ dependencies = [
3155
+ "wit-bindgen 0.51.0",
3156
+ ]
3157
+
3158
+ [[package]]
3159
+ name = "wasm-bindgen"
3160
+ version = "0.2.122"
3161
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3162
+ checksum = "3ed04576f974d2b2fba0f38c51dbc5518011e38c36bf1143164be765528fd409"
3163
+ dependencies = [
3164
+ "cfg-if",
3165
+ "once_cell",
3166
+ "rustversion",
3167
+ "wasm-bindgen-macro",
3168
+ "wasm-bindgen-shared",
3169
+ ]
3170
+
3171
+ [[package]]
3172
+ name = "wasm-bindgen-futures"
3173
+ version = "0.4.72"
3174
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3175
+ checksum = "9473dbd2991ae90b6291c3c32c30c6187ac49aa32f9905d1cce280ec1e110b0f"
3176
+ dependencies = [
3177
+ "js-sys",
3178
+ "wasm-bindgen",
3179
+ ]
3180
+
3181
+ [[package]]
3182
+ name = "wasm-bindgen-macro"
3183
+ version = "0.2.122"
3184
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3185
+ checksum = "916151b09da36bd82f6615cbf3a419e2f0ba23a03c6160e8e92eb6bd4aa1dec6"
3186
+ dependencies = [
3187
+ "quote",
3188
+ "wasm-bindgen-macro-support",
3189
+ ]
3190
+
3191
+ [[package]]
3192
+ name = "wasm-bindgen-macro-support"
3193
+ version = "0.2.122"
3194
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3195
+ checksum = "299047362ccbfce148b67ab7e73349f77748e00c8296f9542adfad2ad82c5c5e"
3196
+ dependencies = [
3197
+ "bumpalo",
3198
+ "proc-macro2",
3199
+ "quote",
3200
+ "syn",
3201
+ "wasm-bindgen-shared",
3202
+ ]
3203
+
3204
+ [[package]]
3205
+ name = "wasm-bindgen-shared"
3206
+ version = "0.2.122"
3207
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3208
+ checksum = "9a929b2c61f11ba3e9bc35b50c1f25cb38e0e892c0c231ae2b8cf78d5dad4437"
3209
+ dependencies = [
3210
+ "unicode-ident",
3211
+ ]
3212
+
3213
+ [[package]]
3214
+ name = "wasm-compose"
3215
+ version = "0.245.1"
3216
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3217
+ checksum = "5fd23d12cc95c451c1306db5bc63075fbebb612bb70c53b4237b1ce5bc178343"
3218
+ dependencies = [
3219
+ "anyhow",
3220
+ "heck",
3221
+ "im-rc",
3222
+ "indexmap",
3223
+ "log",
3224
+ "petgraph",
3225
+ "serde",
3226
+ "serde_derive",
3227
+ "serde_yaml",
3228
+ "smallvec",
3229
+ "wasm-encoder 0.245.1",
3230
+ "wasmparser 0.245.1",
3231
+ "wat",
3232
+ ]
3233
+
3234
+ [[package]]
3235
+ name = "wasm-encoder"
3236
+ version = "0.219.2"
3237
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3238
+ checksum = "8aa79bcd666a043b58f5fa62b221b0b914dd901e6f620e8ab7371057a797f3e1"
3239
+ dependencies = [
3240
+ "leb128",
3241
+ "wasmparser 0.219.2",
3242
+ ]
3243
+
3244
+ [[package]]
3245
+ name = "wasm-encoder"
3246
+ version = "0.239.0"
3247
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3248
+ checksum = "5be00faa2b4950c76fe618c409d2c3ea5a3c9422013e079482d78544bb2d184c"
3249
+ dependencies = [
3250
+ "leb128fmt",
3251
+ "wasmparser 0.239.0",
3252
+ ]
3253
+
3254
+ [[package]]
3255
+ name = "wasm-encoder"
3256
+ version = "0.244.0"
3257
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3258
+ checksum = "990065f2fe63003fe337b932cfb5e3b80e0b4d0f5ff650e6985b1048f62c8319"
3259
+ dependencies = [
3260
+ "leb128fmt",
3261
+ "wasmparser 0.244.0",
3262
+ ]
3263
+
3264
+ [[package]]
3265
+ name = "wasm-encoder"
3266
+ version = "0.245.1"
3267
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3268
+ checksum = "3f9dca005e69bf015e45577e415b9af8c67e8ee3c0e38b5b0add5aa92581ed5c"
3269
+ dependencies = [
3270
+ "leb128fmt",
3271
+ "wasmparser 0.245.1",
3272
+ ]
3273
+
3274
+ [[package]]
3275
+ name = "wasm-encoder"
3276
+ version = "0.251.0"
3277
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3278
+ checksum = "5a879a421bd17c528b74721b2abf4c62e8f1d1889c2ba8c3c50d02deaf2ce395"
3279
+ dependencies = [
3280
+ "leb128fmt",
3281
+ "wasmparser 0.251.0",
3282
+ ]
3283
+
3284
+ [[package]]
3285
+ name = "wasm-metadata"
3286
+ version = "0.219.2"
3287
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3288
+ checksum = "b1ef51bd442042a2a7b562dddb6016ead52c4abab254c376dcffc83add2c9c34"
3289
+ dependencies = [
3290
+ "anyhow",
3291
+ "indexmap",
3292
+ "serde",
3293
+ "serde_derive",
3294
+ "serde_json",
3295
+ "spdx",
3296
+ "wasm-encoder 0.219.2",
3297
+ "wasmparser 0.219.2",
3298
+ ]
3299
+
3300
+ [[package]]
3301
+ name = "wasm-metadata"
3302
+ version = "0.239.0"
3303
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3304
+ checksum = "20b3ec880a9ac69ccd92fbdbcf46ee833071cf09f82bb005b2327c7ae6025ae2"
3305
+ dependencies = [
3306
+ "anyhow",
3307
+ "auditable-serde",
3308
+ "flate2",
3309
+ "indexmap",
3310
+ "serde",
3311
+ "serde_derive",
3312
+ "serde_json",
3313
+ "spdx",
3314
+ "url",
3315
+ "wasm-encoder 0.239.0",
3316
+ "wasmparser 0.239.0",
3317
+ ]
3318
+
3319
+ [[package]]
3320
+ name = "wasm-metadata"
3321
+ version = "0.244.0"
3322
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3323
+ checksum = "bb0e353e6a2fbdc176932bbaab493762eb1255a7900fe0fea1a2f96c296cc909"
3324
+ dependencies = [
3325
+ "anyhow",
3326
+ "auditable-serde",
3327
+ "flate2",
3328
+ "indexmap",
3329
+ "serde",
3330
+ "serde_derive",
3331
+ "serde_json",
3332
+ "spdx",
3333
+ "url",
3334
+ "wasm-encoder 0.244.0",
3335
+ "wasmparser 0.244.0",
3336
+ ]
3337
+
3338
+ [[package]]
3339
+ name = "wasm-metadata"
3340
+ version = "0.245.1"
3341
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3342
+ checksum = "da55e60097e8b37b475a0fa35c3420dd71d9eb7bd66109978ab55faf56a57efb"
3343
+ dependencies = [
3344
+ "anyhow",
3345
+ "indexmap",
3346
+ "wasm-encoder 0.245.1",
3347
+ "wasmparser 0.245.1",
3348
+ ]
3349
+
3350
+ [[package]]
3351
+ name = "wasmparser"
3352
+ version = "0.219.2"
3353
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3354
+ checksum = "5220ee4c6ffcc0cb9d7c47398052203bc902c8ef3985b0c8134118440c0b2921"
3355
+ dependencies = [
3356
+ "ahash",
3357
+ "bitflags",
3358
+ "hashbrown 0.14.5",
3359
+ "indexmap",
3360
+ "semver",
3361
+ ]
3362
+
3363
+ [[package]]
3364
+ name = "wasmparser"
3365
+ version = "0.239.0"
3366
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3367
+ checksum = "8c9d90bb93e764f6beabf1d02028c70a2156a6583e63ac4218dd07ef733368b0"
3368
+ dependencies = [
3369
+ "bitflags",
3370
+ "hashbrown 0.15.5",
3371
+ "indexmap",
3372
+ "semver",
3373
+ "serde",
3374
+ ]
3375
+
3376
+ [[package]]
3377
+ name = "wasmparser"
3378
+ version = "0.244.0"
3379
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3380
+ checksum = "47b807c72e1bac69382b3a6fb3dbe8ea4c0ed87ff5629b8685ae6b9a611028fe"
3381
+ dependencies = [
3382
+ "bitflags",
3383
+ "hashbrown 0.15.5",
3384
+ "indexmap",
3385
+ "semver",
3386
+ "serde",
3387
+ ]
3388
+
3389
+ [[package]]
3390
+ name = "wasmparser"
3391
+ version = "0.245.1"
3392
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3393
+ checksum = "4f08c9adee0428b7bddf3890fc27e015ac4b761cc608c822667102b8bfd6995e"
3394
+ dependencies = [
3395
+ "bitflags",
3396
+ "hashbrown 0.16.1",
3397
+ "indexmap",
3398
+ "semver",
3399
+ "serde",
3400
+ ]
3401
+
3402
+ [[package]]
3403
+ name = "wasmparser"
3404
+ version = "0.251.0"
3405
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3406
+ checksum = "437970b35b1a85cfde9c74b2398352d8d653f3bd8e3a3db0c063ea8f5b4b36ff"
3407
+ dependencies = [
3408
+ "bitflags",
3409
+ "indexmap",
3410
+ "semver",
3411
+ ]
3412
+
3413
+ [[package]]
3414
+ name = "wasmprinter"
3415
+ version = "0.245.1"
3416
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3417
+ checksum = "5f41517a3716fbb8ccf46daa9c1325f760fcbff5168e75c7392288e410b91ac8"
3418
+ dependencies = [
3419
+ "anyhow",
3420
+ "termcolor",
3421
+ "wasmparser 0.245.1",
3422
+ ]
3423
+
3424
+ [[package]]
3425
+ name = "wasmtime"
3426
+ version = "43.0.2"
3427
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3428
+ checksum = "efb1ed5899dde98357cfdcf647a4614498798719793898245b4b34e663addabf"
3429
+ dependencies = [
3430
+ "addr2line",
3431
+ "async-trait",
3432
+ "bitflags",
3433
+ "bumpalo",
3434
+ "bytes",
3435
+ "cc",
3436
+ "cfg-if",
3437
+ "encoding_rs",
3438
+ "futures",
3439
+ "fxprof-processed-profile",
3440
+ "gimli",
3441
+ "ittapi",
3442
+ "libc",
3443
+ "log",
3444
+ "mach2",
3445
+ "memfd",
3446
+ "object",
3447
+ "once_cell",
3448
+ "postcard",
3449
+ "pulley-interpreter",
3450
+ "rayon",
3451
+ "rustix 1.1.4",
3452
+ "semver",
3453
+ "serde",
3454
+ "serde_derive",
3455
+ "serde_json",
3456
+ "smallvec",
3457
+ "target-lexicon",
3458
+ "tempfile",
3459
+ "wasm-compose",
3460
+ "wasm-encoder 0.245.1",
3461
+ "wasmparser 0.245.1",
3462
+ "wasmtime-environ",
3463
+ "wasmtime-internal-cache",
3464
+ "wasmtime-internal-component-macro",
3465
+ "wasmtime-internal-component-util",
3466
+ "wasmtime-internal-core",
3467
+ "wasmtime-internal-cranelift",
3468
+ "wasmtime-internal-fiber",
3469
+ "wasmtime-internal-jit-debug",
3470
+ "wasmtime-internal-jit-icache-coherence",
3471
+ "wasmtime-internal-unwinder",
3472
+ "wasmtime-internal-versioned-export-macros",
3473
+ "wasmtime-internal-winch",
3474
+ "wat",
3475
+ "windows-sys 0.61.2",
3476
+ ]
3477
+
3478
+ [[package]]
3479
+ name = "wasmtime-environ"
3480
+ version = "43.0.2"
3481
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3482
+ checksum = "4172382dcc785c31d0e862c6780a18f5dd437914d22c4691351f965ef751c821"
3483
+ dependencies = [
3484
+ "anyhow",
3485
+ "cpp_demangle",
3486
+ "cranelift-bforest",
3487
+ "cranelift-bitset",
3488
+ "cranelift-entity",
3489
+ "gimli",
3490
+ "hashbrown 0.16.1",
3491
+ "indexmap",
3492
+ "log",
3493
+ "object",
3494
+ "postcard",
3495
+ "rustc-demangle",
3496
+ "semver",
3497
+ "serde",
3498
+ "serde_derive",
3499
+ "sha2",
3500
+ "smallvec",
3501
+ "target-lexicon",
3502
+ "wasm-encoder 0.245.1",
3503
+ "wasmparser 0.245.1",
3504
+ "wasmprinter",
3505
+ "wasmtime-internal-component-util",
3506
+ "wasmtime-internal-core",
3507
+ ]
3508
+
3509
+ [[package]]
3510
+ name = "wasmtime-internal-cache"
3511
+ version = "43.0.2"
3512
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3513
+ checksum = "4ed398988226d7aa0505ac6bb576e09532ad722d702ec4e66365d78ed695c95f"
3514
+ dependencies = [
3515
+ "base64",
3516
+ "directories-next",
3517
+ "log",
3518
+ "postcard",
3519
+ "rustix 1.1.4",
3520
+ "serde",
3521
+ "serde_derive",
3522
+ "sha2",
3523
+ "toml 0.9.12+spec-1.1.0",
3524
+ "wasmtime-environ",
3525
+ "windows-sys 0.61.2",
3526
+ "zstd",
3527
+ ]
3528
+
3529
+ [[package]]
3530
+ name = "wasmtime-internal-component-macro"
3531
+ version = "43.0.2"
3532
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3533
+ checksum = "ae5ec9fff073ff13b81732d56a9515d761c245750bcda09093827f84130ebc25"
3534
+ dependencies = [
3535
+ "anyhow",
3536
+ "proc-macro2",
3537
+ "quote",
3538
+ "syn",
3539
+ "wasmtime-internal-component-util",
3540
+ "wasmtime-internal-wit-bindgen",
3541
+ "wit-parser 0.245.1",
3542
+ ]
3543
+
3544
+ [[package]]
3545
+ name = "wasmtime-internal-component-util"
3546
+ version = "43.0.2"
3547
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3548
+ checksum = "935d9ab293ba27d1ec9aa7bc1b3a43993dbe961af2a8f23f90a11e1331b4c13f"
3549
+
3550
+ [[package]]
3551
+ name = "wasmtime-internal-core"
3552
+ version = "43.0.2"
3553
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3554
+ checksum = "9a3820b174f477d2a7083209d1ad5353fcdb11eaea434b2137b8681029460dd3"
3555
+ dependencies = [
3556
+ "anyhow",
3557
+ "hashbrown 0.16.1",
3558
+ "libm",
3559
+ "serde",
3560
+ ]
3561
+
3562
+ [[package]]
3563
+ name = "wasmtime-internal-cranelift"
3564
+ version = "43.0.2"
3565
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3566
+ checksum = "d1679d205caf9766c6aa309d45bb3e7c634d7725e3164404df33824b9f7c4fb7"
3567
+ dependencies = [
3568
+ "cfg-if",
3569
+ "cranelift-codegen",
3570
+ "cranelift-control",
3571
+ "cranelift-entity",
3572
+ "cranelift-frontend",
3573
+ "cranelift-native",
3574
+ "gimli",
3575
+ "itertools",
3576
+ "log",
3577
+ "object",
3578
+ "pulley-interpreter",
3579
+ "smallvec",
3580
+ "target-lexicon",
3581
+ "thiserror 2.0.18",
3582
+ "wasmparser 0.245.1",
3583
+ "wasmtime-environ",
3584
+ "wasmtime-internal-core",
3585
+ "wasmtime-internal-unwinder",
3586
+ "wasmtime-internal-versioned-export-macros",
3587
+ ]
3588
+
3589
+ [[package]]
3590
+ name = "wasmtime-internal-fiber"
3591
+ version = "43.0.2"
3592
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3593
+ checksum = "f1e505254058be5b0df458d670ee42d9eafe2349d04c1296e9dc01071dc20a85"
3594
+ dependencies = [
3595
+ "cc",
3596
+ "cfg-if",
3597
+ "libc",
3598
+ "rustix 1.1.4",
3599
+ "wasmtime-environ",
3600
+ "wasmtime-internal-versioned-export-macros",
3601
+ "windows-sys 0.61.2",
3602
+ ]
3603
+
3604
+ [[package]]
3605
+ name = "wasmtime-internal-jit-debug"
3606
+ version = "43.0.2"
3607
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3608
+ checksum = "1c2e05b345f1773e59c20e6ad7298fd6857cdea245023d88bb659c96d8f0ea72"
3609
+ dependencies = [
3610
+ "cc",
3611
+ "object",
3612
+ "rustix 1.1.4",
3613
+ "wasmtime-internal-versioned-export-macros",
3614
+ ]
3615
+
3616
+ [[package]]
3617
+ name = "wasmtime-internal-jit-icache-coherence"
3618
+ version = "43.0.2"
3619
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3620
+ checksum = "b86701b234a4643e3f111869aa792b3a05a06e02d486ee9cb6c04dae16b52dab"
3621
+ dependencies = [
3622
+ "cfg-if",
3623
+ "libc",
3624
+ "wasmtime-internal-core",
3625
+ "windows-sys 0.61.2",
3626
+ ]
3627
+
3628
+ [[package]]
3629
+ name = "wasmtime-internal-unwinder"
3630
+ version = "43.0.2"
3631
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3632
+ checksum = "f63558d801beb83dde9b336eb4ae049019aee26627926edb32cd119d7e4c83cd"
3633
+ dependencies = [
3634
+ "cfg-if",
3635
+ "cranelift-codegen",
3636
+ "log",
3637
+ "object",
3638
+ "wasmtime-environ",
3639
+ ]
3640
+
3641
+ [[package]]
3642
+ name = "wasmtime-internal-versioned-export-macros"
3643
+ version = "43.0.2"
3644
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3645
+ checksum = "737c4d956fc3a848541a064afb683dd2771132a6b125be5baaf95c4379aa47df"
3646
+ dependencies = [
3647
+ "proc-macro2",
3648
+ "quote",
3649
+ "syn",
3650
+ ]
3651
+
3652
+ [[package]]
3653
+ name = "wasmtime-internal-winch"
3654
+ version = "43.0.2"
3655
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3656
+ checksum = "f599b79545e3bba0b7913406055ebede5bb0dabee9ba2015ef25a9f4c9f47807"
3657
+ dependencies = [
3658
+ "cranelift-codegen",
3659
+ "gimli",
3660
+ "log",
3661
+ "object",
3662
+ "target-lexicon",
3663
+ "wasmparser 0.245.1",
3664
+ "wasmtime-environ",
3665
+ "wasmtime-internal-cranelift",
3666
+ "winch-codegen",
3667
+ ]
3668
+
3669
+ [[package]]
3670
+ name = "wasmtime-internal-wit-bindgen"
3671
+ version = "43.0.2"
3672
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3673
+ checksum = "2192a77a00b9a67800c2b4e1c70fb6abca79d6b529e53a2ef9dcdcc36090330d"
3674
+ dependencies = [
3675
+ "anyhow",
3676
+ "bitflags",
3677
+ "heck",
3678
+ "indexmap",
3679
+ "wit-parser 0.245.1",
3680
+ ]
3681
+
3682
+ [[package]]
3683
+ name = "wasmtime-wasi"
3684
+ version = "43.0.2"
3685
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3686
+ checksum = "00c7daf53ba2f64aa089f47d9a54bec654a45b7b1b55660efecfb09a2e6cfbcf"
3687
+ dependencies = [
3688
+ "async-trait",
3689
+ "bitflags",
3690
+ "bytes",
3691
+ "cap-fs-ext",
3692
+ "cap-net-ext",
3693
+ "cap-rand",
3694
+ "cap-std",
3695
+ "cap-time-ext",
3696
+ "fs-set-times",
3697
+ "futures",
3698
+ "io-extras",
3699
+ "io-lifetimes",
3700
+ "rustix 1.1.4",
3701
+ "system-interface",
3702
+ "thiserror 2.0.18",
3703
+ "tokio",
3704
+ "tracing",
3705
+ "url",
3706
+ "wasmtime",
3707
+ "wasmtime-wasi-io",
3708
+ "wiggle",
3709
+ "windows-sys 0.61.2",
3710
+ ]
3711
+
3712
+ [[package]]
3713
+ name = "wasmtime-wasi-io"
3714
+ version = "43.0.2"
3715
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3716
+ checksum = "c2c9c6cd3daf62a4fb75ac4742c976fee1939686ffe461a366ce6446c58a58a0"
3717
+ dependencies = [
3718
+ "async-trait",
3719
+ "bytes",
3720
+ "futures",
3721
+ "tracing",
3722
+ "wasmtime",
3723
+ ]
3724
+
3725
+ [[package]]
3726
+ name = "wast"
3727
+ version = "35.0.2"
3728
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3729
+ checksum = "2ef140f1b49946586078353a453a1d28ba90adfc54dde75710bc1931de204d68"
3730
+ dependencies = [
3731
+ "leb128",
3732
+ ]
3733
+
3734
+ [[package]]
3735
+ name = "wast"
3736
+ version = "251.0.0"
3737
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3738
+ checksum = "5cc7467dda0a96142eb2c980329dfb62480b1e1d3622fdeb1a44e2bca6ceed74"
3739
+ dependencies = [
3740
+ "bumpalo",
3741
+ "leb128fmt",
3742
+ "memchr",
3743
+ "unicode-width 0.2.2",
3744
+ "wasm-encoder 0.251.0",
3745
+ ]
3746
+
3747
+ [[package]]
3748
+ name = "wat"
3749
+ version = "1.251.0"
3750
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3751
+ checksum = "81b1086c9e85b95bd6a229a928bc6c6d0662e42af0250c88d067b418831ea4d4"
3752
+ dependencies = [
3753
+ "wast 251.0.0",
3754
+ ]
3755
+
3756
+ [[package]]
3757
+ name = "web-sys"
3758
+ version = "0.3.99"
3759
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3760
+ checksum = "6d621441cfc37b84979402712047321980c178f299193a3589d05b99e8763436"
3761
+ dependencies = [
3762
+ "js-sys",
3763
+ "wasm-bindgen",
3764
+ ]
3765
+
3766
+ [[package]]
3767
+ name = "web-time"
3768
+ version = "1.1.0"
3769
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3770
+ checksum = "5a6580f308b1fad9207618087a65c04e7a10bc77e02c8e84e9b00dd4b12fa0bb"
3771
+ dependencies = [
3772
+ "js-sys",
3773
+ "wasm-bindgen",
3774
+ ]
3775
+
3776
+ [[package]]
3777
+ name = "webpki-roots"
3778
+ version = "1.0.7"
3779
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3780
+ checksum = "52f5ee44c96cf55f1b349600768e3ece3a8f26010c05265ab73f945bb1a2eb9d"
3781
+ dependencies = [
3782
+ "rustls-pki-types",
3783
+ ]
3784
+
3785
+ [[package]]
3786
+ name = "wiggle"
3787
+ version = "43.0.2"
3788
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3789
+ checksum = "9c8cfd3db2f05619c6f36f257d84327c11546e28d61e3a1c1220aaad553bc4b0"
3790
+ dependencies = [
3791
+ "bitflags",
3792
+ "thiserror 2.0.18",
3793
+ "tracing",
3794
+ "wasmtime",
3795
+ "wasmtime-environ",
3796
+ "wiggle-macro",
3797
+ ]
3798
+
3799
+ [[package]]
3800
+ name = "wiggle-generate"
3801
+ version = "43.0.2"
3802
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3803
+ checksum = "4bd7a197903e5b4ff5e13aef9c891960d71e92073600ecf4c86c7e795ac1c803"
3804
+ dependencies = [
3805
+ "heck",
3806
+ "proc-macro2",
3807
+ "quote",
3808
+ "syn",
3809
+ "wasmtime-environ",
3810
+ "witx",
3811
+ ]
3812
+
3813
+ [[package]]
3814
+ name = "wiggle-macro"
3815
+ version = "43.0.2"
3816
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3817
+ checksum = "6410b86fcec207070d9372b215d3470bad67215e6bbac46981a16999c4abbc28"
3818
+ dependencies = [
3819
+ "proc-macro2",
3820
+ "quote",
3821
+ "syn",
3822
+ "wiggle-generate",
3823
+ ]
3824
+
3825
+ [[package]]
3826
+ name = "winapi"
3827
+ version = "0.3.9"
3828
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3829
+ checksum = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419"
3830
+ dependencies = [
3831
+ "winapi-i686-pc-windows-gnu",
3832
+ "winapi-x86_64-pc-windows-gnu",
3833
+ ]
3834
+
3835
+ [[package]]
3836
+ name = "winapi-i686-pc-windows-gnu"
3837
+ version = "0.4.0"
3838
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3839
+ checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6"
3840
+
3841
+ [[package]]
3842
+ name = "winapi-util"
3843
+ version = "0.1.11"
3844
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3845
+ checksum = "c2a7b1c03c876122aa43f3020e6c3c3ee5c05081c9a00739faf7503aeba10d22"
3846
+ dependencies = [
3847
+ "windows-sys 0.61.2",
3848
+ ]
3849
+
3850
+ [[package]]
3851
+ name = "winapi-x86_64-pc-windows-gnu"
3852
+ version = "0.4.0"
3853
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3854
+ checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f"
3855
+
3856
+ [[package]]
3857
+ name = "winch-codegen"
3858
+ version = "43.0.2"
3859
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3860
+ checksum = "52dbb0cf07b0dfe7b7a1ca8efb8f94ba98bd0fb144c411ea1665c78f0449e958"
3861
+ dependencies = [
3862
+ "cranelift-assembler-x64",
3863
+ "cranelift-codegen",
3864
+ "gimli",
3865
+ "regalloc2",
3866
+ "smallvec",
3867
+ "target-lexicon",
3868
+ "thiserror 2.0.18",
3869
+ "wasmparser 0.245.1",
3870
+ "wasmtime-environ",
3871
+ "wasmtime-internal-core",
3872
+ "wasmtime-internal-cranelift",
3873
+ ]
3874
+
3875
+ [[package]]
3876
+ name = "windows-core"
3877
+ version = "0.62.2"
3878
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3879
+ checksum = "b8e83a14d34d0623b51dce9581199302a221863196a1dde71a7663a4c2be9deb"
3880
+ dependencies = [
3881
+ "windows-implement",
3882
+ "windows-interface",
3883
+ "windows-link",
3884
+ "windows-result",
3885
+ "windows-strings",
3886
+ ]
3887
+
3888
+ [[package]]
3889
+ name = "windows-implement"
3890
+ version = "0.60.2"
3891
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3892
+ checksum = "053e2e040ab57b9dc951b72c264860db7eb3b0200ba345b4e4c3b14f67855ddf"
3893
+ dependencies = [
3894
+ "proc-macro2",
3895
+ "quote",
3896
+ "syn",
3897
+ ]
3898
+
3899
+ [[package]]
3900
+ name = "windows-interface"
3901
+ version = "0.59.3"
3902
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3903
+ checksum = "3f316c4a2570ba26bbec722032c4099d8c8bc095efccdc15688708623367e358"
3904
+ dependencies = [
3905
+ "proc-macro2",
3906
+ "quote",
3907
+ "syn",
3908
+ ]
3909
+
3910
+ [[package]]
3911
+ name = "windows-link"
3912
+ version = "0.2.1"
3913
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3914
+ checksum = "f0805222e57f7521d6a62e36fa9163bc891acd422f971defe97d64e70d0a4fe5"
3915
+
3916
+ [[package]]
3917
+ name = "windows-result"
3918
+ version = "0.4.1"
3919
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3920
+ checksum = "7781fa89eaf60850ac3d2da7af8e5242a5ea78d1a11c49bf2910bb5a73853eb5"
3921
+ dependencies = [
3922
+ "windows-link",
3923
+ ]
3924
+
3925
+ [[package]]
3926
+ name = "windows-strings"
3927
+ version = "0.5.1"
3928
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3929
+ checksum = "7837d08f69c77cf6b07689544538e017c1bfcf57e34b4c0ff58e6c2cd3b37091"
3930
+ dependencies = [
3931
+ "windows-link",
3932
+ ]
3933
+
3934
+ [[package]]
3935
+ name = "windows-sys"
3936
+ version = "0.52.0"
3937
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3938
+ checksum = "282be5f36a8ce781fad8c8ae18fa3f9beff57ec1b52cb3de0789201425d9a33d"
3939
+ dependencies = [
3940
+ "windows-targets 0.52.6",
3941
+ ]
3942
+
3943
+ [[package]]
3944
+ name = "windows-sys"
3945
+ version = "0.59.0"
3946
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3947
+ checksum = "1e38bc4d79ed67fd075bcc251a1c39b32a1776bbe92e5bef1f0bf1f8c531853b"
3948
+ dependencies = [
3949
+ "windows-targets 0.52.6",
3950
+ ]
3951
+
3952
+ [[package]]
3953
+ name = "windows-sys"
3954
+ version = "0.60.2"
3955
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3956
+ checksum = "f2f500e4d28234f72040990ec9d39e3a6b950f9f22d3dba18416c35882612bcb"
3957
+ dependencies = [
3958
+ "windows-targets 0.53.5",
3959
+ ]
3960
+
3961
+ [[package]]
3962
+ name = "windows-sys"
3963
+ version = "0.61.2"
3964
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3965
+ checksum = "ae137229bcbd6cdf0f7b80a31df61766145077ddf49416a728b02cb3921ff3fc"
3966
+ dependencies = [
3967
+ "windows-link",
3968
+ ]
3969
+
3970
+ [[package]]
3971
+ name = "windows-targets"
3972
+ version = "0.52.6"
3973
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3974
+ checksum = "9b724f72796e036ab90c1021d4780d4d3d648aca59e491e6b98e725b84e99973"
3975
+ dependencies = [
3976
+ "windows_aarch64_gnullvm 0.52.6",
3977
+ "windows_aarch64_msvc 0.52.6",
3978
+ "windows_i686_gnu 0.52.6",
3979
+ "windows_i686_gnullvm 0.52.6",
3980
+ "windows_i686_msvc 0.52.6",
3981
+ "windows_x86_64_gnu 0.52.6",
3982
+ "windows_x86_64_gnullvm 0.52.6",
3983
+ "windows_x86_64_msvc 0.52.6",
3984
+ ]
3985
+
3986
+ [[package]]
3987
+ name = "windows-targets"
3988
+ version = "0.53.5"
3989
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3990
+ checksum = "4945f9f551b88e0d65f3db0bc25c33b8acea4d9e41163edf90dcd0b19f9069f3"
3991
+ dependencies = [
3992
+ "windows-link",
3993
+ "windows_aarch64_gnullvm 0.53.1",
3994
+ "windows_aarch64_msvc 0.53.1",
3995
+ "windows_i686_gnu 0.53.1",
3996
+ "windows_i686_gnullvm 0.53.1",
3997
+ "windows_i686_msvc 0.53.1",
3998
+ "windows_x86_64_gnu 0.53.1",
3999
+ "windows_x86_64_gnullvm 0.53.1",
4000
+ "windows_x86_64_msvc 0.53.1",
4001
+ ]
4002
+
4003
+ [[package]]
4004
+ name = "windows_aarch64_gnullvm"
4005
+ version = "0.52.6"
4006
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4007
+ checksum = "32a4622180e7a0ec044bb555404c800bc9fd9ec262ec147edd5989ccd0c02cd3"
4008
+
4009
+ [[package]]
4010
+ name = "windows_aarch64_gnullvm"
4011
+ version = "0.53.1"
4012
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4013
+ checksum = "a9d8416fa8b42f5c947f8482c43e7d89e73a173cead56d044f6a56104a6d1b53"
4014
+
4015
+ [[package]]
4016
+ name = "windows_aarch64_msvc"
4017
+ version = "0.52.6"
4018
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4019
+ checksum = "09ec2a7bb152e2252b53fa7803150007879548bc709c039df7627cabbd05d469"
4020
+
4021
+ [[package]]
4022
+ name = "windows_aarch64_msvc"
4023
+ version = "0.53.1"
4024
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4025
+ checksum = "b9d782e804c2f632e395708e99a94275910eb9100b2114651e04744e9b125006"
4026
+
4027
+ [[package]]
4028
+ name = "windows_i686_gnu"
4029
+ version = "0.52.6"
4030
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4031
+ checksum = "8e9b5ad5ab802e97eb8e295ac6720e509ee4c243f69d781394014ebfe8bbfa0b"
4032
+
4033
+ [[package]]
4034
+ name = "windows_i686_gnu"
4035
+ version = "0.53.1"
4036
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4037
+ checksum = "960e6da069d81e09becb0ca57a65220ddff016ff2d6af6a223cf372a506593a3"
4038
+
4039
+ [[package]]
4040
+ name = "windows_i686_gnullvm"
4041
+ version = "0.52.6"
4042
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4043
+ checksum = "0eee52d38c090b3caa76c563b86c3a4bd71ef1a819287c19d586d7334ae8ed66"
4044
+
4045
+ [[package]]
4046
+ name = "windows_i686_gnullvm"
4047
+ version = "0.53.1"
4048
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4049
+ checksum = "fa7359d10048f68ab8b09fa71c3daccfb0e9b559aed648a8f95469c27057180c"
4050
+
4051
+ [[package]]
4052
+ name = "windows_i686_msvc"
4053
+ version = "0.52.6"
4054
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4055
+ checksum = "240948bc05c5e7c6dabba28bf89d89ffce3e303022809e73deaefe4f6ec56c66"
4056
+
4057
+ [[package]]
4058
+ name = "windows_i686_msvc"
4059
+ version = "0.53.1"
4060
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4061
+ checksum = "1e7ac75179f18232fe9c285163565a57ef8d3c89254a30685b57d83a38d326c2"
4062
+
4063
+ [[package]]
4064
+ name = "windows_x86_64_gnu"
4065
+ version = "0.52.6"
4066
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4067
+ checksum = "147a5c80aabfbf0c7d901cb5895d1de30ef2907eb21fbbab29ca94c5b08b1a78"
4068
+
4069
+ [[package]]
4070
+ name = "windows_x86_64_gnu"
4071
+ version = "0.53.1"
4072
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4073
+ checksum = "9c3842cdd74a865a8066ab39c8a7a473c0778a3f29370b5fd6b4b9aa7df4a499"
4074
+
4075
+ [[package]]
4076
+ name = "windows_x86_64_gnullvm"
4077
+ version = "0.52.6"
4078
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4079
+ checksum = "24d5b23dc417412679681396f2b49f3de8c1473deb516bd34410872eff51ed0d"
4080
+
4081
+ [[package]]
4082
+ name = "windows_x86_64_gnullvm"
4083
+ version = "0.53.1"
4084
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4085
+ checksum = "0ffa179e2d07eee8ad8f57493436566c7cc30ac536a3379fdf008f47f6bb7ae1"
4086
+
4087
+ [[package]]
4088
+ name = "windows_x86_64_msvc"
4089
+ version = "0.52.6"
4090
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4091
+ checksum = "589f6da84c646204747d1270a2a5661ea66ed1cced2631d546fdfb155959f9ec"
4092
+
4093
+ [[package]]
4094
+ name = "windows_x86_64_msvc"
4095
+ version = "0.53.1"
4096
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4097
+ checksum = "d6bbff5f0aada427a1e5a6da5f1f98158182f26556f345ac9e04d36d0ebed650"
4098
+
4099
+ [[package]]
4100
+ name = "winnow"
4101
+ version = "0.7.15"
4102
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4103
+ checksum = "df79d97927682d2fd8adb29682d1140b343be4ac0f08fd68b7765d9c059d3945"
4104
+ dependencies = [
4105
+ "memchr",
4106
+ ]
4107
+
4108
+ [[package]]
4109
+ name = "winnow"
4110
+ version = "1.0.3"
4111
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4112
+ checksum = "0592e1c9d151f854e6fd382574c3a0855250e1d9b2f99d9281c6e6391af352f1"
4113
+
4114
+ [[package]]
4115
+ name = "winx"
4116
+ version = "0.36.4"
4117
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4118
+ checksum = "3f3fd376f71958b862e7afb20cfe5a22830e1963462f3a17f49d82a6c1d1f42d"
4119
+ dependencies = [
4120
+ "bitflags",
4121
+ "windows-sys 0.59.0",
4122
+ ]
4123
+
4124
+ [[package]]
4125
+ name = "wit-bindgen"
4126
+ version = "0.46.0"
4127
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4128
+ checksum = "f17a85883d4e6d00e8a97c586de764dabcc06133f7f1d55dce5cdc070ad7fe59"
4129
+ dependencies = [
4130
+ "bitflags",
4131
+ "futures",
4132
+ "once_cell",
4133
+ "wit-bindgen-rust-macro 0.46.0",
4134
+ ]
4135
+
4136
+ [[package]]
4137
+ name = "wit-bindgen"
4138
+ version = "0.51.0"
4139
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4140
+ checksum = "d7249219f66ced02969388cf2bb044a09756a083d0fab1e566056b04d9fbcaa5"
4141
+ dependencies = [
4142
+ "wit-bindgen-rust-macro 0.51.0",
4143
+ ]
4144
+
4145
+ [[package]]
4146
+ name = "wit-bindgen"
4147
+ version = "0.57.1"
4148
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4149
+ checksum = "1ebf944e87a7c253233ad6766e082e3cd714b5d03812acc24c318f549614536e"
4150
+
4151
+ [[package]]
4152
+ name = "wit-bindgen-core"
4153
+ version = "0.46.0"
4154
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4155
+ checksum = "cabd629f94da277abc739c71353397046401518efb2c707669f805205f0b9890"
4156
+ dependencies = [
4157
+ "anyhow",
4158
+ "heck",
4159
+ "wit-parser 0.239.0",
4160
+ ]
4161
+
4162
+ [[package]]
4163
+ name = "wit-bindgen-core"
4164
+ version = "0.51.0"
4165
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4166
+ checksum = "ea61de684c3ea68cb082b7a88508a8b27fcc8b797d738bfc99a82facf1d752dc"
4167
+ dependencies = [
4168
+ "anyhow",
4169
+ "heck",
4170
+ "wit-parser 0.244.0",
4171
+ ]
4172
+
4173
+ [[package]]
4174
+ name = "wit-bindgen-core"
4175
+ version = "0.53.1"
4176
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4177
+ checksum = "3deda4b7e9f522d994906f6e6e0fc67965ea8660306940a776b76732be8f3933"
4178
+ dependencies = [
4179
+ "anyhow",
4180
+ "heck",
4181
+ "wit-parser 0.245.1",
4182
+ ]
4183
+
4184
+ [[package]]
4185
+ name = "wit-bindgen-rust"
4186
+ version = "0.46.0"
4187
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4188
+ checksum = "9a4232e841089fa5f3c4fc732a92e1c74e1a3958db3b12f1de5934da2027f1f4"
4189
+ dependencies = [
4190
+ "anyhow",
4191
+ "heck",
4192
+ "indexmap",
4193
+ "prettyplease",
4194
+ "syn",
4195
+ "wasm-metadata 0.239.0",
4196
+ "wit-bindgen-core 0.46.0",
4197
+ "wit-component 0.239.0",
4198
+ ]
4199
+
4200
+ [[package]]
4201
+ name = "wit-bindgen-rust"
4202
+ version = "0.51.0"
4203
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4204
+ checksum = "b7c566e0f4b284dd6561c786d9cb0142da491f46a9fbed79ea69cdad5db17f21"
4205
+ dependencies = [
4206
+ "anyhow",
4207
+ "heck",
4208
+ "indexmap",
4209
+ "prettyplease",
4210
+ "syn",
4211
+ "wasm-metadata 0.244.0",
4212
+ "wit-bindgen-core 0.51.0",
4213
+ "wit-component 0.244.0",
4214
+ ]
4215
+
4216
+ [[package]]
4217
+ name = "wit-bindgen-rust-macro"
4218
+ version = "0.46.0"
4219
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4220
+ checksum = "1e0d4698c2913d8d9c2b220d116409c3f51a7aa8d7765151b886918367179ee9"
4221
+ dependencies = [
4222
+ "anyhow",
4223
+ "prettyplease",
4224
+ "proc-macro2",
4225
+ "quote",
4226
+ "syn",
4227
+ "wit-bindgen-core 0.46.0",
4228
+ "wit-bindgen-rust 0.46.0",
4229
+ ]
4230
+
4231
+ [[package]]
4232
+ name = "wit-bindgen-rust-macro"
4233
+ version = "0.51.0"
4234
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4235
+ checksum = "0c0f9bfd77e6a48eccf51359e3ae77140a7f50b1e2ebfe62422d8afdaffab17a"
4236
+ dependencies = [
4237
+ "anyhow",
4238
+ "prettyplease",
4239
+ "proc-macro2",
4240
+ "quote",
4241
+ "syn",
4242
+ "wit-bindgen-core 0.51.0",
4243
+ "wit-bindgen-rust 0.51.0",
4244
+ ]
4245
+
4246
+ [[package]]
4247
+ name = "wit-component"
4248
+ version = "0.219.2"
4249
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4250
+ checksum = "4b8479a29d81c063264c3ab89d496787ef78f8345317a2dcf6dece0f129e5fcd"
4251
+ dependencies = [
4252
+ "anyhow",
4253
+ "bitflags",
4254
+ "indexmap",
4255
+ "log",
4256
+ "serde",
4257
+ "serde_derive",
4258
+ "serde_json",
4259
+ "wasm-encoder 0.219.2",
4260
+ "wasm-metadata 0.219.2",
4261
+ "wasmparser 0.219.2",
4262
+ "wit-parser 0.219.2",
4263
+ ]
4264
+
4265
+ [[package]]
4266
+ name = "wit-component"
4267
+ version = "0.239.0"
4268
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4269
+ checksum = "88a866b19dba2c94d706ec58c92a4c62ab63e482b4c935d2a085ac94caecb136"
4270
+ dependencies = [
4271
+ "anyhow",
4272
+ "bitflags",
4273
+ "indexmap",
4274
+ "log",
4275
+ "serde",
4276
+ "serde_derive",
4277
+ "serde_json",
4278
+ "wasm-encoder 0.239.0",
4279
+ "wasm-metadata 0.239.0",
4280
+ "wasmparser 0.239.0",
4281
+ "wit-parser 0.239.0",
4282
+ ]
4283
+
4284
+ [[package]]
4285
+ name = "wit-component"
4286
+ version = "0.244.0"
4287
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4288
+ checksum = "9d66ea20e9553b30172b5e831994e35fbde2d165325bec84fc43dbf6f4eb9cb2"
4289
+ dependencies = [
4290
+ "anyhow",
4291
+ "bitflags",
4292
+ "indexmap",
4293
+ "log",
4294
+ "serde",
4295
+ "serde_derive",
4296
+ "serde_json",
4297
+ "wasm-encoder 0.244.0",
4298
+ "wasm-metadata 0.244.0",
4299
+ "wasmparser 0.244.0",
4300
+ "wit-parser 0.244.0",
4301
+ ]
4302
+
4303
+ [[package]]
4304
+ name = "wit-component"
4305
+ version = "0.245.1"
4306
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4307
+ checksum = "4894f10d2d5cbc17c77e91f86a1e48e191a788da4425293b55c98b44ba3fcac9"
4308
+ dependencies = [
4309
+ "anyhow",
4310
+ "bitflags",
4311
+ "indexmap",
4312
+ "log",
4313
+ "serde",
4314
+ "serde_derive",
4315
+ "serde_json",
4316
+ "wasm-encoder 0.245.1",
4317
+ "wasm-metadata 0.245.1",
4318
+ "wasmparser 0.245.1",
4319
+ "wit-parser 0.245.1",
4320
+ ]
4321
+
4322
+ [[package]]
4323
+ name = "wit-dylib"
4324
+ version = "0.245.1"
4325
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4326
+ checksum = "4cfce934866f549164ec28f91d9b0db4a6e9b4c31f87090cf01504f249e630dc"
4327
+ dependencies = [
4328
+ "anyhow",
4329
+ "indexmap",
4330
+ "wasm-encoder 0.245.1",
4331
+ "wit-parser 0.245.1",
4332
+ ]
4333
+
4334
+ [[package]]
4335
+ name = "wit-parser"
4336
+ version = "0.219.2"
4337
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4338
+ checksum = "ca004bb251010fe956f4a5b9d4bf86b4e415064160dd6669569939e8cbf2504f"
4339
+ dependencies = [
4340
+ "anyhow",
4341
+ "id-arena",
4342
+ "indexmap",
4343
+ "log",
4344
+ "semver",
4345
+ "serde",
4346
+ "serde_derive",
4347
+ "serde_json",
4348
+ "unicode-xid",
4349
+ "wasmparser 0.219.2",
4350
+ ]
4351
+
4352
+ [[package]]
4353
+ name = "wit-parser"
4354
+ version = "0.239.0"
4355
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4356
+ checksum = "55c92c939d667b7bf0c6bf2d1f67196529758f99a2a45a3355cc56964fd5315d"
4357
+ dependencies = [
4358
+ "anyhow",
4359
+ "id-arena",
4360
+ "indexmap",
4361
+ "log",
4362
+ "semver",
4363
+ "serde",
4364
+ "serde_derive",
4365
+ "serde_json",
4366
+ "unicode-xid",
4367
+ "wasmparser 0.239.0",
4368
+ ]
4369
+
4370
+ [[package]]
4371
+ name = "wit-parser"
4372
+ version = "0.244.0"
4373
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4374
+ checksum = "ecc8ac4bc1dc3381b7f59c34f00b67e18f910c2c0f50015669dde7def656a736"
4375
+ dependencies = [
4376
+ "anyhow",
4377
+ "id-arena",
4378
+ "indexmap",
4379
+ "log",
4380
+ "semver",
4381
+ "serde",
4382
+ "serde_derive",
4383
+ "serde_json",
4384
+ "unicode-xid",
4385
+ "wasmparser 0.244.0",
4386
+ ]
4387
+
4388
+ [[package]]
4389
+ name = "wit-parser"
4390
+ version = "0.245.1"
4391
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4392
+ checksum = "330698718e82983499419494dd1e3d7811a457a9bf9f69734e8c5f07a2547929"
4393
+ dependencies = [
4394
+ "anyhow",
4395
+ "hashbrown 0.16.1",
4396
+ "id-arena",
4397
+ "indexmap",
4398
+ "log",
4399
+ "semver",
4400
+ "serde",
4401
+ "serde_derive",
4402
+ "serde_json",
4403
+ "unicode-xid",
4404
+ "wasmparser 0.245.1",
4405
+ ]
4406
+
4407
+ [[package]]
4408
+ name = "witx"
4409
+ version = "0.9.1"
4410
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4411
+ checksum = "e366f27a5cabcddb2706a78296a40b8fcc451e1a6aba2fc1d94b4a01bdaaef4b"
4412
+ dependencies = [
4413
+ "anyhow",
4414
+ "log",
4415
+ "thiserror 1.0.69",
4416
+ "wast 35.0.2",
4417
+ ]
4418
+
4419
+ [[package]]
4420
+ name = "writeable"
4421
+ version = "0.6.3"
4422
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4423
+ checksum = "1ffae5123b2d3fc086436f8834ae3ab053a283cfac8fe0a0b8eaae044768a4c4"
4424
+
4425
+ [[package]]
4426
+ name = "xattr"
4427
+ version = "1.6.1"
4428
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4429
+ checksum = "32e45ad4206f6d2479085147f02bc2ef834ac85886624a23575ae137c8aa8156"
4430
+ dependencies = [
4431
+ "libc",
4432
+ "rustix 1.1.4",
4433
+ ]
4434
+
4435
+ [[package]]
4436
+ name = "yoke"
4437
+ version = "0.8.2"
4438
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4439
+ checksum = "abe8c5fda708d9ca3df187cae8bfb9ceda00dd96231bed36e445a1a48e66f9ca"
4440
+ dependencies = [
4441
+ "stable_deref_trait",
4442
+ "yoke-derive",
4443
+ "zerofrom",
4444
+ ]
4445
+
4446
+ [[package]]
4447
+ name = "yoke-derive"
4448
+ version = "0.8.2"
4449
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4450
+ checksum = "de844c262c8848816172cef550288e7dc6c7b7814b4ee56b3e1553f275f1858e"
4451
+ dependencies = [
4452
+ "proc-macro2",
4453
+ "quote",
4454
+ "syn",
4455
+ "synstructure",
4456
+ ]
4457
+
4458
+ [[package]]
4459
+ name = "zerocopy"
4460
+ version = "0.8.50"
4461
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4462
+ checksum = "3b065d4f0e55f82fae73202e189638116a87c55ab6b8e6c2721e13dd9d854ad1"
4463
+ dependencies = [
4464
+ "zerocopy-derive",
4465
+ ]
4466
+
4467
+ [[package]]
4468
+ name = "zerocopy-derive"
4469
+ version = "0.8.50"
4470
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4471
+ checksum = "0b631b19d36a892ab55420c92dbc83ccd79274f25be714855d3074aa71cab639"
4472
+ dependencies = [
4473
+ "proc-macro2",
4474
+ "quote",
4475
+ "syn",
4476
+ ]
4477
+
4478
+ [[package]]
4479
+ name = "zerofrom"
4480
+ version = "0.1.8"
4481
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4482
+ checksum = "0ec05a11813ea801ff6d75110ad09cd0824ddba17dfe17128ea0d5f68e6c5272"
4483
+ dependencies = [
4484
+ "zerofrom-derive",
4485
+ ]
4486
+
4487
+ [[package]]
4488
+ name = "zerofrom-derive"
4489
+ version = "0.1.7"
4490
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4491
+ checksum = "11532158c46691caf0f2593ea8358fed6bbf68a0315e80aae9bd41fbade684a1"
4492
+ dependencies = [
4493
+ "proc-macro2",
4494
+ "quote",
4495
+ "syn",
4496
+ "synstructure",
4497
+ ]
4498
+
4499
+ [[package]]
4500
+ name = "zeroize"
4501
+ version = "1.8.2"
4502
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4503
+ checksum = "b97154e67e32c85465826e8bcc1c59429aaaf107c1e4a9e53c8d8ccd5eff88d0"
4504
+
4505
+ [[package]]
4506
+ name = "zerotrie"
4507
+ version = "0.2.4"
4508
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4509
+ checksum = "0f9152d31db0792fa83f70fb2f83148effb5c1f5b8c7686c3459e361d9bc20bf"
4510
+ dependencies = [
4511
+ "displaydoc",
4512
+ "yoke",
4513
+ "zerofrom",
4514
+ ]
4515
+
4516
+ [[package]]
4517
+ name = "zerovec"
4518
+ version = "0.11.6"
4519
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4520
+ checksum = "90f911cbc359ab6af17377d242225f4d75119aec87ea711a880987b18cd7b239"
4521
+ dependencies = [
4522
+ "yoke",
4523
+ "zerofrom",
4524
+ "zerovec-derive",
4525
+ ]
4526
+
4527
+ [[package]]
4528
+ name = "zerovec-derive"
4529
+ version = "0.11.3"
4530
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4531
+ checksum = "625dc425cab0dca6dc3c3319506e6593dcb08a9f387ea3b284dbd52a92c40555"
4532
+ dependencies = [
4533
+ "proc-macro2",
4534
+ "quote",
4535
+ "syn",
4536
+ ]
4537
+
4538
+ [[package]]
4539
+ name = "zmij"
4540
+ version = "1.0.21"
4541
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4542
+ checksum = "b8848ee67ecc8aedbaf3e4122217aff892639231befc6a1b58d29fff4c2cabaa"
4543
+
4544
+ [[package]]
4545
+ name = "zstd"
4546
+ version = "0.13.3"
4547
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4548
+ checksum = "e91ee311a569c327171651566e07972200e76fcfe2242a4fa446149a3881c08a"
4549
+ dependencies = [
4550
+ "zstd-safe",
4551
+ ]
4552
+
4553
+ [[package]]
4554
+ name = "zstd-safe"
4555
+ version = "7.2.4"
4556
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4557
+ checksum = "8f49c4d5f0abb602a93fb8736af2a4f4dd9512e36f7f570d66e65ff867ed3b9d"
4558
+ dependencies = [
4559
+ "zstd-sys",
4560
+ ]
4561
+
4562
+ [[package]]
4563
+ name = "zstd-sys"
4564
+ version = "2.0.16+zstd.1.5.7"
4565
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4566
+ checksum = "91e19ebc2adc8f83e43039e79776e3fda8ca919132d68a1fed6a5faca2683748"
4567
+ dependencies = [
4568
+ "cc",
4569
+ "pkg-config",
4570
+ ]