swiftlet 0.1.0__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 (70) hide show
  1. swiftlet-0.1.0/Cargo.lock +761 -0
  2. swiftlet-0.1.0/Cargo.toml +17 -0
  3. swiftlet-0.1.0/PKG-INFO +5 -0
  4. swiftlet-0.1.0/crates/swiftlet/Cargo.toml +61 -0
  5. swiftlet-0.1.0/crates/swiftlet/README.md +84 -0
  6. swiftlet-0.1.0/crates/swiftlet/benches/benchmark.rs +71 -0
  7. swiftlet-0.1.0/crates/swiftlet/benches/get_terminals.rs +13 -0
  8. swiftlet-0.1.0/crates/swiftlet/examples/alias_rule.rs +33 -0
  9. swiftlet-0.1.0/crates/swiftlet/examples/ambiguity_grammar.rs +30 -0
  10. swiftlet-0.1.0/crates/swiftlet/examples/benchmark_parse.rs +148 -0
  11. swiftlet-0.1.0/crates/swiftlet/examples/calculate.rs +53 -0
  12. swiftlet-0.1.0/crates/swiftlet/examples/clr_conflict_grammar.rs +21 -0
  13. swiftlet-0.1.0/crates/swiftlet/examples/clr_math.rs +29 -0
  14. swiftlet-0.1.0/crates/swiftlet/examples/clr_parser.rs +43 -0
  15. swiftlet-0.1.0/crates/swiftlet/examples/common_terminal_decimal.rs +28 -0
  16. swiftlet-0.1.0/crates/swiftlet/examples/error_grammar.rs +26 -0
  17. swiftlet-0.1.0/crates/swiftlet/examples/gr_alternatives.rs +26 -0
  18. swiftlet-0.1.0/crates/swiftlet/examples/gr_grouping.rs +25 -0
  19. swiftlet-0.1.0/crates/swiftlet/examples/gr_ignore.rs +23 -0
  20. swiftlet-0.1.0/crates/swiftlet/examples/gr_import.rs +23 -0
  21. swiftlet-0.1.0/crates/swiftlet/examples/gr_optional.rs +23 -0
  22. swiftlet-0.1.0/crates/swiftlet/examples/gr_regex_flags.rs +26 -0
  23. swiftlet-0.1.0/crates/swiftlet/examples/gr_regular_expression.rs +21 -0
  24. swiftlet-0.1.0/crates/swiftlet/examples/gr_repetition_operators.rs +25 -0
  25. swiftlet-0.1.0/crates/swiftlet/examples/gr_rule.rs +22 -0
  26. swiftlet-0.1.0/crates/swiftlet/examples/gr_string_literals.rs +22 -0
  27. swiftlet-0.1.0/crates/swiftlet/examples/gr_terminals.rs +22 -0
  28. swiftlet-0.1.0/crates/swiftlet/examples/grammar.rs +27 -0
  29. swiftlet-0.1.0/crates/swiftlet/examples/grammar_test.rs +19 -0
  30. swiftlet-0.1.0/crates/swiftlet/examples/grammar_testing.rs +20 -0
  31. swiftlet-0.1.0/crates/swiftlet/examples/grammar_testing_slr.rs +25 -0
  32. swiftlet-0.1.0/crates/swiftlet/examples/import_grammar.rs +25 -0
  33. swiftlet-0.1.0/crates/swiftlet/examples/json_parse.rs +27 -0
  34. swiftlet-0.1.0/crates/swiftlet/examples/lexer_imp.rs +22 -0
  35. swiftlet-0.1.0/crates/swiftlet/examples/math.rs +28 -0
  36. swiftlet-0.1.0/crates/swiftlet/examples/maybe_grammar.rs +26 -0
  37. swiftlet-0.1.0/crates/swiftlet/examples/plus_grammar.rs +43 -0
  38. swiftlet-0.1.0/crates/swiftlet/examples/range_grammar.rs +31 -0
  39. swiftlet-0.1.0/crates/swiftlet/examples/regex_grammar.rs +31 -0
  40. swiftlet-0.1.0/crates/swiftlet/examples/small_grammar.rs +29 -0
  41. swiftlet-0.1.0/crates/swiftlet/examples/sql_query_parser.rs +41 -0
  42. swiftlet-0.1.0/crates/swiftlet/examples/symbol_priority.rs +20 -0
  43. swiftlet-0.1.0/crates/swiftlet/src/ast.rs +187 -0
  44. swiftlet-0.1.0/crates/swiftlet/src/builder.rs +86 -0
  45. swiftlet-0.1.0/crates/swiftlet/src/common.rs +103 -0
  46. swiftlet-0.1.0/crates/swiftlet/src/grammar.rs +181 -0
  47. swiftlet-0.1.0/crates/swiftlet/src/lexer.rs +473 -0
  48. swiftlet-0.1.0/crates/swiftlet/src/lib.rs +188 -0
  49. swiftlet-0.1.0/crates/swiftlet/src/load_grammar.rs +319 -0
  50. swiftlet-0.1.0/crates/swiftlet/src/macros.rs +24 -0
  51. swiftlet-0.1.0/crates/swiftlet/src/parser/clr.rs +655 -0
  52. swiftlet-0.1.0/crates/swiftlet/src/parser/earley.rs +403 -0
  53. swiftlet-0.1.0/crates/swiftlet/src/parser/error.rs +21 -0
  54. swiftlet-0.1.0/crates/swiftlet/src/parser/mod.rs +19 -0
  55. swiftlet-0.1.0/crates/swiftlet/src/parser/utils.rs +62 -0
  56. swiftlet-0.1.0/crates/swiftlet/src/parser_frontends.rs +157 -0
  57. swiftlet-0.1.0/crates/swiftlet/src/transform.rs +514 -0
  58. swiftlet-0.1.0/crates/swiftlet/tests/plus_int_grammar_test.rs +163 -0
  59. swiftlet-0.1.0/crates/swiftlet/tests/rule_feature_in_grammar_test.rs +609 -0
  60. swiftlet-0.1.0/crates/swiftlet/tests/simple_grammar_test.rs +163 -0
  61. swiftlet-0.1.0/pyproject.toml +15 -0
  62. swiftlet-0.1.0/pyswiftlet/Cargo.toml +13 -0
  63. swiftlet-0.1.0/pyswiftlet/README.md +95 -0
  64. swiftlet-0.1.0/pyswiftlet/examples/json_parser.py +115 -0
  65. swiftlet-0.1.0/pyswiftlet/examples/sql_query_parser.py +137 -0
  66. swiftlet-0.1.0/pyswiftlet/notebooks/comparison.ipynb +888 -0
  67. swiftlet-0.1.0/pyswiftlet/notebooks/swiftlet.ipynb +530 -0
  68. swiftlet-0.1.0/pyswiftlet/src/lib.rs +367 -0
  69. swiftlet-0.1.0/pyswiftlet/tests/test_bindings.py +181 -0
  70. swiftlet-0.1.0/python/swiftlet/__init__.py +159 -0
@@ -0,0 +1,761 @@
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 = "alloca"
16
+ version = "0.4.0"
17
+ source = "registry+https://github.com/rust-lang/crates.io-index"
18
+ checksum = "e5a7d05ea6aea7e9e64d25b9156ba2fee3fdd659e34e41063cd2fc7cd020d7f4"
19
+ dependencies = [
20
+ "cc",
21
+ ]
22
+
23
+ [[package]]
24
+ name = "anes"
25
+ version = "0.1.6"
26
+ source = "registry+https://github.com/rust-lang/crates.io-index"
27
+ checksum = "4b46cbb362ab8752921c97e041f5e366ee6297bd428a31275b9fcf1e380f7299"
28
+
29
+ [[package]]
30
+ name = "anstyle"
31
+ version = "1.0.14"
32
+ source = "registry+https://github.com/rust-lang/crates.io-index"
33
+ checksum = "940b3a0ca603d1eade50a4846a2afffd5ef57a9feac2c0e2ec2e14f9ead76000"
34
+
35
+ [[package]]
36
+ name = "autocfg"
37
+ version = "1.5.0"
38
+ source = "registry+https://github.com/rust-lang/crates.io-index"
39
+ checksum = "c08606f8c3cbf4ce6ec8e28fb0014a2c086708fe954eaa885384a6165172e7e8"
40
+
41
+ [[package]]
42
+ name = "bit-set"
43
+ version = "0.8.0"
44
+ source = "registry+https://github.com/rust-lang/crates.io-index"
45
+ checksum = "08807e080ed7f9d5433fa9b275196cfc35414f66a0c79d864dc51a0d825231a3"
46
+ dependencies = [
47
+ "bit-vec",
48
+ ]
49
+
50
+ [[package]]
51
+ name = "bit-vec"
52
+ version = "0.8.0"
53
+ source = "registry+https://github.com/rust-lang/crates.io-index"
54
+ checksum = "5e764a1d40d510daf35e07be9eb06e75770908c27d411ee6c92109c9840eaaf7"
55
+
56
+ [[package]]
57
+ name = "bumpalo"
58
+ version = "3.20.2"
59
+ source = "registry+https://github.com/rust-lang/crates.io-index"
60
+ checksum = "5d20789868f4b01b2f2caec9f5c4e0213b41e3e5702a50157d699ae31ced2fcb"
61
+
62
+ [[package]]
63
+ name = "cast"
64
+ version = "0.3.0"
65
+ source = "registry+https://github.com/rust-lang/crates.io-index"
66
+ checksum = "37b2a672a2cb129a2e41c10b1224bb368f9f37a2b16b612598138befd7b37eb5"
67
+
68
+ [[package]]
69
+ name = "cc"
70
+ version = "1.2.57"
71
+ source = "registry+https://github.com/rust-lang/crates.io-index"
72
+ checksum = "7a0dd1ca384932ff3641c8718a02769f1698e7563dc6974ffd03346116310423"
73
+ dependencies = [
74
+ "find-msvc-tools",
75
+ "shlex",
76
+ ]
77
+
78
+ [[package]]
79
+ name = "cfg-if"
80
+ version = "1.0.4"
81
+ source = "registry+https://github.com/rust-lang/crates.io-index"
82
+ checksum = "9330f8b2ff13f34540b44e946ef35111825727b38d33286ef986142615121801"
83
+
84
+ [[package]]
85
+ name = "ciborium"
86
+ version = "0.2.2"
87
+ source = "registry+https://github.com/rust-lang/crates.io-index"
88
+ checksum = "42e69ffd6f0917f5c029256a24d0161db17cea3997d185db0d35926308770f0e"
89
+ dependencies = [
90
+ "ciborium-io",
91
+ "ciborium-ll",
92
+ "serde",
93
+ ]
94
+
95
+ [[package]]
96
+ name = "ciborium-io"
97
+ version = "0.2.2"
98
+ source = "registry+https://github.com/rust-lang/crates.io-index"
99
+ checksum = "05afea1e0a06c9be33d539b876f1ce3692f4afea2cb41f740e7743225ed1c757"
100
+
101
+ [[package]]
102
+ name = "ciborium-ll"
103
+ version = "0.2.2"
104
+ source = "registry+https://github.com/rust-lang/crates.io-index"
105
+ checksum = "57663b653d948a338bfb3eeba9bb2fd5fcfaecb9e199e87e1eda4d9e8b240fd9"
106
+ dependencies = [
107
+ "ciborium-io",
108
+ "half",
109
+ ]
110
+
111
+ [[package]]
112
+ name = "clap"
113
+ version = "4.6.0"
114
+ source = "registry+https://github.com/rust-lang/crates.io-index"
115
+ checksum = "b193af5b67834b676abd72466a96c1024e6a6ad978a1f484bd90b85c94041351"
116
+ dependencies = [
117
+ "clap_builder",
118
+ ]
119
+
120
+ [[package]]
121
+ name = "clap_builder"
122
+ version = "4.6.0"
123
+ source = "registry+https://github.com/rust-lang/crates.io-index"
124
+ checksum = "714a53001bf66416adb0e2ef5ac857140e7dc3a0c48fb28b2f10762fc4b5069f"
125
+ dependencies = [
126
+ "anstyle",
127
+ "clap_lex",
128
+ ]
129
+
130
+ [[package]]
131
+ name = "clap_lex"
132
+ version = "1.1.0"
133
+ source = "registry+https://github.com/rust-lang/crates.io-index"
134
+ checksum = "c8d4a3bb8b1e0c1050499d1815f5ab16d04f0959b233085fb31653fbfc9d98f9"
135
+
136
+ [[package]]
137
+ name = "criterion"
138
+ version = "0.8.2"
139
+ source = "registry+https://github.com/rust-lang/crates.io-index"
140
+ checksum = "950046b2aa2492f9a536f5f4f9a3de7b9e2476e575e05bd6c333371add4d98f3"
141
+ dependencies = [
142
+ "alloca",
143
+ "anes",
144
+ "cast",
145
+ "ciborium",
146
+ "clap",
147
+ "criterion-plot",
148
+ "itertools",
149
+ "num-traits",
150
+ "oorandom",
151
+ "page_size",
152
+ "plotters",
153
+ "rayon",
154
+ "regex",
155
+ "serde",
156
+ "serde_json",
157
+ "tinytemplate",
158
+ "walkdir",
159
+ ]
160
+
161
+ [[package]]
162
+ name = "criterion-plot"
163
+ version = "0.8.2"
164
+ source = "registry+https://github.com/rust-lang/crates.io-index"
165
+ checksum = "d8d80a2f4f5b554395e47b5d8305bc3d27813bacb73493eb1001e8f76dae29ea"
166
+ dependencies = [
167
+ "cast",
168
+ "itertools",
169
+ ]
170
+
171
+ [[package]]
172
+ name = "crossbeam-deque"
173
+ version = "0.8.6"
174
+ source = "registry+https://github.com/rust-lang/crates.io-index"
175
+ checksum = "9dd111b7b7f7d55b72c0a6ae361660ee5853c9af73f70c3c2ef6858b950e2e51"
176
+ dependencies = [
177
+ "crossbeam-epoch",
178
+ "crossbeam-utils",
179
+ ]
180
+
181
+ [[package]]
182
+ name = "crossbeam-epoch"
183
+ version = "0.9.18"
184
+ source = "registry+https://github.com/rust-lang/crates.io-index"
185
+ checksum = "5b82ac4a3c2ca9c3460964f020e1402edd5753411d7737aa39c3714ad1b5420e"
186
+ dependencies = [
187
+ "crossbeam-utils",
188
+ ]
189
+
190
+ [[package]]
191
+ name = "crossbeam-utils"
192
+ version = "0.8.21"
193
+ source = "registry+https://github.com/rust-lang/crates.io-index"
194
+ checksum = "d0a5c400df2834b80a4c3327b3aad3a4c4cd4de0629063962b03235697506a28"
195
+
196
+ [[package]]
197
+ name = "crunchy"
198
+ version = "0.2.4"
199
+ source = "registry+https://github.com/rust-lang/crates.io-index"
200
+ checksum = "460fbee9c2c2f33933d720630a6a0bac33ba7053db5344fac858d4b8952d77d5"
201
+
202
+ [[package]]
203
+ name = "either"
204
+ version = "1.15.0"
205
+ source = "registry+https://github.com/rust-lang/crates.io-index"
206
+ checksum = "48c757948c5ede0e46177b7add2e67155f70e33c07fea8284df6576da70b3719"
207
+
208
+ [[package]]
209
+ name = "equivalent"
210
+ version = "1.0.2"
211
+ source = "registry+https://github.com/rust-lang/crates.io-index"
212
+ checksum = "877a4ace8713b0bcf2a4e7eec82529c029f1d0619886d18145fea96c3ffe5c0f"
213
+
214
+ [[package]]
215
+ name = "fancy-regex"
216
+ version = "0.17.0"
217
+ source = "registry+https://github.com/rust-lang/crates.io-index"
218
+ checksum = "72cf461f865c862bb7dc573f643dd6a2b6842f7c30b07882b56bd148cc2761b8"
219
+ dependencies = [
220
+ "bit-set",
221
+ "regex-automata",
222
+ "regex-syntax",
223
+ ]
224
+
225
+ [[package]]
226
+ name = "find-msvc-tools"
227
+ version = "0.1.9"
228
+ source = "registry+https://github.com/rust-lang/crates.io-index"
229
+ checksum = "5baebc0774151f905a1a2cc41989300b1e6fbb29aff0ceffa1064fdd3088d582"
230
+
231
+ [[package]]
232
+ name = "half"
233
+ version = "2.7.1"
234
+ source = "registry+https://github.com/rust-lang/crates.io-index"
235
+ checksum = "6ea2d84b969582b4b1864a92dc5d27cd2b77b622a8d79306834f1be5ba20d84b"
236
+ dependencies = [
237
+ "cfg-if",
238
+ "crunchy",
239
+ "zerocopy",
240
+ ]
241
+
242
+ [[package]]
243
+ name = "hashbrown"
244
+ version = "0.16.1"
245
+ source = "registry+https://github.com/rust-lang/crates.io-index"
246
+ checksum = "841d1cc9bed7f9236f321df977030373f4a4163ae1a7dbfe1a51a2c1a51d9100"
247
+
248
+ [[package]]
249
+ name = "heck"
250
+ version = "0.5.0"
251
+ source = "registry+https://github.com/rust-lang/crates.io-index"
252
+ checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea"
253
+
254
+ [[package]]
255
+ name = "indexmap"
256
+ version = "2.13.0"
257
+ source = "registry+https://github.com/rust-lang/crates.io-index"
258
+ checksum = "7714e70437a7dc3ac8eb7e6f8df75fd8eb422675fc7678aff7364301092b1017"
259
+ dependencies = [
260
+ "equivalent",
261
+ "hashbrown",
262
+ ]
263
+
264
+ [[package]]
265
+ name = "itertools"
266
+ version = "0.13.0"
267
+ source = "registry+https://github.com/rust-lang/crates.io-index"
268
+ checksum = "413ee7dfc52ee1a4949ceeb7dbc8a33f2d6c088194d9f922fb8318faf1f01186"
269
+ dependencies = [
270
+ "either",
271
+ ]
272
+
273
+ [[package]]
274
+ name = "itoa"
275
+ version = "1.0.18"
276
+ source = "registry+https://github.com/rust-lang/crates.io-index"
277
+ checksum = "8f42a60cbdf9a97f5d2305f08a87dc4e09308d1276d28c869c684d7777685682"
278
+
279
+ [[package]]
280
+ name = "js-sys"
281
+ version = "0.3.91"
282
+ source = "registry+https://github.com/rust-lang/crates.io-index"
283
+ checksum = "b49715b7073f385ba4bc528e5747d02e66cb39c6146efb66b781f131f0fb399c"
284
+ dependencies = [
285
+ "once_cell",
286
+ "wasm-bindgen",
287
+ ]
288
+
289
+ [[package]]
290
+ name = "libc"
291
+ version = "0.2.183"
292
+ source = "registry+https://github.com/rust-lang/crates.io-index"
293
+ checksum = "b5b646652bf6661599e1da8901b3b9522896f01e736bad5f723fe7a3a27f899d"
294
+
295
+ [[package]]
296
+ name = "memchr"
297
+ version = "2.8.0"
298
+ source = "registry+https://github.com/rust-lang/crates.io-index"
299
+ checksum = "f8ca58f447f06ed17d5fc4043ce1b10dd205e060fb3ce5b979b8ed8e59ff3f79"
300
+
301
+ [[package]]
302
+ name = "num-traits"
303
+ version = "0.2.19"
304
+ source = "registry+https://github.com/rust-lang/crates.io-index"
305
+ checksum = "071dfc062690e90b734c0b2273ce72ad0ffa95f0c74596bc250dcfd960262841"
306
+ dependencies = [
307
+ "autocfg",
308
+ ]
309
+
310
+ [[package]]
311
+ name = "once_cell"
312
+ version = "1.21.4"
313
+ source = "registry+https://github.com/rust-lang/crates.io-index"
314
+ checksum = "9f7c3e4beb33f85d45ae3e3a1792185706c8e16d043238c593331cc7cd313b50"
315
+
316
+ [[package]]
317
+ name = "oorandom"
318
+ version = "11.1.5"
319
+ source = "registry+https://github.com/rust-lang/crates.io-index"
320
+ checksum = "d6790f58c7ff633d8771f42965289203411a5e5c68388703c06e14f24770b41e"
321
+
322
+ [[package]]
323
+ name = "page_size"
324
+ version = "0.6.0"
325
+ source = "registry+https://github.com/rust-lang/crates.io-index"
326
+ checksum = "30d5b2194ed13191c1999ae0704b7839fb18384fa22e49b57eeaa97d79ce40da"
327
+ dependencies = [
328
+ "libc",
329
+ "winapi",
330
+ ]
331
+
332
+ [[package]]
333
+ name = "plotters"
334
+ version = "0.3.7"
335
+ source = "registry+https://github.com/rust-lang/crates.io-index"
336
+ checksum = "5aeb6f403d7a4911efb1e33402027fc44f29b5bf6def3effcc22d7bb75f2b747"
337
+ dependencies = [
338
+ "num-traits",
339
+ "plotters-backend",
340
+ "plotters-svg",
341
+ "wasm-bindgen",
342
+ "web-sys",
343
+ ]
344
+
345
+ [[package]]
346
+ name = "plotters-backend"
347
+ version = "0.3.7"
348
+ source = "registry+https://github.com/rust-lang/crates.io-index"
349
+ checksum = "df42e13c12958a16b3f7f4386b9ab1f3e7933914ecea48da7139435263a4172a"
350
+
351
+ [[package]]
352
+ name = "plotters-svg"
353
+ version = "0.3.7"
354
+ source = "registry+https://github.com/rust-lang/crates.io-index"
355
+ checksum = "51bae2ac328883f7acdfea3d66a7c35751187f870bc81f94563733a154d7a670"
356
+ dependencies = [
357
+ "plotters-backend",
358
+ ]
359
+
360
+ [[package]]
361
+ name = "portable-atomic"
362
+ version = "1.13.1"
363
+ source = "registry+https://github.com/rust-lang/crates.io-index"
364
+ checksum = "c33a9471896f1c69cecef8d20cbe2f7accd12527ce60845ff44c153bb2a21b49"
365
+
366
+ [[package]]
367
+ name = "proc-macro2"
368
+ version = "1.0.106"
369
+ source = "registry+https://github.com/rust-lang/crates.io-index"
370
+ checksum = "8fd00f0bb2e90d81d1044c2b32617f68fcb9fa3bb7640c23e9c748e53fb30934"
371
+ dependencies = [
372
+ "unicode-ident",
373
+ ]
374
+
375
+ [[package]]
376
+ name = "pyo3"
377
+ version = "0.28.2"
378
+ source = "registry+https://github.com/rust-lang/crates.io-index"
379
+ checksum = "cf85e27e86080aafd5a22eae58a162e133a589551542b3e5cee4beb27e54f8e1"
380
+ dependencies = [
381
+ "libc",
382
+ "once_cell",
383
+ "portable-atomic",
384
+ "pyo3-build-config",
385
+ "pyo3-ffi",
386
+ "pyo3-macros",
387
+ ]
388
+
389
+ [[package]]
390
+ name = "pyo3-build-config"
391
+ version = "0.28.2"
392
+ source = "registry+https://github.com/rust-lang/crates.io-index"
393
+ checksum = "8bf94ee265674bf76c09fa430b0e99c26e319c945d96ca0d5a8215f31bf81cf7"
394
+ dependencies = [
395
+ "target-lexicon",
396
+ ]
397
+
398
+ [[package]]
399
+ name = "pyo3-ffi"
400
+ version = "0.28.2"
401
+ source = "registry+https://github.com/rust-lang/crates.io-index"
402
+ checksum = "491aa5fc66d8059dd44a75f4580a2962c1862a1c2945359db36f6c2818b748dc"
403
+ dependencies = [
404
+ "libc",
405
+ "pyo3-build-config",
406
+ ]
407
+
408
+ [[package]]
409
+ name = "pyo3-macros"
410
+ version = "0.28.2"
411
+ source = "registry+https://github.com/rust-lang/crates.io-index"
412
+ checksum = "f5d671734e9d7a43449f8480f8b38115df67bef8d21f76837fa75ee7aaa5e52e"
413
+ dependencies = [
414
+ "proc-macro2",
415
+ "pyo3-macros-backend",
416
+ "quote",
417
+ "syn",
418
+ ]
419
+
420
+ [[package]]
421
+ name = "pyo3-macros-backend"
422
+ version = "0.28.2"
423
+ source = "registry+https://github.com/rust-lang/crates.io-index"
424
+ checksum = "22faaa1ce6c430a1f71658760497291065e6450d7b5dc2bcf254d49f66ee700a"
425
+ dependencies = [
426
+ "heck",
427
+ "proc-macro2",
428
+ "pyo3-build-config",
429
+ "quote",
430
+ "syn",
431
+ ]
432
+
433
+ [[package]]
434
+ name = "pyswiftlet"
435
+ version = "0.1.0"
436
+ dependencies = [
437
+ "pyo3",
438
+ "swiftlet",
439
+ ]
440
+
441
+ [[package]]
442
+ name = "quote"
443
+ version = "1.0.45"
444
+ source = "registry+https://github.com/rust-lang/crates.io-index"
445
+ checksum = "41f2619966050689382d2b44f664f4bc593e129785a36d6ee376ddf37259b924"
446
+ dependencies = [
447
+ "proc-macro2",
448
+ ]
449
+
450
+ [[package]]
451
+ name = "rayon"
452
+ version = "1.11.0"
453
+ source = "registry+https://github.com/rust-lang/crates.io-index"
454
+ checksum = "368f01d005bf8fd9b1206fb6fa653e6c4a81ceb1466406b81792d87c5677a58f"
455
+ dependencies = [
456
+ "either",
457
+ "rayon-core",
458
+ ]
459
+
460
+ [[package]]
461
+ name = "rayon-core"
462
+ version = "1.13.0"
463
+ source = "registry+https://github.com/rust-lang/crates.io-index"
464
+ checksum = "22e18b0f0062d30d4230b2e85ff77fdfe4326feb054b9783a3460d8435c8ab91"
465
+ dependencies = [
466
+ "crossbeam-deque",
467
+ "crossbeam-utils",
468
+ ]
469
+
470
+ [[package]]
471
+ name = "regex"
472
+ version = "1.12.3"
473
+ source = "registry+https://github.com/rust-lang/crates.io-index"
474
+ checksum = "e10754a14b9137dd7b1e3e5b0493cc9171fdd105e0ab477f51b72e7f3ac0e276"
475
+ dependencies = [
476
+ "aho-corasick",
477
+ "memchr",
478
+ "regex-automata",
479
+ "regex-syntax",
480
+ ]
481
+
482
+ [[package]]
483
+ name = "regex-automata"
484
+ version = "0.4.14"
485
+ source = "registry+https://github.com/rust-lang/crates.io-index"
486
+ checksum = "6e1dd4122fc1595e8162618945476892eefca7b88c52820e74af6262213cae8f"
487
+ dependencies = [
488
+ "aho-corasick",
489
+ "memchr",
490
+ "regex-syntax",
491
+ ]
492
+
493
+ [[package]]
494
+ name = "regex-syntax"
495
+ version = "0.8.10"
496
+ source = "registry+https://github.com/rust-lang/crates.io-index"
497
+ checksum = "dc897dd8d9e8bd1ed8cdad82b5966c3e0ecae09fb1907d58efaa013543185d0a"
498
+
499
+ [[package]]
500
+ name = "rustversion"
501
+ version = "1.0.22"
502
+ source = "registry+https://github.com/rust-lang/crates.io-index"
503
+ checksum = "b39cdef0fa800fc44525c84ccb54a029961a8215f9619753635a9c0d2538d46d"
504
+
505
+ [[package]]
506
+ name = "same-file"
507
+ version = "1.0.6"
508
+ source = "registry+https://github.com/rust-lang/crates.io-index"
509
+ checksum = "93fc1dc3aaa9bfed95e02e6eadabb4baf7e3078b0bd1b4d7b6b0b68378900502"
510
+ dependencies = [
511
+ "winapi-util",
512
+ ]
513
+
514
+ [[package]]
515
+ name = "serde"
516
+ version = "1.0.228"
517
+ source = "registry+https://github.com/rust-lang/crates.io-index"
518
+ checksum = "9a8e94ea7f378bd32cbbd37198a4a91436180c5bb472411e48b5ec2e2124ae9e"
519
+ dependencies = [
520
+ "serde_core",
521
+ "serde_derive",
522
+ ]
523
+
524
+ [[package]]
525
+ name = "serde_core"
526
+ version = "1.0.228"
527
+ source = "registry+https://github.com/rust-lang/crates.io-index"
528
+ checksum = "41d385c7d4ca58e59fc732af25c3983b67ac852c1a25000afe1175de458b67ad"
529
+ dependencies = [
530
+ "serde_derive",
531
+ ]
532
+
533
+ [[package]]
534
+ name = "serde_derive"
535
+ version = "1.0.228"
536
+ source = "registry+https://github.com/rust-lang/crates.io-index"
537
+ checksum = "d540f220d3187173da220f885ab66608367b6574e925011a9353e4badda91d79"
538
+ dependencies = [
539
+ "proc-macro2",
540
+ "quote",
541
+ "syn",
542
+ ]
543
+
544
+ [[package]]
545
+ name = "serde_json"
546
+ version = "1.0.149"
547
+ source = "registry+https://github.com/rust-lang/crates.io-index"
548
+ checksum = "83fc039473c5595ace860d8c4fafa220ff474b3fc6bfdb4293327f1a37e94d86"
549
+ dependencies = [
550
+ "itoa",
551
+ "memchr",
552
+ "serde",
553
+ "serde_core",
554
+ "zmij",
555
+ ]
556
+
557
+ [[package]]
558
+ name = "shlex"
559
+ version = "1.3.0"
560
+ source = "registry+https://github.com/rust-lang/crates.io-index"
561
+ checksum = "0fda2ff0d084019ba4d7c6f371c95d8fd75ce3524c3cb8fb653a3023f6323e64"
562
+
563
+ [[package]]
564
+ name = "swiftlet"
565
+ version = "0.1.1"
566
+ dependencies = [
567
+ "criterion",
568
+ "fancy-regex",
569
+ "indexmap",
570
+ "thiserror",
571
+ ]
572
+
573
+ [[package]]
574
+ name = "syn"
575
+ version = "2.0.117"
576
+ source = "registry+https://github.com/rust-lang/crates.io-index"
577
+ checksum = "e665b8803e7b1d2a727f4023456bbbbe74da67099c585258af0ad9c5013b9b99"
578
+ dependencies = [
579
+ "proc-macro2",
580
+ "quote",
581
+ "unicode-ident",
582
+ ]
583
+
584
+ [[package]]
585
+ name = "target-lexicon"
586
+ version = "0.13.5"
587
+ source = "registry+https://github.com/rust-lang/crates.io-index"
588
+ checksum = "adb6935a6f5c20170eeceb1a3835a49e12e19d792f6dd344ccc76a985ca5a6ca"
589
+
590
+ [[package]]
591
+ name = "thiserror"
592
+ version = "2.0.18"
593
+ source = "registry+https://github.com/rust-lang/crates.io-index"
594
+ checksum = "4288b5bcbc7920c07a1149a35cf9590a2aa808e0bc1eafaade0b80947865fbc4"
595
+ dependencies = [
596
+ "thiserror-impl",
597
+ ]
598
+
599
+ [[package]]
600
+ name = "thiserror-impl"
601
+ version = "2.0.18"
602
+ source = "registry+https://github.com/rust-lang/crates.io-index"
603
+ checksum = "ebc4ee7f67670e9b64d05fa4253e753e016c6c95ff35b89b7941d6b856dec1d5"
604
+ dependencies = [
605
+ "proc-macro2",
606
+ "quote",
607
+ "syn",
608
+ ]
609
+
610
+ [[package]]
611
+ name = "tinytemplate"
612
+ version = "1.2.1"
613
+ source = "registry+https://github.com/rust-lang/crates.io-index"
614
+ checksum = "be4d6b5f19ff7664e8c98d03e2139cb510db9b0a60b55f8e8709b689d939b6bc"
615
+ dependencies = [
616
+ "serde",
617
+ "serde_json",
618
+ ]
619
+
620
+ [[package]]
621
+ name = "unicode-ident"
622
+ version = "1.0.24"
623
+ source = "registry+https://github.com/rust-lang/crates.io-index"
624
+ checksum = "e6e4313cd5fcd3dad5cafa179702e2b244f760991f45397d14d4ebf38247da75"
625
+
626
+ [[package]]
627
+ name = "walkdir"
628
+ version = "2.5.0"
629
+ source = "registry+https://github.com/rust-lang/crates.io-index"
630
+ checksum = "29790946404f91d9c5d06f9874efddea1dc06c5efe94541a7d6863108e3a5e4b"
631
+ dependencies = [
632
+ "same-file",
633
+ "winapi-util",
634
+ ]
635
+
636
+ [[package]]
637
+ name = "wasm-bindgen"
638
+ version = "0.2.114"
639
+ source = "registry+https://github.com/rust-lang/crates.io-index"
640
+ checksum = "6532f9a5c1ece3798cb1c2cfdba640b9b3ba884f5db45973a6f442510a87d38e"
641
+ dependencies = [
642
+ "cfg-if",
643
+ "once_cell",
644
+ "rustversion",
645
+ "wasm-bindgen-macro",
646
+ "wasm-bindgen-shared",
647
+ ]
648
+
649
+ [[package]]
650
+ name = "wasm-bindgen-macro"
651
+ version = "0.2.114"
652
+ source = "registry+https://github.com/rust-lang/crates.io-index"
653
+ checksum = "18a2d50fcf105fb33bb15f00e7a77b772945a2ee45dcf454961fd843e74c18e6"
654
+ dependencies = [
655
+ "quote",
656
+ "wasm-bindgen-macro-support",
657
+ ]
658
+
659
+ [[package]]
660
+ name = "wasm-bindgen-macro-support"
661
+ version = "0.2.114"
662
+ source = "registry+https://github.com/rust-lang/crates.io-index"
663
+ checksum = "03ce4caeaac547cdf713d280eda22a730824dd11e6b8c3ca9e42247b25c631e3"
664
+ dependencies = [
665
+ "bumpalo",
666
+ "proc-macro2",
667
+ "quote",
668
+ "syn",
669
+ "wasm-bindgen-shared",
670
+ ]
671
+
672
+ [[package]]
673
+ name = "wasm-bindgen-shared"
674
+ version = "0.2.114"
675
+ source = "registry+https://github.com/rust-lang/crates.io-index"
676
+ checksum = "75a326b8c223ee17883a4251907455a2431acc2791c98c26279376490c378c16"
677
+ dependencies = [
678
+ "unicode-ident",
679
+ ]
680
+
681
+ [[package]]
682
+ name = "web-sys"
683
+ version = "0.3.91"
684
+ source = "registry+https://github.com/rust-lang/crates.io-index"
685
+ checksum = "854ba17bb104abfb26ba36da9729addc7ce7f06f5c0f90f3c391f8461cca21f9"
686
+ dependencies = [
687
+ "js-sys",
688
+ "wasm-bindgen",
689
+ ]
690
+
691
+ [[package]]
692
+ name = "winapi"
693
+ version = "0.3.9"
694
+ source = "registry+https://github.com/rust-lang/crates.io-index"
695
+ checksum = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419"
696
+ dependencies = [
697
+ "winapi-i686-pc-windows-gnu",
698
+ "winapi-x86_64-pc-windows-gnu",
699
+ ]
700
+
701
+ [[package]]
702
+ name = "winapi-i686-pc-windows-gnu"
703
+ version = "0.4.0"
704
+ source = "registry+https://github.com/rust-lang/crates.io-index"
705
+ checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6"
706
+
707
+ [[package]]
708
+ name = "winapi-util"
709
+ version = "0.1.11"
710
+ source = "registry+https://github.com/rust-lang/crates.io-index"
711
+ checksum = "c2a7b1c03c876122aa43f3020e6c3c3ee5c05081c9a00739faf7503aeba10d22"
712
+ dependencies = [
713
+ "windows-sys",
714
+ ]
715
+
716
+ [[package]]
717
+ name = "winapi-x86_64-pc-windows-gnu"
718
+ version = "0.4.0"
719
+ source = "registry+https://github.com/rust-lang/crates.io-index"
720
+ checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f"
721
+
722
+ [[package]]
723
+ name = "windows-link"
724
+ version = "0.2.1"
725
+ source = "registry+https://github.com/rust-lang/crates.io-index"
726
+ checksum = "f0805222e57f7521d6a62e36fa9163bc891acd422f971defe97d64e70d0a4fe5"
727
+
728
+ [[package]]
729
+ name = "windows-sys"
730
+ version = "0.61.2"
731
+ source = "registry+https://github.com/rust-lang/crates.io-index"
732
+ checksum = "ae137229bcbd6cdf0f7b80a31df61766145077ddf49416a728b02cb3921ff3fc"
733
+ dependencies = [
734
+ "windows-link",
735
+ ]
736
+
737
+ [[package]]
738
+ name = "zerocopy"
739
+ version = "0.8.47"
740
+ source = "registry+https://github.com/rust-lang/crates.io-index"
741
+ checksum = "efbb2a062be311f2ba113ce66f697a4dc589f85e78a4aea276200804cea0ed87"
742
+ dependencies = [
743
+ "zerocopy-derive",
744
+ ]
745
+
746
+ [[package]]
747
+ name = "zerocopy-derive"
748
+ version = "0.8.47"
749
+ source = "registry+https://github.com/rust-lang/crates.io-index"
750
+ checksum = "0e8bc7269b54418e7aeeef514aa68f8690b8c0489a06b0136e5f57c4c5ccab89"
751
+ dependencies = [
752
+ "proc-macro2",
753
+ "quote",
754
+ "syn",
755
+ ]
756
+
757
+ [[package]]
758
+ name = "zmij"
759
+ version = "1.0.21"
760
+ source = "registry+https://github.com/rust-lang/crates.io-index"
761
+ checksum = "b8848ee67ecc8aedbaf3e4122217aff892639231befc6a1b58d29fff4c2cabaa"