dirsql 0.0.22__tar.gz → 0.0.23__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 (52) hide show
  1. {dirsql-0.0.22 → dirsql-0.0.23}/Cargo.lock +764 -1
  2. dirsql-0.0.23/Cargo.toml +3 -0
  3. dirsql-0.0.22/README.md → dirsql-0.0.23/PKG-INFO +87 -105
  4. dirsql-0.0.23/README.md +191 -0
  5. dirsql-0.0.23/packages/core/Cargo.toml +41 -0
  6. dirsql-0.0.23/packages/core/README.md +29 -0
  7. dirsql-0.0.23/packages/core/benches/db_bench.rs +88 -0
  8. dirsql-0.0.23/packages/core/benches/differ_bench.rs +108 -0
  9. dirsql-0.0.23/packages/core/benches/matcher_bench.rs +86 -0
  10. dirsql-0.0.23/packages/core/benches/scanner_bench.rs +55 -0
  11. dirsql-0.0.23/packages/core/src/config.rs +391 -0
  12. dirsql-0.0.23/packages/core/src/db.rs +697 -0
  13. dirsql-0.0.23/packages/core/src/lib.rs +7 -0
  14. dirsql-0.0.23/packages/core/src/matcher.rs +320 -0
  15. dirsql-0.0.23/packages/core/src/parser.rs +1507 -0
  16. {dirsql-0.0.22 → dirsql-0.0.23/packages/core}/src/scanner.rs +6 -2
  17. {dirsql-0.0.22 → dirsql-0.0.23/packages/core}/src/watcher.rs +51 -0
  18. dirsql-0.0.23/packages/python/Cargo.toml +17 -0
  19. dirsql-0.0.23/packages/python/README.md +191 -0
  20. {dirsql-0.0.22 → dirsql-0.0.23/packages/python}/src/lib.rs +337 -134
  21. dirsql-0.0.23/packages/python/tests/__init__.py +1 -0
  22. dirsql-0.0.23/packages/python/tests/integration/__init__.py +1 -0
  23. {dirsql-0.0.22 → dirsql-0.0.23/packages/python}/tests/integration/test_async_dirsql.py +14 -14
  24. {dirsql-0.0.22 → dirsql-0.0.23/packages/python}/tests/integration/test_dirsql.py +175 -38
  25. dirsql-0.0.23/packages/python/tests/integration/test_docs_examples.py +780 -0
  26. dirsql-0.0.23/packages/python/tests/integration/test_from_config.py +361 -0
  27. {dirsql-0.0.22 → dirsql-0.0.23}/pyproject.toml +5 -10
  28. dirsql-0.0.23/python/dirsql/__init__.py +6 -0
  29. {dirsql-0.0.22 → dirsql-0.0.23}/python/dirsql/_async.py +31 -6
  30. dirsql-0.0.23/python/dirsql/test_async.py +78 -0
  31. dirsql-0.0.22/.claude/CLAUDE.md +0 -3
  32. dirsql-0.0.22/.github/workflows/minor-release.yml +0 -128
  33. dirsql-0.0.22/.github/workflows/patch-release.yml +0 -166
  34. dirsql-0.0.22/.github/workflows/pr-monitor.yml +0 -16
  35. dirsql-0.0.22/.github/workflows/publish.yml +0 -299
  36. dirsql-0.0.22/.github/workflows/python-lint.yml +0 -35
  37. dirsql-0.0.22/.github/workflows/python-test.yml +0 -51
  38. dirsql-0.0.22/.github/workflows/rust-test.yml +0 -41
  39. dirsql-0.0.22/.gitignore +0 -10
  40. dirsql-0.0.22/.npmignore +0 -23
  41. dirsql-0.0.22/Cargo.toml +0 -28
  42. dirsql-0.0.22/LICENSE +0 -21
  43. dirsql-0.0.22/PKG-INFO +0 -15
  44. dirsql-0.0.22/SUMMARY.md +0 -62
  45. dirsql-0.0.22/python/dirsql/__init__.py +0 -6
  46. dirsql-0.0.22/scripts/agent-preflight.sh +0 -67
  47. dirsql-0.0.22/src/db.rs +0 -312
  48. dirsql-0.0.22/src/matcher.rs +0 -116
  49. dirsql-0.0.22/tests/__init__.py +0 -0
  50. dirsql-0.0.22/tests/integration/__init__.py +0 -0
  51. {dirsql-0.0.22 → dirsql-0.0.23/packages/core}/src/differ.rs +0 -0
  52. {dirsql-0.0.22 → dirsql-0.0.23/packages/python}/tests/conftest.py +0 -0
@@ -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,246 @@ 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
+ "dirsql-core",
258
+ "pyo3",
259
+ "regex",
260
+ ]
261
+
262
+ [[package]]
263
+ name = "dirsql-core"
264
+ version = "0.1.0"
265
+ dependencies = [
266
+ "criterion",
267
+ "csv",
62
268
  "globset",
63
269
  "notify",
64
- "pyo3",
270
+ "regex",
65
271
  "rusqlite",
272
+ "serde",
273
+ "serde_json",
274
+ "serde_yaml",
66
275
  "tempfile",
67
276
  "thiserror",
277
+ "toml",
68
278
  "walkdir",
69
279
  ]
70
280
 
281
+ [[package]]
282
+ name = "dirsql-napi"
283
+ version = "0.1.0"
284
+ dependencies = [
285
+ "dirsql-core",
286
+ "napi",
287
+ "napi-build",
288
+ "napi-derive",
289
+ "serde_json",
290
+ ]
291
+
292
+ [[package]]
293
+ name = "dirsql-sdk"
294
+ version = "0.1.0"
295
+ dependencies = [
296
+ "dirsql-core",
297
+ "futures-channel",
298
+ "futures-core",
299
+ "futures-executor",
300
+ "futures-util",
301
+ "serde_json",
302
+ "tempfile",
303
+ "thiserror",
304
+ "tokio",
305
+ ]
306
+
307
+ [[package]]
308
+ name = "dtor"
309
+ version = "0.3.0"
310
+ source = "registry+https://github.com/rust-lang/crates.io-index"
311
+ checksum = "f1057d6c64987086ff8ed0fd3fbf377a6b7d205cc7715868cd401705f715cbe4"
312
+ dependencies = [
313
+ "dtor-proc-macro",
314
+ ]
315
+
316
+ [[package]]
317
+ name = "dtor-proc-macro"
318
+ version = "0.0.6"
319
+ source = "registry+https://github.com/rust-lang/crates.io-index"
320
+ checksum = "f678cf4a922c215c63e0de95eb1ff08a958a81d47e485cf9da1e27bf6305cfa5"
321
+
322
+ [[package]]
323
+ name = "either"
324
+ version = "1.15.0"
325
+ source = "registry+https://github.com/rust-lang/crates.io-index"
326
+ checksum = "48c757948c5ede0e46177b7add2e67155f70e33c07fea8284df6576da70b3719"
327
+
71
328
  [[package]]
72
329
  name = "equivalent"
73
330
  version = "1.0.2"
@@ -134,6 +391,94 @@ dependencies = [
134
391
  "libc",
135
392
  ]
136
393
 
394
+ [[package]]
395
+ name = "futures"
396
+ version = "0.3.32"
397
+ source = "registry+https://github.com/rust-lang/crates.io-index"
398
+ checksum = "8b147ee9d1f6d097cef9ce628cd2ee62288d963e16fb287bd9286455b241382d"
399
+ dependencies = [
400
+ "futures-channel",
401
+ "futures-core",
402
+ "futures-executor",
403
+ "futures-io",
404
+ "futures-sink",
405
+ "futures-task",
406
+ "futures-util",
407
+ ]
408
+
409
+ [[package]]
410
+ name = "futures-channel"
411
+ version = "0.3.32"
412
+ source = "registry+https://github.com/rust-lang/crates.io-index"
413
+ checksum = "07bbe89c50d7a535e539b8c17bc0b49bdb77747034daa8087407d655f3f7cc1d"
414
+ dependencies = [
415
+ "futures-core",
416
+ "futures-sink",
417
+ ]
418
+
419
+ [[package]]
420
+ name = "futures-core"
421
+ version = "0.3.32"
422
+ source = "registry+https://github.com/rust-lang/crates.io-index"
423
+ checksum = "7e3450815272ef58cec6d564423f6e755e25379b217b0bc688e295ba24df6b1d"
424
+
425
+ [[package]]
426
+ name = "futures-executor"
427
+ version = "0.3.32"
428
+ source = "registry+https://github.com/rust-lang/crates.io-index"
429
+ checksum = "baf29c38818342a3b26b5b923639e7b1f4a61fc5e76102d4b1981c6dc7a7579d"
430
+ dependencies = [
431
+ "futures-core",
432
+ "futures-task",
433
+ "futures-util",
434
+ ]
435
+
436
+ [[package]]
437
+ name = "futures-io"
438
+ version = "0.3.32"
439
+ source = "registry+https://github.com/rust-lang/crates.io-index"
440
+ checksum = "cecba35d7ad927e23624b22ad55235f2239cfa44fd10428eecbeba6d6a717718"
441
+
442
+ [[package]]
443
+ name = "futures-macro"
444
+ version = "0.3.32"
445
+ source = "registry+https://github.com/rust-lang/crates.io-index"
446
+ checksum = "e835b70203e41293343137df5c0664546da5745f82ec9b84d40be8336958447b"
447
+ dependencies = [
448
+ "proc-macro2",
449
+ "quote",
450
+ "syn",
451
+ ]
452
+
453
+ [[package]]
454
+ name = "futures-sink"
455
+ version = "0.3.32"
456
+ source = "registry+https://github.com/rust-lang/crates.io-index"
457
+ checksum = "c39754e157331b013978ec91992bde1ac089843443c49cbc7f46150b0fad0893"
458
+
459
+ [[package]]
460
+ name = "futures-task"
461
+ version = "0.3.32"
462
+ source = "registry+https://github.com/rust-lang/crates.io-index"
463
+ checksum = "037711b3d59c33004d3856fbdc83b99d4ff37a24768fa1be9ce3538a1cde4393"
464
+
465
+ [[package]]
466
+ name = "futures-util"
467
+ version = "0.3.32"
468
+ source = "registry+https://github.com/rust-lang/crates.io-index"
469
+ checksum = "389ca41296e6190b48053de0321d02a77f32f8a5d2461dd38762c0593805c6d6"
470
+ dependencies = [
471
+ "futures-channel",
472
+ "futures-core",
473
+ "futures-io",
474
+ "futures-macro",
475
+ "futures-sink",
476
+ "futures-task",
477
+ "memchr",
478
+ "pin-project-lite",
479
+ "slab",
480
+ ]
481
+
137
482
  [[package]]
138
483
  name = "getrandom"
139
484
  version = "0.4.2"
@@ -160,6 +505,17 @@ dependencies = [
160
505
  "regex-syntax",
161
506
  ]
162
507
 
508
+ [[package]]
509
+ name = "half"
510
+ version = "2.7.1"
511
+ source = "registry+https://github.com/rust-lang/crates.io-index"
512
+ checksum = "6ea2d84b969582b4b1864a92dc5d27cd2b77b622a8d79306834f1be5ba20d84b"
513
+ dependencies = [
514
+ "cfg-if",
515
+ "crunchy",
516
+ "zerocopy",
517
+ ]
518
+
163
519
  [[package]]
164
520
  name = "hashbrown"
165
521
  version = "0.15.5"
@@ -190,6 +546,12 @@ version = "0.5.0"
190
546
  source = "registry+https://github.com/rust-lang/crates.io-index"
191
547
  checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea"
192
548
 
549
+ [[package]]
550
+ name = "hermit-abi"
551
+ version = "0.5.2"
552
+ source = "registry+https://github.com/rust-lang/crates.io-index"
553
+ checksum = "fc0fef456e4baa96da950455cd02c081ca953b141298e41db3fc7e36b1da849c"
554
+
193
555
  [[package]]
194
556
  name = "id-arena"
195
557
  version = "2.3.0"
@@ -237,12 +599,42 @@ dependencies = [
237
599
  "cfg-if",
238
600
  ]
239
601
 
602
+ [[package]]
603
+ name = "is-terminal"
604
+ version = "0.4.17"
605
+ source = "registry+https://github.com/rust-lang/crates.io-index"
606
+ checksum = "3640c1c38b8e4e43584d8df18be5fc6b0aa314ce6ebf51b53313d4306cca8e46"
607
+ dependencies = [
608
+ "hermit-abi",
609
+ "libc",
610
+ "windows-sys 0.61.2",
611
+ ]
612
+
613
+ [[package]]
614
+ name = "itertools"
615
+ version = "0.10.5"
616
+ source = "registry+https://github.com/rust-lang/crates.io-index"
617
+ checksum = "b0fd2260e829bddf4cb6ea802289de2f86d6a7a690192fbe91b3f46e0f2c8473"
618
+ dependencies = [
619
+ "either",
620
+ ]
621
+
240
622
  [[package]]
241
623
  name = "itoa"
242
624
  version = "1.0.18"
243
625
  source = "registry+https://github.com/rust-lang/crates.io-index"
244
626
  checksum = "8f42a60cbdf9a97f5d2305f08a87dc4e09308d1276d28c869c684d7777685682"
245
627
 
628
+ [[package]]
629
+ name = "js-sys"
630
+ version = "0.3.94"
631
+ source = "registry+https://github.com/rust-lang/crates.io-index"
632
+ checksum = "2e04e2ef80ce82e13552136fabeef8a5ed1f985a96805761cbb9a2c34e7664d9"
633
+ dependencies = [
634
+ "once_cell",
635
+ "wasm-bindgen",
636
+ ]
637
+
246
638
  [[package]]
247
639
  name = "kqueue"
248
640
  version = "1.1.1"
@@ -275,6 +667,16 @@ version = "0.2.184"
275
667
  source = "registry+https://github.com/rust-lang/crates.io-index"
276
668
  checksum = "48f5d2a454e16a5ea0f4ced81bd44e4cfc7bd3a507b61887c99fd3538b28e4af"
277
669
 
670
+ [[package]]
671
+ name = "libloading"
672
+ version = "0.9.0"
673
+ source = "registry+https://github.com/rust-lang/crates.io-index"
674
+ checksum = "754ca22de805bb5744484a5b151a9e1a8e837d5dc232c2d7d8c2e3492edc8b60"
675
+ dependencies = [
676
+ "cfg-if",
677
+ "windows-link",
678
+ ]
679
+
278
680
  [[package]]
279
681
  name = "libredox"
280
682
  version = "0.1.15"
@@ -328,6 +730,71 @@ dependencies = [
328
730
  "windows-sys 0.61.2",
329
731
  ]
330
732
 
733
+ [[package]]
734
+ name = "napi"
735
+ version = "3.8.4"
736
+ source = "registry+https://github.com/rust-lang/crates.io-index"
737
+ checksum = "fb7848c221fb7bb789e02f01875287ebb1e078b92a6566a34de01ef8806e7c2b"
738
+ dependencies = [
739
+ "bitflags 2.11.0",
740
+ "ctor",
741
+ "futures",
742
+ "napi-build",
743
+ "napi-sys",
744
+ "nohash-hasher",
745
+ "rustc-hash",
746
+ "serde",
747
+ "serde_json",
748
+ ]
749
+
750
+ [[package]]
751
+ name = "napi-build"
752
+ version = "2.3.1"
753
+ source = "registry+https://github.com/rust-lang/crates.io-index"
754
+ checksum = "d376940fd5b723c6893cd1ee3f33abbfd86acb1cd1ec079f3ab04a2a3bc4d3b1"
755
+
756
+ [[package]]
757
+ name = "napi-derive"
758
+ version = "3.5.3"
759
+ source = "registry+https://github.com/rust-lang/crates.io-index"
760
+ checksum = "60867ff9a6f76e82350e0c3420cb0736f5866091b61d7d8a024baa54b0ec17dd"
761
+ dependencies = [
762
+ "convert_case",
763
+ "ctor",
764
+ "napi-derive-backend",
765
+ "proc-macro2",
766
+ "quote",
767
+ "syn",
768
+ ]
769
+
770
+ [[package]]
771
+ name = "napi-derive-backend"
772
+ version = "5.0.2"
773
+ source = "registry+https://github.com/rust-lang/crates.io-index"
774
+ checksum = "f0864cf6a82e2cfb69067374b64c9253d7e910e5b34db833ed7495dda56ccb18"
775
+ dependencies = [
776
+ "convert_case",
777
+ "proc-macro2",
778
+ "quote",
779
+ "semver",
780
+ "syn",
781
+ ]
782
+
783
+ [[package]]
784
+ name = "napi-sys"
785
+ version = "3.2.1"
786
+ source = "registry+https://github.com/rust-lang/crates.io-index"
787
+ checksum = "8eb602b84d7c1edae45e50bbf1374696548f36ae179dfa667f577e384bb90c2b"
788
+ dependencies = [
789
+ "libloading",
790
+ ]
791
+
792
+ [[package]]
793
+ name = "nohash-hasher"
794
+ version = "0.2.0"
795
+ source = "registry+https://github.com/rust-lang/crates.io-index"
796
+ checksum = "2bf50223579dc7cdcfb3bfcacf7069ff68243f8c363f62ffa99cf000a6b9c451"
797
+
331
798
  [[package]]
332
799
  name = "notify"
333
800
  version = "7.0.0"
@@ -356,12 +823,33 @@ dependencies = [
356
823
  "instant",
357
824
  ]
358
825
 
826
+ [[package]]
827
+ name = "num-traits"
828
+ version = "0.2.19"
829
+ source = "registry+https://github.com/rust-lang/crates.io-index"
830
+ checksum = "071dfc062690e90b734c0b2273ce72ad0ffa95f0c74596bc250dcfd960262841"
831
+ dependencies = [
832
+ "autocfg",
833
+ ]
834
+
359
835
  [[package]]
360
836
  name = "once_cell"
361
837
  version = "1.21.4"
362
838
  source = "registry+https://github.com/rust-lang/crates.io-index"
363
839
  checksum = "9f7c3e4beb33f85d45ae3e3a1792185706c8e16d043238c593331cc7cd313b50"
364
840
 
841
+ [[package]]
842
+ name = "oorandom"
843
+ version = "11.1.5"
844
+ source = "registry+https://github.com/rust-lang/crates.io-index"
845
+ checksum = "d6790f58c7ff633d8771f42965289203411a5e5c68388703c06e14f24770b41e"
846
+
847
+ [[package]]
848
+ name = "pin-project-lite"
849
+ version = "0.2.17"
850
+ source = "registry+https://github.com/rust-lang/crates.io-index"
851
+ checksum = "a89322df9ebe1c1578d689c92318e070967d1042b512afbe49518723f4e6d5cd"
852
+
365
853
  [[package]]
366
854
  name = "pkg-config"
367
855
  version = "0.3.32"
@@ -374,6 +862,34 @@ version = "0.2.3"
374
862
  source = "registry+https://github.com/rust-lang/crates.io-index"
375
863
  checksum = "b4596b6d070b27117e987119b4dac604f3c58cfb0b191112e24771b2faeac1a6"
376
864
 
865
+ [[package]]
866
+ name = "plotters"
867
+ version = "0.3.7"
868
+ source = "registry+https://github.com/rust-lang/crates.io-index"
869
+ checksum = "5aeb6f403d7a4911efb1e33402027fc44f29b5bf6def3effcc22d7bb75f2b747"
870
+ dependencies = [
871
+ "num-traits",
872
+ "plotters-backend",
873
+ "plotters-svg",
874
+ "wasm-bindgen",
875
+ "web-sys",
876
+ ]
877
+
878
+ [[package]]
879
+ name = "plotters-backend"
880
+ version = "0.3.7"
881
+ source = "registry+https://github.com/rust-lang/crates.io-index"
882
+ checksum = "df42e13c12958a16b3f7f4386b9ab1f3e7933914ecea48da7139435263a4172a"
883
+
884
+ [[package]]
885
+ name = "plotters-svg"
886
+ version = "0.3.7"
887
+ source = "registry+https://github.com/rust-lang/crates.io-index"
888
+ checksum = "51bae2ac328883f7acdfea3d66a7c35751187f870bc81f94563733a154d7a670"
889
+ dependencies = [
890
+ "plotters-backend",
891
+ ]
892
+
377
893
  [[package]]
378
894
  name = "portable-atomic"
379
895
  version = "1.13.1"
@@ -472,6 +988,26 @@ version = "6.0.0"
472
988
  source = "registry+https://github.com/rust-lang/crates.io-index"
473
989
  checksum = "f8dcc9c7d52a811697d2151c701e0d08956f92b0e24136cf4cf27b57a6a0d9bf"
474
990
 
991
+ [[package]]
992
+ name = "rayon"
993
+ version = "1.11.0"
994
+ source = "registry+https://github.com/rust-lang/crates.io-index"
995
+ checksum = "368f01d005bf8fd9b1206fb6fa653e6c4a81ceb1466406b81792d87c5677a58f"
996
+ dependencies = [
997
+ "either",
998
+ "rayon-core",
999
+ ]
1000
+
1001
+ [[package]]
1002
+ name = "rayon-core"
1003
+ version = "1.13.0"
1004
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1005
+ checksum = "22e18b0f0062d30d4230b2e85ff77fdfe4326feb054b9783a3460d8435c8ab91"
1006
+ dependencies = [
1007
+ "crossbeam-deque",
1008
+ "crossbeam-utils",
1009
+ ]
1010
+
475
1011
  [[package]]
476
1012
  name = "redox_syscall"
477
1013
  version = "0.7.3"
@@ -481,6 +1017,18 @@ dependencies = [
481
1017
  "bitflags 2.11.0",
482
1018
  ]
483
1019
 
1020
+ [[package]]
1021
+ name = "regex"
1022
+ version = "1.12.3"
1023
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1024
+ checksum = "e10754a14b9137dd7b1e3e5b0493cc9171fdd105e0ab477f51b72e7f3ac0e276"
1025
+ dependencies = [
1026
+ "aho-corasick",
1027
+ "memchr",
1028
+ "regex-automata",
1029
+ "regex-syntax",
1030
+ ]
1031
+
484
1032
  [[package]]
485
1033
  name = "regex-automata"
486
1034
  version = "0.4.14"
@@ -512,6 +1060,12 @@ dependencies = [
512
1060
  "smallvec",
513
1061
  ]
514
1062
 
1063
+ [[package]]
1064
+ name = "rustc-hash"
1065
+ version = "2.1.2"
1066
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1067
+ checksum = "94300abf3f1ae2e2b8ffb7b58043de3d399c73fa6f4b73826402a5c457614dbe"
1068
+
515
1069
  [[package]]
516
1070
  name = "rustix"
517
1071
  version = "1.1.4"
@@ -525,6 +1079,18 @@ dependencies = [
525
1079
  "windows-sys 0.61.2",
526
1080
  ]
527
1081
 
1082
+ [[package]]
1083
+ name = "rustversion"
1084
+ version = "1.0.22"
1085
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1086
+ checksum = "b39cdef0fa800fc44525c84ccb54a029961a8215f9619753635a9c0d2538d46d"
1087
+
1088
+ [[package]]
1089
+ name = "ryu"
1090
+ version = "1.0.23"
1091
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1092
+ checksum = "9774ba4a74de5f7b1c1451ed6cd5285a32eddb5cccb8cc655a4e50009e06477f"
1093
+
528
1094
  [[package]]
529
1095
  name = "same-file"
530
1096
  version = "1.0.6"
@@ -547,6 +1113,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
547
1113
  checksum = "9a8e94ea7f378bd32cbbd37198a4a91436180c5bb472411e48b5ec2e2124ae9e"
548
1114
  dependencies = [
549
1115
  "serde_core",
1116
+ "serde_derive",
550
1117
  ]
551
1118
 
552
1119
  [[package]]
@@ -582,12 +1149,40 @@ dependencies = [
582
1149
  "zmij",
583
1150
  ]
584
1151
 
1152
+ [[package]]
1153
+ name = "serde_spanned"
1154
+ version = "0.6.9"
1155
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1156
+ checksum = "bf41e0cfaf7226dca15e8197172c295a782857fcb97fad1808a166870dee75a3"
1157
+ dependencies = [
1158
+ "serde",
1159
+ ]
1160
+
1161
+ [[package]]
1162
+ name = "serde_yaml"
1163
+ version = "0.9.34+deprecated"
1164
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1165
+ checksum = "6a8b1a1a2ebf674015cc02edccce75287f1a0130d394307b36743c2f5d504b47"
1166
+ dependencies = [
1167
+ "indexmap",
1168
+ "itoa",
1169
+ "ryu",
1170
+ "serde",
1171
+ "unsafe-libyaml",
1172
+ ]
1173
+
585
1174
  [[package]]
586
1175
  name = "shlex"
587
1176
  version = "1.3.0"
588
1177
  source = "registry+https://github.com/rust-lang/crates.io-index"
589
1178
  checksum = "0fda2ff0d084019ba4d7c6f371c95d8fd75ce3524c3cb8fb653a3023f6323e64"
590
1179
 
1180
+ [[package]]
1181
+ name = "slab"
1182
+ version = "0.4.12"
1183
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1184
+ checksum = "0c790de23124f9ab44544d7ac05d60440adc586479ce501c1d6d7da3cd8c9cf5"
1185
+
591
1186
  [[package]]
592
1187
  name = "smallvec"
593
1188
  version = "1.15.1"
@@ -644,18 +1239,102 @@ dependencies = [
644
1239
  "syn",
645
1240
  ]
646
1241
 
1242
+ [[package]]
1243
+ name = "tinytemplate"
1244
+ version = "1.2.1"
1245
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1246
+ checksum = "be4d6b5f19ff7664e8c98d03e2139cb510db9b0a60b55f8e8709b689d939b6bc"
1247
+ dependencies = [
1248
+ "serde",
1249
+ "serde_json",
1250
+ ]
1251
+
1252
+ [[package]]
1253
+ name = "tokio"
1254
+ version = "1.51.1"
1255
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1256
+ checksum = "f66bf9585cda4b724d3e78ab34b73fb2bbaba9011b9bfdf69dc836382ea13b8c"
1257
+ dependencies = [
1258
+ "pin-project-lite",
1259
+ "tokio-macros",
1260
+ ]
1261
+
1262
+ [[package]]
1263
+ name = "tokio-macros"
1264
+ version = "2.7.0"
1265
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1266
+ checksum = "385a6cb71ab9ab790c5fe8d67f1645e6c450a7ce006a33de03daa956cf70a496"
1267
+ dependencies = [
1268
+ "proc-macro2",
1269
+ "quote",
1270
+ "syn",
1271
+ ]
1272
+
1273
+ [[package]]
1274
+ name = "toml"
1275
+ version = "0.8.23"
1276
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1277
+ checksum = "dc1beb996b9d83529a9e75c17a1686767d148d70663143c7854d8b4a09ced362"
1278
+ dependencies = [
1279
+ "serde",
1280
+ "serde_spanned",
1281
+ "toml_datetime",
1282
+ "toml_edit",
1283
+ ]
1284
+
1285
+ [[package]]
1286
+ name = "toml_datetime"
1287
+ version = "0.6.11"
1288
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1289
+ checksum = "22cddaf88f4fbc13c51aebbf5f8eceb5c7c5a9da2ac40a13519eb5b0a0e8f11c"
1290
+ dependencies = [
1291
+ "serde",
1292
+ ]
1293
+
1294
+ [[package]]
1295
+ name = "toml_edit"
1296
+ version = "0.22.27"
1297
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1298
+ checksum = "41fe8c660ae4257887cf66394862d21dbca4a6ddd26f04a3560410406a2f819a"
1299
+ dependencies = [
1300
+ "indexmap",
1301
+ "serde",
1302
+ "serde_spanned",
1303
+ "toml_datetime",
1304
+ "toml_write",
1305
+ "winnow",
1306
+ ]
1307
+
1308
+ [[package]]
1309
+ name = "toml_write"
1310
+ version = "0.1.2"
1311
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1312
+ checksum = "5d99f8c9a7727884afe522e9bd5edbfc91a3312b36a77b5fb8926e4c31a41801"
1313
+
647
1314
  [[package]]
648
1315
  name = "unicode-ident"
649
1316
  version = "1.0.24"
650
1317
  source = "registry+https://github.com/rust-lang/crates.io-index"
651
1318
  checksum = "e6e4313cd5fcd3dad5cafa179702e2b244f760991f45397d14d4ebf38247da75"
652
1319
 
1320
+ [[package]]
1321
+ name = "unicode-segmentation"
1322
+ version = "1.13.2"
1323
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1324
+ checksum = "9629274872b2bfaf8d66f5f15725007f635594914870f65218920345aa11aa8c"
1325
+
653
1326
  [[package]]
654
1327
  name = "unicode-xid"
655
1328
  version = "0.2.6"
656
1329
  source = "registry+https://github.com/rust-lang/crates.io-index"
657
1330
  checksum = "ebc1c04c71510c7f702b52b7c350734c9ff1295c464a03335b00bb84fc54f853"
658
1331
 
1332
+ [[package]]
1333
+ name = "unsafe-libyaml"
1334
+ version = "0.2.11"
1335
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1336
+ checksum = "673aac59facbab8a9007c7f6108d11f63b603f7cabff99fabf650fea5c32b861"
1337
+
659
1338
  [[package]]
660
1339
  name = "vcpkg"
661
1340
  version = "0.2.15"
@@ -696,6 +1375,51 @@ dependencies = [
696
1375
  "wit-bindgen",
697
1376
  ]
698
1377
 
1378
+ [[package]]
1379
+ name = "wasm-bindgen"
1380
+ version = "0.2.117"
1381
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1382
+ checksum = "0551fc1bb415591e3372d0bc4780db7e587d84e2a7e79da121051c5c4b89d0b0"
1383
+ dependencies = [
1384
+ "cfg-if",
1385
+ "once_cell",
1386
+ "rustversion",
1387
+ "wasm-bindgen-macro",
1388
+ "wasm-bindgen-shared",
1389
+ ]
1390
+
1391
+ [[package]]
1392
+ name = "wasm-bindgen-macro"
1393
+ version = "0.2.117"
1394
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1395
+ checksum = "7fbdf9a35adf44786aecd5ff89b4563a90325f9da0923236f6104e603c7e86be"
1396
+ dependencies = [
1397
+ "quote",
1398
+ "wasm-bindgen-macro-support",
1399
+ ]
1400
+
1401
+ [[package]]
1402
+ name = "wasm-bindgen-macro-support"
1403
+ version = "0.2.117"
1404
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1405
+ checksum = "dca9693ef2bab6d4e6707234500350d8dad079eb508dca05530c85dc3a529ff2"
1406
+ dependencies = [
1407
+ "bumpalo",
1408
+ "proc-macro2",
1409
+ "quote",
1410
+ "syn",
1411
+ "wasm-bindgen-shared",
1412
+ ]
1413
+
1414
+ [[package]]
1415
+ name = "wasm-bindgen-shared"
1416
+ version = "0.2.117"
1417
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1418
+ checksum = "39129a682a6d2d841b6c429d0c51e5cb0ed1a03829d8b3d1e69a011e62cb3d3b"
1419
+ dependencies = [
1420
+ "unicode-ident",
1421
+ ]
1422
+
699
1423
  [[package]]
700
1424
  name = "wasm-encoder"
701
1425
  version = "0.244.0"
@@ -730,6 +1454,16 @@ dependencies = [
730
1454
  "semver",
731
1455
  ]
732
1456
 
1457
+ [[package]]
1458
+ name = "web-sys"
1459
+ version = "0.3.94"
1460
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1461
+ checksum = "cd70027e39b12f0849461e08ffc50b9cd7688d942c1c8e3c7b22273236b4dd0a"
1462
+ dependencies = [
1463
+ "js-sys",
1464
+ "wasm-bindgen",
1465
+ ]
1466
+
733
1467
  [[package]]
734
1468
  name = "winapi-util"
735
1469
  version = "0.1.11"
@@ -827,6 +1561,15 @@ version = "0.52.6"
827
1561
  source = "registry+https://github.com/rust-lang/crates.io-index"
828
1562
  checksum = "589f6da84c646204747d1270a2a5661ea66ed1cced2631d546fdfb155959f9ec"
829
1563
 
1564
+ [[package]]
1565
+ name = "winnow"
1566
+ version = "0.7.15"
1567
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1568
+ checksum = "df79d97927682d2fd8adb29682d1140b343be4ac0f08fd68b7765d9c059d3945"
1569
+ dependencies = [
1570
+ "memchr",
1571
+ ]
1572
+
830
1573
  [[package]]
831
1574
  name = "wit-bindgen"
832
1575
  version = "0.51.0"
@@ -915,6 +1658,26 @@ dependencies = [
915
1658
  "wasmparser",
916
1659
  ]
917
1660
 
1661
+ [[package]]
1662
+ name = "zerocopy"
1663
+ version = "0.8.48"
1664
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1665
+ checksum = "eed437bf9d6692032087e337407a86f04cd8d6a16a37199ed57949d415bd68e9"
1666
+ dependencies = [
1667
+ "zerocopy-derive",
1668
+ ]
1669
+
1670
+ [[package]]
1671
+ name = "zerocopy-derive"
1672
+ version = "0.8.48"
1673
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1674
+ checksum = "70e3cd084b1788766f53af483dd21f93881ff30d7320490ec3ef7526d203bad4"
1675
+ dependencies = [
1676
+ "proc-macro2",
1677
+ "quote",
1678
+ "syn",
1679
+ ]
1680
+
918
1681
  [[package]]
919
1682
  name = "zmij"
920
1683
  version = "1.0.21"