backfire-kernel 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 (37) hide show
  1. backfire_kernel-0.1.0/Cargo.lock +955 -0
  2. backfire_kernel-0.1.0/Cargo.toml +38 -0
  3. backfire_kernel-0.1.0/PKG-INFO +15 -0
  4. backfire_kernel-0.1.0/crates/backfire-core/Cargo.toml +23 -0
  5. backfire_kernel-0.1.0/crates/backfire-core/benches/scoring_bench.rs +118 -0
  6. backfire_kernel-0.1.0/crates/backfire-core/src/kernel.rs +479 -0
  7. backfire_kernel-0.1.0/crates/backfire-core/src/knowledge.rs +162 -0
  8. backfire_kernel-0.1.0/crates/backfire-core/src/lib.rs +40 -0
  9. backfire_kernel-0.1.0/crates/backfire-core/src/nli.rs +117 -0
  10. backfire_kernel-0.1.0/crates/backfire-core/src/scorer.rs +292 -0
  11. backfire_kernel-0.1.0/crates/backfire-ffi/Cargo.toml +22 -0
  12. backfire_kernel-0.1.0/crates/backfire-ffi/src/lib.rs +1066 -0
  13. backfire_kernel-0.1.0/crates/backfire-observers/Cargo.toml +18 -0
  14. backfire_kernel-0.1.0/crates/backfire-observers/src/lib.rs +16 -0
  15. backfire_kernel-0.1.0/crates/backfire-observers/src/pgbo.rs +411 -0
  16. backfire_kernel-0.1.0/crates/backfire-observers/src/tcbo.rs +582 -0
  17. backfire_kernel-0.1.0/crates/backfire-physics/Cargo.toml +18 -0
  18. backfire_kernel-0.1.0/crates/backfire-physics/src/l16_closure.rs +592 -0
  19. backfire_kernel-0.1.0/crates/backfire-physics/src/lib.rs +18 -0
  20. backfire_kernel-0.1.0/crates/backfire-physics/src/params.rs +186 -0
  21. backfire_kernel-0.1.0/crates/backfire-physics/src/sec_functional.rs +476 -0
  22. backfire_kernel-0.1.0/crates/backfire-physics/src/upde.rs +437 -0
  23. backfire_kernel-0.1.0/crates/backfire-ssgf/Cargo.toml +23 -0
  24. backfire_kernel-0.1.0/crates/backfire-ssgf/benches/ssgf_bench.rs +425 -0
  25. backfire_kernel-0.1.0/crates/backfire-ssgf/src/costs.rs +477 -0
  26. backfire_kernel-0.1.0/crates/backfire-ssgf/src/decoder.rs +578 -0
  27. backfire_kernel-0.1.0/crates/backfire-ssgf/src/engine.rs +687 -0
  28. backfire_kernel-0.1.0/crates/backfire-ssgf/src/lib.rs +33 -0
  29. backfire_kernel-0.1.0/crates/backfire-ssgf/src/micro.rs +223 -0
  30. backfire_kernel-0.1.0/crates/backfire-ssgf/src/node_space.rs +122 -0
  31. backfire_kernel-0.1.0/crates/backfire-ssgf/src/spectral.rs +509 -0
  32. backfire_kernel-0.1.0/crates/backfire-types/Cargo.toml +16 -0
  33. backfire_kernel-0.1.0/crates/backfire-types/src/config.rs +233 -0
  34. backfire_kernel-0.1.0/crates/backfire-types/src/error.rs +48 -0
  35. backfire_kernel-0.1.0/crates/backfire-types/src/lib.rs +16 -0
  36. backfire_kernel-0.1.0/crates/backfire-types/src/score.rs +301 -0
  37. backfire_kernel-0.1.0/pyproject.toml +27 -0
@@ -0,0 +1,955 @@
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 = "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 = "anstream"
22
+ version = "0.6.21"
23
+ source = "registry+https://github.com/rust-lang/crates.io-index"
24
+ checksum = "43d5b281e737544384e969a5ccad3f1cdd24b48086a0fc1b2a5262a26b8f4f4a"
25
+ dependencies = [
26
+ "anstyle",
27
+ "anstyle-parse",
28
+ "anstyle-query",
29
+ "anstyle-wincon",
30
+ "colorchoice",
31
+ "is_terminal_polyfill",
32
+ "utf8parse",
33
+ ]
34
+
35
+ [[package]]
36
+ name = "anstyle"
37
+ version = "1.0.13"
38
+ source = "registry+https://github.com/rust-lang/crates.io-index"
39
+ checksum = "5192cca8006f1fd4f7237516f40fa183bb07f8fbdfedaa0036de5ea9b0b45e78"
40
+
41
+ [[package]]
42
+ name = "anstyle-parse"
43
+ version = "0.2.7"
44
+ source = "registry+https://github.com/rust-lang/crates.io-index"
45
+ checksum = "4e7644824f0aa2c7b9384579234ef10eb7efb6a0deb83f9630a49594dd9c15c2"
46
+ dependencies = [
47
+ "utf8parse",
48
+ ]
49
+
50
+ [[package]]
51
+ name = "anstyle-query"
52
+ version = "1.1.5"
53
+ source = "registry+https://github.com/rust-lang/crates.io-index"
54
+ checksum = "40c48f72fd53cd289104fc64099abca73db4166ad86ea0b4341abe65af83dadc"
55
+ dependencies = [
56
+ "windows-sys",
57
+ ]
58
+
59
+ [[package]]
60
+ name = "anstyle-wincon"
61
+ version = "3.0.11"
62
+ source = "registry+https://github.com/rust-lang/crates.io-index"
63
+ checksum = "291e6a250ff86cd4a820112fb8898808a366d8f9f58ce16d1f538353ad55747d"
64
+ dependencies = [
65
+ "anstyle",
66
+ "once_cell_polyfill",
67
+ "windows-sys",
68
+ ]
69
+
70
+ [[package]]
71
+ name = "autocfg"
72
+ version = "1.5.0"
73
+ source = "registry+https://github.com/rust-lang/crates.io-index"
74
+ checksum = "c08606f8c3cbf4ce6ec8e28fb0014a2c086708fe954eaa885384a6165172e7e8"
75
+
76
+ [[package]]
77
+ name = "backfire-core"
78
+ version = "0.1.0"
79
+ dependencies = [
80
+ "backfire-types",
81
+ "criterion",
82
+ "env_logger",
83
+ "log",
84
+ "parking_lot",
85
+ ]
86
+
87
+ [[package]]
88
+ name = "backfire-ffi"
89
+ version = "0.1.0"
90
+ dependencies = [
91
+ "backfire-core",
92
+ "backfire-observers",
93
+ "backfire-physics",
94
+ "backfire-ssgf",
95
+ "backfire-types",
96
+ "pyo3",
97
+ ]
98
+
99
+ [[package]]
100
+ name = "backfire-observers"
101
+ version = "0.1.0"
102
+ dependencies = [
103
+ "backfire-types",
104
+ "env_logger",
105
+ "log",
106
+ "serde",
107
+ ]
108
+
109
+ [[package]]
110
+ name = "backfire-physics"
111
+ version = "0.1.0"
112
+ dependencies = [
113
+ "backfire-types",
114
+ "env_logger",
115
+ "log",
116
+ "serde",
117
+ ]
118
+
119
+ [[package]]
120
+ name = "backfire-ssgf"
121
+ version = "0.1.0"
122
+ dependencies = [
123
+ "backfire-observers",
124
+ "backfire-physics",
125
+ "backfire-types",
126
+ "criterion",
127
+ "serde",
128
+ ]
129
+
130
+ [[package]]
131
+ name = "backfire-types"
132
+ version = "0.1.0"
133
+ dependencies = [
134
+ "log",
135
+ "serde",
136
+ "serde_json",
137
+ "thiserror",
138
+ ]
139
+
140
+ [[package]]
141
+ name = "backfire-wasm"
142
+ version = "0.1.0"
143
+ dependencies = [
144
+ "backfire-core",
145
+ "backfire-types",
146
+ "js-sys",
147
+ "serde",
148
+ "serde-wasm-bindgen",
149
+ "wasm-bindgen",
150
+ ]
151
+
152
+ [[package]]
153
+ name = "bitflags"
154
+ version = "2.11.0"
155
+ source = "registry+https://github.com/rust-lang/crates.io-index"
156
+ checksum = "843867be96c8daad0d758b57df9392b6d8d271134fce549de6ce169ff98a92af"
157
+
158
+ [[package]]
159
+ name = "bumpalo"
160
+ version = "3.20.2"
161
+ source = "registry+https://github.com/rust-lang/crates.io-index"
162
+ checksum = "5d20789868f4b01b2f2caec9f5c4e0213b41e3e5702a50157d699ae31ced2fcb"
163
+
164
+ [[package]]
165
+ name = "cast"
166
+ version = "0.3.0"
167
+ source = "registry+https://github.com/rust-lang/crates.io-index"
168
+ checksum = "37b2a672a2cb129a2e41c10b1224bb368f9f37a2b16b612598138befd7b37eb5"
169
+
170
+ [[package]]
171
+ name = "cfg-if"
172
+ version = "1.0.4"
173
+ source = "registry+https://github.com/rust-lang/crates.io-index"
174
+ checksum = "9330f8b2ff13f34540b44e946ef35111825727b38d33286ef986142615121801"
175
+
176
+ [[package]]
177
+ name = "ciborium"
178
+ version = "0.2.2"
179
+ source = "registry+https://github.com/rust-lang/crates.io-index"
180
+ checksum = "42e69ffd6f0917f5c029256a24d0161db17cea3997d185db0d35926308770f0e"
181
+ dependencies = [
182
+ "ciborium-io",
183
+ "ciborium-ll",
184
+ "serde",
185
+ ]
186
+
187
+ [[package]]
188
+ name = "ciborium-io"
189
+ version = "0.2.2"
190
+ source = "registry+https://github.com/rust-lang/crates.io-index"
191
+ checksum = "05afea1e0a06c9be33d539b876f1ce3692f4afea2cb41f740e7743225ed1c757"
192
+
193
+ [[package]]
194
+ name = "ciborium-ll"
195
+ version = "0.2.2"
196
+ source = "registry+https://github.com/rust-lang/crates.io-index"
197
+ checksum = "57663b653d948a338bfb3eeba9bb2fd5fcfaecb9e199e87e1eda4d9e8b240fd9"
198
+ dependencies = [
199
+ "ciborium-io",
200
+ "half",
201
+ ]
202
+
203
+ [[package]]
204
+ name = "clap"
205
+ version = "4.5.60"
206
+ source = "registry+https://github.com/rust-lang/crates.io-index"
207
+ checksum = "2797f34da339ce31042b27d23607e051786132987f595b02ba4f6a6dffb7030a"
208
+ dependencies = [
209
+ "clap_builder",
210
+ ]
211
+
212
+ [[package]]
213
+ name = "clap_builder"
214
+ version = "4.5.60"
215
+ source = "registry+https://github.com/rust-lang/crates.io-index"
216
+ checksum = "24a241312cea5059b13574bb9b3861cabf758b879c15190b37b6d6fd63ab6876"
217
+ dependencies = [
218
+ "anstyle",
219
+ "clap_lex",
220
+ ]
221
+
222
+ [[package]]
223
+ name = "clap_lex"
224
+ version = "1.0.0"
225
+ source = "registry+https://github.com/rust-lang/crates.io-index"
226
+ checksum = "3a822ea5bc7590f9d40f1ba12c0dc3c2760f3482c6984db1573ad11031420831"
227
+
228
+ [[package]]
229
+ name = "colorchoice"
230
+ version = "1.0.4"
231
+ source = "registry+https://github.com/rust-lang/crates.io-index"
232
+ checksum = "b05b61dc5112cbb17e4b6cd61790d9845d13888356391624cbe7e41efeac1e75"
233
+
234
+ [[package]]
235
+ name = "criterion"
236
+ version = "0.5.1"
237
+ source = "registry+https://github.com/rust-lang/crates.io-index"
238
+ checksum = "f2b12d017a929603d80db1831cd3a24082f8137ce19c69e6447f54f5fc8d692f"
239
+ dependencies = [
240
+ "anes",
241
+ "cast",
242
+ "ciborium",
243
+ "clap",
244
+ "criterion-plot",
245
+ "is-terminal",
246
+ "itertools",
247
+ "num-traits",
248
+ "once_cell",
249
+ "oorandom",
250
+ "plotters",
251
+ "rayon",
252
+ "regex",
253
+ "serde",
254
+ "serde_derive",
255
+ "serde_json",
256
+ "tinytemplate",
257
+ "walkdir",
258
+ ]
259
+
260
+ [[package]]
261
+ name = "criterion-plot"
262
+ version = "0.5.0"
263
+ source = "registry+https://github.com/rust-lang/crates.io-index"
264
+ checksum = "6b50826342786a51a89e2da3a28f1c32b06e387201bc2d19791f622c673706b1"
265
+ dependencies = [
266
+ "cast",
267
+ "itertools",
268
+ ]
269
+
270
+ [[package]]
271
+ name = "crossbeam-deque"
272
+ version = "0.8.6"
273
+ source = "registry+https://github.com/rust-lang/crates.io-index"
274
+ checksum = "9dd111b7b7f7d55b72c0a6ae361660ee5853c9af73f70c3c2ef6858b950e2e51"
275
+ dependencies = [
276
+ "crossbeam-epoch",
277
+ "crossbeam-utils",
278
+ ]
279
+
280
+ [[package]]
281
+ name = "crossbeam-epoch"
282
+ version = "0.9.18"
283
+ source = "registry+https://github.com/rust-lang/crates.io-index"
284
+ checksum = "5b82ac4a3c2ca9c3460964f020e1402edd5753411d7737aa39c3714ad1b5420e"
285
+ dependencies = [
286
+ "crossbeam-utils",
287
+ ]
288
+
289
+ [[package]]
290
+ name = "crossbeam-utils"
291
+ version = "0.8.21"
292
+ source = "registry+https://github.com/rust-lang/crates.io-index"
293
+ checksum = "d0a5c400df2834b80a4c3327b3aad3a4c4cd4de0629063962b03235697506a28"
294
+
295
+ [[package]]
296
+ name = "crunchy"
297
+ version = "0.2.4"
298
+ source = "registry+https://github.com/rust-lang/crates.io-index"
299
+ checksum = "460fbee9c2c2f33933d720630a6a0bac33ba7053db5344fac858d4b8952d77d5"
300
+
301
+ [[package]]
302
+ name = "either"
303
+ version = "1.15.0"
304
+ source = "registry+https://github.com/rust-lang/crates.io-index"
305
+ checksum = "48c757948c5ede0e46177b7add2e67155f70e33c07fea8284df6576da70b3719"
306
+
307
+ [[package]]
308
+ name = "env_filter"
309
+ version = "1.0.0"
310
+ source = "registry+https://github.com/rust-lang/crates.io-index"
311
+ checksum = "7a1c3cc8e57274ec99de65301228b537f1e4eedc1b8e0f9411c6caac8ae7308f"
312
+ dependencies = [
313
+ "log",
314
+ "regex",
315
+ ]
316
+
317
+ [[package]]
318
+ name = "env_logger"
319
+ version = "0.11.9"
320
+ source = "registry+https://github.com/rust-lang/crates.io-index"
321
+ checksum = "b2daee4ea451f429a58296525ddf28b45a3b64f1acf6587e2067437bb11e218d"
322
+ dependencies = [
323
+ "anstream",
324
+ "anstyle",
325
+ "env_filter",
326
+ "jiff",
327
+ "log",
328
+ ]
329
+
330
+ [[package]]
331
+ name = "half"
332
+ version = "2.7.1"
333
+ source = "registry+https://github.com/rust-lang/crates.io-index"
334
+ checksum = "6ea2d84b969582b4b1864a92dc5d27cd2b77b622a8d79306834f1be5ba20d84b"
335
+ dependencies = [
336
+ "cfg-if",
337
+ "crunchy",
338
+ "zerocopy",
339
+ ]
340
+
341
+ [[package]]
342
+ name = "heck"
343
+ version = "0.5.0"
344
+ source = "registry+https://github.com/rust-lang/crates.io-index"
345
+ checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea"
346
+
347
+ [[package]]
348
+ name = "hermit-abi"
349
+ version = "0.5.2"
350
+ source = "registry+https://github.com/rust-lang/crates.io-index"
351
+ checksum = "fc0fef456e4baa96da950455cd02c081ca953b141298e41db3fc7e36b1da849c"
352
+
353
+ [[package]]
354
+ name = "indoc"
355
+ version = "2.0.7"
356
+ source = "registry+https://github.com/rust-lang/crates.io-index"
357
+ checksum = "79cf5c93f93228cf8efb3ba362535fb11199ac548a09ce117c9b1adc3030d706"
358
+ dependencies = [
359
+ "rustversion",
360
+ ]
361
+
362
+ [[package]]
363
+ name = "is-terminal"
364
+ version = "0.4.17"
365
+ source = "registry+https://github.com/rust-lang/crates.io-index"
366
+ checksum = "3640c1c38b8e4e43584d8df18be5fc6b0aa314ce6ebf51b53313d4306cca8e46"
367
+ dependencies = [
368
+ "hermit-abi",
369
+ "libc",
370
+ "windows-sys",
371
+ ]
372
+
373
+ [[package]]
374
+ name = "is_terminal_polyfill"
375
+ version = "1.70.2"
376
+ source = "registry+https://github.com/rust-lang/crates.io-index"
377
+ checksum = "a6cb138bb79a146c1bd460005623e142ef0181e3d0219cb493e02f7d08a35695"
378
+
379
+ [[package]]
380
+ name = "itertools"
381
+ version = "0.10.5"
382
+ source = "registry+https://github.com/rust-lang/crates.io-index"
383
+ checksum = "b0fd2260e829bddf4cb6ea802289de2f86d6a7a690192fbe91b3f46e0f2c8473"
384
+ dependencies = [
385
+ "either",
386
+ ]
387
+
388
+ [[package]]
389
+ name = "itoa"
390
+ version = "1.0.17"
391
+ source = "registry+https://github.com/rust-lang/crates.io-index"
392
+ checksum = "92ecc6618181def0457392ccd0ee51198e065e016d1d527a7ac1b6dc7c1f09d2"
393
+
394
+ [[package]]
395
+ name = "jiff"
396
+ version = "0.2.20"
397
+ source = "registry+https://github.com/rust-lang/crates.io-index"
398
+ checksum = "c867c356cc096b33f4981825ab281ecba3db0acefe60329f044c1789d94c6543"
399
+ dependencies = [
400
+ "jiff-static",
401
+ "log",
402
+ "portable-atomic",
403
+ "portable-atomic-util",
404
+ "serde_core",
405
+ ]
406
+
407
+ [[package]]
408
+ name = "jiff-static"
409
+ version = "0.2.20"
410
+ source = "registry+https://github.com/rust-lang/crates.io-index"
411
+ checksum = "f7946b4325269738f270bb55b3c19ab5c5040525f83fd625259422a9d25d9be5"
412
+ dependencies = [
413
+ "proc-macro2",
414
+ "quote",
415
+ "syn",
416
+ ]
417
+
418
+ [[package]]
419
+ name = "js-sys"
420
+ version = "0.3.88"
421
+ source = "registry+https://github.com/rust-lang/crates.io-index"
422
+ checksum = "c7e709f3e3d22866f9c25b3aff01af289b18422cc8b4262fb19103ee80fe513d"
423
+ dependencies = [
424
+ "once_cell",
425
+ "wasm-bindgen",
426
+ ]
427
+
428
+ [[package]]
429
+ name = "libc"
430
+ version = "0.2.182"
431
+ source = "registry+https://github.com/rust-lang/crates.io-index"
432
+ checksum = "6800badb6cb2082ffd7b6a67e6125bb39f18782f793520caee8cb8846be06112"
433
+
434
+ [[package]]
435
+ name = "lock_api"
436
+ version = "0.4.14"
437
+ source = "registry+https://github.com/rust-lang/crates.io-index"
438
+ checksum = "224399e74b87b5f3557511d98dff8b14089b3dadafcab6bb93eab67d3aace965"
439
+ dependencies = [
440
+ "scopeguard",
441
+ ]
442
+
443
+ [[package]]
444
+ name = "log"
445
+ version = "0.4.29"
446
+ source = "registry+https://github.com/rust-lang/crates.io-index"
447
+ checksum = "5e5032e24019045c762d3c0f28f5b6b8bbf38563a65908389bf7978758920897"
448
+
449
+ [[package]]
450
+ name = "memchr"
451
+ version = "2.8.0"
452
+ source = "registry+https://github.com/rust-lang/crates.io-index"
453
+ checksum = "f8ca58f447f06ed17d5fc4043ce1b10dd205e060fb3ce5b979b8ed8e59ff3f79"
454
+
455
+ [[package]]
456
+ name = "memoffset"
457
+ version = "0.9.1"
458
+ source = "registry+https://github.com/rust-lang/crates.io-index"
459
+ checksum = "488016bfae457b036d996092f6cb448677611ce4449e970ceaf42695203f218a"
460
+ dependencies = [
461
+ "autocfg",
462
+ ]
463
+
464
+ [[package]]
465
+ name = "num-traits"
466
+ version = "0.2.19"
467
+ source = "registry+https://github.com/rust-lang/crates.io-index"
468
+ checksum = "071dfc062690e90b734c0b2273ce72ad0ffa95f0c74596bc250dcfd960262841"
469
+ dependencies = [
470
+ "autocfg",
471
+ ]
472
+
473
+ [[package]]
474
+ name = "once_cell"
475
+ version = "1.21.3"
476
+ source = "registry+https://github.com/rust-lang/crates.io-index"
477
+ checksum = "42f5e15c9953c5e4ccceeb2e7382a716482c34515315f7b03532b8b4e8393d2d"
478
+
479
+ [[package]]
480
+ name = "once_cell_polyfill"
481
+ version = "1.70.2"
482
+ source = "registry+https://github.com/rust-lang/crates.io-index"
483
+ checksum = "384b8ab6d37215f3c5301a95a4accb5d64aa607f1fcb26a11b5303878451b4fe"
484
+
485
+ [[package]]
486
+ name = "oorandom"
487
+ version = "11.1.5"
488
+ source = "registry+https://github.com/rust-lang/crates.io-index"
489
+ checksum = "d6790f58c7ff633d8771f42965289203411a5e5c68388703c06e14f24770b41e"
490
+
491
+ [[package]]
492
+ name = "parking_lot"
493
+ version = "0.12.5"
494
+ source = "registry+https://github.com/rust-lang/crates.io-index"
495
+ checksum = "93857453250e3077bd71ff98b6a65ea6621a19bb0f559a85248955ac12c45a1a"
496
+ dependencies = [
497
+ "lock_api",
498
+ "parking_lot_core",
499
+ ]
500
+
501
+ [[package]]
502
+ name = "parking_lot_core"
503
+ version = "0.9.12"
504
+ source = "registry+https://github.com/rust-lang/crates.io-index"
505
+ checksum = "2621685985a2ebf1c516881c026032ac7deafcda1a2c9b7850dc81e3dfcb64c1"
506
+ dependencies = [
507
+ "cfg-if",
508
+ "libc",
509
+ "redox_syscall",
510
+ "smallvec",
511
+ "windows-link",
512
+ ]
513
+
514
+ [[package]]
515
+ name = "plotters"
516
+ version = "0.3.7"
517
+ source = "registry+https://github.com/rust-lang/crates.io-index"
518
+ checksum = "5aeb6f403d7a4911efb1e33402027fc44f29b5bf6def3effcc22d7bb75f2b747"
519
+ dependencies = [
520
+ "num-traits",
521
+ "plotters-backend",
522
+ "plotters-svg",
523
+ "wasm-bindgen",
524
+ "web-sys",
525
+ ]
526
+
527
+ [[package]]
528
+ name = "plotters-backend"
529
+ version = "0.3.7"
530
+ source = "registry+https://github.com/rust-lang/crates.io-index"
531
+ checksum = "df42e13c12958a16b3f7f4386b9ab1f3e7933914ecea48da7139435263a4172a"
532
+
533
+ [[package]]
534
+ name = "plotters-svg"
535
+ version = "0.3.7"
536
+ source = "registry+https://github.com/rust-lang/crates.io-index"
537
+ checksum = "51bae2ac328883f7acdfea3d66a7c35751187f870bc81f94563733a154d7a670"
538
+ dependencies = [
539
+ "plotters-backend",
540
+ ]
541
+
542
+ [[package]]
543
+ name = "portable-atomic"
544
+ version = "1.13.1"
545
+ source = "registry+https://github.com/rust-lang/crates.io-index"
546
+ checksum = "c33a9471896f1c69cecef8d20cbe2f7accd12527ce60845ff44c153bb2a21b49"
547
+
548
+ [[package]]
549
+ name = "portable-atomic-util"
550
+ version = "0.2.5"
551
+ source = "registry+https://github.com/rust-lang/crates.io-index"
552
+ checksum = "7a9db96d7fa8782dd8c15ce32ffe8680bbd1e978a43bf51a34d39483540495f5"
553
+ dependencies = [
554
+ "portable-atomic",
555
+ ]
556
+
557
+ [[package]]
558
+ name = "proc-macro2"
559
+ version = "1.0.106"
560
+ source = "registry+https://github.com/rust-lang/crates.io-index"
561
+ checksum = "8fd00f0bb2e90d81d1044c2b32617f68fcb9fa3bb7640c23e9c748e53fb30934"
562
+ dependencies = [
563
+ "unicode-ident",
564
+ ]
565
+
566
+ [[package]]
567
+ name = "pyo3"
568
+ version = "0.24.2"
569
+ source = "registry+https://github.com/rust-lang/crates.io-index"
570
+ checksum = "e5203598f366b11a02b13aa20cab591229ff0a89fd121a308a5df751d5fc9219"
571
+ dependencies = [
572
+ "cfg-if",
573
+ "indoc",
574
+ "libc",
575
+ "memoffset",
576
+ "once_cell",
577
+ "portable-atomic",
578
+ "pyo3-build-config",
579
+ "pyo3-ffi",
580
+ "pyo3-macros",
581
+ "unindent",
582
+ ]
583
+
584
+ [[package]]
585
+ name = "pyo3-build-config"
586
+ version = "0.24.2"
587
+ source = "registry+https://github.com/rust-lang/crates.io-index"
588
+ checksum = "99636d423fa2ca130fa5acde3059308006d46f98caac629418e53f7ebb1e9999"
589
+ dependencies = [
590
+ "once_cell",
591
+ "target-lexicon",
592
+ ]
593
+
594
+ [[package]]
595
+ name = "pyo3-ffi"
596
+ version = "0.24.2"
597
+ source = "registry+https://github.com/rust-lang/crates.io-index"
598
+ checksum = "78f9cf92ba9c409279bc3305b5409d90db2d2c22392d443a87df3a1adad59e33"
599
+ dependencies = [
600
+ "libc",
601
+ "pyo3-build-config",
602
+ ]
603
+
604
+ [[package]]
605
+ name = "pyo3-macros"
606
+ version = "0.24.2"
607
+ source = "registry+https://github.com/rust-lang/crates.io-index"
608
+ checksum = "0b999cb1a6ce21f9a6b147dcf1be9ffedf02e0043aec74dc390f3007047cecd9"
609
+ dependencies = [
610
+ "proc-macro2",
611
+ "pyo3-macros-backend",
612
+ "quote",
613
+ "syn",
614
+ ]
615
+
616
+ [[package]]
617
+ name = "pyo3-macros-backend"
618
+ version = "0.24.2"
619
+ source = "registry+https://github.com/rust-lang/crates.io-index"
620
+ checksum = "822ece1c7e1012745607d5cf0bcb2874769f0f7cb34c4cde03b9358eb9ef911a"
621
+ dependencies = [
622
+ "heck",
623
+ "proc-macro2",
624
+ "pyo3-build-config",
625
+ "quote",
626
+ "syn",
627
+ ]
628
+
629
+ [[package]]
630
+ name = "quote"
631
+ version = "1.0.44"
632
+ source = "registry+https://github.com/rust-lang/crates.io-index"
633
+ checksum = "21b2ebcf727b7760c461f091f9f0f539b77b8e87f2fd88131e7f1b433b3cece4"
634
+ dependencies = [
635
+ "proc-macro2",
636
+ ]
637
+
638
+ [[package]]
639
+ name = "rayon"
640
+ version = "1.11.0"
641
+ source = "registry+https://github.com/rust-lang/crates.io-index"
642
+ checksum = "368f01d005bf8fd9b1206fb6fa653e6c4a81ceb1466406b81792d87c5677a58f"
643
+ dependencies = [
644
+ "either",
645
+ "rayon-core",
646
+ ]
647
+
648
+ [[package]]
649
+ name = "rayon-core"
650
+ version = "1.13.0"
651
+ source = "registry+https://github.com/rust-lang/crates.io-index"
652
+ checksum = "22e18b0f0062d30d4230b2e85ff77fdfe4326feb054b9783a3460d8435c8ab91"
653
+ dependencies = [
654
+ "crossbeam-deque",
655
+ "crossbeam-utils",
656
+ ]
657
+
658
+ [[package]]
659
+ name = "redox_syscall"
660
+ version = "0.5.18"
661
+ source = "registry+https://github.com/rust-lang/crates.io-index"
662
+ checksum = "ed2bf2547551a7053d6fdfafda3f938979645c44812fbfcda098faae3f1a362d"
663
+ dependencies = [
664
+ "bitflags",
665
+ ]
666
+
667
+ [[package]]
668
+ name = "regex"
669
+ version = "1.12.3"
670
+ source = "registry+https://github.com/rust-lang/crates.io-index"
671
+ checksum = "e10754a14b9137dd7b1e3e5b0493cc9171fdd105e0ab477f51b72e7f3ac0e276"
672
+ dependencies = [
673
+ "aho-corasick",
674
+ "memchr",
675
+ "regex-automata",
676
+ "regex-syntax",
677
+ ]
678
+
679
+ [[package]]
680
+ name = "regex-automata"
681
+ version = "0.4.14"
682
+ source = "registry+https://github.com/rust-lang/crates.io-index"
683
+ checksum = "6e1dd4122fc1595e8162618945476892eefca7b88c52820e74af6262213cae8f"
684
+ dependencies = [
685
+ "aho-corasick",
686
+ "memchr",
687
+ "regex-syntax",
688
+ ]
689
+
690
+ [[package]]
691
+ name = "regex-syntax"
692
+ version = "0.8.9"
693
+ source = "registry+https://github.com/rust-lang/crates.io-index"
694
+ checksum = "a96887878f22d7bad8a3b6dc5b7440e0ada9a245242924394987b21cf2210a4c"
695
+
696
+ [[package]]
697
+ name = "rustversion"
698
+ version = "1.0.22"
699
+ source = "registry+https://github.com/rust-lang/crates.io-index"
700
+ checksum = "b39cdef0fa800fc44525c84ccb54a029961a8215f9619753635a9c0d2538d46d"
701
+
702
+ [[package]]
703
+ name = "same-file"
704
+ version = "1.0.6"
705
+ source = "registry+https://github.com/rust-lang/crates.io-index"
706
+ checksum = "93fc1dc3aaa9bfed95e02e6eadabb4baf7e3078b0bd1b4d7b6b0b68378900502"
707
+ dependencies = [
708
+ "winapi-util",
709
+ ]
710
+
711
+ [[package]]
712
+ name = "scopeguard"
713
+ version = "1.2.0"
714
+ source = "registry+https://github.com/rust-lang/crates.io-index"
715
+ checksum = "94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49"
716
+
717
+ [[package]]
718
+ name = "serde"
719
+ version = "1.0.228"
720
+ source = "registry+https://github.com/rust-lang/crates.io-index"
721
+ checksum = "9a8e94ea7f378bd32cbbd37198a4a91436180c5bb472411e48b5ec2e2124ae9e"
722
+ dependencies = [
723
+ "serde_core",
724
+ "serde_derive",
725
+ ]
726
+
727
+ [[package]]
728
+ name = "serde-wasm-bindgen"
729
+ version = "0.6.5"
730
+ source = "registry+https://github.com/rust-lang/crates.io-index"
731
+ checksum = "8302e169f0eddcc139c70f139d19d6467353af16f9fce27e8c30158036a1e16b"
732
+ dependencies = [
733
+ "js-sys",
734
+ "serde",
735
+ "wasm-bindgen",
736
+ ]
737
+
738
+ [[package]]
739
+ name = "serde_core"
740
+ version = "1.0.228"
741
+ source = "registry+https://github.com/rust-lang/crates.io-index"
742
+ checksum = "41d385c7d4ca58e59fc732af25c3983b67ac852c1a25000afe1175de458b67ad"
743
+ dependencies = [
744
+ "serde_derive",
745
+ ]
746
+
747
+ [[package]]
748
+ name = "serde_derive"
749
+ version = "1.0.228"
750
+ source = "registry+https://github.com/rust-lang/crates.io-index"
751
+ checksum = "d540f220d3187173da220f885ab66608367b6574e925011a9353e4badda91d79"
752
+ dependencies = [
753
+ "proc-macro2",
754
+ "quote",
755
+ "syn",
756
+ ]
757
+
758
+ [[package]]
759
+ name = "serde_json"
760
+ version = "1.0.149"
761
+ source = "registry+https://github.com/rust-lang/crates.io-index"
762
+ checksum = "83fc039473c5595ace860d8c4fafa220ff474b3fc6bfdb4293327f1a37e94d86"
763
+ dependencies = [
764
+ "itoa",
765
+ "memchr",
766
+ "serde",
767
+ "serde_core",
768
+ "zmij",
769
+ ]
770
+
771
+ [[package]]
772
+ name = "smallvec"
773
+ version = "1.15.1"
774
+ source = "registry+https://github.com/rust-lang/crates.io-index"
775
+ checksum = "67b1b7a3b5fe4f1376887184045fcf45c69e92af734b7aaddc05fb777b6fbd03"
776
+
777
+ [[package]]
778
+ name = "syn"
779
+ version = "2.0.117"
780
+ source = "registry+https://github.com/rust-lang/crates.io-index"
781
+ checksum = "e665b8803e7b1d2a727f4023456bbbbe74da67099c585258af0ad9c5013b9b99"
782
+ dependencies = [
783
+ "proc-macro2",
784
+ "quote",
785
+ "unicode-ident",
786
+ ]
787
+
788
+ [[package]]
789
+ name = "target-lexicon"
790
+ version = "0.13.5"
791
+ source = "registry+https://github.com/rust-lang/crates.io-index"
792
+ checksum = "adb6935a6f5c20170eeceb1a3835a49e12e19d792f6dd344ccc76a985ca5a6ca"
793
+
794
+ [[package]]
795
+ name = "thiserror"
796
+ version = "2.0.18"
797
+ source = "registry+https://github.com/rust-lang/crates.io-index"
798
+ checksum = "4288b5bcbc7920c07a1149a35cf9590a2aa808e0bc1eafaade0b80947865fbc4"
799
+ dependencies = [
800
+ "thiserror-impl",
801
+ ]
802
+
803
+ [[package]]
804
+ name = "thiserror-impl"
805
+ version = "2.0.18"
806
+ source = "registry+https://github.com/rust-lang/crates.io-index"
807
+ checksum = "ebc4ee7f67670e9b64d05fa4253e753e016c6c95ff35b89b7941d6b856dec1d5"
808
+ dependencies = [
809
+ "proc-macro2",
810
+ "quote",
811
+ "syn",
812
+ ]
813
+
814
+ [[package]]
815
+ name = "tinytemplate"
816
+ version = "1.2.1"
817
+ source = "registry+https://github.com/rust-lang/crates.io-index"
818
+ checksum = "be4d6b5f19ff7664e8c98d03e2139cb510db9b0a60b55f8e8709b689d939b6bc"
819
+ dependencies = [
820
+ "serde",
821
+ "serde_json",
822
+ ]
823
+
824
+ [[package]]
825
+ name = "unicode-ident"
826
+ version = "1.0.24"
827
+ source = "registry+https://github.com/rust-lang/crates.io-index"
828
+ checksum = "e6e4313cd5fcd3dad5cafa179702e2b244f760991f45397d14d4ebf38247da75"
829
+
830
+ [[package]]
831
+ name = "unindent"
832
+ version = "0.2.4"
833
+ source = "registry+https://github.com/rust-lang/crates.io-index"
834
+ checksum = "7264e107f553ccae879d21fbea1d6724ac785e8c3bfc762137959b5802826ef3"
835
+
836
+ [[package]]
837
+ name = "utf8parse"
838
+ version = "0.2.2"
839
+ source = "registry+https://github.com/rust-lang/crates.io-index"
840
+ checksum = "06abde3611657adf66d383f00b093d7faecc7fa57071cce2578660c9f1010821"
841
+
842
+ [[package]]
843
+ name = "walkdir"
844
+ version = "2.5.0"
845
+ source = "registry+https://github.com/rust-lang/crates.io-index"
846
+ checksum = "29790946404f91d9c5d06f9874efddea1dc06c5efe94541a7d6863108e3a5e4b"
847
+ dependencies = [
848
+ "same-file",
849
+ "winapi-util",
850
+ ]
851
+
852
+ [[package]]
853
+ name = "wasm-bindgen"
854
+ version = "0.2.111"
855
+ source = "registry+https://github.com/rust-lang/crates.io-index"
856
+ checksum = "ec1adf1535672f5b7824f817792b1afd731d7e843d2d04ec8f27e8cb51edd8ac"
857
+ dependencies = [
858
+ "cfg-if",
859
+ "once_cell",
860
+ "rustversion",
861
+ "wasm-bindgen-macro",
862
+ "wasm-bindgen-shared",
863
+ ]
864
+
865
+ [[package]]
866
+ name = "wasm-bindgen-macro"
867
+ version = "0.2.111"
868
+ source = "registry+https://github.com/rust-lang/crates.io-index"
869
+ checksum = "19e638317c08b21663aed4d2b9a2091450548954695ff4efa75bff5fa546b3b1"
870
+ dependencies = [
871
+ "quote",
872
+ "wasm-bindgen-macro-support",
873
+ ]
874
+
875
+ [[package]]
876
+ name = "wasm-bindgen-macro-support"
877
+ version = "0.2.111"
878
+ source = "registry+https://github.com/rust-lang/crates.io-index"
879
+ checksum = "2c64760850114d03d5f65457e96fc988f11f01d38fbaa51b254e4ab5809102af"
880
+ dependencies = [
881
+ "bumpalo",
882
+ "proc-macro2",
883
+ "quote",
884
+ "syn",
885
+ "wasm-bindgen-shared",
886
+ ]
887
+
888
+ [[package]]
889
+ name = "wasm-bindgen-shared"
890
+ version = "0.2.111"
891
+ source = "registry+https://github.com/rust-lang/crates.io-index"
892
+ checksum = "60eecd4fe26177cfa3339eb00b4a36445889ba3ad37080c2429879718e20ca41"
893
+ dependencies = [
894
+ "unicode-ident",
895
+ ]
896
+
897
+ [[package]]
898
+ name = "web-sys"
899
+ version = "0.3.88"
900
+ source = "registry+https://github.com/rust-lang/crates.io-index"
901
+ checksum = "9d6bb20ed2d9572df8584f6dc81d68a41a625cadc6f15999d649a70ce7e3597a"
902
+ dependencies = [
903
+ "js-sys",
904
+ "wasm-bindgen",
905
+ ]
906
+
907
+ [[package]]
908
+ name = "winapi-util"
909
+ version = "0.1.11"
910
+ source = "registry+https://github.com/rust-lang/crates.io-index"
911
+ checksum = "c2a7b1c03c876122aa43f3020e6c3c3ee5c05081c9a00739faf7503aeba10d22"
912
+ dependencies = [
913
+ "windows-sys",
914
+ ]
915
+
916
+ [[package]]
917
+ name = "windows-link"
918
+ version = "0.2.1"
919
+ source = "registry+https://github.com/rust-lang/crates.io-index"
920
+ checksum = "f0805222e57f7521d6a62e36fa9163bc891acd422f971defe97d64e70d0a4fe5"
921
+
922
+ [[package]]
923
+ name = "windows-sys"
924
+ version = "0.61.2"
925
+ source = "registry+https://github.com/rust-lang/crates.io-index"
926
+ checksum = "ae137229bcbd6cdf0f7b80a31df61766145077ddf49416a728b02cb3921ff3fc"
927
+ dependencies = [
928
+ "windows-link",
929
+ ]
930
+
931
+ [[package]]
932
+ name = "zerocopy"
933
+ version = "0.8.39"
934
+ source = "registry+https://github.com/rust-lang/crates.io-index"
935
+ checksum = "db6d35d663eadb6c932438e763b262fe1a70987f9ae936e60158176d710cae4a"
936
+ dependencies = [
937
+ "zerocopy-derive",
938
+ ]
939
+
940
+ [[package]]
941
+ name = "zerocopy-derive"
942
+ version = "0.8.39"
943
+ source = "registry+https://github.com/rust-lang/crates.io-index"
944
+ checksum = "4122cd3169e94605190e77839c9a40d40ed048d305bfdc146e7df40ab0f3e517"
945
+ dependencies = [
946
+ "proc-macro2",
947
+ "quote",
948
+ "syn",
949
+ ]
950
+
951
+ [[package]]
952
+ name = "zmij"
953
+ version = "1.0.21"
954
+ source = "registry+https://github.com/rust-lang/crates.io-index"
955
+ checksum = "b8848ee67ecc8aedbaf3e4122217aff892639231befc6a1b58d29fff4c2cabaa"