mustardscript 0.1.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (99) hide show
  1. package/Cargo.lock +1579 -0
  2. package/Cargo.toml +40 -0
  3. package/LICENSE +201 -0
  4. package/README.md +828 -0
  5. package/SECURITY.md +34 -0
  6. package/crates/mustard/Cargo.toml +31 -0
  7. package/crates/mustard/src/cancellation.rs +28 -0
  8. package/crates/mustard/src/diagnostic.rs +145 -0
  9. package/crates/mustard/src/ir.rs +435 -0
  10. package/crates/mustard/src/lib.rs +21 -0
  11. package/crates/mustard/src/limits.rs +22 -0
  12. package/crates/mustard/src/parser/expressions.rs +723 -0
  13. package/crates/mustard/src/parser/mod.rs +115 -0
  14. package/crates/mustard/src/parser/operators.rs +105 -0
  15. package/crates/mustard/src/parser/patterns.rs +123 -0
  16. package/crates/mustard/src/parser/scope.rs +107 -0
  17. package/crates/mustard/src/parser/statements.rs +298 -0
  18. package/crates/mustard/src/parser/tests/acceptance.rs +339 -0
  19. package/crates/mustard/src/parser/tests/mod.rs +2 -0
  20. package/crates/mustard/src/parser/tests/rejections.rs +107 -0
  21. package/crates/mustard/src/runtime/accounting.rs +613 -0
  22. package/crates/mustard/src/runtime/api.rs +192 -0
  23. package/crates/mustard/src/runtime/async_runtime/mod.rs +5 -0
  24. package/crates/mustard/src/runtime/async_runtime/promises.rs +246 -0
  25. package/crates/mustard/src/runtime/async_runtime/reactions.rs +400 -0
  26. package/crates/mustard/src/runtime/async_runtime/scheduler.rs +224 -0
  27. package/crates/mustard/src/runtime/builtins/arrays.rs +1205 -0
  28. package/crates/mustard/src/runtime/builtins/collections.rs +573 -0
  29. package/crates/mustard/src/runtime/builtins/install.rs +501 -0
  30. package/crates/mustard/src/runtime/builtins/intl.rs +553 -0
  31. package/crates/mustard/src/runtime/builtins/mod.rs +25 -0
  32. package/crates/mustard/src/runtime/builtins/objects.rs +405 -0
  33. package/crates/mustard/src/runtime/builtins/primitives.rs +859 -0
  34. package/crates/mustard/src/runtime/builtins/promises.rs +335 -0
  35. package/crates/mustard/src/runtime/builtins/regexp.rs +356 -0
  36. package/crates/mustard/src/runtime/builtins/strings.rs +803 -0
  37. package/crates/mustard/src/runtime/builtins/support.rs +561 -0
  38. package/crates/mustard/src/runtime/bytecode.rs +123 -0
  39. package/crates/mustard/src/runtime/compiler/assignments.rs +690 -0
  40. package/crates/mustard/src/runtime/compiler/bindings.rs +92 -0
  41. package/crates/mustard/src/runtime/compiler/context.rs +46 -0
  42. package/crates/mustard/src/runtime/compiler/control.rs +342 -0
  43. package/crates/mustard/src/runtime/compiler/expressions.rs +372 -0
  44. package/crates/mustard/src/runtime/compiler/mod.rs +173 -0
  45. package/crates/mustard/src/runtime/compiler/statements.rs +459 -0
  46. package/crates/mustard/src/runtime/conversions/boundary.rs +293 -0
  47. package/crates/mustard/src/runtime/conversions/coercions.rs +217 -0
  48. package/crates/mustard/src/runtime/conversions/errors.rs +118 -0
  49. package/crates/mustard/src/runtime/conversions/mod.rs +14 -0
  50. package/crates/mustard/src/runtime/conversions/operators.rs +334 -0
  51. package/crates/mustard/src/runtime/env.rs +355 -0
  52. package/crates/mustard/src/runtime/exceptions.rs +377 -0
  53. package/crates/mustard/src/runtime/gc.rs +595 -0
  54. package/crates/mustard/src/runtime/mod.rs +318 -0
  55. package/crates/mustard/src/runtime/properties.rs +1762 -0
  56. package/crates/mustard/src/runtime/serialization.rs +127 -0
  57. package/crates/mustard/src/runtime/shared.rs +108 -0
  58. package/crates/mustard/src/runtime/snapshot_validation_tests.rs +93 -0
  59. package/crates/mustard/src/runtime/state.rs +652 -0
  60. package/crates/mustard/src/runtime/tests/async_host.rs +104 -0
  61. package/crates/mustard/src/runtime/tests/collections.rs +50 -0
  62. package/crates/mustard/src/runtime/tests/diagnostics.rs +36 -0
  63. package/crates/mustard/src/runtime/tests/exceptions.rs +122 -0
  64. package/crates/mustard/src/runtime/tests/execution.rs +553 -0
  65. package/crates/mustard/src/runtime/tests/gc.rs +533 -0
  66. package/crates/mustard/src/runtime/tests/mod.rs +56 -0
  67. package/crates/mustard/src/runtime/tests/serialization.rs +170 -0
  68. package/crates/mustard/src/runtime/validation/bytecode.rs +484 -0
  69. package/crates/mustard/src/runtime/validation/mod.rs +14 -0
  70. package/crates/mustard/src/runtime/validation/policy.rs +94 -0
  71. package/crates/mustard/src/runtime/validation/snapshot.rs +406 -0
  72. package/crates/mustard/src/runtime/validation/walk.rs +206 -0
  73. package/crates/mustard/src/runtime/vm.rs +1016 -0
  74. package/crates/mustard/src/span.rs +22 -0
  75. package/crates/mustard/src/structured.rs +107 -0
  76. package/crates/mustard-bridge/Cargo.toml +17 -0
  77. package/crates/mustard-bridge/src/codec.rs +46 -0
  78. package/crates/mustard-bridge/src/dto.rs +99 -0
  79. package/crates/mustard-bridge/src/lib.rs +12 -0
  80. package/crates/mustard-bridge/src/operations.rs +142 -0
  81. package/crates/mustard-node/Cargo.toml +24 -0
  82. package/crates/mustard-node/build.rs +3 -0
  83. package/crates/mustard-node/src/lib.rs +236 -0
  84. package/crates/mustard-sidecar/Cargo.toml +21 -0
  85. package/crates/mustard-sidecar/src/lib.rs +134 -0
  86. package/crates/mustard-sidecar/src/main.rs +36 -0
  87. package/dist/index.js +20 -0
  88. package/dist/install.js +117 -0
  89. package/dist/lib/cancellation.js +124 -0
  90. package/dist/lib/errors.js +46 -0
  91. package/dist/lib/executor.js +555 -0
  92. package/dist/lib/policy.js +292 -0
  93. package/dist/lib/progress.js +356 -0
  94. package/dist/lib/runtime.js +109 -0
  95. package/dist/lib/structured.js +286 -0
  96. package/dist/native-loader.js +227 -0
  97. package/index.d.ts +23 -0
  98. package/mustard.d.ts +220 -0
  99. package/package.json +97 -0
package/Cargo.lock ADDED
@@ -0,0 +1,1579 @@
1
+ # This file is automatically @generated by Cargo.
2
+ # It is not intended for manual editing.
3
+ version = 4
4
+
5
+ [[package]]
6
+ name = "aho-corasick"
7
+ version = "1.1.4"
8
+ source = "registry+https://github.com/rust-lang/crates.io-index"
9
+ checksum = "ddd31a130427c27518df266943a5308ed92d4b226cc639f5a8f1002816174301"
10
+ dependencies = [
11
+ "memchr",
12
+ ]
13
+
14
+ [[package]]
15
+ name = "allocator-api2"
16
+ version = "0.2.21"
17
+ source = "registry+https://github.com/rust-lang/crates.io-index"
18
+ checksum = "683d7910e743518b0e34f1186f92494becacb047c7b6bf616c96772180fef923"
19
+
20
+ [[package]]
21
+ name = "anyhow"
22
+ version = "1.0.102"
23
+ source = "registry+https://github.com/rust-lang/crates.io-index"
24
+ checksum = "7f202df86484c868dbad7eaa557ef785d5c66295e41b460ef922eca0723b842c"
25
+
26
+ [[package]]
27
+ name = "autocfg"
28
+ version = "1.5.0"
29
+ source = "registry+https://github.com/rust-lang/crates.io-index"
30
+ checksum = "c08606f8c3cbf4ce6ec8e28fb0014a2c086708fe954eaa885384a6165172e7e8"
31
+
32
+ [[package]]
33
+ name = "base64"
34
+ version = "0.22.1"
35
+ source = "registry+https://github.com/rust-lang/crates.io-index"
36
+ checksum = "72b3254f16251a8381aa12e40e3c4d2f0199f8c6508fbecb9d91f575e0fbb8c6"
37
+
38
+ [[package]]
39
+ name = "bincode"
40
+ version = "1.3.3"
41
+ source = "registry+https://github.com/rust-lang/crates.io-index"
42
+ checksum = "b1f45e9417d87227c7a56d22e471c6206462cba514c7590c09aff4cf6d1ddcad"
43
+ dependencies = [
44
+ "serde",
45
+ ]
46
+
47
+ [[package]]
48
+ name = "bit-set"
49
+ version = "0.8.0"
50
+ source = "registry+https://github.com/rust-lang/crates.io-index"
51
+ checksum = "08807e080ed7f9d5433fa9b275196cfc35414f66a0c79d864dc51a0d825231a3"
52
+ dependencies = [
53
+ "bit-vec",
54
+ ]
55
+
56
+ [[package]]
57
+ name = "bit-vec"
58
+ version = "0.8.0"
59
+ source = "registry+https://github.com/rust-lang/crates.io-index"
60
+ checksum = "5e764a1d40d510daf35e07be9eb06e75770908c27d411ee6c92109c9840eaaf7"
61
+
62
+ [[package]]
63
+ name = "bitflags"
64
+ version = "2.11.0"
65
+ source = "registry+https://github.com/rust-lang/crates.io-index"
66
+ checksum = "843867be96c8daad0d758b57df9392b6d8d271134fce549de6ce169ff98a92af"
67
+
68
+ [[package]]
69
+ name = "block-buffer"
70
+ version = "0.10.4"
71
+ source = "registry+https://github.com/rust-lang/crates.io-index"
72
+ checksum = "3078c7629b62d3f0439517fa394996acacc5cbc91c5a20d8c658e77abd503a71"
73
+ dependencies = [
74
+ "generic-array",
75
+ ]
76
+
77
+ [[package]]
78
+ name = "bytes"
79
+ version = "1.11.1"
80
+ source = "registry+https://github.com/rust-lang/crates.io-index"
81
+ checksum = "1e748733b7cbc798e1434b6ac524f0c1ff2ab456fe201501e6497c8417a4fc33"
82
+
83
+ [[package]]
84
+ name = "castaway"
85
+ version = "0.2.4"
86
+ source = "registry+https://github.com/rust-lang/crates.io-index"
87
+ checksum = "dec551ab6e7578819132c713a93c022a05d60159dc86e7a7050223577484c55a"
88
+ dependencies = [
89
+ "rustversion",
90
+ ]
91
+
92
+ [[package]]
93
+ name = "cfg-if"
94
+ version = "1.0.4"
95
+ source = "registry+https://github.com/rust-lang/crates.io-index"
96
+ checksum = "9330f8b2ff13f34540b44e946ef35111825727b38d33286ef986142615121801"
97
+
98
+ [[package]]
99
+ name = "compact_str"
100
+ version = "0.9.0"
101
+ source = "registry+https://github.com/rust-lang/crates.io-index"
102
+ checksum = "3fdb1325a1cece981e8a296ab8f0f9b63ae357bd0784a9faaf548cc7b480707a"
103
+ dependencies = [
104
+ "castaway",
105
+ "cfg-if",
106
+ "itoa",
107
+ "rustversion",
108
+ "ryu",
109
+ "static_assertions",
110
+ ]
111
+
112
+ [[package]]
113
+ name = "convert_case"
114
+ version = "0.11.0"
115
+ source = "registry+https://github.com/rust-lang/crates.io-index"
116
+ checksum = "affbf0190ed2caf063e3def54ff444b449371d55c58e513a95ab98eca50adb49"
117
+ dependencies = [
118
+ "unicode-segmentation",
119
+ ]
120
+
121
+ [[package]]
122
+ name = "cow-utils"
123
+ version = "0.1.3"
124
+ source = "registry+https://github.com/rust-lang/crates.io-index"
125
+ checksum = "417bef24afe1460300965a25ff4a24b8b45ad011948302ec221e8a0a81eb2c79"
126
+
127
+ [[package]]
128
+ name = "cpufeatures"
129
+ version = "0.2.17"
130
+ source = "registry+https://github.com/rust-lang/crates.io-index"
131
+ checksum = "59ed5838eebb26a2bb2e58f6d5b5316989ae9d08bab10e0e6d103e656d1b0280"
132
+ dependencies = [
133
+ "libc",
134
+ ]
135
+
136
+ [[package]]
137
+ name = "crypto-common"
138
+ version = "0.1.7"
139
+ source = "registry+https://github.com/rust-lang/crates.io-index"
140
+ checksum = "78c8292055d1c1df0cce5d180393dc8cce0abec0a7102adb6c7b1eef6016d60a"
141
+ dependencies = [
142
+ "generic-array",
143
+ "typenum",
144
+ ]
145
+
146
+ [[package]]
147
+ name = "ctor"
148
+ version = "0.8.0"
149
+ source = "registry+https://github.com/rust-lang/crates.io-index"
150
+ checksum = "352d39c2f7bef1d6ad73db6f5160efcaed66d94ef8c6c573a8410c00bf909a98"
151
+ dependencies = [
152
+ "ctor-proc-macro",
153
+ "dtor",
154
+ ]
155
+
156
+ [[package]]
157
+ name = "ctor-proc-macro"
158
+ version = "0.0.7"
159
+ source = "registry+https://github.com/rust-lang/crates.io-index"
160
+ checksum = "52560adf09603e58c9a7ee1fe1dcb95a16927b17c127f0ac02d6e768a0e25bc1"
161
+
162
+ [[package]]
163
+ name = "deranged"
164
+ version = "0.5.8"
165
+ source = "registry+https://github.com/rust-lang/crates.io-index"
166
+ checksum = "7cd812cc2bc1d69d4764bd80df88b4317eaef9e773c75226407d9bc0876b211c"
167
+ dependencies = [
168
+ "powerfmt",
169
+ ]
170
+
171
+ [[package]]
172
+ name = "digest"
173
+ version = "0.10.7"
174
+ source = "registry+https://github.com/rust-lang/crates.io-index"
175
+ checksum = "9ed9a281f7bc9b7576e61468ba615a66a5c8cfdff42420a70aa82701a3b1e292"
176
+ dependencies = [
177
+ "block-buffer",
178
+ "crypto-common",
179
+ "subtle",
180
+ ]
181
+
182
+ [[package]]
183
+ name = "dragonbox_ecma"
184
+ version = "0.1.12"
185
+ source = "registry+https://github.com/rust-lang/crates.io-index"
186
+ checksum = "fd8e701084c37e7ef62d3f9e453b618130cbc0ef3573847785952a3ac3f746bf"
187
+
188
+ [[package]]
189
+ name = "dtor"
190
+ version = "0.3.0"
191
+ source = "registry+https://github.com/rust-lang/crates.io-index"
192
+ checksum = "f1057d6c64987086ff8ed0fd3fbf377a6b7d205cc7715868cd401705f715cbe4"
193
+ dependencies = [
194
+ "dtor-proc-macro",
195
+ ]
196
+
197
+ [[package]]
198
+ name = "dtor-proc-macro"
199
+ version = "0.0.6"
200
+ source = "registry+https://github.com/rust-lang/crates.io-index"
201
+ checksum = "f678cf4a922c215c63e0de95eb1ff08a958a81d47e485cf9da1e27bf6305cfa5"
202
+
203
+ [[package]]
204
+ name = "equivalent"
205
+ version = "1.0.2"
206
+ source = "registry+https://github.com/rust-lang/crates.io-index"
207
+ checksum = "877a4ace8713b0bcf2a4e7eec82529c029f1d0619886d18145fea96c3ffe5c0f"
208
+
209
+ [[package]]
210
+ name = "errno"
211
+ version = "0.3.14"
212
+ source = "registry+https://github.com/rust-lang/crates.io-index"
213
+ checksum = "39cab71617ae0d63f51a36d69f866391735b51691dbda63cf6f96d042b63efeb"
214
+ dependencies = [
215
+ "libc",
216
+ "windows-sys",
217
+ ]
218
+
219
+ [[package]]
220
+ name = "fastrand"
221
+ version = "2.4.1"
222
+ source = "registry+https://github.com/rust-lang/crates.io-index"
223
+ checksum = "9f1f227452a390804cdb637b74a86990f2a7d7ba4b7d5693aac9b4dd6defd8d6"
224
+
225
+ [[package]]
226
+ name = "fnv"
227
+ version = "1.0.7"
228
+ source = "registry+https://github.com/rust-lang/crates.io-index"
229
+ checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1"
230
+
231
+ [[package]]
232
+ name = "foldhash"
233
+ version = "0.1.5"
234
+ source = "registry+https://github.com/rust-lang/crates.io-index"
235
+ checksum = "d9c4f5dac5e15c24eb999c26181a6ca40b39fe946cbe4c263c7209467bc83af2"
236
+
237
+ [[package]]
238
+ name = "futures"
239
+ version = "0.3.32"
240
+ source = "registry+https://github.com/rust-lang/crates.io-index"
241
+ checksum = "8b147ee9d1f6d097cef9ce628cd2ee62288d963e16fb287bd9286455b241382d"
242
+ dependencies = [
243
+ "futures-channel",
244
+ "futures-core",
245
+ "futures-executor",
246
+ "futures-io",
247
+ "futures-sink",
248
+ "futures-task",
249
+ "futures-util",
250
+ ]
251
+
252
+ [[package]]
253
+ name = "futures-channel"
254
+ version = "0.3.32"
255
+ source = "registry+https://github.com/rust-lang/crates.io-index"
256
+ checksum = "07bbe89c50d7a535e539b8c17bc0b49bdb77747034daa8087407d655f3f7cc1d"
257
+ dependencies = [
258
+ "futures-core",
259
+ "futures-sink",
260
+ ]
261
+
262
+ [[package]]
263
+ name = "futures-core"
264
+ version = "0.3.32"
265
+ source = "registry+https://github.com/rust-lang/crates.io-index"
266
+ checksum = "7e3450815272ef58cec6d564423f6e755e25379b217b0bc688e295ba24df6b1d"
267
+
268
+ [[package]]
269
+ name = "futures-executor"
270
+ version = "0.3.32"
271
+ source = "registry+https://github.com/rust-lang/crates.io-index"
272
+ checksum = "baf29c38818342a3b26b5b923639e7b1f4a61fc5e76102d4b1981c6dc7a7579d"
273
+ dependencies = [
274
+ "futures-core",
275
+ "futures-task",
276
+ "futures-util",
277
+ ]
278
+
279
+ [[package]]
280
+ name = "futures-io"
281
+ version = "0.3.32"
282
+ source = "registry+https://github.com/rust-lang/crates.io-index"
283
+ checksum = "cecba35d7ad927e23624b22ad55235f2239cfa44fd10428eecbeba6d6a717718"
284
+
285
+ [[package]]
286
+ name = "futures-macro"
287
+ version = "0.3.32"
288
+ source = "registry+https://github.com/rust-lang/crates.io-index"
289
+ checksum = "e835b70203e41293343137df5c0664546da5745f82ec9b84d40be8336958447b"
290
+ dependencies = [
291
+ "proc-macro2",
292
+ "quote",
293
+ "syn",
294
+ ]
295
+
296
+ [[package]]
297
+ name = "futures-sink"
298
+ version = "0.3.32"
299
+ source = "registry+https://github.com/rust-lang/crates.io-index"
300
+ checksum = "c39754e157331b013978ec91992bde1ac089843443c49cbc7f46150b0fad0893"
301
+
302
+ [[package]]
303
+ name = "futures-task"
304
+ version = "0.3.32"
305
+ source = "registry+https://github.com/rust-lang/crates.io-index"
306
+ checksum = "037711b3d59c33004d3856fbdc83b99d4ff37a24768fa1be9ce3538a1cde4393"
307
+
308
+ [[package]]
309
+ name = "futures-util"
310
+ version = "0.3.32"
311
+ source = "registry+https://github.com/rust-lang/crates.io-index"
312
+ checksum = "389ca41296e6190b48053de0321d02a77f32f8a5d2461dd38762c0593805c6d6"
313
+ dependencies = [
314
+ "futures-channel",
315
+ "futures-core",
316
+ "futures-io",
317
+ "futures-macro",
318
+ "futures-sink",
319
+ "futures-task",
320
+ "memchr",
321
+ "pin-project-lite",
322
+ "slab",
323
+ ]
324
+
325
+ [[package]]
326
+ name = "generic-array"
327
+ version = "0.14.7"
328
+ source = "registry+https://github.com/rust-lang/crates.io-index"
329
+ checksum = "85649ca51fd72272d7821adaf274ad91c288277713d9c18820d8499a7ff69e9a"
330
+ dependencies = [
331
+ "typenum",
332
+ "version_check",
333
+ ]
334
+
335
+ [[package]]
336
+ name = "getrandom"
337
+ version = "0.3.4"
338
+ source = "registry+https://github.com/rust-lang/crates.io-index"
339
+ checksum = "899def5c37c4fd7b2664648c28120ecec138e4d395b459e5ca34f9cce2dd77fd"
340
+ dependencies = [
341
+ "cfg-if",
342
+ "libc",
343
+ "r-efi 5.3.0",
344
+ "wasip2",
345
+ ]
346
+
347
+ [[package]]
348
+ name = "getrandom"
349
+ version = "0.4.2"
350
+ source = "registry+https://github.com/rust-lang/crates.io-index"
351
+ checksum = "0de51e6874e94e7bf76d726fc5d13ba782deca734ff60d5bb2fb2607c7406555"
352
+ dependencies = [
353
+ "cfg-if",
354
+ "libc",
355
+ "r-efi 6.0.0",
356
+ "wasip2",
357
+ "wasip3",
358
+ ]
359
+
360
+ [[package]]
361
+ name = "hashbrown"
362
+ version = "0.15.5"
363
+ source = "registry+https://github.com/rust-lang/crates.io-index"
364
+ checksum = "9229cfe53dfd69f0609a49f65461bd93001ea1ef889cd5529dd176593f5338a1"
365
+ dependencies = [
366
+ "foldhash",
367
+ ]
368
+
369
+ [[package]]
370
+ name = "hashbrown"
371
+ version = "0.16.1"
372
+ source = "registry+https://github.com/rust-lang/crates.io-index"
373
+ checksum = "841d1cc9bed7f9236f321df977030373f4a4163ae1a7dbfe1a51a2c1a51d9100"
374
+ dependencies = [
375
+ "allocator-api2",
376
+ ]
377
+
378
+ [[package]]
379
+ name = "hashbrown"
380
+ version = "0.17.0"
381
+ source = "registry+https://github.com/rust-lang/crates.io-index"
382
+ checksum = "4f467dd6dccf739c208452f8014c75c18bb8301b050ad1cfb27153803edb0f51"
383
+
384
+ [[package]]
385
+ name = "heck"
386
+ version = "0.5.0"
387
+ source = "registry+https://github.com/rust-lang/crates.io-index"
388
+ checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea"
389
+
390
+ [[package]]
391
+ name = "hmac"
392
+ version = "0.12.1"
393
+ source = "registry+https://github.com/rust-lang/crates.io-index"
394
+ checksum = "6c49c37c09c17a53d937dfbb742eb3a961d65a994e6bcdcf37e7399d0cc8ab5e"
395
+ dependencies = [
396
+ "digest",
397
+ ]
398
+
399
+ [[package]]
400
+ name = "id-arena"
401
+ version = "2.3.0"
402
+ source = "registry+https://github.com/rust-lang/crates.io-index"
403
+ checksum = "3d3067d79b975e8844ca9eb072e16b31c3c1c36928edf9c6789548c524d0d954"
404
+
405
+ [[package]]
406
+ name = "indexmap"
407
+ version = "2.14.0"
408
+ source = "registry+https://github.com/rust-lang/crates.io-index"
409
+ checksum = "d466e9454f08e4a911e14806c24e16fba1b4c121d1ea474396f396069cf949d9"
410
+ dependencies = [
411
+ "equivalent",
412
+ "hashbrown 0.17.0",
413
+ "serde",
414
+ "serde_core",
415
+ ]
416
+
417
+ [[package]]
418
+ name = "itoa"
419
+ version = "1.0.18"
420
+ source = "registry+https://github.com/rust-lang/crates.io-index"
421
+ checksum = "8f42a60cbdf9a97f5d2305f08a87dc4e09308d1276d28c869c684d7777685682"
422
+
423
+ [[package]]
424
+ name = "leb128fmt"
425
+ version = "0.1.0"
426
+ source = "registry+https://github.com/rust-lang/crates.io-index"
427
+ checksum = "09edd9e8b54e49e587e4f6295a7d29c3ea94d469cb40ab8ca70b288248a81db2"
428
+
429
+ [[package]]
430
+ name = "libc"
431
+ version = "0.2.184"
432
+ source = "registry+https://github.com/rust-lang/crates.io-index"
433
+ checksum = "48f5d2a454e16a5ea0f4ced81bd44e4cfc7bd3a507b61887c99fd3538b28e4af"
434
+
435
+ [[package]]
436
+ name = "libloading"
437
+ version = "0.9.0"
438
+ source = "registry+https://github.com/rust-lang/crates.io-index"
439
+ checksum = "754ca22de805bb5744484a5b151a9e1a8e837d5dc232c2d7d8c2e3492edc8b60"
440
+ dependencies = [
441
+ "cfg-if",
442
+ "windows-link",
443
+ ]
444
+
445
+ [[package]]
446
+ name = "linux-raw-sys"
447
+ version = "0.12.1"
448
+ source = "registry+https://github.com/rust-lang/crates.io-index"
449
+ checksum = "32a66949e030da00e8c7d4434b251670a91556f4144941d37452769c25d58a53"
450
+
451
+ [[package]]
452
+ name = "log"
453
+ version = "0.4.29"
454
+ source = "registry+https://github.com/rust-lang/crates.io-index"
455
+ checksum = "5e5032e24019045c762d3c0f28f5b6b8bbf38563a65908389bf7978758920897"
456
+
457
+ [[package]]
458
+ name = "memchr"
459
+ version = "2.8.0"
460
+ source = "registry+https://github.com/rust-lang/crates.io-index"
461
+ checksum = "f8ca58f447f06ed17d5fc4043ce1b10dd205e060fb3ce5b979b8ed8e59ff3f79"
462
+
463
+ [[package]]
464
+ name = "mio"
465
+ version = "1.2.0"
466
+ source = "registry+https://github.com/rust-lang/crates.io-index"
467
+ checksum = "50b7e5b27aa02a74bac8c3f23f448f8d87ff11f92d3aac1a6ed369ee08cc56c1"
468
+ dependencies = [
469
+ "libc",
470
+ "wasi",
471
+ "windows-sys",
472
+ ]
473
+
474
+ [[package]]
475
+ name = "mustard"
476
+ version = "0.1.0"
477
+ dependencies = [
478
+ "anyhow",
479
+ "bincode",
480
+ "futures",
481
+ "indexmap",
482
+ "num-bigint",
483
+ "num-traits",
484
+ "oxc_allocator",
485
+ "oxc_ast",
486
+ "oxc_parser",
487
+ "oxc_span",
488
+ "oxc_syntax",
489
+ "proptest",
490
+ "rand",
491
+ "regex",
492
+ "serde",
493
+ "serde_json",
494
+ "slotmap",
495
+ "thiserror",
496
+ "time",
497
+ ]
498
+
499
+ [[package]]
500
+ name = "mustard-bridge"
501
+ version = "0.1.0"
502
+ dependencies = [
503
+ "anyhow",
504
+ "base64",
505
+ "hmac",
506
+ "mustard",
507
+ "serde",
508
+ "serde_json",
509
+ "sha2",
510
+ ]
511
+
512
+ [[package]]
513
+ name = "mustard-node"
514
+ version = "0.1.0"
515
+ dependencies = [
516
+ "base64",
517
+ "hmac",
518
+ "mustard",
519
+ "mustard-bridge",
520
+ "napi",
521
+ "napi-build",
522
+ "napi-derive",
523
+ "rand",
524
+ "sha2",
525
+ ]
526
+
527
+ [[package]]
528
+ name = "mustard-sidecar"
529
+ version = "0.1.0"
530
+ dependencies = [
531
+ "anyhow",
532
+ "base64",
533
+ "hmac",
534
+ "mustard",
535
+ "mustard-bridge",
536
+ "serde",
537
+ "serde_json",
538
+ "sha2",
539
+ "tokio",
540
+ ]
541
+
542
+ [[package]]
543
+ name = "napi"
544
+ version = "3.8.4"
545
+ source = "registry+https://github.com/rust-lang/crates.io-index"
546
+ checksum = "fb7848c221fb7bb789e02f01875287ebb1e078b92a6566a34de01ef8806e7c2b"
547
+ dependencies = [
548
+ "bitflags",
549
+ "ctor",
550
+ "futures",
551
+ "napi-build",
552
+ "napi-sys",
553
+ "nohash-hasher",
554
+ "rustc-hash",
555
+ "tokio",
556
+ ]
557
+
558
+ [[package]]
559
+ name = "napi-build"
560
+ version = "2.3.1"
561
+ source = "registry+https://github.com/rust-lang/crates.io-index"
562
+ checksum = "d376940fd5b723c6893cd1ee3f33abbfd86acb1cd1ec079f3ab04a2a3bc4d3b1"
563
+
564
+ [[package]]
565
+ name = "napi-derive"
566
+ version = "3.5.3"
567
+ source = "registry+https://github.com/rust-lang/crates.io-index"
568
+ checksum = "60867ff9a6f76e82350e0c3420cb0736f5866091b61d7d8a024baa54b0ec17dd"
569
+ dependencies = [
570
+ "convert_case",
571
+ "ctor",
572
+ "napi-derive-backend",
573
+ "proc-macro2",
574
+ "quote",
575
+ "syn",
576
+ ]
577
+
578
+ [[package]]
579
+ name = "napi-derive-backend"
580
+ version = "5.0.2"
581
+ source = "registry+https://github.com/rust-lang/crates.io-index"
582
+ checksum = "f0864cf6a82e2cfb69067374b64c9253d7e910e5b34db833ed7495dda56ccb18"
583
+ dependencies = [
584
+ "convert_case",
585
+ "proc-macro2",
586
+ "quote",
587
+ "semver",
588
+ "syn",
589
+ ]
590
+
591
+ [[package]]
592
+ name = "napi-sys"
593
+ version = "3.2.1"
594
+ source = "registry+https://github.com/rust-lang/crates.io-index"
595
+ checksum = "8eb602b84d7c1edae45e50bbf1374696548f36ae179dfa667f577e384bb90c2b"
596
+ dependencies = [
597
+ "libloading",
598
+ ]
599
+
600
+ [[package]]
601
+ name = "nohash-hasher"
602
+ version = "0.2.0"
603
+ source = "registry+https://github.com/rust-lang/crates.io-index"
604
+ checksum = "2bf50223579dc7cdcfb3bfcacf7069ff68243f8c363f62ffa99cf000a6b9c451"
605
+
606
+ [[package]]
607
+ name = "nonmax"
608
+ version = "0.5.5"
609
+ source = "registry+https://github.com/rust-lang/crates.io-index"
610
+ checksum = "610a5acd306ec67f907abe5567859a3c693fb9886eb1f012ab8f2a47bef3db51"
611
+
612
+ [[package]]
613
+ name = "num-bigint"
614
+ version = "0.4.6"
615
+ source = "registry+https://github.com/rust-lang/crates.io-index"
616
+ checksum = "a5e44f723f1133c9deac646763579fdb3ac745e418f2a7af9cd0c431da1f20b9"
617
+ dependencies = [
618
+ "num-integer",
619
+ "num-traits",
620
+ "serde",
621
+ ]
622
+
623
+ [[package]]
624
+ name = "num-conv"
625
+ version = "0.2.1"
626
+ source = "registry+https://github.com/rust-lang/crates.io-index"
627
+ checksum = "c6673768db2d862beb9b39a78fdcb1a69439615d5794a1be50caa9bc92c81967"
628
+
629
+ [[package]]
630
+ name = "num-integer"
631
+ version = "0.1.46"
632
+ source = "registry+https://github.com/rust-lang/crates.io-index"
633
+ checksum = "7969661fd2958a5cb096e56c8e1ad0444ac2bbcd0061bd28660485a44879858f"
634
+ dependencies = [
635
+ "num-traits",
636
+ ]
637
+
638
+ [[package]]
639
+ name = "num-traits"
640
+ version = "0.2.19"
641
+ source = "registry+https://github.com/rust-lang/crates.io-index"
642
+ checksum = "071dfc062690e90b734c0b2273ce72ad0ffa95f0c74596bc250dcfd960262841"
643
+ dependencies = [
644
+ "autocfg",
645
+ ]
646
+
647
+ [[package]]
648
+ name = "once_cell"
649
+ version = "1.21.4"
650
+ source = "registry+https://github.com/rust-lang/crates.io-index"
651
+ checksum = "9f7c3e4beb33f85d45ae3e3a1792185706c8e16d043238c593331cc7cd313b50"
652
+
653
+ [[package]]
654
+ name = "owo-colors"
655
+ version = "4.3.0"
656
+ source = "registry+https://github.com/rust-lang/crates.io-index"
657
+ checksum = "d211803b9b6b570f68772237e415a029d5a50c65d382910b879fb19d3271f94d"
658
+
659
+ [[package]]
660
+ name = "oxc-miette"
661
+ version = "2.7.1"
662
+ source = "registry+https://github.com/rust-lang/crates.io-index"
663
+ checksum = "4356a61f2ed4c9b3610245215fbf48970eb277126919f87db9d0efa93a74245c"
664
+ dependencies = [
665
+ "cfg-if",
666
+ "owo-colors",
667
+ "oxc-miette-derive",
668
+ "textwrap",
669
+ "thiserror",
670
+ "unicode-segmentation",
671
+ "unicode-width",
672
+ ]
673
+
674
+ [[package]]
675
+ name = "oxc-miette-derive"
676
+ version = "2.7.1"
677
+ source = "registry+https://github.com/rust-lang/crates.io-index"
678
+ checksum = "b237422b014f8f8fff75bb9379e697d13f8d57551a22c88bebb39f073c1bf696"
679
+ dependencies = [
680
+ "proc-macro2",
681
+ "quote",
682
+ "syn",
683
+ ]
684
+
685
+ [[package]]
686
+ name = "oxc_allocator"
687
+ version = "0.124.0"
688
+ source = "registry+https://github.com/rust-lang/crates.io-index"
689
+ checksum = "7cce9493fc18c7f2b9274baba258555d88cc1fab3ac3c4b293433b4f85ad097b"
690
+ dependencies = [
691
+ "allocator-api2",
692
+ "hashbrown 0.16.1",
693
+ "oxc_data_structures",
694
+ "rustc-hash",
695
+ ]
696
+
697
+ [[package]]
698
+ name = "oxc_ast"
699
+ version = "0.124.0"
700
+ source = "registry+https://github.com/rust-lang/crates.io-index"
701
+ checksum = "29366258930c55e2578e231995d2079cba12793429454fa892f01d985821a554"
702
+ dependencies = [
703
+ "bitflags",
704
+ "oxc_allocator",
705
+ "oxc_ast_macros",
706
+ "oxc_data_structures",
707
+ "oxc_diagnostics",
708
+ "oxc_estree",
709
+ "oxc_regular_expression",
710
+ "oxc_span",
711
+ "oxc_syntax",
712
+ ]
713
+
714
+ [[package]]
715
+ name = "oxc_ast_macros"
716
+ version = "0.124.0"
717
+ source = "registry+https://github.com/rust-lang/crates.io-index"
718
+ checksum = "617bf2f55d04db8d6fea9583569c7e4d9052297f76f2f8ae31b1f4ef8bcfd98e"
719
+ dependencies = [
720
+ "phf",
721
+ "proc-macro2",
722
+ "quote",
723
+ "syn",
724
+ ]
725
+
726
+ [[package]]
727
+ name = "oxc_data_structures"
728
+ version = "0.124.0"
729
+ source = "registry+https://github.com/rust-lang/crates.io-index"
730
+ checksum = "a3a309fcc491b31039bd2a77d8517278c198f566c284e9a18977dab801c05681"
731
+
732
+ [[package]]
733
+ name = "oxc_diagnostics"
734
+ version = "0.124.0"
735
+ source = "registry+https://github.com/rust-lang/crates.io-index"
736
+ checksum = "a1c0f18571aac10db23d1ab681108102ac735c50142c5418ec8272e1d861219f"
737
+ dependencies = [
738
+ "cow-utils",
739
+ "oxc-miette",
740
+ "percent-encoding",
741
+ ]
742
+
743
+ [[package]]
744
+ name = "oxc_ecmascript"
745
+ version = "0.124.0"
746
+ source = "registry+https://github.com/rust-lang/crates.io-index"
747
+ checksum = "4eaddc891449b4c7d8720714d6939c99fc531054c8f7decba9ffdd1c70a7b67b"
748
+ dependencies = [
749
+ "cow-utils",
750
+ "num-bigint",
751
+ "num-traits",
752
+ "oxc_allocator",
753
+ "oxc_ast",
754
+ "oxc_regular_expression",
755
+ "oxc_span",
756
+ "oxc_syntax",
757
+ ]
758
+
759
+ [[package]]
760
+ name = "oxc_estree"
761
+ version = "0.124.0"
762
+ source = "registry+https://github.com/rust-lang/crates.io-index"
763
+ checksum = "8dd0f39cc6f2014fc1a60a563903c6c6c88f856772d44f390fe876a575bd7c97"
764
+
765
+ [[package]]
766
+ name = "oxc_index"
767
+ version = "4.1.0"
768
+ source = "registry+https://github.com/rust-lang/crates.io-index"
769
+ checksum = "eb3e6120999627ec9703025eab7c9f410ebb7e95557632a8902ca48210416c2b"
770
+ dependencies = [
771
+ "nonmax",
772
+ "serde",
773
+ ]
774
+
775
+ [[package]]
776
+ name = "oxc_parser"
777
+ version = "0.124.0"
778
+ source = "registry+https://github.com/rust-lang/crates.io-index"
779
+ checksum = "ecf347b9ba5fd251f215f0c44602fbec98c01ea4cf13ae2682167f33d8a8d0b4"
780
+ dependencies = [
781
+ "bitflags",
782
+ "cow-utils",
783
+ "memchr",
784
+ "num-bigint",
785
+ "num-traits",
786
+ "oxc_allocator",
787
+ "oxc_ast",
788
+ "oxc_data_structures",
789
+ "oxc_diagnostics",
790
+ "oxc_ecmascript",
791
+ "oxc_regular_expression",
792
+ "oxc_span",
793
+ "oxc_syntax",
794
+ "rustc-hash",
795
+ "seq-macro",
796
+ ]
797
+
798
+ [[package]]
799
+ name = "oxc_regular_expression"
800
+ version = "0.124.0"
801
+ source = "registry+https://github.com/rust-lang/crates.io-index"
802
+ checksum = "922016d2def4d0a2b17c907bda16d6eb20516622ae818eb8662f69b353ba9f20"
803
+ dependencies = [
804
+ "bitflags",
805
+ "oxc_allocator",
806
+ "oxc_ast_macros",
807
+ "oxc_diagnostics",
808
+ "oxc_span",
809
+ "phf",
810
+ "rustc-hash",
811
+ "unicode-id-start",
812
+ ]
813
+
814
+ [[package]]
815
+ name = "oxc_span"
816
+ version = "0.124.0"
817
+ source = "registry+https://github.com/rust-lang/crates.io-index"
818
+ checksum = "9b4413a552b443c777dd2782bc49e719a20cb36434c9b196e9021259028ca74c"
819
+ dependencies = [
820
+ "compact_str",
821
+ "oxc-miette",
822
+ "oxc_allocator",
823
+ "oxc_ast_macros",
824
+ "oxc_estree",
825
+ "oxc_str",
826
+ ]
827
+
828
+ [[package]]
829
+ name = "oxc_str"
830
+ version = "0.124.0"
831
+ source = "registry+https://github.com/rust-lang/crates.io-index"
832
+ checksum = "321abe830f84ab9c13ac43eadb625f7e8ccddab6a150732d1e5bf9dde043ef4f"
833
+ dependencies = [
834
+ "compact_str",
835
+ "hashbrown 0.16.1",
836
+ "oxc_allocator",
837
+ "oxc_estree",
838
+ ]
839
+
840
+ [[package]]
841
+ name = "oxc_syntax"
842
+ version = "0.124.0"
843
+ source = "registry+https://github.com/rust-lang/crates.io-index"
844
+ checksum = "11919498c468e21e0688d6c99e37c15f2825a64cfa2f9a0c99d6f767076011d8"
845
+ dependencies = [
846
+ "bitflags",
847
+ "cow-utils",
848
+ "dragonbox_ecma",
849
+ "nonmax",
850
+ "oxc_allocator",
851
+ "oxc_ast_macros",
852
+ "oxc_estree",
853
+ "oxc_index",
854
+ "oxc_span",
855
+ "phf",
856
+ "unicode-id-start",
857
+ ]
858
+
859
+ [[package]]
860
+ name = "percent-encoding"
861
+ version = "2.3.2"
862
+ source = "registry+https://github.com/rust-lang/crates.io-index"
863
+ checksum = "9b4f627cb1b25917193a259e49bdad08f671f8d9708acfd5fe0a8c1455d87220"
864
+
865
+ [[package]]
866
+ name = "phf"
867
+ version = "0.13.1"
868
+ source = "registry+https://github.com/rust-lang/crates.io-index"
869
+ checksum = "c1562dc717473dbaa4c1f85a36410e03c047b2e7df7f45ee938fbef64ae7fadf"
870
+ dependencies = [
871
+ "phf_macros",
872
+ "phf_shared",
873
+ "serde",
874
+ ]
875
+
876
+ [[package]]
877
+ name = "phf_generator"
878
+ version = "0.13.1"
879
+ source = "registry+https://github.com/rust-lang/crates.io-index"
880
+ checksum = "135ace3a761e564ec88c03a77317a7c6b80bb7f7135ef2544dbe054243b89737"
881
+ dependencies = [
882
+ "fastrand",
883
+ "phf_shared",
884
+ ]
885
+
886
+ [[package]]
887
+ name = "phf_macros"
888
+ version = "0.13.1"
889
+ source = "registry+https://github.com/rust-lang/crates.io-index"
890
+ checksum = "812f032b54b1e759ccd5f8b6677695d5268c588701effba24601f6932f8269ef"
891
+ dependencies = [
892
+ "phf_generator",
893
+ "phf_shared",
894
+ "proc-macro2",
895
+ "quote",
896
+ "syn",
897
+ ]
898
+
899
+ [[package]]
900
+ name = "phf_shared"
901
+ version = "0.13.1"
902
+ source = "registry+https://github.com/rust-lang/crates.io-index"
903
+ checksum = "e57fef6bc5981e38c2ce2d63bfa546861309f875b8a75f092d1d54ae2d64f266"
904
+ dependencies = [
905
+ "siphasher",
906
+ ]
907
+
908
+ [[package]]
909
+ name = "pin-project-lite"
910
+ version = "0.2.17"
911
+ source = "registry+https://github.com/rust-lang/crates.io-index"
912
+ checksum = "a89322df9ebe1c1578d689c92318e070967d1042b512afbe49518723f4e6d5cd"
913
+
914
+ [[package]]
915
+ name = "powerfmt"
916
+ version = "0.2.0"
917
+ source = "registry+https://github.com/rust-lang/crates.io-index"
918
+ checksum = "439ee305def115ba05938db6eb1644ff94165c5ab5e9420d1c1bcedbba909391"
919
+
920
+ [[package]]
921
+ name = "ppv-lite86"
922
+ version = "0.2.21"
923
+ source = "registry+https://github.com/rust-lang/crates.io-index"
924
+ checksum = "85eae3c4ed2f50dcfe72643da4befc30deadb458a9b590d720cde2f2b1e97da9"
925
+ dependencies = [
926
+ "zerocopy",
927
+ ]
928
+
929
+ [[package]]
930
+ name = "prettyplease"
931
+ version = "0.2.37"
932
+ source = "registry+https://github.com/rust-lang/crates.io-index"
933
+ checksum = "479ca8adacdd7ce8f1fb39ce9ecccbfe93a3f1344b3d0d97f20bc0196208f62b"
934
+ dependencies = [
935
+ "proc-macro2",
936
+ "syn",
937
+ ]
938
+
939
+ [[package]]
940
+ name = "proc-macro2"
941
+ version = "1.0.106"
942
+ source = "registry+https://github.com/rust-lang/crates.io-index"
943
+ checksum = "8fd00f0bb2e90d81d1044c2b32617f68fcb9fa3bb7640c23e9c748e53fb30934"
944
+ dependencies = [
945
+ "unicode-ident",
946
+ ]
947
+
948
+ [[package]]
949
+ name = "proptest"
950
+ version = "1.11.0"
951
+ source = "registry+https://github.com/rust-lang/crates.io-index"
952
+ checksum = "4b45fcc2344c680f5025fe57779faef368840d0bd1f42f216291f0dc4ace4744"
953
+ dependencies = [
954
+ "bit-set",
955
+ "bit-vec",
956
+ "bitflags",
957
+ "num-traits",
958
+ "rand",
959
+ "rand_chacha",
960
+ "rand_xorshift",
961
+ "regex-syntax",
962
+ "rusty-fork",
963
+ "tempfile",
964
+ "unarray",
965
+ ]
966
+
967
+ [[package]]
968
+ name = "quick-error"
969
+ version = "1.2.3"
970
+ source = "registry+https://github.com/rust-lang/crates.io-index"
971
+ checksum = "a1d01941d82fa2ab50be1e79e6714289dd7cde78eba4c074bc5a4374f650dfe0"
972
+
973
+ [[package]]
974
+ name = "quote"
975
+ version = "1.0.45"
976
+ source = "registry+https://github.com/rust-lang/crates.io-index"
977
+ checksum = "41f2619966050689382d2b44f664f4bc593e129785a36d6ee376ddf37259b924"
978
+ dependencies = [
979
+ "proc-macro2",
980
+ ]
981
+
982
+ [[package]]
983
+ name = "r-efi"
984
+ version = "5.3.0"
985
+ source = "registry+https://github.com/rust-lang/crates.io-index"
986
+ checksum = "69cdb34c158ceb288df11e18b4bd39de994f6657d83847bdffdbd7f346754b0f"
987
+
988
+ [[package]]
989
+ name = "r-efi"
990
+ version = "6.0.0"
991
+ source = "registry+https://github.com/rust-lang/crates.io-index"
992
+ checksum = "f8dcc9c7d52a811697d2151c701e0d08956f92b0e24136cf4cf27b57a6a0d9bf"
993
+
994
+ [[package]]
995
+ name = "rand"
996
+ version = "0.9.3"
997
+ source = "registry+https://github.com/rust-lang/crates.io-index"
998
+ checksum = "7ec095654a25171c2124e9e3393a930bddbffdc939556c914957a4c3e0a87166"
999
+ dependencies = [
1000
+ "rand_chacha",
1001
+ "rand_core",
1002
+ ]
1003
+
1004
+ [[package]]
1005
+ name = "rand_chacha"
1006
+ version = "0.9.0"
1007
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1008
+ checksum = "d3022b5f1df60f26e1ffddd6c66e8aa15de382ae63b3a0c1bfc0e4d3e3f325cb"
1009
+ dependencies = [
1010
+ "ppv-lite86",
1011
+ "rand_core",
1012
+ ]
1013
+
1014
+ [[package]]
1015
+ name = "rand_core"
1016
+ version = "0.9.5"
1017
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1018
+ checksum = "76afc826de14238e6e8c374ddcc1fa19e374fd8dd986b0d2af0d02377261d83c"
1019
+ dependencies = [
1020
+ "getrandom 0.3.4",
1021
+ ]
1022
+
1023
+ [[package]]
1024
+ name = "rand_xorshift"
1025
+ version = "0.4.0"
1026
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1027
+ checksum = "513962919efc330f829edb2535844d1b912b0fbe2ca165d613e4e8788bb05a5a"
1028
+ dependencies = [
1029
+ "rand_core",
1030
+ ]
1031
+
1032
+ [[package]]
1033
+ name = "regex"
1034
+ version = "1.12.3"
1035
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1036
+ checksum = "e10754a14b9137dd7b1e3e5b0493cc9171fdd105e0ab477f51b72e7f3ac0e276"
1037
+ dependencies = [
1038
+ "aho-corasick",
1039
+ "memchr",
1040
+ "regex-automata",
1041
+ "regex-syntax",
1042
+ ]
1043
+
1044
+ [[package]]
1045
+ name = "regex-automata"
1046
+ version = "0.4.14"
1047
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1048
+ checksum = "6e1dd4122fc1595e8162618945476892eefca7b88c52820e74af6262213cae8f"
1049
+ dependencies = [
1050
+ "aho-corasick",
1051
+ "memchr",
1052
+ "regex-syntax",
1053
+ ]
1054
+
1055
+ [[package]]
1056
+ name = "regex-syntax"
1057
+ version = "0.8.10"
1058
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1059
+ checksum = "dc897dd8d9e8bd1ed8cdad82b5966c3e0ecae09fb1907d58efaa013543185d0a"
1060
+
1061
+ [[package]]
1062
+ name = "rustc-hash"
1063
+ version = "2.1.2"
1064
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1065
+ checksum = "94300abf3f1ae2e2b8ffb7b58043de3d399c73fa6f4b73826402a5c457614dbe"
1066
+
1067
+ [[package]]
1068
+ name = "rustix"
1069
+ version = "1.1.4"
1070
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1071
+ checksum = "b6fe4565b9518b83ef4f91bb47ce29620ca828bd32cb7e408f0062e9930ba190"
1072
+ dependencies = [
1073
+ "bitflags",
1074
+ "errno",
1075
+ "libc",
1076
+ "linux-raw-sys",
1077
+ "windows-sys",
1078
+ ]
1079
+
1080
+ [[package]]
1081
+ name = "rustversion"
1082
+ version = "1.0.22"
1083
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1084
+ checksum = "b39cdef0fa800fc44525c84ccb54a029961a8215f9619753635a9c0d2538d46d"
1085
+
1086
+ [[package]]
1087
+ name = "rusty-fork"
1088
+ version = "0.3.1"
1089
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1090
+ checksum = "cc6bf79ff24e648f6da1f8d1f011e9cac26491b619e6b9280f2b47f1774e6ee2"
1091
+ dependencies = [
1092
+ "fnv",
1093
+ "quick-error",
1094
+ "tempfile",
1095
+ "wait-timeout",
1096
+ ]
1097
+
1098
+ [[package]]
1099
+ name = "ryu"
1100
+ version = "1.0.23"
1101
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1102
+ checksum = "9774ba4a74de5f7b1c1451ed6cd5285a32eddb5cccb8cc655a4e50009e06477f"
1103
+
1104
+ [[package]]
1105
+ name = "semver"
1106
+ version = "1.0.28"
1107
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1108
+ checksum = "8a7852d02fc848982e0c167ef163aaff9cd91dc640ba85e263cb1ce46fae51cd"
1109
+
1110
+ [[package]]
1111
+ name = "seq-macro"
1112
+ version = "0.3.6"
1113
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1114
+ checksum = "1bc711410fbe7399f390ca1c3b60ad0f53f80e95c5eb935e52268a0e2cd49acc"
1115
+
1116
+ [[package]]
1117
+ name = "serde"
1118
+ version = "1.0.228"
1119
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1120
+ checksum = "9a8e94ea7f378bd32cbbd37198a4a91436180c5bb472411e48b5ec2e2124ae9e"
1121
+ dependencies = [
1122
+ "serde_core",
1123
+ "serde_derive",
1124
+ ]
1125
+
1126
+ [[package]]
1127
+ name = "serde_core"
1128
+ version = "1.0.228"
1129
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1130
+ checksum = "41d385c7d4ca58e59fc732af25c3983b67ac852c1a25000afe1175de458b67ad"
1131
+ dependencies = [
1132
+ "serde_derive",
1133
+ ]
1134
+
1135
+ [[package]]
1136
+ name = "serde_derive"
1137
+ version = "1.0.228"
1138
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1139
+ checksum = "d540f220d3187173da220f885ab66608367b6574e925011a9353e4badda91d79"
1140
+ dependencies = [
1141
+ "proc-macro2",
1142
+ "quote",
1143
+ "syn",
1144
+ ]
1145
+
1146
+ [[package]]
1147
+ name = "serde_json"
1148
+ version = "1.0.149"
1149
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1150
+ checksum = "83fc039473c5595ace860d8c4fafa220ff474b3fc6bfdb4293327f1a37e94d86"
1151
+ dependencies = [
1152
+ "itoa",
1153
+ "memchr",
1154
+ "serde",
1155
+ "serde_core",
1156
+ "zmij",
1157
+ ]
1158
+
1159
+ [[package]]
1160
+ name = "sha2"
1161
+ version = "0.10.9"
1162
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1163
+ checksum = "a7507d819769d01a365ab707794a4084392c824f54a7a6a7862f8c3d0892b283"
1164
+ dependencies = [
1165
+ "cfg-if",
1166
+ "cpufeatures",
1167
+ "digest",
1168
+ ]
1169
+
1170
+ [[package]]
1171
+ name = "signal-hook-registry"
1172
+ version = "1.4.8"
1173
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1174
+ checksum = "c4db69cba1110affc0e9f7bcd48bbf87b3f4fc7c61fc9155afd4c469eb3d6c1b"
1175
+ dependencies = [
1176
+ "errno",
1177
+ "libc",
1178
+ ]
1179
+
1180
+ [[package]]
1181
+ name = "siphasher"
1182
+ version = "1.0.2"
1183
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1184
+ checksum = "b2aa850e253778c88a04c3d7323b043aeda9d3e30d5971937c1855769763678e"
1185
+
1186
+ [[package]]
1187
+ name = "slab"
1188
+ version = "0.4.12"
1189
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1190
+ checksum = "0c790de23124f9ab44544d7ac05d60440adc586479ce501c1d6d7da3cd8c9cf5"
1191
+
1192
+ [[package]]
1193
+ name = "slotmap"
1194
+ version = "1.1.1"
1195
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1196
+ checksum = "bdd58c3c93c3d278ca835519292445cb4b0d4dc59ccfdf7ceadaab3f8aeb4038"
1197
+ dependencies = [
1198
+ "serde",
1199
+ "version_check",
1200
+ ]
1201
+
1202
+ [[package]]
1203
+ name = "smawk"
1204
+ version = "0.3.2"
1205
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1206
+ checksum = "b7c388c1b5e93756d0c740965c41e8822f866621d41acbdf6336a6a168f8840c"
1207
+
1208
+ [[package]]
1209
+ name = "static_assertions"
1210
+ version = "1.1.0"
1211
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1212
+ checksum = "a2eb9349b6444b326872e140eb1cf5e7c522154d69e7a0ffb0fb81c06b37543f"
1213
+
1214
+ [[package]]
1215
+ name = "subtle"
1216
+ version = "2.6.1"
1217
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1218
+ checksum = "13c2bddecc57b384dee18652358fb23172facb8a2c51ccc10d74c157bdea3292"
1219
+
1220
+ [[package]]
1221
+ name = "syn"
1222
+ version = "2.0.117"
1223
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1224
+ checksum = "e665b8803e7b1d2a727f4023456bbbbe74da67099c585258af0ad9c5013b9b99"
1225
+ dependencies = [
1226
+ "proc-macro2",
1227
+ "quote",
1228
+ "unicode-ident",
1229
+ ]
1230
+
1231
+ [[package]]
1232
+ name = "tempfile"
1233
+ version = "3.27.0"
1234
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1235
+ checksum = "32497e9a4c7b38532efcdebeef879707aa9f794296a4f0244f6f69e9bc8574bd"
1236
+ dependencies = [
1237
+ "fastrand",
1238
+ "getrandom 0.4.2",
1239
+ "once_cell",
1240
+ "rustix",
1241
+ "windows-sys",
1242
+ ]
1243
+
1244
+ [[package]]
1245
+ name = "textwrap"
1246
+ version = "0.16.2"
1247
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1248
+ checksum = "c13547615a44dc9c452a8a534638acdf07120d4b6847c8178705da06306a3057"
1249
+ dependencies = [
1250
+ "smawk",
1251
+ "unicode-linebreak",
1252
+ "unicode-width",
1253
+ ]
1254
+
1255
+ [[package]]
1256
+ name = "thiserror"
1257
+ version = "2.0.18"
1258
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1259
+ checksum = "4288b5bcbc7920c07a1149a35cf9590a2aa808e0bc1eafaade0b80947865fbc4"
1260
+ dependencies = [
1261
+ "thiserror-impl",
1262
+ ]
1263
+
1264
+ [[package]]
1265
+ name = "thiserror-impl"
1266
+ version = "2.0.18"
1267
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1268
+ checksum = "ebc4ee7f67670e9b64d05fa4253e753e016c6c95ff35b89b7941d6b856dec1d5"
1269
+ dependencies = [
1270
+ "proc-macro2",
1271
+ "quote",
1272
+ "syn",
1273
+ ]
1274
+
1275
+ [[package]]
1276
+ name = "time"
1277
+ version = "0.3.47"
1278
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1279
+ checksum = "743bd48c283afc0388f9b8827b976905fb217ad9e647fae3a379a9283c4def2c"
1280
+ dependencies = [
1281
+ "deranged",
1282
+ "num-conv",
1283
+ "powerfmt",
1284
+ "serde_core",
1285
+ "time-core",
1286
+ "time-macros",
1287
+ ]
1288
+
1289
+ [[package]]
1290
+ name = "time-core"
1291
+ version = "0.1.8"
1292
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1293
+ checksum = "7694e1cfe791f8d31026952abf09c69ca6f6fa4e1a1229e18988f06a04a12dca"
1294
+
1295
+ [[package]]
1296
+ name = "time-macros"
1297
+ version = "0.2.27"
1298
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1299
+ checksum = "2e70e4c5a0e0a8a4823ad65dfe1a6930e4f4d756dcd9dd7939022b5e8c501215"
1300
+ dependencies = [
1301
+ "num-conv",
1302
+ "time-core",
1303
+ ]
1304
+
1305
+ [[package]]
1306
+ name = "tokio"
1307
+ version = "1.51.1"
1308
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1309
+ checksum = "f66bf9585cda4b724d3e78ab34b73fb2bbaba9011b9bfdf69dc836382ea13b8c"
1310
+ dependencies = [
1311
+ "bytes",
1312
+ "libc",
1313
+ "mio",
1314
+ "pin-project-lite",
1315
+ "signal-hook-registry",
1316
+ "tokio-macros",
1317
+ "windows-sys",
1318
+ ]
1319
+
1320
+ [[package]]
1321
+ name = "tokio-macros"
1322
+ version = "2.7.0"
1323
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1324
+ checksum = "385a6cb71ab9ab790c5fe8d67f1645e6c450a7ce006a33de03daa956cf70a496"
1325
+ dependencies = [
1326
+ "proc-macro2",
1327
+ "quote",
1328
+ "syn",
1329
+ ]
1330
+
1331
+ [[package]]
1332
+ name = "typenum"
1333
+ version = "1.19.0"
1334
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1335
+ checksum = "562d481066bde0658276a35467c4af00bdc6ee726305698a55b86e61d7ad82bb"
1336
+
1337
+ [[package]]
1338
+ name = "unarray"
1339
+ version = "0.1.4"
1340
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1341
+ checksum = "eaea85b334db583fe3274d12b4cd1880032beab409c0d774be044d4480ab9a94"
1342
+
1343
+ [[package]]
1344
+ name = "unicode-id-start"
1345
+ version = "1.4.0"
1346
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1347
+ checksum = "81b79ad29b5e19de4260020f8919b443b2ef0277d242ce532ec7b7a2cc8b6007"
1348
+
1349
+ [[package]]
1350
+ name = "unicode-ident"
1351
+ version = "1.0.24"
1352
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1353
+ checksum = "e6e4313cd5fcd3dad5cafa179702e2b244f760991f45397d14d4ebf38247da75"
1354
+
1355
+ [[package]]
1356
+ name = "unicode-linebreak"
1357
+ version = "0.1.5"
1358
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1359
+ checksum = "3b09c83c3c29d37506a3e260c08c03743a6bb66a9cd432c6934ab501a190571f"
1360
+
1361
+ [[package]]
1362
+ name = "unicode-segmentation"
1363
+ version = "1.13.2"
1364
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1365
+ checksum = "9629274872b2bfaf8d66f5f15725007f635594914870f65218920345aa11aa8c"
1366
+
1367
+ [[package]]
1368
+ name = "unicode-width"
1369
+ version = "0.2.2"
1370
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1371
+ checksum = "b4ac048d71ede7ee76d585517add45da530660ef4390e49b098733c6e897f254"
1372
+
1373
+ [[package]]
1374
+ name = "unicode-xid"
1375
+ version = "0.2.6"
1376
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1377
+ checksum = "ebc1c04c71510c7f702b52b7c350734c9ff1295c464a03335b00bb84fc54f853"
1378
+
1379
+ [[package]]
1380
+ name = "version_check"
1381
+ version = "0.9.5"
1382
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1383
+ checksum = "0b928f33d975fc6ad9f86c8f283853ad26bdd5b10b7f1542aa2fa15e2289105a"
1384
+
1385
+ [[package]]
1386
+ name = "wait-timeout"
1387
+ version = "0.2.1"
1388
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1389
+ checksum = "09ac3b126d3914f9849036f826e054cbabdc8519970b8998ddaf3b5bd3c65f11"
1390
+ dependencies = [
1391
+ "libc",
1392
+ ]
1393
+
1394
+ [[package]]
1395
+ name = "wasi"
1396
+ version = "0.11.1+wasi-snapshot-preview1"
1397
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1398
+ checksum = "ccf3ec651a847eb01de73ccad15eb7d99f80485de043efb2f370cd654f4ea44b"
1399
+
1400
+ [[package]]
1401
+ name = "wasip2"
1402
+ version = "1.0.2+wasi-0.2.9"
1403
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1404
+ checksum = "9517f9239f02c069db75e65f174b3da828fe5f5b945c4dd26bd25d89c03ebcf5"
1405
+ dependencies = [
1406
+ "wit-bindgen",
1407
+ ]
1408
+
1409
+ [[package]]
1410
+ name = "wasip3"
1411
+ version = "0.4.0+wasi-0.3.0-rc-2026-01-06"
1412
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1413
+ checksum = "5428f8bf88ea5ddc08faddef2ac4a67e390b88186c703ce6dbd955e1c145aca5"
1414
+ dependencies = [
1415
+ "wit-bindgen",
1416
+ ]
1417
+
1418
+ [[package]]
1419
+ name = "wasm-encoder"
1420
+ version = "0.244.0"
1421
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1422
+ checksum = "990065f2fe63003fe337b932cfb5e3b80e0b4d0f5ff650e6985b1048f62c8319"
1423
+ dependencies = [
1424
+ "leb128fmt",
1425
+ "wasmparser",
1426
+ ]
1427
+
1428
+ [[package]]
1429
+ name = "wasm-metadata"
1430
+ version = "0.244.0"
1431
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1432
+ checksum = "bb0e353e6a2fbdc176932bbaab493762eb1255a7900fe0fea1a2f96c296cc909"
1433
+ dependencies = [
1434
+ "anyhow",
1435
+ "indexmap",
1436
+ "wasm-encoder",
1437
+ "wasmparser",
1438
+ ]
1439
+
1440
+ [[package]]
1441
+ name = "wasmparser"
1442
+ version = "0.244.0"
1443
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1444
+ checksum = "47b807c72e1bac69382b3a6fb3dbe8ea4c0ed87ff5629b8685ae6b9a611028fe"
1445
+ dependencies = [
1446
+ "bitflags",
1447
+ "hashbrown 0.15.5",
1448
+ "indexmap",
1449
+ "semver",
1450
+ ]
1451
+
1452
+ [[package]]
1453
+ name = "windows-link"
1454
+ version = "0.2.1"
1455
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1456
+ checksum = "f0805222e57f7521d6a62e36fa9163bc891acd422f971defe97d64e70d0a4fe5"
1457
+
1458
+ [[package]]
1459
+ name = "windows-sys"
1460
+ version = "0.61.2"
1461
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1462
+ checksum = "ae137229bcbd6cdf0f7b80a31df61766145077ddf49416a728b02cb3921ff3fc"
1463
+ dependencies = [
1464
+ "windows-link",
1465
+ ]
1466
+
1467
+ [[package]]
1468
+ name = "wit-bindgen"
1469
+ version = "0.51.0"
1470
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1471
+ checksum = "d7249219f66ced02969388cf2bb044a09756a083d0fab1e566056b04d9fbcaa5"
1472
+ dependencies = [
1473
+ "wit-bindgen-rust-macro",
1474
+ ]
1475
+
1476
+ [[package]]
1477
+ name = "wit-bindgen-core"
1478
+ version = "0.51.0"
1479
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1480
+ checksum = "ea61de684c3ea68cb082b7a88508a8b27fcc8b797d738bfc99a82facf1d752dc"
1481
+ dependencies = [
1482
+ "anyhow",
1483
+ "heck",
1484
+ "wit-parser",
1485
+ ]
1486
+
1487
+ [[package]]
1488
+ name = "wit-bindgen-rust"
1489
+ version = "0.51.0"
1490
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1491
+ checksum = "b7c566e0f4b284dd6561c786d9cb0142da491f46a9fbed79ea69cdad5db17f21"
1492
+ dependencies = [
1493
+ "anyhow",
1494
+ "heck",
1495
+ "indexmap",
1496
+ "prettyplease",
1497
+ "syn",
1498
+ "wasm-metadata",
1499
+ "wit-bindgen-core",
1500
+ "wit-component",
1501
+ ]
1502
+
1503
+ [[package]]
1504
+ name = "wit-bindgen-rust-macro"
1505
+ version = "0.51.0"
1506
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1507
+ checksum = "0c0f9bfd77e6a48eccf51359e3ae77140a7f50b1e2ebfe62422d8afdaffab17a"
1508
+ dependencies = [
1509
+ "anyhow",
1510
+ "prettyplease",
1511
+ "proc-macro2",
1512
+ "quote",
1513
+ "syn",
1514
+ "wit-bindgen-core",
1515
+ "wit-bindgen-rust",
1516
+ ]
1517
+
1518
+ [[package]]
1519
+ name = "wit-component"
1520
+ version = "0.244.0"
1521
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1522
+ checksum = "9d66ea20e9553b30172b5e831994e35fbde2d165325bec84fc43dbf6f4eb9cb2"
1523
+ dependencies = [
1524
+ "anyhow",
1525
+ "bitflags",
1526
+ "indexmap",
1527
+ "log",
1528
+ "serde",
1529
+ "serde_derive",
1530
+ "serde_json",
1531
+ "wasm-encoder",
1532
+ "wasm-metadata",
1533
+ "wasmparser",
1534
+ "wit-parser",
1535
+ ]
1536
+
1537
+ [[package]]
1538
+ name = "wit-parser"
1539
+ version = "0.244.0"
1540
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1541
+ checksum = "ecc8ac4bc1dc3381b7f59c34f00b67e18f910c2c0f50015669dde7def656a736"
1542
+ dependencies = [
1543
+ "anyhow",
1544
+ "id-arena",
1545
+ "indexmap",
1546
+ "log",
1547
+ "semver",
1548
+ "serde",
1549
+ "serde_derive",
1550
+ "serde_json",
1551
+ "unicode-xid",
1552
+ "wasmparser",
1553
+ ]
1554
+
1555
+ [[package]]
1556
+ name = "zerocopy"
1557
+ version = "0.8.48"
1558
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1559
+ checksum = "eed437bf9d6692032087e337407a86f04cd8d6a16a37199ed57949d415bd68e9"
1560
+ dependencies = [
1561
+ "zerocopy-derive",
1562
+ ]
1563
+
1564
+ [[package]]
1565
+ name = "zerocopy-derive"
1566
+ version = "0.8.48"
1567
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1568
+ checksum = "70e3cd084b1788766f53af483dd21f93881ff30d7320490ec3ef7526d203bad4"
1569
+ dependencies = [
1570
+ "proc-macro2",
1571
+ "quote",
1572
+ "syn",
1573
+ ]
1574
+
1575
+ [[package]]
1576
+ name = "zmij"
1577
+ version = "1.0.21"
1578
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1579
+ checksum = "b8848ee67ecc8aedbaf3e4122217aff892639231befc6a1b58d29fff4c2cabaa"