dirsql 0.1.0__tar.gz → 0.1.2__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 (58) hide show
  1. {dirsql-0.1.0 → dirsql-0.1.2}/Cargo.lock +762 -1
  2. dirsql-0.1.2/Cargo.toml +18 -0
  3. dirsql-0.1.2/PKG-INFO +209 -0
  4. dirsql-0.1.2/README.md +191 -0
  5. dirsql-0.1.2/packages/python/Cargo.toml +18 -0
  6. dirsql-0.1.2/packages/python/README.md +191 -0
  7. dirsql-0.1.2/packages/python/src/lib.rs +315 -0
  8. dirsql-0.1.2/packages/python/tests/__init__.py +1 -0
  9. dirsql-0.1.2/packages/python/tests/conftest.py +38 -0
  10. dirsql-0.1.2/packages/python/tests/integration/__init__.py +1 -0
  11. dirsql-0.1.2/packages/python/tests/integration/test_async_dirsql.py +387 -0
  12. dirsql-0.1.2/packages/python/tests/integration/test_binding.py +266 -0
  13. dirsql-0.1.2/packages/python/tests/integration/test_dirsql.py +483 -0
  14. dirsql-0.1.2/packages/python/tests/integration/test_docs_examples.py +780 -0
  15. dirsql-0.1.2/packages/python/tests/integration/test_docs_gaps.py +374 -0
  16. dirsql-0.1.2/packages/python/tests/integration/test_from_config.py +361 -0
  17. dirsql-0.1.2/packages/rust/Cargo.toml +46 -0
  18. dirsql-0.1.2/packages/rust/README.md +22 -0
  19. dirsql-0.1.2/packages/rust/benches/db_bench.rs +88 -0
  20. dirsql-0.1.2/packages/rust/benches/differ_bench.rs +108 -0
  21. dirsql-0.1.2/packages/rust/benches/matcher_bench.rs +86 -0
  22. dirsql-0.1.2/packages/rust/benches/scanner_bench.rs +55 -0
  23. dirsql-0.1.2/packages/rust/src/config.rs +391 -0
  24. dirsql-0.1.2/packages/rust/src/db.rs +697 -0
  25. {dirsql-0.1.0 → dirsql-0.1.2/packages/rust}/src/differ.rs +71 -31
  26. dirsql-0.1.2/packages/rust/src/lib.rs +713 -0
  27. dirsql-0.1.2/packages/rust/src/matcher.rs +320 -0
  28. dirsql-0.1.2/packages/rust/src/parser.rs +1507 -0
  29. {dirsql-0.1.0 → dirsql-0.1.2/packages/rust}/src/scanner.rs +6 -2
  30. {dirsql-0.1.0 → dirsql-0.1.2/packages/rust}/src/watcher.rs +51 -0
  31. dirsql-0.1.2/packages/rust/tests/async_sdk.rs +174 -0
  32. dirsql-0.1.2/packages/rust/tests/docs_examples.rs +812 -0
  33. dirsql-0.1.2/packages/rust/tests/docs_gaps.rs +327 -0
  34. dirsql-0.1.2/packages/rust/tests/from_config.rs +256 -0
  35. dirsql-0.1.2/packages/rust/tests/sdk.rs +390 -0
  36. {dirsql-0.1.0 → dirsql-0.1.2}/pyproject.toml +10 -2
  37. dirsql-0.1.2/python/dirsql/__init__.py +6 -0
  38. dirsql-0.1.2/python/dirsql/_async.py +104 -0
  39. dirsql-0.1.2/python/dirsql/test_async.py +78 -0
  40. dirsql-0.1.0/.claude/CLAUDE.md +0 -119
  41. dirsql-0.1.0/.github/workflows/minor-release.yml +0 -14
  42. dirsql-0.1.0/.github/workflows/patch-release.yml +0 -45
  43. dirsql-0.1.0/.github/workflows/pr-monitor.yml +0 -16
  44. dirsql-0.1.0/.github/workflows/publish.yml +0 -300
  45. dirsql-0.1.0/.github/workflows/python-lint.yml +0 -35
  46. dirsql-0.1.0/.github/workflows/python-test.yml +0 -45
  47. dirsql-0.1.0/.github/workflows/rust-test.yml +0 -41
  48. dirsql-0.1.0/.gitignore +0 -8
  49. dirsql-0.1.0/Cargo.toml +0 -27
  50. dirsql-0.1.0/LICENSE +0 -21
  51. dirsql-0.1.0/PKG-INFO +0 -15
  52. dirsql-0.1.0/SUMMARY.md +0 -62
  53. dirsql-0.1.0/index.js +0 -5
  54. dirsql-0.1.0/justfile +0 -53
  55. dirsql-0.1.0/package.json +0 -8
  56. dirsql-0.1.0/src/db.rs +0 -312
  57. dirsql-0.1.0/src/lib.rs +0 -15
  58. dirsql-0.1.0/src/matcher.rs +0 -116
@@ -11,12 +11,30 @@ dependencies = [
11
11
  "memchr",
12
12
  ]
13
13
 
14
+ [[package]]
15
+ name = "anes"
16
+ version = "0.1.6"
17
+ source = "registry+https://github.com/rust-lang/crates.io-index"
18
+ checksum = "4b46cbb362ab8752921c97e041f5e366ee6297bd428a31275b9fcf1e380f7299"
19
+
20
+ [[package]]
21
+ name = "anstyle"
22
+ version = "1.0.14"
23
+ source = "registry+https://github.com/rust-lang/crates.io-index"
24
+ checksum = "940b3a0ca603d1eade50a4846a2afffd5ef57a9feac2c0e2ec2e14f9ead76000"
25
+
14
26
  [[package]]
15
27
  name = "anyhow"
16
28
  version = "1.0.102"
17
29
  source = "registry+https://github.com/rust-lang/crates.io-index"
18
30
  checksum = "7f202df86484c868dbad7eaa557ef785d5c66295e41b460ef922eca0723b842c"
19
31
 
32
+ [[package]]
33
+ name = "autocfg"
34
+ version = "1.5.0"
35
+ source = "registry+https://github.com/rust-lang/crates.io-index"
36
+ checksum = "c08606f8c3cbf4ce6ec8e28fb0014a2c086708fe954eaa885384a6165172e7e8"
37
+
20
38
  [[package]]
21
39
  name = "bitflags"
22
40
  version = "1.3.2"
@@ -39,6 +57,18 @@ dependencies = [
39
57
  "serde",
40
58
  ]
41
59
 
60
+ [[package]]
61
+ name = "bumpalo"
62
+ version = "3.20.2"
63
+ source = "registry+https://github.com/rust-lang/crates.io-index"
64
+ checksum = "5d20789868f4b01b2f2caec9f5c4e0213b41e3e5702a50157d699ae31ced2fcb"
65
+
66
+ [[package]]
67
+ name = "cast"
68
+ version = "0.3.0"
69
+ source = "registry+https://github.com/rust-lang/crates.io-index"
70
+ checksum = "37b2a672a2cb129a2e41c10b1224bb368f9f37a2b16b612598138befd7b37eb5"
71
+
42
72
  [[package]]
43
73
  name = "cc"
44
74
  version = "1.2.59"
@@ -55,19 +85,234 @@ version = "1.0.4"
55
85
  source = "registry+https://github.com/rust-lang/crates.io-index"
56
86
  checksum = "9330f8b2ff13f34540b44e946ef35111825727b38d33286ef986142615121801"
57
87
 
88
+ [[package]]
89
+ name = "ciborium"
90
+ version = "0.2.2"
91
+ source = "registry+https://github.com/rust-lang/crates.io-index"
92
+ checksum = "42e69ffd6f0917f5c029256a24d0161db17cea3997d185db0d35926308770f0e"
93
+ dependencies = [
94
+ "ciborium-io",
95
+ "ciborium-ll",
96
+ "serde",
97
+ ]
98
+
99
+ [[package]]
100
+ name = "ciborium-io"
101
+ version = "0.2.2"
102
+ source = "registry+https://github.com/rust-lang/crates.io-index"
103
+ checksum = "05afea1e0a06c9be33d539b876f1ce3692f4afea2cb41f740e7743225ed1c757"
104
+
105
+ [[package]]
106
+ name = "ciborium-ll"
107
+ version = "0.2.2"
108
+ source = "registry+https://github.com/rust-lang/crates.io-index"
109
+ checksum = "57663b653d948a338bfb3eeba9bb2fd5fcfaecb9e199e87e1eda4d9e8b240fd9"
110
+ dependencies = [
111
+ "ciborium-io",
112
+ "half",
113
+ ]
114
+
115
+ [[package]]
116
+ name = "clap"
117
+ version = "4.6.0"
118
+ source = "registry+https://github.com/rust-lang/crates.io-index"
119
+ checksum = "b193af5b67834b676abd72466a96c1024e6a6ad978a1f484bd90b85c94041351"
120
+ dependencies = [
121
+ "clap_builder",
122
+ ]
123
+
124
+ [[package]]
125
+ name = "clap_builder"
126
+ version = "4.6.0"
127
+ source = "registry+https://github.com/rust-lang/crates.io-index"
128
+ checksum = "714a53001bf66416adb0e2ef5ac857140e7dc3a0c48fb28b2f10762fc4b5069f"
129
+ dependencies = [
130
+ "anstyle",
131
+ "clap_lex",
132
+ ]
133
+
134
+ [[package]]
135
+ name = "clap_lex"
136
+ version = "1.1.0"
137
+ source = "registry+https://github.com/rust-lang/crates.io-index"
138
+ checksum = "c8d4a3bb8b1e0c1050499d1815f5ab16d04f0959b233085fb31653fbfc9d98f9"
139
+
140
+ [[package]]
141
+ name = "convert_case"
142
+ version = "0.11.0"
143
+ source = "registry+https://github.com/rust-lang/crates.io-index"
144
+ checksum = "affbf0190ed2caf063e3def54ff444b449371d55c58e513a95ab98eca50adb49"
145
+ dependencies = [
146
+ "unicode-segmentation",
147
+ ]
148
+
149
+ [[package]]
150
+ name = "criterion"
151
+ version = "0.5.1"
152
+ source = "registry+https://github.com/rust-lang/crates.io-index"
153
+ checksum = "f2b12d017a929603d80db1831cd3a24082f8137ce19c69e6447f54f5fc8d692f"
154
+ dependencies = [
155
+ "anes",
156
+ "cast",
157
+ "ciborium",
158
+ "clap",
159
+ "criterion-plot",
160
+ "is-terminal",
161
+ "itertools",
162
+ "num-traits",
163
+ "once_cell",
164
+ "oorandom",
165
+ "plotters",
166
+ "rayon",
167
+ "regex",
168
+ "serde",
169
+ "serde_derive",
170
+ "serde_json",
171
+ "tinytemplate",
172
+ "walkdir",
173
+ ]
174
+
175
+ [[package]]
176
+ name = "criterion-plot"
177
+ version = "0.5.0"
178
+ source = "registry+https://github.com/rust-lang/crates.io-index"
179
+ checksum = "6b50826342786a51a89e2da3a28f1c32b06e387201bc2d19791f622c673706b1"
180
+ dependencies = [
181
+ "cast",
182
+ "itertools",
183
+ ]
184
+
185
+ [[package]]
186
+ name = "crossbeam-deque"
187
+ version = "0.8.6"
188
+ source = "registry+https://github.com/rust-lang/crates.io-index"
189
+ checksum = "9dd111b7b7f7d55b72c0a6ae361660ee5853c9af73f70c3c2ef6858b950e2e51"
190
+ dependencies = [
191
+ "crossbeam-epoch",
192
+ "crossbeam-utils",
193
+ ]
194
+
195
+ [[package]]
196
+ name = "crossbeam-epoch"
197
+ version = "0.9.18"
198
+ source = "registry+https://github.com/rust-lang/crates.io-index"
199
+ checksum = "5b82ac4a3c2ca9c3460964f020e1402edd5753411d7737aa39c3714ad1b5420e"
200
+ dependencies = [
201
+ "crossbeam-utils",
202
+ ]
203
+
204
+ [[package]]
205
+ name = "crossbeam-utils"
206
+ version = "0.8.21"
207
+ source = "registry+https://github.com/rust-lang/crates.io-index"
208
+ checksum = "d0a5c400df2834b80a4c3327b3aad3a4c4cd4de0629063962b03235697506a28"
209
+
210
+ [[package]]
211
+ name = "crunchy"
212
+ version = "0.2.4"
213
+ source = "registry+https://github.com/rust-lang/crates.io-index"
214
+ checksum = "460fbee9c2c2f33933d720630a6a0bac33ba7053db5344fac858d4b8952d77d5"
215
+
216
+ [[package]]
217
+ name = "csv"
218
+ version = "1.4.0"
219
+ source = "registry+https://github.com/rust-lang/crates.io-index"
220
+ checksum = "52cd9d68cf7efc6ddfaaee42e7288d3a99d613d4b50f76ce9827ae0c6e14f938"
221
+ dependencies = [
222
+ "csv-core",
223
+ "itoa",
224
+ "ryu",
225
+ "serde_core",
226
+ ]
227
+
228
+ [[package]]
229
+ name = "csv-core"
230
+ version = "0.1.13"
231
+ source = "registry+https://github.com/rust-lang/crates.io-index"
232
+ checksum = "704a3c26996a80471189265814dbc2c257598b96b8a7feae2d31ace646bb9782"
233
+ dependencies = [
234
+ "memchr",
235
+ ]
236
+
237
+ [[package]]
238
+ name = "ctor"
239
+ version = "0.8.0"
240
+ source = "registry+https://github.com/rust-lang/crates.io-index"
241
+ checksum = "352d39c2f7bef1d6ad73db6f5160efcaed66d94ef8c6c573a8410c00bf909a98"
242
+ dependencies = [
243
+ "ctor-proc-macro",
244
+ "dtor",
245
+ ]
246
+
247
+ [[package]]
248
+ name = "ctor-proc-macro"
249
+ version = "0.0.7"
250
+ source = "registry+https://github.com/rust-lang/crates.io-index"
251
+ checksum = "52560adf09603e58c9a7ee1fe1dcb95a16927b17c127f0ac02d6e768a0e25bc1"
252
+
58
253
  [[package]]
59
254
  name = "dirsql"
60
255
  version = "0.1.0"
61
256
  dependencies = [
257
+ "criterion",
258
+ "csv",
259
+ "futures-channel",
260
+ "futures-executor",
261
+ "futures-util",
62
262
  "globset",
63
263
  "notify",
64
- "pyo3",
264
+ "regex",
65
265
  "rusqlite",
266
+ "serde",
267
+ "serde_json",
268
+ "serde_yaml",
66
269
  "tempfile",
67
270
  "thiserror",
271
+ "tokio",
272
+ "toml",
68
273
  "walkdir",
69
274
  ]
70
275
 
276
+ [[package]]
277
+ name = "dirsql-napi"
278
+ version = "0.1.0"
279
+ dependencies = [
280
+ "dirsql",
281
+ "napi",
282
+ "napi-build",
283
+ "napi-derive",
284
+ "serde_json",
285
+ ]
286
+
287
+ [[package]]
288
+ name = "dirsql-py-ext"
289
+ version = "0.1.0"
290
+ dependencies = [
291
+ "dirsql",
292
+ "pyo3",
293
+ ]
294
+
295
+ [[package]]
296
+ name = "dtor"
297
+ version = "0.3.0"
298
+ source = "registry+https://github.com/rust-lang/crates.io-index"
299
+ checksum = "f1057d6c64987086ff8ed0fd3fbf377a6b7d205cc7715868cd401705f715cbe4"
300
+ dependencies = [
301
+ "dtor-proc-macro",
302
+ ]
303
+
304
+ [[package]]
305
+ name = "dtor-proc-macro"
306
+ version = "0.0.6"
307
+ source = "registry+https://github.com/rust-lang/crates.io-index"
308
+ checksum = "f678cf4a922c215c63e0de95eb1ff08a958a81d47e485cf9da1e27bf6305cfa5"
309
+
310
+ [[package]]
311
+ name = "either"
312
+ version = "1.15.0"
313
+ source = "registry+https://github.com/rust-lang/crates.io-index"
314
+ checksum = "48c757948c5ede0e46177b7add2e67155f70e33c07fea8284df6576da70b3719"
315
+
71
316
  [[package]]
72
317
  name = "equivalent"
73
318
  version = "1.0.2"
@@ -134,6 +379,94 @@ dependencies = [
134
379
  "libc",
135
380
  ]
136
381
 
382
+ [[package]]
383
+ name = "futures"
384
+ version = "0.3.32"
385
+ source = "registry+https://github.com/rust-lang/crates.io-index"
386
+ checksum = "8b147ee9d1f6d097cef9ce628cd2ee62288d963e16fb287bd9286455b241382d"
387
+ dependencies = [
388
+ "futures-channel",
389
+ "futures-core",
390
+ "futures-executor",
391
+ "futures-io",
392
+ "futures-sink",
393
+ "futures-task",
394
+ "futures-util",
395
+ ]
396
+
397
+ [[package]]
398
+ name = "futures-channel"
399
+ version = "0.3.32"
400
+ source = "registry+https://github.com/rust-lang/crates.io-index"
401
+ checksum = "07bbe89c50d7a535e539b8c17bc0b49bdb77747034daa8087407d655f3f7cc1d"
402
+ dependencies = [
403
+ "futures-core",
404
+ "futures-sink",
405
+ ]
406
+
407
+ [[package]]
408
+ name = "futures-core"
409
+ version = "0.3.32"
410
+ source = "registry+https://github.com/rust-lang/crates.io-index"
411
+ checksum = "7e3450815272ef58cec6d564423f6e755e25379b217b0bc688e295ba24df6b1d"
412
+
413
+ [[package]]
414
+ name = "futures-executor"
415
+ version = "0.3.32"
416
+ source = "registry+https://github.com/rust-lang/crates.io-index"
417
+ checksum = "baf29c38818342a3b26b5b923639e7b1f4a61fc5e76102d4b1981c6dc7a7579d"
418
+ dependencies = [
419
+ "futures-core",
420
+ "futures-task",
421
+ "futures-util",
422
+ ]
423
+
424
+ [[package]]
425
+ name = "futures-io"
426
+ version = "0.3.32"
427
+ source = "registry+https://github.com/rust-lang/crates.io-index"
428
+ checksum = "cecba35d7ad927e23624b22ad55235f2239cfa44fd10428eecbeba6d6a717718"
429
+
430
+ [[package]]
431
+ name = "futures-macro"
432
+ version = "0.3.32"
433
+ source = "registry+https://github.com/rust-lang/crates.io-index"
434
+ checksum = "e835b70203e41293343137df5c0664546da5745f82ec9b84d40be8336958447b"
435
+ dependencies = [
436
+ "proc-macro2",
437
+ "quote",
438
+ "syn",
439
+ ]
440
+
441
+ [[package]]
442
+ name = "futures-sink"
443
+ version = "0.3.32"
444
+ source = "registry+https://github.com/rust-lang/crates.io-index"
445
+ checksum = "c39754e157331b013978ec91992bde1ac089843443c49cbc7f46150b0fad0893"
446
+
447
+ [[package]]
448
+ name = "futures-task"
449
+ version = "0.3.32"
450
+ source = "registry+https://github.com/rust-lang/crates.io-index"
451
+ checksum = "037711b3d59c33004d3856fbdc83b99d4ff37a24768fa1be9ce3538a1cde4393"
452
+
453
+ [[package]]
454
+ name = "futures-util"
455
+ version = "0.3.32"
456
+ source = "registry+https://github.com/rust-lang/crates.io-index"
457
+ checksum = "389ca41296e6190b48053de0321d02a77f32f8a5d2461dd38762c0593805c6d6"
458
+ dependencies = [
459
+ "futures-channel",
460
+ "futures-core",
461
+ "futures-io",
462
+ "futures-macro",
463
+ "futures-sink",
464
+ "futures-task",
465
+ "memchr",
466
+ "pin-project-lite",
467
+ "slab",
468
+ ]
469
+
137
470
  [[package]]
138
471
  name = "getrandom"
139
472
  version = "0.4.2"
@@ -160,6 +493,17 @@ dependencies = [
160
493
  "regex-syntax",
161
494
  ]
162
495
 
496
+ [[package]]
497
+ name = "half"
498
+ version = "2.7.1"
499
+ source = "registry+https://github.com/rust-lang/crates.io-index"
500
+ checksum = "6ea2d84b969582b4b1864a92dc5d27cd2b77b622a8d79306834f1be5ba20d84b"
501
+ dependencies = [
502
+ "cfg-if",
503
+ "crunchy",
504
+ "zerocopy",
505
+ ]
506
+
163
507
  [[package]]
164
508
  name = "hashbrown"
165
509
  version = "0.15.5"
@@ -190,6 +534,12 @@ version = "0.5.0"
190
534
  source = "registry+https://github.com/rust-lang/crates.io-index"
191
535
  checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea"
192
536
 
537
+ [[package]]
538
+ name = "hermit-abi"
539
+ version = "0.5.2"
540
+ source = "registry+https://github.com/rust-lang/crates.io-index"
541
+ checksum = "fc0fef456e4baa96da950455cd02c081ca953b141298e41db3fc7e36b1da849c"
542
+
193
543
  [[package]]
194
544
  name = "id-arena"
195
545
  version = "2.3.0"
@@ -237,12 +587,42 @@ dependencies = [
237
587
  "cfg-if",
238
588
  ]
239
589
 
590
+ [[package]]
591
+ name = "is-terminal"
592
+ version = "0.4.17"
593
+ source = "registry+https://github.com/rust-lang/crates.io-index"
594
+ checksum = "3640c1c38b8e4e43584d8df18be5fc6b0aa314ce6ebf51b53313d4306cca8e46"
595
+ dependencies = [
596
+ "hermit-abi",
597
+ "libc",
598
+ "windows-sys 0.61.2",
599
+ ]
600
+
601
+ [[package]]
602
+ name = "itertools"
603
+ version = "0.10.5"
604
+ source = "registry+https://github.com/rust-lang/crates.io-index"
605
+ checksum = "b0fd2260e829bddf4cb6ea802289de2f86d6a7a690192fbe91b3f46e0f2c8473"
606
+ dependencies = [
607
+ "either",
608
+ ]
609
+
240
610
  [[package]]
241
611
  name = "itoa"
242
612
  version = "1.0.18"
243
613
  source = "registry+https://github.com/rust-lang/crates.io-index"
244
614
  checksum = "8f42a60cbdf9a97f5d2305f08a87dc4e09308d1276d28c869c684d7777685682"
245
615
 
616
+ [[package]]
617
+ name = "js-sys"
618
+ version = "0.3.94"
619
+ source = "registry+https://github.com/rust-lang/crates.io-index"
620
+ checksum = "2e04e2ef80ce82e13552136fabeef8a5ed1f985a96805761cbb9a2c34e7664d9"
621
+ dependencies = [
622
+ "once_cell",
623
+ "wasm-bindgen",
624
+ ]
625
+
246
626
  [[package]]
247
627
  name = "kqueue"
248
628
  version = "1.1.1"
@@ -275,6 +655,16 @@ version = "0.2.184"
275
655
  source = "registry+https://github.com/rust-lang/crates.io-index"
276
656
  checksum = "48f5d2a454e16a5ea0f4ced81bd44e4cfc7bd3a507b61887c99fd3538b28e4af"
277
657
 
658
+ [[package]]
659
+ name = "libloading"
660
+ version = "0.9.0"
661
+ source = "registry+https://github.com/rust-lang/crates.io-index"
662
+ checksum = "754ca22de805bb5744484a5b151a9e1a8e837d5dc232c2d7d8c2e3492edc8b60"
663
+ dependencies = [
664
+ "cfg-if",
665
+ "windows-link",
666
+ ]
667
+
278
668
  [[package]]
279
669
  name = "libredox"
280
670
  version = "0.1.15"
@@ -328,6 +718,71 @@ dependencies = [
328
718
  "windows-sys 0.61.2",
329
719
  ]
330
720
 
721
+ [[package]]
722
+ name = "napi"
723
+ version = "3.8.4"
724
+ source = "registry+https://github.com/rust-lang/crates.io-index"
725
+ checksum = "fb7848c221fb7bb789e02f01875287ebb1e078b92a6566a34de01ef8806e7c2b"
726
+ dependencies = [
727
+ "bitflags 2.11.0",
728
+ "ctor",
729
+ "futures",
730
+ "napi-build",
731
+ "napi-sys",
732
+ "nohash-hasher",
733
+ "rustc-hash",
734
+ "serde",
735
+ "serde_json",
736
+ ]
737
+
738
+ [[package]]
739
+ name = "napi-build"
740
+ version = "2.3.1"
741
+ source = "registry+https://github.com/rust-lang/crates.io-index"
742
+ checksum = "d376940fd5b723c6893cd1ee3f33abbfd86acb1cd1ec079f3ab04a2a3bc4d3b1"
743
+
744
+ [[package]]
745
+ name = "napi-derive"
746
+ version = "3.5.3"
747
+ source = "registry+https://github.com/rust-lang/crates.io-index"
748
+ checksum = "60867ff9a6f76e82350e0c3420cb0736f5866091b61d7d8a024baa54b0ec17dd"
749
+ dependencies = [
750
+ "convert_case",
751
+ "ctor",
752
+ "napi-derive-backend",
753
+ "proc-macro2",
754
+ "quote",
755
+ "syn",
756
+ ]
757
+
758
+ [[package]]
759
+ name = "napi-derive-backend"
760
+ version = "5.0.2"
761
+ source = "registry+https://github.com/rust-lang/crates.io-index"
762
+ checksum = "f0864cf6a82e2cfb69067374b64c9253d7e910e5b34db833ed7495dda56ccb18"
763
+ dependencies = [
764
+ "convert_case",
765
+ "proc-macro2",
766
+ "quote",
767
+ "semver",
768
+ "syn",
769
+ ]
770
+
771
+ [[package]]
772
+ name = "napi-sys"
773
+ version = "3.2.1"
774
+ source = "registry+https://github.com/rust-lang/crates.io-index"
775
+ checksum = "8eb602b84d7c1edae45e50bbf1374696548f36ae179dfa667f577e384bb90c2b"
776
+ dependencies = [
777
+ "libloading",
778
+ ]
779
+
780
+ [[package]]
781
+ name = "nohash-hasher"
782
+ version = "0.2.0"
783
+ source = "registry+https://github.com/rust-lang/crates.io-index"
784
+ checksum = "2bf50223579dc7cdcfb3bfcacf7069ff68243f8c363f62ffa99cf000a6b9c451"
785
+
331
786
  [[package]]
332
787
  name = "notify"
333
788
  version = "7.0.0"
@@ -356,12 +811,33 @@ dependencies = [
356
811
  "instant",
357
812
  ]
358
813
 
814
+ [[package]]
815
+ name = "num-traits"
816
+ version = "0.2.19"
817
+ source = "registry+https://github.com/rust-lang/crates.io-index"
818
+ checksum = "071dfc062690e90b734c0b2273ce72ad0ffa95f0c74596bc250dcfd960262841"
819
+ dependencies = [
820
+ "autocfg",
821
+ ]
822
+
359
823
  [[package]]
360
824
  name = "once_cell"
361
825
  version = "1.21.4"
362
826
  source = "registry+https://github.com/rust-lang/crates.io-index"
363
827
  checksum = "9f7c3e4beb33f85d45ae3e3a1792185706c8e16d043238c593331cc7cd313b50"
364
828
 
829
+ [[package]]
830
+ name = "oorandom"
831
+ version = "11.1.5"
832
+ source = "registry+https://github.com/rust-lang/crates.io-index"
833
+ checksum = "d6790f58c7ff633d8771f42965289203411a5e5c68388703c06e14f24770b41e"
834
+
835
+ [[package]]
836
+ name = "pin-project-lite"
837
+ version = "0.2.17"
838
+ source = "registry+https://github.com/rust-lang/crates.io-index"
839
+ checksum = "a89322df9ebe1c1578d689c92318e070967d1042b512afbe49518723f4e6d5cd"
840
+
365
841
  [[package]]
366
842
  name = "pkg-config"
367
843
  version = "0.3.32"
@@ -374,6 +850,34 @@ version = "0.2.3"
374
850
  source = "registry+https://github.com/rust-lang/crates.io-index"
375
851
  checksum = "b4596b6d070b27117e987119b4dac604f3c58cfb0b191112e24771b2faeac1a6"
376
852
 
853
+ [[package]]
854
+ name = "plotters"
855
+ version = "0.3.7"
856
+ source = "registry+https://github.com/rust-lang/crates.io-index"
857
+ checksum = "5aeb6f403d7a4911efb1e33402027fc44f29b5bf6def3effcc22d7bb75f2b747"
858
+ dependencies = [
859
+ "num-traits",
860
+ "plotters-backend",
861
+ "plotters-svg",
862
+ "wasm-bindgen",
863
+ "web-sys",
864
+ ]
865
+
866
+ [[package]]
867
+ name = "plotters-backend"
868
+ version = "0.3.7"
869
+ source = "registry+https://github.com/rust-lang/crates.io-index"
870
+ checksum = "df42e13c12958a16b3f7f4386b9ab1f3e7933914ecea48da7139435263a4172a"
871
+
872
+ [[package]]
873
+ name = "plotters-svg"
874
+ version = "0.3.7"
875
+ source = "registry+https://github.com/rust-lang/crates.io-index"
876
+ checksum = "51bae2ac328883f7acdfea3d66a7c35751187f870bc81f94563733a154d7a670"
877
+ dependencies = [
878
+ "plotters-backend",
879
+ ]
880
+
377
881
  [[package]]
378
882
  name = "portable-atomic"
379
883
  version = "1.13.1"
@@ -419,6 +923,7 @@ version = "0.28.3"
419
923
  source = "registry+https://github.com/rust-lang/crates.io-index"
420
924
  checksum = "e368e7ddfdeb98c9bca7f8383be1648fd84ab466bf2bc015e94008db6d35611e"
421
925
  dependencies = [
926
+ "python3-dll-a",
422
927
  "target-lexicon",
423
928
  ]
424
929
 
@@ -457,6 +962,15 @@ dependencies = [
457
962
  "syn",
458
963
  ]
459
964
 
965
+ [[package]]
966
+ name = "python3-dll-a"
967
+ version = "0.2.15"
968
+ source = "registry+https://github.com/rust-lang/crates.io-index"
969
+ checksum = "d80ba7540edb18890d444c5aa8e1f1f99b1bdf26fb26ae383135325f4a36042b"
970
+ dependencies = [
971
+ "cc",
972
+ ]
973
+
460
974
  [[package]]
461
975
  name = "quote"
462
976
  version = "1.0.45"
@@ -472,6 +986,26 @@ version = "6.0.0"
472
986
  source = "registry+https://github.com/rust-lang/crates.io-index"
473
987
  checksum = "f8dcc9c7d52a811697d2151c701e0d08956f92b0e24136cf4cf27b57a6a0d9bf"
474
988
 
989
+ [[package]]
990
+ name = "rayon"
991
+ version = "1.11.0"
992
+ source = "registry+https://github.com/rust-lang/crates.io-index"
993
+ checksum = "368f01d005bf8fd9b1206fb6fa653e6c4a81ceb1466406b81792d87c5677a58f"
994
+ dependencies = [
995
+ "either",
996
+ "rayon-core",
997
+ ]
998
+
999
+ [[package]]
1000
+ name = "rayon-core"
1001
+ version = "1.13.0"
1002
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1003
+ checksum = "22e18b0f0062d30d4230b2e85ff77fdfe4326feb054b9783a3460d8435c8ab91"
1004
+ dependencies = [
1005
+ "crossbeam-deque",
1006
+ "crossbeam-utils",
1007
+ ]
1008
+
475
1009
  [[package]]
476
1010
  name = "redox_syscall"
477
1011
  version = "0.7.3"
@@ -481,6 +1015,18 @@ dependencies = [
481
1015
  "bitflags 2.11.0",
482
1016
  ]
483
1017
 
1018
+ [[package]]
1019
+ name = "regex"
1020
+ version = "1.12.3"
1021
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1022
+ checksum = "e10754a14b9137dd7b1e3e5b0493cc9171fdd105e0ab477f51b72e7f3ac0e276"
1023
+ dependencies = [
1024
+ "aho-corasick",
1025
+ "memchr",
1026
+ "regex-automata",
1027
+ "regex-syntax",
1028
+ ]
1029
+
484
1030
  [[package]]
485
1031
  name = "regex-automata"
486
1032
  version = "0.4.14"
@@ -512,6 +1058,12 @@ dependencies = [
512
1058
  "smallvec",
513
1059
  ]
514
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
+
515
1067
  [[package]]
516
1068
  name = "rustix"
517
1069
  version = "1.1.4"
@@ -525,6 +1077,18 @@ dependencies = [
525
1077
  "windows-sys 0.61.2",
526
1078
  ]
527
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 = "ryu"
1088
+ version = "1.0.23"
1089
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1090
+ checksum = "9774ba4a74de5f7b1c1451ed6cd5285a32eddb5cccb8cc655a4e50009e06477f"
1091
+
528
1092
  [[package]]
529
1093
  name = "same-file"
530
1094
  version = "1.0.6"
@@ -547,6 +1111,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
547
1111
  checksum = "9a8e94ea7f378bd32cbbd37198a4a91436180c5bb472411e48b5ec2e2124ae9e"
548
1112
  dependencies = [
549
1113
  "serde_core",
1114
+ "serde_derive",
550
1115
  ]
551
1116
 
552
1117
  [[package]]
@@ -582,12 +1147,40 @@ dependencies = [
582
1147
  "zmij",
583
1148
  ]
584
1149
 
1150
+ [[package]]
1151
+ name = "serde_spanned"
1152
+ version = "0.6.9"
1153
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1154
+ checksum = "bf41e0cfaf7226dca15e8197172c295a782857fcb97fad1808a166870dee75a3"
1155
+ dependencies = [
1156
+ "serde",
1157
+ ]
1158
+
1159
+ [[package]]
1160
+ name = "serde_yaml"
1161
+ version = "0.9.34+deprecated"
1162
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1163
+ checksum = "6a8b1a1a2ebf674015cc02edccce75287f1a0130d394307b36743c2f5d504b47"
1164
+ dependencies = [
1165
+ "indexmap",
1166
+ "itoa",
1167
+ "ryu",
1168
+ "serde",
1169
+ "unsafe-libyaml",
1170
+ ]
1171
+
585
1172
  [[package]]
586
1173
  name = "shlex"
587
1174
  version = "1.3.0"
588
1175
  source = "registry+https://github.com/rust-lang/crates.io-index"
589
1176
  checksum = "0fda2ff0d084019ba4d7c6f371c95d8fd75ce3524c3cb8fb653a3023f6323e64"
590
1177
 
1178
+ [[package]]
1179
+ name = "slab"
1180
+ version = "0.4.12"
1181
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1182
+ checksum = "0c790de23124f9ab44544d7ac05d60440adc586479ce501c1d6d7da3cd8c9cf5"
1183
+
591
1184
  [[package]]
592
1185
  name = "smallvec"
593
1186
  version = "1.15.1"
@@ -644,18 +1237,102 @@ dependencies = [
644
1237
  "syn",
645
1238
  ]
646
1239
 
1240
+ [[package]]
1241
+ name = "tinytemplate"
1242
+ version = "1.2.1"
1243
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1244
+ checksum = "be4d6b5f19ff7664e8c98d03e2139cb510db9b0a60b55f8e8709b689d939b6bc"
1245
+ dependencies = [
1246
+ "serde",
1247
+ "serde_json",
1248
+ ]
1249
+
1250
+ [[package]]
1251
+ name = "tokio"
1252
+ version = "1.51.1"
1253
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1254
+ checksum = "f66bf9585cda4b724d3e78ab34b73fb2bbaba9011b9bfdf69dc836382ea13b8c"
1255
+ dependencies = [
1256
+ "pin-project-lite",
1257
+ "tokio-macros",
1258
+ ]
1259
+
1260
+ [[package]]
1261
+ name = "tokio-macros"
1262
+ version = "2.7.0"
1263
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1264
+ checksum = "385a6cb71ab9ab790c5fe8d67f1645e6c450a7ce006a33de03daa956cf70a496"
1265
+ dependencies = [
1266
+ "proc-macro2",
1267
+ "quote",
1268
+ "syn",
1269
+ ]
1270
+
1271
+ [[package]]
1272
+ name = "toml"
1273
+ version = "0.8.23"
1274
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1275
+ checksum = "dc1beb996b9d83529a9e75c17a1686767d148d70663143c7854d8b4a09ced362"
1276
+ dependencies = [
1277
+ "serde",
1278
+ "serde_spanned",
1279
+ "toml_datetime",
1280
+ "toml_edit",
1281
+ ]
1282
+
1283
+ [[package]]
1284
+ name = "toml_datetime"
1285
+ version = "0.6.11"
1286
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1287
+ checksum = "22cddaf88f4fbc13c51aebbf5f8eceb5c7c5a9da2ac40a13519eb5b0a0e8f11c"
1288
+ dependencies = [
1289
+ "serde",
1290
+ ]
1291
+
1292
+ [[package]]
1293
+ name = "toml_edit"
1294
+ version = "0.22.27"
1295
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1296
+ checksum = "41fe8c660ae4257887cf66394862d21dbca4a6ddd26f04a3560410406a2f819a"
1297
+ dependencies = [
1298
+ "indexmap",
1299
+ "serde",
1300
+ "serde_spanned",
1301
+ "toml_datetime",
1302
+ "toml_write",
1303
+ "winnow",
1304
+ ]
1305
+
1306
+ [[package]]
1307
+ name = "toml_write"
1308
+ version = "0.1.2"
1309
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1310
+ checksum = "5d99f8c9a7727884afe522e9bd5edbfc91a3312b36a77b5fb8926e4c31a41801"
1311
+
647
1312
  [[package]]
648
1313
  name = "unicode-ident"
649
1314
  version = "1.0.24"
650
1315
  source = "registry+https://github.com/rust-lang/crates.io-index"
651
1316
  checksum = "e6e4313cd5fcd3dad5cafa179702e2b244f760991f45397d14d4ebf38247da75"
652
1317
 
1318
+ [[package]]
1319
+ name = "unicode-segmentation"
1320
+ version = "1.13.2"
1321
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1322
+ checksum = "9629274872b2bfaf8d66f5f15725007f635594914870f65218920345aa11aa8c"
1323
+
653
1324
  [[package]]
654
1325
  name = "unicode-xid"
655
1326
  version = "0.2.6"
656
1327
  source = "registry+https://github.com/rust-lang/crates.io-index"
657
1328
  checksum = "ebc1c04c71510c7f702b52b7c350734c9ff1295c464a03335b00bb84fc54f853"
658
1329
 
1330
+ [[package]]
1331
+ name = "unsafe-libyaml"
1332
+ version = "0.2.11"
1333
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1334
+ checksum = "673aac59facbab8a9007c7f6108d11f63b603f7cabff99fabf650fea5c32b861"
1335
+
659
1336
  [[package]]
660
1337
  name = "vcpkg"
661
1338
  version = "0.2.15"
@@ -696,6 +1373,51 @@ dependencies = [
696
1373
  "wit-bindgen",
697
1374
  ]
698
1375
 
1376
+ [[package]]
1377
+ name = "wasm-bindgen"
1378
+ version = "0.2.117"
1379
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1380
+ checksum = "0551fc1bb415591e3372d0bc4780db7e587d84e2a7e79da121051c5c4b89d0b0"
1381
+ dependencies = [
1382
+ "cfg-if",
1383
+ "once_cell",
1384
+ "rustversion",
1385
+ "wasm-bindgen-macro",
1386
+ "wasm-bindgen-shared",
1387
+ ]
1388
+
1389
+ [[package]]
1390
+ name = "wasm-bindgen-macro"
1391
+ version = "0.2.117"
1392
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1393
+ checksum = "7fbdf9a35adf44786aecd5ff89b4563a90325f9da0923236f6104e603c7e86be"
1394
+ dependencies = [
1395
+ "quote",
1396
+ "wasm-bindgen-macro-support",
1397
+ ]
1398
+
1399
+ [[package]]
1400
+ name = "wasm-bindgen-macro-support"
1401
+ version = "0.2.117"
1402
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1403
+ checksum = "dca9693ef2bab6d4e6707234500350d8dad079eb508dca05530c85dc3a529ff2"
1404
+ dependencies = [
1405
+ "bumpalo",
1406
+ "proc-macro2",
1407
+ "quote",
1408
+ "syn",
1409
+ "wasm-bindgen-shared",
1410
+ ]
1411
+
1412
+ [[package]]
1413
+ name = "wasm-bindgen-shared"
1414
+ version = "0.2.117"
1415
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1416
+ checksum = "39129a682a6d2d841b6c429d0c51e5cb0ed1a03829d8b3d1e69a011e62cb3d3b"
1417
+ dependencies = [
1418
+ "unicode-ident",
1419
+ ]
1420
+
699
1421
  [[package]]
700
1422
  name = "wasm-encoder"
701
1423
  version = "0.244.0"
@@ -730,6 +1452,16 @@ dependencies = [
730
1452
  "semver",
731
1453
  ]
732
1454
 
1455
+ [[package]]
1456
+ name = "web-sys"
1457
+ version = "0.3.94"
1458
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1459
+ checksum = "cd70027e39b12f0849461e08ffc50b9cd7688d942c1c8e3c7b22273236b4dd0a"
1460
+ dependencies = [
1461
+ "js-sys",
1462
+ "wasm-bindgen",
1463
+ ]
1464
+
733
1465
  [[package]]
734
1466
  name = "winapi-util"
735
1467
  version = "0.1.11"
@@ -827,6 +1559,15 @@ version = "0.52.6"
827
1559
  source = "registry+https://github.com/rust-lang/crates.io-index"
828
1560
  checksum = "589f6da84c646204747d1270a2a5661ea66ed1cced2631d546fdfb155959f9ec"
829
1561
 
1562
+ [[package]]
1563
+ name = "winnow"
1564
+ version = "0.7.15"
1565
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1566
+ checksum = "df79d97927682d2fd8adb29682d1140b343be4ac0f08fd68b7765d9c059d3945"
1567
+ dependencies = [
1568
+ "memchr",
1569
+ ]
1570
+
830
1571
  [[package]]
831
1572
  name = "wit-bindgen"
832
1573
  version = "0.51.0"
@@ -915,6 +1656,26 @@ dependencies = [
915
1656
  "wasmparser",
916
1657
  ]
917
1658
 
1659
+ [[package]]
1660
+ name = "zerocopy"
1661
+ version = "0.8.48"
1662
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1663
+ checksum = "eed437bf9d6692032087e337407a86f04cd8d6a16a37199ed57949d415bd68e9"
1664
+ dependencies = [
1665
+ "zerocopy-derive",
1666
+ ]
1667
+
1668
+ [[package]]
1669
+ name = "zerocopy-derive"
1670
+ version = "0.8.48"
1671
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1672
+ checksum = "70e3cd084b1788766f53af483dd21f93881ff30d7320490ec3ef7526d203bad4"
1673
+ dependencies = [
1674
+ "proc-macro2",
1675
+ "quote",
1676
+ "syn",
1677
+ ]
1678
+
918
1679
  [[package]]
919
1680
  name = "zmij"
920
1681
  version = "1.0.21"