grafeo 0.1.4__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.

Potentially problematic release.


This version of grafeo might be problematic. Click here for more details.

Files changed (202) hide show
  1. grafeo-0.1.4/Cargo.lock +1826 -0
  2. grafeo-0.1.4/Cargo.toml +184 -0
  3. grafeo-0.1.4/PKG-INFO +67 -0
  4. grafeo-0.1.4/README.md +31 -0
  5. grafeo-0.1.4/crates/bindings/python/Cargo.toml +37 -0
  6. grafeo-0.1.4/crates/bindings/python/README.md +31 -0
  7. grafeo-0.1.4/crates/bindings/python/python/grafeo/__init__.py +32 -0
  8. grafeo-0.1.4/crates/bindings/python/python/grafeo/cli.py +320 -0
  9. grafeo-0.1.4/crates/bindings/python/python/grafeo/py.typed +0 -0
  10. grafeo-0.1.4/crates/bindings/python/src/bridges/algorithms.rs +670 -0
  11. grafeo-0.1.4/crates/bindings/python/src/bridges/mod.rs +15 -0
  12. grafeo-0.1.4/crates/bindings/python/src/bridges/networkx.rs +460 -0
  13. grafeo-0.1.4/crates/bindings/python/src/bridges/solvor.rs +498 -0
  14. grafeo-0.1.4/crates/bindings/python/src/database.rs +1443 -0
  15. grafeo-0.1.4/crates/bindings/python/src/error.rs +55 -0
  16. grafeo-0.1.4/crates/bindings/python/src/graph.rs +200 -0
  17. grafeo-0.1.4/crates/bindings/python/src/lib.rs +71 -0
  18. grafeo-0.1.4/crates/bindings/python/src/query.rs +205 -0
  19. grafeo-0.1.4/crates/bindings/python/src/types.rs +273 -0
  20. grafeo-0.1.4/crates/bindings/python/uv.lock +172 -0
  21. grafeo-0.1.4/crates/grafeo-adapters/Cargo.toml +59 -0
  22. grafeo-0.1.4/crates/grafeo-adapters/src/lib.rs +16 -0
  23. grafeo-0.1.4/crates/grafeo-adapters/src/plugins/algorithms/centrality.rs +830 -0
  24. grafeo-0.1.4/crates/grafeo-adapters/src/plugins/algorithms/community.rs +614 -0
  25. grafeo-0.1.4/crates/grafeo-adapters/src/plugins/algorithms/components.rs +590 -0
  26. grafeo-0.1.4/crates/grafeo-adapters/src/plugins/algorithms/flow.rs +780 -0
  27. grafeo-0.1.4/crates/grafeo-adapters/src/plugins/algorithms/mod.rs +96 -0
  28. grafeo-0.1.4/crates/grafeo-adapters/src/plugins/algorithms/mst.rs +543 -0
  29. grafeo-0.1.4/crates/grafeo-adapters/src/plugins/algorithms/shortest_path.rs +967 -0
  30. grafeo-0.1.4/crates/grafeo-adapters/src/plugins/algorithms/structure.rs +745 -0
  31. grafeo-0.1.4/crates/grafeo-adapters/src/plugins/algorithms/traits.rs +358 -0
  32. grafeo-0.1.4/crates/grafeo-adapters/src/plugins/algorithms/traversal.rs +552 -0
  33. grafeo-0.1.4/crates/grafeo-adapters/src/plugins/mod.rs +14 -0
  34. grafeo-0.1.4/crates/grafeo-adapters/src/plugins/registry.rs +114 -0
  35. grafeo-0.1.4/crates/grafeo-adapters/src/plugins/traits.rs +182 -0
  36. grafeo-0.1.4/crates/grafeo-adapters/src/query/cypher/ast.rs +547 -0
  37. grafeo-0.1.4/crates/grafeo-adapters/src/query/cypher/lexer.rs +630 -0
  38. grafeo-0.1.4/crates/grafeo-adapters/src/query/cypher/mod.rs +79 -0
  39. grafeo-0.1.4/crates/grafeo-adapters/src/query/cypher/parser.rs +1215 -0
  40. grafeo-0.1.4/crates/grafeo-adapters/src/query/gql/ast.rs +510 -0
  41. grafeo-0.1.4/crates/grafeo-adapters/src/query/gql/lexer.rs +644 -0
  42. grafeo-0.1.4/crates/grafeo-adapters/src/query/gql/mod.rs +36 -0
  43. grafeo-0.1.4/crates/grafeo-adapters/src/query/gql/parser.rs +2123 -0
  44. grafeo-0.1.4/crates/grafeo-adapters/src/query/graphql/ast.rs +252 -0
  45. grafeo-0.1.4/crates/grafeo-adapters/src/query/graphql/lexer.rs +479 -0
  46. grafeo-0.1.4/crates/grafeo-adapters/src/query/graphql/mod.rs +43 -0
  47. grafeo-0.1.4/crates/grafeo-adapters/src/query/graphql/parser.rs +541 -0
  48. grafeo-0.1.4/crates/grafeo-adapters/src/query/gremlin/ast.rs +345 -0
  49. grafeo-0.1.4/crates/grafeo-adapters/src/query/gremlin/lexer.rs +456 -0
  50. grafeo-0.1.4/crates/grafeo-adapters/src/query/gremlin/mod.rs +32 -0
  51. grafeo-0.1.4/crates/grafeo-adapters/src/query/gremlin/parser.rs +1024 -0
  52. grafeo-0.1.4/crates/grafeo-adapters/src/query/mod.rs +27 -0
  53. grafeo-0.1.4/crates/grafeo-adapters/src/query/sparql/ast.rs +815 -0
  54. grafeo-0.1.4/crates/grafeo-adapters/src/query/sparql/lexer.rs +982 -0
  55. grafeo-0.1.4/crates/grafeo-adapters/src/query/sparql/mod.rs +37 -0
  56. grafeo-0.1.4/crates/grafeo-adapters/src/query/sparql/parser.rs +2203 -0
  57. grafeo-0.1.4/crates/grafeo-adapters/src/storage/memory.rs +49 -0
  58. grafeo-0.1.4/crates/grafeo-adapters/src/storage/mod.rs +15 -0
  59. grafeo-0.1.4/crates/grafeo-adapters/src/storage/wal/async_log.rs +620 -0
  60. grafeo-0.1.4/crates/grafeo-adapters/src/storage/wal/log.rs +686 -0
  61. grafeo-0.1.4/crates/grafeo-adapters/src/storage/wal/mod.rs +23 -0
  62. grafeo-0.1.4/crates/grafeo-adapters/src/storage/wal/record.rs +94 -0
  63. grafeo-0.1.4/crates/grafeo-adapters/src/storage/wal/recovery.rs +493 -0
  64. grafeo-0.1.4/crates/grafeo-adapters/tests/sparql_parser_tests.rs +248 -0
  65. grafeo-0.1.4/crates/grafeo-common/Cargo.toml +44 -0
  66. grafeo-0.1.4/crates/grafeo-common/benches/arena_bench.rs +57 -0
  67. grafeo-0.1.4/crates/grafeo-common/src/lib.rs +25 -0
  68. grafeo-0.1.4/crates/grafeo-common/src/memory/arena.rs +468 -0
  69. grafeo-0.1.4/crates/grafeo-common/src/memory/buffer/consumer.rs +217 -0
  70. grafeo-0.1.4/crates/grafeo-common/src/memory/buffer/grant.rs +368 -0
  71. grafeo-0.1.4/crates/grafeo-common/src/memory/buffer/manager.rs +590 -0
  72. grafeo-0.1.4/crates/grafeo-common/src/memory/buffer/mod.rs +60 -0
  73. grafeo-0.1.4/crates/grafeo-common/src/memory/buffer/region.rs +83 -0
  74. grafeo-0.1.4/crates/grafeo-common/src/memory/buffer/stats.rs +233 -0
  75. grafeo-0.1.4/crates/grafeo-common/src/memory/bump.rs +265 -0
  76. grafeo-0.1.4/crates/grafeo-common/src/memory/mod.rs +24 -0
  77. grafeo-0.1.4/crates/grafeo-common/src/memory/pool.rs +346 -0
  78. grafeo-0.1.4/crates/grafeo-common/src/mvcc.rs +358 -0
  79. grafeo-0.1.4/crates/grafeo-common/src/types/id.rs +614 -0
  80. grafeo-0.1.4/crates/grafeo-common/src/types/logical_type.rs +347 -0
  81. grafeo-0.1.4/crates/grafeo-common/src/types/mod.rs +19 -0
  82. grafeo-0.1.4/crates/grafeo-common/src/types/timestamp.rs +236 -0
  83. grafeo-0.1.4/crates/grafeo-common/src/types/value.rs +448 -0
  84. grafeo-0.1.4/crates/grafeo-common/src/utils/error.rs +373 -0
  85. grafeo-0.1.4/crates/grafeo-common/src/utils/hash.rs +201 -0
  86. grafeo-0.1.4/crates/grafeo-common/src/utils/mod.rs +10 -0
  87. grafeo-0.1.4/crates/grafeo-core/Cargo.toml +54 -0
  88. grafeo-0.1.4/crates/grafeo-core/benches/index_bench.rs +73 -0
  89. grafeo-0.1.4/crates/grafeo-core/src/execution/adaptive.rs +1622 -0
  90. grafeo-0.1.4/crates/grafeo-core/src/execution/chunk.rs +568 -0
  91. grafeo-0.1.4/crates/grafeo-core/src/execution/memory.rs +254 -0
  92. grafeo-0.1.4/crates/grafeo-core/src/execution/mod.rs +50 -0
  93. grafeo-0.1.4/crates/grafeo-core/src/execution/operators/aggregate.rs +1460 -0
  94. grafeo-0.1.4/crates/grafeo-core/src/execution/operators/distinct.rs +302 -0
  95. grafeo-0.1.4/crates/grafeo-core/src/execution/operators/expand.rs +410 -0
  96. grafeo-0.1.4/crates/grafeo-core/src/execution/operators/filter.rs +1387 -0
  97. grafeo-0.1.4/crates/grafeo-core/src/execution/operators/join.rs +1113 -0
  98. grafeo-0.1.4/crates/grafeo-core/src/execution/operators/limit.rs +472 -0
  99. grafeo-0.1.4/crates/grafeo-core/src/execution/operators/merge.rs +286 -0
  100. grafeo-0.1.4/crates/grafeo-core/src/execution/operators/mod.rs +109 -0
  101. grafeo-0.1.4/crates/grafeo-core/src/execution/operators/mutation.rs +995 -0
  102. grafeo-0.1.4/crates/grafeo-core/src/execution/operators/project.rs +326 -0
  103. grafeo-0.1.4/crates/grafeo-core/src/execution/operators/push/aggregate.rs +1039 -0
  104. grafeo-0.1.4/crates/grafeo-core/src/execution/operators/push/distinct.rs +342 -0
  105. grafeo-0.1.4/crates/grafeo-core/src/execution/operators/push/filter.rs +263 -0
  106. grafeo-0.1.4/crates/grafeo-core/src/execution/operators/push/limit.rs +334 -0
  107. grafeo-0.1.4/crates/grafeo-core/src/execution/operators/push/mod.rs +40 -0
  108. grafeo-0.1.4/crates/grafeo-core/src/execution/operators/push/project.rs +259 -0
  109. grafeo-0.1.4/crates/grafeo-core/src/execution/operators/push/sort.rs +581 -0
  110. grafeo-0.1.4/crates/grafeo-core/src/execution/operators/scan.rs +234 -0
  111. grafeo-0.1.4/crates/grafeo-core/src/execution/operators/shortest_path.rs +319 -0
  112. grafeo-0.1.4/crates/grafeo-core/src/execution/operators/single_row.rs +79 -0
  113. grafeo-0.1.4/crates/grafeo-core/src/execution/operators/sort.rs +397 -0
  114. grafeo-0.1.4/crates/grafeo-core/src/execution/operators/union.rs +216 -0
  115. grafeo-0.1.4/crates/grafeo-core/src/execution/operators/unwind.rs +234 -0
  116. grafeo-0.1.4/crates/grafeo-core/src/execution/operators/variable_length_expand.rs +471 -0
  117. grafeo-0.1.4/crates/grafeo-core/src/execution/parallel/merge.rs +645 -0
  118. grafeo-0.1.4/crates/grafeo-core/src/execution/parallel/mod.rs +82 -0
  119. grafeo-0.1.4/crates/grafeo-core/src/execution/parallel/morsel.rs +275 -0
  120. grafeo-0.1.4/crates/grafeo-core/src/execution/parallel/pipeline.rs +643 -0
  121. grafeo-0.1.4/crates/grafeo-core/src/execution/parallel/scheduler.rs +400 -0
  122. grafeo-0.1.4/crates/grafeo-core/src/execution/parallel/source.rs +798 -0
  123. grafeo-0.1.4/crates/grafeo-core/src/execution/pipeline.rs +496 -0
  124. grafeo-0.1.4/crates/grafeo-core/src/execution/selection.rs +260 -0
  125. grafeo-0.1.4/crates/grafeo-core/src/execution/sink.rs +366 -0
  126. grafeo-0.1.4/crates/grafeo-core/src/execution/source.rs +491 -0
  127. grafeo-0.1.4/crates/grafeo-core/src/execution/spill/async_file.rs +382 -0
  128. grafeo-0.1.4/crates/grafeo-core/src/execution/spill/async_manager.rs +243 -0
  129. grafeo-0.1.4/crates/grafeo-core/src/execution/spill/external_sort.rs +641 -0
  130. grafeo-0.1.4/crates/grafeo-core/src/execution/spill/file.rs +383 -0
  131. grafeo-0.1.4/crates/grafeo-core/src/execution/spill/manager.rs +232 -0
  132. grafeo-0.1.4/crates/grafeo-core/src/execution/spill/mod.rs +31 -0
  133. grafeo-0.1.4/crates/grafeo-core/src/execution/spill/partition.rs +829 -0
  134. grafeo-0.1.4/crates/grafeo-core/src/execution/spill/serializer.rs +444 -0
  135. grafeo-0.1.4/crates/grafeo-core/src/execution/vector.rs +542 -0
  136. grafeo-0.1.4/crates/grafeo-core/src/graph/lpg/edge.rs +236 -0
  137. grafeo-0.1.4/crates/grafeo-core/src/graph/lpg/mod.rs +23 -0
  138. grafeo-0.1.4/crates/grafeo-core/src/graph/lpg/node.rs +278 -0
  139. grafeo-0.1.4/crates/grafeo-core/src/graph/lpg/property.rs +1192 -0
  140. grafeo-0.1.4/crates/grafeo-core/src/graph/lpg/store.rs +1397 -0
  141. grafeo-0.1.4/crates/grafeo-core/src/graph/mod.rs +45 -0
  142. grafeo-0.1.4/crates/grafeo-core/src/graph/rdf/mod.rs +42 -0
  143. grafeo-0.1.4/crates/grafeo-core/src/graph/rdf/store.rs +652 -0
  144. grafeo-0.1.4/crates/grafeo-core/src/graph/rdf/term.rs +451 -0
  145. grafeo-0.1.4/crates/grafeo-core/src/graph/rdf/triple.rs +347 -0
  146. grafeo-0.1.4/crates/grafeo-core/src/index/adjacency.rs +926 -0
  147. grafeo-0.1.4/crates/grafeo-core/src/index/btree.rs +223 -0
  148. grafeo-0.1.4/crates/grafeo-core/src/index/hash.rs +181 -0
  149. grafeo-0.1.4/crates/grafeo-core/src/index/mod.rs +24 -0
  150. grafeo-0.1.4/crates/grafeo-core/src/index/trie.rs +385 -0
  151. grafeo-0.1.4/crates/grafeo-core/src/index/zone_map.rs +737 -0
  152. grafeo-0.1.4/crates/grafeo-core/src/lib.rs +28 -0
  153. grafeo-0.1.4/crates/grafeo-core/src/statistics/collector.rs +603 -0
  154. grafeo-0.1.4/crates/grafeo-core/src/statistics/histogram.rs +424 -0
  155. grafeo-0.1.4/crates/grafeo-core/src/statistics/mod.rs +24 -0
  156. grafeo-0.1.4/crates/grafeo-core/src/statistics/rdf.rs +478 -0
  157. grafeo-0.1.4/crates/grafeo-core/src/storage/bitpack.rs +532 -0
  158. grafeo-0.1.4/crates/grafeo-core/src/storage/bitvec.rs +518 -0
  159. grafeo-0.1.4/crates/grafeo-core/src/storage/codec.rs +544 -0
  160. grafeo-0.1.4/crates/grafeo-core/src/storage/delta.rs +336 -0
  161. grafeo-0.1.4/crates/grafeo-core/src/storage/dictionary.rs +484 -0
  162. grafeo-0.1.4/crates/grafeo-core/src/storage/mod.rs +47 -0
  163. grafeo-0.1.4/crates/grafeo-core/src/storage/runlength.rs +609 -0
  164. grafeo-0.1.4/crates/grafeo-core/tests/rdf_tests.rs +221 -0
  165. grafeo-0.1.4/crates/grafeo-engine/Cargo.toml +58 -0
  166. grafeo-0.1.4/crates/grafeo-engine/benches/query_bench.rs +143 -0
  167. grafeo-0.1.4/crates/grafeo-engine/src/admin.rs +278 -0
  168. grafeo-0.1.4/crates/grafeo-engine/src/catalog/mod.rs +1177 -0
  169. grafeo-0.1.4/crates/grafeo-engine/src/config.rs +206 -0
  170. grafeo-0.1.4/crates/grafeo-engine/src/database.rs +1552 -0
  171. grafeo-0.1.4/crates/grafeo-engine/src/lib.rs +35 -0
  172. grafeo-0.1.4/crates/grafeo-engine/src/query/binder.rs +989 -0
  173. grafeo-0.1.4/crates/grafeo-engine/src/query/cache.rs +569 -0
  174. grafeo-0.1.4/crates/grafeo-engine/src/query/cypher_translator.rs +2001 -0
  175. grafeo-0.1.4/crates/grafeo-engine/src/query/executor/mod.rs +392 -0
  176. grafeo-0.1.4/crates/grafeo-engine/src/query/gql_translator.rs +1874 -0
  177. grafeo-0.1.4/crates/grafeo-engine/src/query/graphql_rdf_translator.rs +483 -0
  178. grafeo-0.1.4/crates/grafeo-engine/src/query/graphql_translator.rs +1199 -0
  179. grafeo-0.1.4/crates/grafeo-engine/src/query/gremlin_translator.rs +1627 -0
  180. grafeo-0.1.4/crates/grafeo-engine/src/query/mod.rs +75 -0
  181. grafeo-0.1.4/crates/grafeo-engine/src/query/optimizer/cardinality.rs +1856 -0
  182. grafeo-0.1.4/crates/grafeo-engine/src/query/optimizer/cost.rs +657 -0
  183. grafeo-0.1.4/crates/grafeo-engine/src/query/optimizer/join_order.rs +1239 -0
  184. grafeo-0.1.4/crates/grafeo-engine/src/query/optimizer/mod.rs +1773 -0
  185. grafeo-0.1.4/crates/grafeo-engine/src/query/plan.rs +995 -0
  186. grafeo-0.1.4/crates/grafeo-engine/src/query/planner.rs +3249 -0
  187. grafeo-0.1.4/crates/grafeo-engine/src/query/planner_rdf.rs +2099 -0
  188. grafeo-0.1.4/crates/grafeo-engine/src/query/processor.rs +769 -0
  189. grafeo-0.1.4/crates/grafeo-engine/src/query/sparql_translator.rs +1629 -0
  190. grafeo-0.1.4/crates/grafeo-engine/src/session.rs +1080 -0
  191. grafeo-0.1.4/crates/grafeo-engine/src/transaction/manager.rs +694 -0
  192. grafeo-0.1.4/crates/grafeo-engine/src/transaction/mod.rs +75 -0
  193. grafeo-0.1.4/crates/grafeo-engine/src/transaction/mvcc.rs +185 -0
  194. grafeo-0.1.4/crates/grafeo-engine/tests/concurrent_sessions.rs +522 -0
  195. grafeo-0.1.4/crates/grafeo-engine/tests/graph_benchmarks.rs +891 -0
  196. grafeo-0.1.4/crates/grafeo-engine/tests/mvcc_integration.rs +492 -0
  197. grafeo-0.1.4/crates/grafeo-engine/tests/query_correctness.rs +1088 -0
  198. grafeo-0.1.4/crates/grafeo-engine/tests/sparql_translator_tests.rs +148 -0
  199. grafeo-0.1.4/pyproject.toml +71 -0
  200. grafeo-0.1.4/python/grafeo/__init__.py +32 -0
  201. grafeo-0.1.4/python/grafeo/cli.py +320 -0
  202. grafeo-0.1.4/python/grafeo/py.typed +0 -0
@@ -0,0 +1,1826 @@
1
+ # This file is automatically @generated by Cargo.
2
+ # It is not intended for manual editing.
3
+ version = 4
4
+
5
+ [[package]]
6
+ name = "ahash"
7
+ version = "0.8.12"
8
+ source = "registry+https://github.com/rust-lang/crates.io-index"
9
+ checksum = "5a15f179cd60c4584b8a8c596927aadc462e27f2ca70c04e0071964a73ba7a75"
10
+ dependencies = [
11
+ "cfg-if",
12
+ "getrandom",
13
+ "once_cell",
14
+ "version_check",
15
+ "zerocopy",
16
+ ]
17
+
18
+ [[package]]
19
+ name = "aho-corasick"
20
+ version = "1.1.4"
21
+ source = "registry+https://github.com/rust-lang/crates.io-index"
22
+ checksum = "ddd31a130427c27518df266943a5308ed92d4b226cc639f5a8f1002816174301"
23
+ dependencies = [
24
+ "memchr",
25
+ ]
26
+
27
+ [[package]]
28
+ name = "alloca"
29
+ version = "0.4.0"
30
+ source = "registry+https://github.com/rust-lang/crates.io-index"
31
+ checksum = "e5a7d05ea6aea7e9e64d25b9156ba2fee3fdd659e34e41063cd2fc7cd020d7f4"
32
+ dependencies = [
33
+ "cc",
34
+ ]
35
+
36
+ [[package]]
37
+ name = "allocator-api2"
38
+ version = "0.2.21"
39
+ source = "registry+https://github.com/rust-lang/crates.io-index"
40
+ checksum = "683d7910e743518b0e34f1186f92494becacb047c7b6bf616c96772180fef923"
41
+
42
+ [[package]]
43
+ name = "anes"
44
+ version = "0.1.6"
45
+ source = "registry+https://github.com/rust-lang/crates.io-index"
46
+ checksum = "4b46cbb362ab8752921c97e041f5e366ee6297bd428a31275b9fcf1e380f7299"
47
+
48
+ [[package]]
49
+ name = "anstream"
50
+ version = "0.6.21"
51
+ source = "registry+https://github.com/rust-lang/crates.io-index"
52
+ checksum = "43d5b281e737544384e969a5ccad3f1cdd24b48086a0fc1b2a5262a26b8f4f4a"
53
+ dependencies = [
54
+ "anstyle",
55
+ "anstyle-parse",
56
+ "anstyle-query",
57
+ "anstyle-wincon",
58
+ "colorchoice",
59
+ "is_terminal_polyfill",
60
+ "utf8parse",
61
+ ]
62
+
63
+ [[package]]
64
+ name = "anstyle"
65
+ version = "1.0.13"
66
+ source = "registry+https://github.com/rust-lang/crates.io-index"
67
+ checksum = "5192cca8006f1fd4f7237516f40fa183bb07f8fbdfedaa0036de5ea9b0b45e78"
68
+
69
+ [[package]]
70
+ name = "anstyle-parse"
71
+ version = "0.2.7"
72
+ source = "registry+https://github.com/rust-lang/crates.io-index"
73
+ checksum = "4e7644824f0aa2c7b9384579234ef10eb7efb6a0deb83f9630a49594dd9c15c2"
74
+ dependencies = [
75
+ "utf8parse",
76
+ ]
77
+
78
+ [[package]]
79
+ name = "anstyle-query"
80
+ version = "1.1.5"
81
+ source = "registry+https://github.com/rust-lang/crates.io-index"
82
+ checksum = "40c48f72fd53cd289104fc64099abca73db4166ad86ea0b4341abe65af83dadc"
83
+ dependencies = [
84
+ "windows-sys 0.61.2",
85
+ ]
86
+
87
+ [[package]]
88
+ name = "anstyle-wincon"
89
+ version = "3.0.11"
90
+ source = "registry+https://github.com/rust-lang/crates.io-index"
91
+ checksum = "291e6a250ff86cd4a820112fb8898808a366d8f9f58ce16d1f538353ad55747d"
92
+ dependencies = [
93
+ "anstyle",
94
+ "once_cell_polyfill",
95
+ "windows-sys 0.61.2",
96
+ ]
97
+
98
+ [[package]]
99
+ name = "anyhow"
100
+ version = "1.0.100"
101
+ source = "registry+https://github.com/rust-lang/crates.io-index"
102
+ checksum = "a23eb6b1614318a8071c9b2521f36b424b2c83db5eb3a0fead4a6c0809af6e61"
103
+
104
+ [[package]]
105
+ name = "autocfg"
106
+ version = "1.5.0"
107
+ source = "registry+https://github.com/rust-lang/crates.io-index"
108
+ checksum = "c08606f8c3cbf4ce6ec8e28fb0014a2c086708fe954eaa885384a6165172e7e8"
109
+
110
+ [[package]]
111
+ name = "bincode"
112
+ version = "2.0.1"
113
+ source = "registry+https://github.com/rust-lang/crates.io-index"
114
+ checksum = "36eaf5d7b090263e8150820482d5d93cd964a81e4019913c972f4edcc6edb740"
115
+ dependencies = [
116
+ "bincode_derive",
117
+ "serde",
118
+ "unty",
119
+ ]
120
+
121
+ [[package]]
122
+ name = "bincode_derive"
123
+ version = "2.0.1"
124
+ source = "registry+https://github.com/rust-lang/crates.io-index"
125
+ checksum = "bf95709a440f45e986983918d0e8a1f30a9b1df04918fc828670606804ac3c09"
126
+ dependencies = [
127
+ "virtue",
128
+ ]
129
+
130
+ [[package]]
131
+ name = "bit-set"
132
+ version = "0.8.0"
133
+ source = "registry+https://github.com/rust-lang/crates.io-index"
134
+ checksum = "08807e080ed7f9d5433fa9b275196cfc35414f66a0c79d864dc51a0d825231a3"
135
+ dependencies = [
136
+ "bit-vec",
137
+ ]
138
+
139
+ [[package]]
140
+ name = "bit-vec"
141
+ version = "0.8.0"
142
+ source = "registry+https://github.com/rust-lang/crates.io-index"
143
+ checksum = "5e764a1d40d510daf35e07be9eb06e75770908c27d411ee6c92109c9840eaaf7"
144
+
145
+ [[package]]
146
+ name = "bitflags"
147
+ version = "2.10.0"
148
+ source = "registry+https://github.com/rust-lang/crates.io-index"
149
+ checksum = "812e12b5285cc515a9c72a5c1d3b6d46a19dac5acfef5265968c166106e31dd3"
150
+
151
+ [[package]]
152
+ name = "bumpalo"
153
+ version = "3.19.1"
154
+ source = "registry+https://github.com/rust-lang/crates.io-index"
155
+ checksum = "5dd9dc738b7a8311c7ade152424974d8115f2cdad61e8dab8dac9f2362298510"
156
+
157
+ [[package]]
158
+ name = "byteorder"
159
+ version = "1.5.0"
160
+ source = "registry+https://github.com/rust-lang/crates.io-index"
161
+ checksum = "1fd0f2584146f6f2ef48085050886acf353beff7305ebd1ae69500e27c67f64b"
162
+
163
+ [[package]]
164
+ name = "bytes"
165
+ version = "1.11.0"
166
+ source = "registry+https://github.com/rust-lang/crates.io-index"
167
+ checksum = "b35204fbdc0b3f4446b89fc1ac2cf84a8a68971995d0bf2e925ec7cd960f9cb3"
168
+
169
+ [[package]]
170
+ name = "cast"
171
+ version = "0.3.0"
172
+ source = "registry+https://github.com/rust-lang/crates.io-index"
173
+ checksum = "37b2a672a2cb129a2e41c10b1224bb368f9f37a2b16b612598138befd7b37eb5"
174
+
175
+ [[package]]
176
+ name = "cc"
177
+ version = "1.2.54"
178
+ source = "registry+https://github.com/rust-lang/crates.io-index"
179
+ checksum = "6354c81bbfd62d9cfa9cb3c773c2b7b2a3a482d569de977fd0e961f6e7c00583"
180
+ dependencies = [
181
+ "find-msvc-tools",
182
+ "shlex",
183
+ ]
184
+
185
+ [[package]]
186
+ name = "cfg-if"
187
+ version = "1.0.4"
188
+ source = "registry+https://github.com/rust-lang/crates.io-index"
189
+ checksum = "9330f8b2ff13f34540b44e946ef35111825727b38d33286ef986142615121801"
190
+
191
+ [[package]]
192
+ name = "ciborium"
193
+ version = "0.2.2"
194
+ source = "registry+https://github.com/rust-lang/crates.io-index"
195
+ checksum = "42e69ffd6f0917f5c029256a24d0161db17cea3997d185db0d35926308770f0e"
196
+ dependencies = [
197
+ "ciborium-io",
198
+ "ciborium-ll",
199
+ "serde",
200
+ ]
201
+
202
+ [[package]]
203
+ name = "ciborium-io"
204
+ version = "0.2.2"
205
+ source = "registry+https://github.com/rust-lang/crates.io-index"
206
+ checksum = "05afea1e0a06c9be33d539b876f1ce3692f4afea2cb41f740e7743225ed1c757"
207
+
208
+ [[package]]
209
+ name = "ciborium-ll"
210
+ version = "0.2.2"
211
+ source = "registry+https://github.com/rust-lang/crates.io-index"
212
+ checksum = "57663b653d948a338bfb3eeba9bb2fd5fcfaecb9e199e87e1eda4d9e8b240fd9"
213
+ dependencies = [
214
+ "ciborium-io",
215
+ "half",
216
+ ]
217
+
218
+ [[package]]
219
+ name = "clap"
220
+ version = "4.5.56"
221
+ source = "registry+https://github.com/rust-lang/crates.io-index"
222
+ checksum = "a75ca66430e33a14957acc24c5077b503e7d374151b2b4b3a10c83b4ceb4be0e"
223
+ dependencies = [
224
+ "clap_builder",
225
+ "clap_derive",
226
+ ]
227
+
228
+ [[package]]
229
+ name = "clap_builder"
230
+ version = "4.5.56"
231
+ source = "registry+https://github.com/rust-lang/crates.io-index"
232
+ checksum = "793207c7fa6300a0608d1080b858e5fdbe713cdc1c8db9fb17777d8a13e63df0"
233
+ dependencies = [
234
+ "anstream",
235
+ "anstyle",
236
+ "clap_lex",
237
+ "strsim",
238
+ ]
239
+
240
+ [[package]]
241
+ name = "clap_derive"
242
+ version = "4.5.55"
243
+ source = "registry+https://github.com/rust-lang/crates.io-index"
244
+ checksum = "a92793da1a46a5f2a02a6f4c46c6496b28c43638adea8306fcb0caa1634f24e5"
245
+ dependencies = [
246
+ "heck",
247
+ "proc-macro2",
248
+ "quote",
249
+ "syn",
250
+ ]
251
+
252
+ [[package]]
253
+ name = "clap_lex"
254
+ version = "0.7.7"
255
+ source = "registry+https://github.com/rust-lang/crates.io-index"
256
+ checksum = "c3e64b0cc0439b12df2fa678eae89a1c56a529fd067a9115f7827f1fffd22b32"
257
+
258
+ [[package]]
259
+ name = "colorchoice"
260
+ version = "1.0.4"
261
+ source = "registry+https://github.com/rust-lang/crates.io-index"
262
+ checksum = "b05b61dc5112cbb17e4b6cd61790d9845d13888356391624cbe7e41efeac1e75"
263
+
264
+ [[package]]
265
+ name = "comfy-table"
266
+ version = "7.2.2"
267
+ source = "registry+https://github.com/rust-lang/crates.io-index"
268
+ checksum = "958c5d6ecf1f214b4c2bbbbf6ab9523a864bd136dcf71a7e8904799acfe1ad47"
269
+ dependencies = [
270
+ "crossterm",
271
+ "unicode-segmentation",
272
+ "unicode-width",
273
+ ]
274
+
275
+ [[package]]
276
+ name = "console"
277
+ version = "0.16.2"
278
+ source = "registry+https://github.com/rust-lang/crates.io-index"
279
+ checksum = "03e45a4a8926227e4197636ba97a9fc9b00477e9f4bd711395687c5f0734bec4"
280
+ dependencies = [
281
+ "encode_unicode",
282
+ "libc",
283
+ "once_cell",
284
+ "unicode-width",
285
+ "windows-sys 0.61.2",
286
+ ]
287
+
288
+ [[package]]
289
+ name = "crc32fast"
290
+ version = "1.5.0"
291
+ source = "registry+https://github.com/rust-lang/crates.io-index"
292
+ checksum = "9481c1c90cbf2ac953f07c8d4a58aa3945c425b7185c9154d67a65e4230da511"
293
+ dependencies = [
294
+ "cfg-if",
295
+ ]
296
+
297
+ [[package]]
298
+ name = "criterion"
299
+ version = "0.8.1"
300
+ source = "registry+https://github.com/rust-lang/crates.io-index"
301
+ checksum = "4d883447757bb0ee46f233e9dc22eb84d93a9508c9b868687b274fc431d886bf"
302
+ dependencies = [
303
+ "alloca",
304
+ "anes",
305
+ "cast",
306
+ "ciborium",
307
+ "clap",
308
+ "criterion-plot",
309
+ "itertools",
310
+ "num-traits",
311
+ "oorandom",
312
+ "page_size",
313
+ "plotters",
314
+ "rayon",
315
+ "regex",
316
+ "serde",
317
+ "serde_json",
318
+ "tinytemplate",
319
+ "walkdir",
320
+ ]
321
+
322
+ [[package]]
323
+ name = "criterion-plot"
324
+ version = "0.8.1"
325
+ source = "registry+https://github.com/rust-lang/crates.io-index"
326
+ checksum = "ed943f81ea2faa8dcecbbfa50164acf95d555afec96a27871663b300e387b2e4"
327
+ dependencies = [
328
+ "cast",
329
+ "itertools",
330
+ ]
331
+
332
+ [[package]]
333
+ name = "crossbeam"
334
+ version = "0.8.4"
335
+ source = "registry+https://github.com/rust-lang/crates.io-index"
336
+ checksum = "1137cd7e7fc0fb5d3c5a8678be38ec56e819125d8d7907411fe24ccb943faca8"
337
+ dependencies = [
338
+ "crossbeam-channel",
339
+ "crossbeam-deque",
340
+ "crossbeam-epoch",
341
+ "crossbeam-queue",
342
+ "crossbeam-utils",
343
+ ]
344
+
345
+ [[package]]
346
+ name = "crossbeam-channel"
347
+ version = "0.5.15"
348
+ source = "registry+https://github.com/rust-lang/crates.io-index"
349
+ checksum = "82b8f8f868b36967f9606790d1903570de9ceaf870a7bf9fbbd3016d636a2cb2"
350
+ dependencies = [
351
+ "crossbeam-utils",
352
+ ]
353
+
354
+ [[package]]
355
+ name = "crossbeam-deque"
356
+ version = "0.8.6"
357
+ source = "registry+https://github.com/rust-lang/crates.io-index"
358
+ checksum = "9dd111b7b7f7d55b72c0a6ae361660ee5853c9af73f70c3c2ef6858b950e2e51"
359
+ dependencies = [
360
+ "crossbeam-epoch",
361
+ "crossbeam-utils",
362
+ ]
363
+
364
+ [[package]]
365
+ name = "crossbeam-epoch"
366
+ version = "0.9.18"
367
+ source = "registry+https://github.com/rust-lang/crates.io-index"
368
+ checksum = "5b82ac4a3c2ca9c3460964f020e1402edd5753411d7737aa39c3714ad1b5420e"
369
+ dependencies = [
370
+ "crossbeam-utils",
371
+ ]
372
+
373
+ [[package]]
374
+ name = "crossbeam-queue"
375
+ version = "0.3.12"
376
+ source = "registry+https://github.com/rust-lang/crates.io-index"
377
+ checksum = "0f58bbc28f91df819d0aa2a2c00cd19754769c2fad90579b3592b1c9ba7a3115"
378
+ dependencies = [
379
+ "crossbeam-utils",
380
+ ]
381
+
382
+ [[package]]
383
+ name = "crossbeam-utils"
384
+ version = "0.8.21"
385
+ source = "registry+https://github.com/rust-lang/crates.io-index"
386
+ checksum = "d0a5c400df2834b80a4c3327b3aad3a4c4cd4de0629063962b03235697506a28"
387
+
388
+ [[package]]
389
+ name = "crossterm"
390
+ version = "0.29.0"
391
+ source = "registry+https://github.com/rust-lang/crates.io-index"
392
+ checksum = "d8b9f2e4c67f833b660cdb0a3523065869fb35570177239812ed4c905aeff87b"
393
+ dependencies = [
394
+ "bitflags",
395
+ "crossterm_winapi",
396
+ "document-features",
397
+ "parking_lot",
398
+ "rustix",
399
+ "winapi",
400
+ ]
401
+
402
+ [[package]]
403
+ name = "crossterm_winapi"
404
+ version = "0.9.1"
405
+ source = "registry+https://github.com/rust-lang/crates.io-index"
406
+ checksum = "acdd7c62a3665c7f6830a51635d9ac9b23ed385797f70a83bb8bafe9c572ab2b"
407
+ dependencies = [
408
+ "winapi",
409
+ ]
410
+
411
+ [[package]]
412
+ name = "crunchy"
413
+ version = "0.2.4"
414
+ source = "registry+https://github.com/rust-lang/crates.io-index"
415
+ checksum = "460fbee9c2c2f33933d720630a6a0bac33ba7053db5344fac858d4b8952d77d5"
416
+
417
+ [[package]]
418
+ name = "document-features"
419
+ version = "0.2.12"
420
+ source = "registry+https://github.com/rust-lang/crates.io-index"
421
+ checksum = "d4b8a88685455ed29a21542a33abd9cb6510b6b129abadabdcef0f4c55bc8f61"
422
+ dependencies = [
423
+ "litrs",
424
+ ]
425
+
426
+ [[package]]
427
+ name = "either"
428
+ version = "1.15.0"
429
+ source = "registry+https://github.com/rust-lang/crates.io-index"
430
+ checksum = "48c757948c5ede0e46177b7add2e67155f70e33c07fea8284df6576da70b3719"
431
+
432
+ [[package]]
433
+ name = "encode_unicode"
434
+ version = "1.0.0"
435
+ source = "registry+https://github.com/rust-lang/crates.io-index"
436
+ checksum = "34aa73646ffb006b8f5147f3dc182bd4bcb190227ce861fc4a4844bf8e3cb2c0"
437
+
438
+ [[package]]
439
+ name = "equivalent"
440
+ version = "1.0.2"
441
+ source = "registry+https://github.com/rust-lang/crates.io-index"
442
+ checksum = "877a4ace8713b0bcf2a4e7eec82529c029f1d0619886d18145fea96c3ffe5c0f"
443
+
444
+ [[package]]
445
+ name = "errno"
446
+ version = "0.3.14"
447
+ source = "registry+https://github.com/rust-lang/crates.io-index"
448
+ checksum = "39cab71617ae0d63f51a36d69f866391735b51691dbda63cf6f96d042b63efeb"
449
+ dependencies = [
450
+ "libc",
451
+ "windows-sys 0.61.2",
452
+ ]
453
+
454
+ [[package]]
455
+ name = "fastrand"
456
+ version = "2.3.0"
457
+ source = "registry+https://github.com/rust-lang/crates.io-index"
458
+ checksum = "37909eebbb50d72f9059c3b6d82c0463f2ff062c9e95845c43a6c9c0355411be"
459
+
460
+ [[package]]
461
+ name = "find-msvc-tools"
462
+ version = "0.1.8"
463
+ source = "registry+https://github.com/rust-lang/crates.io-index"
464
+ checksum = "8591b0bcc8a98a64310a2fae1bb3e9b8564dd10e381e6e28010fde8e8e8568db"
465
+
466
+ [[package]]
467
+ name = "fnv"
468
+ version = "1.0.7"
469
+ source = "registry+https://github.com/rust-lang/crates.io-index"
470
+ checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1"
471
+
472
+ [[package]]
473
+ name = "foldhash"
474
+ version = "0.2.0"
475
+ source = "registry+https://github.com/rust-lang/crates.io-index"
476
+ checksum = "77ce24cb58228fbb8aa041425bb1050850ac19177686ea6e0f41a70416f56fdb"
477
+
478
+ [[package]]
479
+ name = "futures"
480
+ version = "0.3.31"
481
+ source = "registry+https://github.com/rust-lang/crates.io-index"
482
+ checksum = "65bc07b1a8bc7c85c5f2e110c476c7389b4554ba72af57d8445ea63a576b0876"
483
+ dependencies = [
484
+ "futures-channel",
485
+ "futures-core",
486
+ "futures-executor",
487
+ "futures-io",
488
+ "futures-sink",
489
+ "futures-task",
490
+ "futures-util",
491
+ ]
492
+
493
+ [[package]]
494
+ name = "futures-channel"
495
+ version = "0.3.31"
496
+ source = "registry+https://github.com/rust-lang/crates.io-index"
497
+ checksum = "2dff15bf788c671c1934e366d07e30c1814a8ef514e1af724a602e8a2fbe1b10"
498
+ dependencies = [
499
+ "futures-core",
500
+ "futures-sink",
501
+ ]
502
+
503
+ [[package]]
504
+ name = "futures-core"
505
+ version = "0.3.31"
506
+ source = "registry+https://github.com/rust-lang/crates.io-index"
507
+ checksum = "05f29059c0c2090612e8d742178b0580d2dc940c837851ad723096f87af6663e"
508
+
509
+ [[package]]
510
+ name = "futures-executor"
511
+ version = "0.3.31"
512
+ source = "registry+https://github.com/rust-lang/crates.io-index"
513
+ checksum = "1e28d1d997f585e54aebc3f97d39e72338912123a67330d723fdbb564d646c9f"
514
+ dependencies = [
515
+ "futures-core",
516
+ "futures-task",
517
+ "futures-util",
518
+ ]
519
+
520
+ [[package]]
521
+ name = "futures-io"
522
+ version = "0.3.31"
523
+ source = "registry+https://github.com/rust-lang/crates.io-index"
524
+ checksum = "9e5c1b78ca4aae1ac06c48a526a655760685149f0d465d21f37abfe57ce075c6"
525
+
526
+ [[package]]
527
+ name = "futures-macro"
528
+ version = "0.3.31"
529
+ source = "registry+https://github.com/rust-lang/crates.io-index"
530
+ checksum = "162ee34ebcb7c64a8abebc059ce0fee27c2262618d7b60ed8faf72fef13c3650"
531
+ dependencies = [
532
+ "proc-macro2",
533
+ "quote",
534
+ "syn",
535
+ ]
536
+
537
+ [[package]]
538
+ name = "futures-sink"
539
+ version = "0.3.31"
540
+ source = "registry+https://github.com/rust-lang/crates.io-index"
541
+ checksum = "e575fab7d1e0dcb8d0c7bcf9a63ee213816ab51902e6d244a95819acacf1d4f7"
542
+
543
+ [[package]]
544
+ name = "futures-task"
545
+ version = "0.3.31"
546
+ source = "registry+https://github.com/rust-lang/crates.io-index"
547
+ checksum = "f90f7dce0722e95104fcb095585910c0977252f286e354b5e3bd38902cd99988"
548
+
549
+ [[package]]
550
+ name = "futures-util"
551
+ version = "0.3.31"
552
+ source = "registry+https://github.com/rust-lang/crates.io-index"
553
+ checksum = "9fa08315bb612088cc391249efdc3bc77536f16c91f6cf495e6fbe85b20a4a81"
554
+ dependencies = [
555
+ "futures-channel",
556
+ "futures-core",
557
+ "futures-io",
558
+ "futures-macro",
559
+ "futures-sink",
560
+ "futures-task",
561
+ "memchr",
562
+ "pin-project-lite",
563
+ "pin-utils",
564
+ "slab",
565
+ ]
566
+
567
+ [[package]]
568
+ name = "getrandom"
569
+ version = "0.3.4"
570
+ source = "registry+https://github.com/rust-lang/crates.io-index"
571
+ checksum = "899def5c37c4fd7b2664648c28120ecec138e4d395b459e5ca34f9cce2dd77fd"
572
+ dependencies = [
573
+ "cfg-if",
574
+ "libc",
575
+ "r-efi",
576
+ "wasip2",
577
+ ]
578
+
579
+ [[package]]
580
+ name = "grafeo"
581
+ version = "0.1.4"
582
+ dependencies = [
583
+ "grafeo-adapters",
584
+ "grafeo-common",
585
+ "grafeo-core",
586
+ "grafeo-engine",
587
+ ]
588
+
589
+ [[package]]
590
+ name = "grafeo-adapters"
591
+ version = "0.1.4"
592
+ dependencies = [
593
+ "bincode",
594
+ "byteorder",
595
+ "bytes",
596
+ "crc32fast",
597
+ "crossbeam",
598
+ "grafeo-common",
599
+ "grafeo-core",
600
+ "hashbrown",
601
+ "memmap2",
602
+ "parking_lot",
603
+ "proptest",
604
+ "serde",
605
+ "smallvec",
606
+ "tempfile",
607
+ "thiserror",
608
+ "tokio",
609
+ "tracing",
610
+ ]
611
+
612
+ [[package]]
613
+ name = "grafeo-cli"
614
+ version = "0.1.4"
615
+ dependencies = [
616
+ "anyhow",
617
+ "clap",
618
+ "comfy-table",
619
+ "grafeo-common",
620
+ "grafeo-engine",
621
+ "indicatif",
622
+ "serde",
623
+ "serde_json",
624
+ "thiserror",
625
+ "tracing",
626
+ "tracing-subscriber",
627
+ ]
628
+
629
+ [[package]]
630
+ name = "grafeo-common"
631
+ version = "0.1.4"
632
+ dependencies = [
633
+ "ahash",
634
+ "bincode",
635
+ "bumpalo",
636
+ "byteorder",
637
+ "bytes",
638
+ "criterion",
639
+ "hashbrown",
640
+ "parking_lot",
641
+ "proptest",
642
+ "serde",
643
+ "smallvec",
644
+ "thiserror",
645
+ "tokio",
646
+ ]
647
+
648
+ [[package]]
649
+ name = "grafeo-core"
650
+ version = "0.1.4"
651
+ dependencies = [
652
+ "ahash",
653
+ "byteorder",
654
+ "bytes",
655
+ "criterion",
656
+ "crossbeam",
657
+ "grafeo-common",
658
+ "hashbrown",
659
+ "indexmap",
660
+ "parking_lot",
661
+ "proptest",
662
+ "regex",
663
+ "serde",
664
+ "smallvec",
665
+ "tempfile",
666
+ "thiserror",
667
+ "tokio",
668
+ ]
669
+
670
+ [[package]]
671
+ name = "grafeo-engine"
672
+ version = "0.1.4"
673
+ dependencies = [
674
+ "anyhow",
675
+ "criterion",
676
+ "crossbeam",
677
+ "grafeo-adapters",
678
+ "grafeo-common",
679
+ "grafeo-core",
680
+ "hashbrown",
681
+ "indexmap",
682
+ "parking_lot",
683
+ "rayon",
684
+ "serde",
685
+ "smallvec",
686
+ "tempfile",
687
+ "thiserror",
688
+ "tokio",
689
+ "tracing",
690
+ ]
691
+
692
+ [[package]]
693
+ name = "grafeo-python"
694
+ version = "0.1.4"
695
+ dependencies = [
696
+ "grafeo-adapters",
697
+ "grafeo-common",
698
+ "grafeo-core",
699
+ "grafeo-engine",
700
+ "parking_lot",
701
+ "pyo3",
702
+ "pyo3-async-runtimes",
703
+ "thiserror",
704
+ "tokio",
705
+ ]
706
+
707
+ [[package]]
708
+ name = "half"
709
+ version = "2.7.1"
710
+ source = "registry+https://github.com/rust-lang/crates.io-index"
711
+ checksum = "6ea2d84b969582b4b1864a92dc5d27cd2b77b622a8d79306834f1be5ba20d84b"
712
+ dependencies = [
713
+ "cfg-if",
714
+ "crunchy",
715
+ "zerocopy",
716
+ ]
717
+
718
+ [[package]]
719
+ name = "hashbrown"
720
+ version = "0.16.1"
721
+ source = "registry+https://github.com/rust-lang/crates.io-index"
722
+ checksum = "841d1cc9bed7f9236f321df977030373f4a4163ae1a7dbfe1a51a2c1a51d9100"
723
+ dependencies = [
724
+ "allocator-api2",
725
+ "equivalent",
726
+ "foldhash",
727
+ ]
728
+
729
+ [[package]]
730
+ name = "heck"
731
+ version = "0.5.0"
732
+ source = "registry+https://github.com/rust-lang/crates.io-index"
733
+ checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea"
734
+
735
+ [[package]]
736
+ name = "indexmap"
737
+ version = "2.13.0"
738
+ source = "registry+https://github.com/rust-lang/crates.io-index"
739
+ checksum = "7714e70437a7dc3ac8eb7e6f8df75fd8eb422675fc7678aff7364301092b1017"
740
+ dependencies = [
741
+ "equivalent",
742
+ "hashbrown",
743
+ ]
744
+
745
+ [[package]]
746
+ name = "indicatif"
747
+ version = "0.18.3"
748
+ source = "registry+https://github.com/rust-lang/crates.io-index"
749
+ checksum = "9375e112e4b463ec1b1c6c011953545c65a30164fbab5b581df32b3abf0dcb88"
750
+ dependencies = [
751
+ "console",
752
+ "portable-atomic",
753
+ "unicode-width",
754
+ "unit-prefix",
755
+ "web-time",
756
+ ]
757
+
758
+ [[package]]
759
+ name = "indoc"
760
+ version = "2.0.7"
761
+ source = "registry+https://github.com/rust-lang/crates.io-index"
762
+ checksum = "79cf5c93f93228cf8efb3ba362535fb11199ac548a09ce117c9b1adc3030d706"
763
+ dependencies = [
764
+ "rustversion",
765
+ ]
766
+
767
+ [[package]]
768
+ name = "is_terminal_polyfill"
769
+ version = "1.70.2"
770
+ source = "registry+https://github.com/rust-lang/crates.io-index"
771
+ checksum = "a6cb138bb79a146c1bd460005623e142ef0181e3d0219cb493e02f7d08a35695"
772
+
773
+ [[package]]
774
+ name = "itertools"
775
+ version = "0.13.0"
776
+ source = "registry+https://github.com/rust-lang/crates.io-index"
777
+ checksum = "413ee7dfc52ee1a4949ceeb7dbc8a33f2d6c088194d9f922fb8318faf1f01186"
778
+ dependencies = [
779
+ "either",
780
+ ]
781
+
782
+ [[package]]
783
+ name = "itoa"
784
+ version = "1.0.17"
785
+ source = "registry+https://github.com/rust-lang/crates.io-index"
786
+ checksum = "92ecc6618181def0457392ccd0ee51198e065e016d1d527a7ac1b6dc7c1f09d2"
787
+
788
+ [[package]]
789
+ name = "js-sys"
790
+ version = "0.3.85"
791
+ source = "registry+https://github.com/rust-lang/crates.io-index"
792
+ checksum = "8c942ebf8e95485ca0d52d97da7c5a2c387d0e7f0ba4c35e93bfcaee045955b3"
793
+ dependencies = [
794
+ "once_cell",
795
+ "wasm-bindgen",
796
+ ]
797
+
798
+ [[package]]
799
+ name = "lazy_static"
800
+ version = "1.5.0"
801
+ source = "registry+https://github.com/rust-lang/crates.io-index"
802
+ checksum = "bbd2bcb4c963f2ddae06a2efc7e9f3591312473c50c6685e1f298068316e66fe"
803
+
804
+ [[package]]
805
+ name = "libc"
806
+ version = "0.2.180"
807
+ source = "registry+https://github.com/rust-lang/crates.io-index"
808
+ checksum = "bcc35a38544a891a5f7c865aca548a982ccb3b8650a5b06d0fd33a10283c56fc"
809
+
810
+ [[package]]
811
+ name = "linux-raw-sys"
812
+ version = "0.11.0"
813
+ source = "registry+https://github.com/rust-lang/crates.io-index"
814
+ checksum = "df1d3c3b53da64cf5760482273a98e575c651a67eec7f77df96b5b642de8f039"
815
+
816
+ [[package]]
817
+ name = "litrs"
818
+ version = "1.0.0"
819
+ source = "registry+https://github.com/rust-lang/crates.io-index"
820
+ checksum = "11d3d7f243d5c5a8b9bb5d6dd2b1602c0cb0b9db1621bafc7ed66e35ff9fe092"
821
+
822
+ [[package]]
823
+ name = "lock_api"
824
+ version = "0.4.14"
825
+ source = "registry+https://github.com/rust-lang/crates.io-index"
826
+ checksum = "224399e74b87b5f3557511d98dff8b14089b3dadafcab6bb93eab67d3aace965"
827
+ dependencies = [
828
+ "scopeguard",
829
+ ]
830
+
831
+ [[package]]
832
+ name = "log"
833
+ version = "0.4.29"
834
+ source = "registry+https://github.com/rust-lang/crates.io-index"
835
+ checksum = "5e5032e24019045c762d3c0f28f5b6b8bbf38563a65908389bf7978758920897"
836
+
837
+ [[package]]
838
+ name = "memchr"
839
+ version = "2.7.6"
840
+ source = "registry+https://github.com/rust-lang/crates.io-index"
841
+ checksum = "f52b00d39961fc5b2736ea853c9cc86238e165017a493d1d5c8eac6bdc4cc273"
842
+
843
+ [[package]]
844
+ name = "memmap2"
845
+ version = "0.9.9"
846
+ source = "registry+https://github.com/rust-lang/crates.io-index"
847
+ checksum = "744133e4a0e0a658e1374cf3bf8e415c4052a15a111acd372764c55b4177d490"
848
+ dependencies = [
849
+ "libc",
850
+ ]
851
+
852
+ [[package]]
853
+ name = "memoffset"
854
+ version = "0.9.1"
855
+ source = "registry+https://github.com/rust-lang/crates.io-index"
856
+ checksum = "488016bfae457b036d996092f6cb448677611ce4449e970ceaf42695203f218a"
857
+ dependencies = [
858
+ "autocfg",
859
+ ]
860
+
861
+ [[package]]
862
+ name = "mio"
863
+ version = "1.1.1"
864
+ source = "registry+https://github.com/rust-lang/crates.io-index"
865
+ checksum = "a69bcab0ad47271a0234d9422b131806bf3968021e5dc9328caf2d4cd58557fc"
866
+ dependencies = [
867
+ "libc",
868
+ "wasi",
869
+ "windows-sys 0.61.2",
870
+ ]
871
+
872
+ [[package]]
873
+ name = "nu-ansi-term"
874
+ version = "0.50.3"
875
+ source = "registry+https://github.com/rust-lang/crates.io-index"
876
+ checksum = "7957b9740744892f114936ab4a57b3f487491bbeafaf8083688b16841a4240e5"
877
+ dependencies = [
878
+ "windows-sys 0.61.2",
879
+ ]
880
+
881
+ [[package]]
882
+ name = "num-traits"
883
+ version = "0.2.19"
884
+ source = "registry+https://github.com/rust-lang/crates.io-index"
885
+ checksum = "071dfc062690e90b734c0b2273ce72ad0ffa95f0c74596bc250dcfd960262841"
886
+ dependencies = [
887
+ "autocfg",
888
+ ]
889
+
890
+ [[package]]
891
+ name = "once_cell"
892
+ version = "1.21.3"
893
+ source = "registry+https://github.com/rust-lang/crates.io-index"
894
+ checksum = "42f5e15c9953c5e4ccceeb2e7382a716482c34515315f7b03532b8b4e8393d2d"
895
+
896
+ [[package]]
897
+ name = "once_cell_polyfill"
898
+ version = "1.70.2"
899
+ source = "registry+https://github.com/rust-lang/crates.io-index"
900
+ checksum = "384b8ab6d37215f3c5301a95a4accb5d64aa607f1fcb26a11b5303878451b4fe"
901
+
902
+ [[package]]
903
+ name = "oorandom"
904
+ version = "11.1.5"
905
+ source = "registry+https://github.com/rust-lang/crates.io-index"
906
+ checksum = "d6790f58c7ff633d8771f42965289203411a5e5c68388703c06e14f24770b41e"
907
+
908
+ [[package]]
909
+ name = "page_size"
910
+ version = "0.6.0"
911
+ source = "registry+https://github.com/rust-lang/crates.io-index"
912
+ checksum = "30d5b2194ed13191c1999ae0704b7839fb18384fa22e49b57eeaa97d79ce40da"
913
+ dependencies = [
914
+ "libc",
915
+ "winapi",
916
+ ]
917
+
918
+ [[package]]
919
+ name = "parking_lot"
920
+ version = "0.12.5"
921
+ source = "registry+https://github.com/rust-lang/crates.io-index"
922
+ checksum = "93857453250e3077bd71ff98b6a65ea6621a19bb0f559a85248955ac12c45a1a"
923
+ dependencies = [
924
+ "lock_api",
925
+ "parking_lot_core",
926
+ ]
927
+
928
+ [[package]]
929
+ name = "parking_lot_core"
930
+ version = "0.9.12"
931
+ source = "registry+https://github.com/rust-lang/crates.io-index"
932
+ checksum = "2621685985a2ebf1c516881c026032ac7deafcda1a2c9b7850dc81e3dfcb64c1"
933
+ dependencies = [
934
+ "cfg-if",
935
+ "libc",
936
+ "redox_syscall",
937
+ "smallvec",
938
+ "windows-link",
939
+ ]
940
+
941
+ [[package]]
942
+ name = "pin-project-lite"
943
+ version = "0.2.16"
944
+ source = "registry+https://github.com/rust-lang/crates.io-index"
945
+ checksum = "3b3cff922bd51709b605d9ead9aa71031d81447142d828eb4a6eba76fe619f9b"
946
+
947
+ [[package]]
948
+ name = "pin-utils"
949
+ version = "0.1.0"
950
+ source = "registry+https://github.com/rust-lang/crates.io-index"
951
+ checksum = "8b870d8c151b6f2fb93e84a13146138f05d02ed11c7e7c54f8826aaaf7c9f184"
952
+
953
+ [[package]]
954
+ name = "plotters"
955
+ version = "0.3.7"
956
+ source = "registry+https://github.com/rust-lang/crates.io-index"
957
+ checksum = "5aeb6f403d7a4911efb1e33402027fc44f29b5bf6def3effcc22d7bb75f2b747"
958
+ dependencies = [
959
+ "num-traits",
960
+ "plotters-backend",
961
+ "plotters-svg",
962
+ "wasm-bindgen",
963
+ "web-sys",
964
+ ]
965
+
966
+ [[package]]
967
+ name = "plotters-backend"
968
+ version = "0.3.7"
969
+ source = "registry+https://github.com/rust-lang/crates.io-index"
970
+ checksum = "df42e13c12958a16b3f7f4386b9ab1f3e7933914ecea48da7139435263a4172a"
971
+
972
+ [[package]]
973
+ name = "plotters-svg"
974
+ version = "0.3.7"
975
+ source = "registry+https://github.com/rust-lang/crates.io-index"
976
+ checksum = "51bae2ac328883f7acdfea3d66a7c35751187f870bc81f94563733a154d7a670"
977
+ dependencies = [
978
+ "plotters-backend",
979
+ ]
980
+
981
+ [[package]]
982
+ name = "portable-atomic"
983
+ version = "1.13.0"
984
+ source = "registry+https://github.com/rust-lang/crates.io-index"
985
+ checksum = "f89776e4d69bb58bc6993e99ffa1d11f228b839984854c7daeb5d37f87cbe950"
986
+
987
+ [[package]]
988
+ name = "ppv-lite86"
989
+ version = "0.2.21"
990
+ source = "registry+https://github.com/rust-lang/crates.io-index"
991
+ checksum = "85eae3c4ed2f50dcfe72643da4befc30deadb458a9b590d720cde2f2b1e97da9"
992
+ dependencies = [
993
+ "zerocopy",
994
+ ]
995
+
996
+ [[package]]
997
+ name = "proc-macro2"
998
+ version = "1.0.106"
999
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1000
+ checksum = "8fd00f0bb2e90d81d1044c2b32617f68fcb9fa3bb7640c23e9c748e53fb30934"
1001
+ dependencies = [
1002
+ "unicode-ident",
1003
+ ]
1004
+
1005
+ [[package]]
1006
+ name = "proptest"
1007
+ version = "1.9.0"
1008
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1009
+ checksum = "bee689443a2bd0a16ab0348b52ee43e3b2d1b1f931c8aa5c9f8de4c86fbe8c40"
1010
+ dependencies = [
1011
+ "bit-set",
1012
+ "bit-vec",
1013
+ "bitflags",
1014
+ "num-traits",
1015
+ "rand",
1016
+ "rand_chacha",
1017
+ "rand_xorshift",
1018
+ "regex-syntax",
1019
+ "rusty-fork",
1020
+ "tempfile",
1021
+ "unarray",
1022
+ ]
1023
+
1024
+ [[package]]
1025
+ name = "pyo3"
1026
+ version = "0.27.2"
1027
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1028
+ checksum = "ab53c047fcd1a1d2a8820fe84f05d6be69e9526be40cb03b73f86b6b03e6d87d"
1029
+ dependencies = [
1030
+ "indoc",
1031
+ "libc",
1032
+ "memoffset",
1033
+ "once_cell",
1034
+ "portable-atomic",
1035
+ "pyo3-build-config",
1036
+ "pyo3-ffi",
1037
+ "pyo3-macros",
1038
+ "unindent",
1039
+ ]
1040
+
1041
+ [[package]]
1042
+ name = "pyo3-async-runtimes"
1043
+ version = "0.27.0"
1044
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1045
+ checksum = "57ddb5b570751e93cc6777e81fee8087e59cd53b5043292f2a6d59d5bd80fdfd"
1046
+ dependencies = [
1047
+ "futures",
1048
+ "once_cell",
1049
+ "pin-project-lite",
1050
+ "pyo3",
1051
+ "tokio",
1052
+ ]
1053
+
1054
+ [[package]]
1055
+ name = "pyo3-build-config"
1056
+ version = "0.27.2"
1057
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1058
+ checksum = "b455933107de8642b4487ed26d912c2d899dec6114884214a0b3bb3be9261ea6"
1059
+ dependencies = [
1060
+ "target-lexicon",
1061
+ ]
1062
+
1063
+ [[package]]
1064
+ name = "pyo3-ffi"
1065
+ version = "0.27.2"
1066
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1067
+ checksum = "1c85c9cbfaddf651b1221594209aed57e9e5cff63c4d11d1feead529b872a089"
1068
+ dependencies = [
1069
+ "libc",
1070
+ "pyo3-build-config",
1071
+ ]
1072
+
1073
+ [[package]]
1074
+ name = "pyo3-macros"
1075
+ version = "0.27.2"
1076
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1077
+ checksum = "0a5b10c9bf9888125d917fb4d2ca2d25c8df94c7ab5a52e13313a07e050a3b02"
1078
+ dependencies = [
1079
+ "proc-macro2",
1080
+ "pyo3-macros-backend",
1081
+ "quote",
1082
+ "syn",
1083
+ ]
1084
+
1085
+ [[package]]
1086
+ name = "pyo3-macros-backend"
1087
+ version = "0.27.2"
1088
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1089
+ checksum = "03b51720d314836e53327f5871d4c0cfb4fb37cc2c4a11cc71907a86342c40f9"
1090
+ dependencies = [
1091
+ "heck",
1092
+ "proc-macro2",
1093
+ "pyo3-build-config",
1094
+ "quote",
1095
+ "syn",
1096
+ ]
1097
+
1098
+ [[package]]
1099
+ name = "quick-error"
1100
+ version = "1.2.3"
1101
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1102
+ checksum = "a1d01941d82fa2ab50be1e79e6714289dd7cde78eba4c074bc5a4374f650dfe0"
1103
+
1104
+ [[package]]
1105
+ name = "quote"
1106
+ version = "1.0.44"
1107
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1108
+ checksum = "21b2ebcf727b7760c461f091f9f0f539b77b8e87f2fd88131e7f1b433b3cece4"
1109
+ dependencies = [
1110
+ "proc-macro2",
1111
+ ]
1112
+
1113
+ [[package]]
1114
+ name = "r-efi"
1115
+ version = "5.3.0"
1116
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1117
+ checksum = "69cdb34c158ceb288df11e18b4bd39de994f6657d83847bdffdbd7f346754b0f"
1118
+
1119
+ [[package]]
1120
+ name = "rand"
1121
+ version = "0.9.2"
1122
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1123
+ checksum = "6db2770f06117d490610c7488547d543617b21bfa07796d7a12f6f1bd53850d1"
1124
+ dependencies = [
1125
+ "rand_chacha",
1126
+ "rand_core",
1127
+ ]
1128
+
1129
+ [[package]]
1130
+ name = "rand_chacha"
1131
+ version = "0.9.0"
1132
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1133
+ checksum = "d3022b5f1df60f26e1ffddd6c66e8aa15de382ae63b3a0c1bfc0e4d3e3f325cb"
1134
+ dependencies = [
1135
+ "ppv-lite86",
1136
+ "rand_core",
1137
+ ]
1138
+
1139
+ [[package]]
1140
+ name = "rand_core"
1141
+ version = "0.9.5"
1142
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1143
+ checksum = "76afc826de14238e6e8c374ddcc1fa19e374fd8dd986b0d2af0d02377261d83c"
1144
+ dependencies = [
1145
+ "getrandom",
1146
+ ]
1147
+
1148
+ [[package]]
1149
+ name = "rand_xorshift"
1150
+ version = "0.4.0"
1151
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1152
+ checksum = "513962919efc330f829edb2535844d1b912b0fbe2ca165d613e4e8788bb05a5a"
1153
+ dependencies = [
1154
+ "rand_core",
1155
+ ]
1156
+
1157
+ [[package]]
1158
+ name = "rayon"
1159
+ version = "1.11.0"
1160
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1161
+ checksum = "368f01d005bf8fd9b1206fb6fa653e6c4a81ceb1466406b81792d87c5677a58f"
1162
+ dependencies = [
1163
+ "either",
1164
+ "rayon-core",
1165
+ ]
1166
+
1167
+ [[package]]
1168
+ name = "rayon-core"
1169
+ version = "1.13.0"
1170
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1171
+ checksum = "22e18b0f0062d30d4230b2e85ff77fdfe4326feb054b9783a3460d8435c8ab91"
1172
+ dependencies = [
1173
+ "crossbeam-deque",
1174
+ "crossbeam-utils",
1175
+ ]
1176
+
1177
+ [[package]]
1178
+ name = "redox_syscall"
1179
+ version = "0.5.18"
1180
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1181
+ checksum = "ed2bf2547551a7053d6fdfafda3f938979645c44812fbfcda098faae3f1a362d"
1182
+ dependencies = [
1183
+ "bitflags",
1184
+ ]
1185
+
1186
+ [[package]]
1187
+ name = "regex"
1188
+ version = "1.12.2"
1189
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1190
+ checksum = "843bc0191f75f3e22651ae5f1e72939ab2f72a4bc30fa80a066bd66edefc24d4"
1191
+ dependencies = [
1192
+ "aho-corasick",
1193
+ "memchr",
1194
+ "regex-automata",
1195
+ "regex-syntax",
1196
+ ]
1197
+
1198
+ [[package]]
1199
+ name = "regex-automata"
1200
+ version = "0.4.13"
1201
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1202
+ checksum = "5276caf25ac86c8d810222b3dbb938e512c55c6831a10f3e6ed1c93b84041f1c"
1203
+ dependencies = [
1204
+ "aho-corasick",
1205
+ "memchr",
1206
+ "regex-syntax",
1207
+ ]
1208
+
1209
+ [[package]]
1210
+ name = "regex-syntax"
1211
+ version = "0.8.8"
1212
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1213
+ checksum = "7a2d987857b319362043e95f5353c0535c1f58eec5336fdfcf626430af7def58"
1214
+
1215
+ [[package]]
1216
+ name = "rustix"
1217
+ version = "1.1.3"
1218
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1219
+ checksum = "146c9e247ccc180c1f61615433868c99f3de3ae256a30a43b49f67c2d9171f34"
1220
+ dependencies = [
1221
+ "bitflags",
1222
+ "errno",
1223
+ "libc",
1224
+ "linux-raw-sys",
1225
+ "windows-sys 0.61.2",
1226
+ ]
1227
+
1228
+ [[package]]
1229
+ name = "rustversion"
1230
+ version = "1.0.22"
1231
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1232
+ checksum = "b39cdef0fa800fc44525c84ccb54a029961a8215f9619753635a9c0d2538d46d"
1233
+
1234
+ [[package]]
1235
+ name = "rusty-fork"
1236
+ version = "0.3.1"
1237
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1238
+ checksum = "cc6bf79ff24e648f6da1f8d1f011e9cac26491b619e6b9280f2b47f1774e6ee2"
1239
+ dependencies = [
1240
+ "fnv",
1241
+ "quick-error",
1242
+ "tempfile",
1243
+ "wait-timeout",
1244
+ ]
1245
+
1246
+ [[package]]
1247
+ name = "same-file"
1248
+ version = "1.0.6"
1249
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1250
+ checksum = "93fc1dc3aaa9bfed95e02e6eadabb4baf7e3078b0bd1b4d7b6b0b68378900502"
1251
+ dependencies = [
1252
+ "winapi-util",
1253
+ ]
1254
+
1255
+ [[package]]
1256
+ name = "scopeguard"
1257
+ version = "1.2.0"
1258
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1259
+ checksum = "94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49"
1260
+
1261
+ [[package]]
1262
+ name = "serde"
1263
+ version = "1.0.228"
1264
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1265
+ checksum = "9a8e94ea7f378bd32cbbd37198a4a91436180c5bb472411e48b5ec2e2124ae9e"
1266
+ dependencies = [
1267
+ "serde_core",
1268
+ "serde_derive",
1269
+ ]
1270
+
1271
+ [[package]]
1272
+ name = "serde_core"
1273
+ version = "1.0.228"
1274
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1275
+ checksum = "41d385c7d4ca58e59fc732af25c3983b67ac852c1a25000afe1175de458b67ad"
1276
+ dependencies = [
1277
+ "serde_derive",
1278
+ ]
1279
+
1280
+ [[package]]
1281
+ name = "serde_derive"
1282
+ version = "1.0.228"
1283
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1284
+ checksum = "d540f220d3187173da220f885ab66608367b6574e925011a9353e4badda91d79"
1285
+ dependencies = [
1286
+ "proc-macro2",
1287
+ "quote",
1288
+ "syn",
1289
+ ]
1290
+
1291
+ [[package]]
1292
+ name = "serde_json"
1293
+ version = "1.0.149"
1294
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1295
+ checksum = "83fc039473c5595ace860d8c4fafa220ff474b3fc6bfdb4293327f1a37e94d86"
1296
+ dependencies = [
1297
+ "itoa",
1298
+ "memchr",
1299
+ "serde",
1300
+ "serde_core",
1301
+ "zmij",
1302
+ ]
1303
+
1304
+ [[package]]
1305
+ name = "sharded-slab"
1306
+ version = "0.1.7"
1307
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1308
+ checksum = "f40ca3c46823713e0d4209592e8d6e826aa57e928f09752619fc696c499637f6"
1309
+ dependencies = [
1310
+ "lazy_static",
1311
+ ]
1312
+
1313
+ [[package]]
1314
+ name = "shlex"
1315
+ version = "1.3.0"
1316
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1317
+ checksum = "0fda2ff0d084019ba4d7c6f371c95d8fd75ce3524c3cb8fb653a3023f6323e64"
1318
+
1319
+ [[package]]
1320
+ name = "signal-hook-registry"
1321
+ version = "1.4.8"
1322
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1323
+ checksum = "c4db69cba1110affc0e9f7bcd48bbf87b3f4fc7c61fc9155afd4c469eb3d6c1b"
1324
+ dependencies = [
1325
+ "errno",
1326
+ "libc",
1327
+ ]
1328
+
1329
+ [[package]]
1330
+ name = "slab"
1331
+ version = "0.4.11"
1332
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1333
+ checksum = "7a2ae44ef20feb57a68b23d846850f861394c2e02dc425a50098ae8c90267589"
1334
+
1335
+ [[package]]
1336
+ name = "smallvec"
1337
+ version = "1.15.1"
1338
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1339
+ checksum = "67b1b7a3b5fe4f1376887184045fcf45c69e92af734b7aaddc05fb777b6fbd03"
1340
+
1341
+ [[package]]
1342
+ name = "socket2"
1343
+ version = "0.6.2"
1344
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1345
+ checksum = "86f4aa3ad99f2088c990dfa82d367e19cb29268ed67c574d10d0a4bfe71f07e0"
1346
+ dependencies = [
1347
+ "libc",
1348
+ "windows-sys 0.60.2",
1349
+ ]
1350
+
1351
+ [[package]]
1352
+ name = "strsim"
1353
+ version = "0.11.1"
1354
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1355
+ checksum = "7da8b5736845d9f2fcb837ea5d9e2628564b3b043a70948a3f0b778838c5fb4f"
1356
+
1357
+ [[package]]
1358
+ name = "syn"
1359
+ version = "2.0.114"
1360
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1361
+ checksum = "d4d107df263a3013ef9b1879b0df87d706ff80f65a86ea879bd9c31f9b307c2a"
1362
+ dependencies = [
1363
+ "proc-macro2",
1364
+ "quote",
1365
+ "unicode-ident",
1366
+ ]
1367
+
1368
+ [[package]]
1369
+ name = "target-lexicon"
1370
+ version = "0.13.4"
1371
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1372
+ checksum = "b1dd07eb858a2067e2f3c7155d54e929265c264e6f37efe3ee7a8d1b5a1dd0ba"
1373
+
1374
+ [[package]]
1375
+ name = "tempfile"
1376
+ version = "3.24.0"
1377
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1378
+ checksum = "655da9c7eb6305c55742045d5a8d2037996d61d8de95806335c7c86ce0f82e9c"
1379
+ dependencies = [
1380
+ "fastrand",
1381
+ "getrandom",
1382
+ "once_cell",
1383
+ "rustix",
1384
+ "windows-sys 0.61.2",
1385
+ ]
1386
+
1387
+ [[package]]
1388
+ name = "thiserror"
1389
+ version = "2.0.18"
1390
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1391
+ checksum = "4288b5bcbc7920c07a1149a35cf9590a2aa808e0bc1eafaade0b80947865fbc4"
1392
+ dependencies = [
1393
+ "thiserror-impl",
1394
+ ]
1395
+
1396
+ [[package]]
1397
+ name = "thiserror-impl"
1398
+ version = "2.0.18"
1399
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1400
+ checksum = "ebc4ee7f67670e9b64d05fa4253e753e016c6c95ff35b89b7941d6b856dec1d5"
1401
+ dependencies = [
1402
+ "proc-macro2",
1403
+ "quote",
1404
+ "syn",
1405
+ ]
1406
+
1407
+ [[package]]
1408
+ name = "thread_local"
1409
+ version = "1.1.9"
1410
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1411
+ checksum = "f60246a4944f24f6e018aa17cdeffb7818b76356965d03b07d6a9886e8962185"
1412
+ dependencies = [
1413
+ "cfg-if",
1414
+ ]
1415
+
1416
+ [[package]]
1417
+ name = "tinytemplate"
1418
+ version = "1.2.1"
1419
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1420
+ checksum = "be4d6b5f19ff7664e8c98d03e2139cb510db9b0a60b55f8e8709b689d939b6bc"
1421
+ dependencies = [
1422
+ "serde",
1423
+ "serde_json",
1424
+ ]
1425
+
1426
+ [[package]]
1427
+ name = "tokio"
1428
+ version = "1.49.0"
1429
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1430
+ checksum = "72a2903cd7736441aac9df9d7688bd0ce48edccaadf181c3b90be801e81d3d86"
1431
+ dependencies = [
1432
+ "bytes",
1433
+ "libc",
1434
+ "mio",
1435
+ "parking_lot",
1436
+ "pin-project-lite",
1437
+ "signal-hook-registry",
1438
+ "socket2",
1439
+ "tokio-macros",
1440
+ "windows-sys 0.61.2",
1441
+ ]
1442
+
1443
+ [[package]]
1444
+ name = "tokio-macros"
1445
+ version = "2.6.0"
1446
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1447
+ checksum = "af407857209536a95c8e56f8231ef2c2e2aff839b22e07a1ffcbc617e9db9fa5"
1448
+ dependencies = [
1449
+ "proc-macro2",
1450
+ "quote",
1451
+ "syn",
1452
+ ]
1453
+
1454
+ [[package]]
1455
+ name = "tracing"
1456
+ version = "0.1.44"
1457
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1458
+ checksum = "63e71662fa4b2a2c3a26f570f037eb95bb1f85397f3cd8076caed2f026a6d100"
1459
+ dependencies = [
1460
+ "pin-project-lite",
1461
+ "tracing-attributes",
1462
+ "tracing-core",
1463
+ ]
1464
+
1465
+ [[package]]
1466
+ name = "tracing-attributes"
1467
+ version = "0.1.31"
1468
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1469
+ checksum = "7490cfa5ec963746568740651ac6781f701c9c5ea257c58e057f3ba8cf69e8da"
1470
+ dependencies = [
1471
+ "proc-macro2",
1472
+ "quote",
1473
+ "syn",
1474
+ ]
1475
+
1476
+ [[package]]
1477
+ name = "tracing-core"
1478
+ version = "0.1.36"
1479
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1480
+ checksum = "db97caf9d906fbde555dd62fa95ddba9eecfd14cb388e4f491a66d74cd5fb79a"
1481
+ dependencies = [
1482
+ "once_cell",
1483
+ "valuable",
1484
+ ]
1485
+
1486
+ [[package]]
1487
+ name = "tracing-log"
1488
+ version = "0.2.0"
1489
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1490
+ checksum = "ee855f1f400bd0e5c02d150ae5de3840039a3f54b025156404e34c23c03f47c3"
1491
+ dependencies = [
1492
+ "log",
1493
+ "once_cell",
1494
+ "tracing-core",
1495
+ ]
1496
+
1497
+ [[package]]
1498
+ name = "tracing-subscriber"
1499
+ version = "0.3.22"
1500
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1501
+ checksum = "2f30143827ddab0d256fd843b7a66d164e9f271cfa0dde49142c5ca0ca291f1e"
1502
+ dependencies = [
1503
+ "nu-ansi-term",
1504
+ "sharded-slab",
1505
+ "smallvec",
1506
+ "thread_local",
1507
+ "tracing-core",
1508
+ "tracing-log",
1509
+ ]
1510
+
1511
+ [[package]]
1512
+ name = "unarray"
1513
+ version = "0.1.4"
1514
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1515
+ checksum = "eaea85b334db583fe3274d12b4cd1880032beab409c0d774be044d4480ab9a94"
1516
+
1517
+ [[package]]
1518
+ name = "unicode-ident"
1519
+ version = "1.0.22"
1520
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1521
+ checksum = "9312f7c4f6ff9069b165498234ce8be658059c6728633667c526e27dc2cf1df5"
1522
+
1523
+ [[package]]
1524
+ name = "unicode-segmentation"
1525
+ version = "1.12.0"
1526
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1527
+ checksum = "f6ccf251212114b54433ec949fd6a7841275f9ada20dddd2f29e9ceea4501493"
1528
+
1529
+ [[package]]
1530
+ name = "unicode-width"
1531
+ version = "0.2.2"
1532
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1533
+ checksum = "b4ac048d71ede7ee76d585517add45da530660ef4390e49b098733c6e897f254"
1534
+
1535
+ [[package]]
1536
+ name = "unindent"
1537
+ version = "0.2.4"
1538
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1539
+ checksum = "7264e107f553ccae879d21fbea1d6724ac785e8c3bfc762137959b5802826ef3"
1540
+
1541
+ [[package]]
1542
+ name = "unit-prefix"
1543
+ version = "0.5.2"
1544
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1545
+ checksum = "81e544489bf3d8ef66c953931f56617f423cd4b5494be343d9b9d3dda037b9a3"
1546
+
1547
+ [[package]]
1548
+ name = "unty"
1549
+ version = "0.0.4"
1550
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1551
+ checksum = "6d49784317cd0d1ee7ec5c716dd598ec5b4483ea832a2dced265471cc0f690ae"
1552
+
1553
+ [[package]]
1554
+ name = "utf8parse"
1555
+ version = "0.2.2"
1556
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1557
+ checksum = "06abde3611657adf66d383f00b093d7faecc7fa57071cce2578660c9f1010821"
1558
+
1559
+ [[package]]
1560
+ name = "valuable"
1561
+ version = "0.1.1"
1562
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1563
+ checksum = "ba73ea9cf16a25df0c8caa16c51acb937d5712a8429db78a3ee29d5dcacd3a65"
1564
+
1565
+ [[package]]
1566
+ name = "version_check"
1567
+ version = "0.9.5"
1568
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1569
+ checksum = "0b928f33d975fc6ad9f86c8f283853ad26bdd5b10b7f1542aa2fa15e2289105a"
1570
+
1571
+ [[package]]
1572
+ name = "virtue"
1573
+ version = "0.0.18"
1574
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1575
+ checksum = "051eb1abcf10076295e815102942cc58f9d5e3b4560e46e53c21e8ff6f3af7b1"
1576
+
1577
+ [[package]]
1578
+ name = "wait-timeout"
1579
+ version = "0.2.1"
1580
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1581
+ checksum = "09ac3b126d3914f9849036f826e054cbabdc8519970b8998ddaf3b5bd3c65f11"
1582
+ dependencies = [
1583
+ "libc",
1584
+ ]
1585
+
1586
+ [[package]]
1587
+ name = "walkdir"
1588
+ version = "2.5.0"
1589
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1590
+ checksum = "29790946404f91d9c5d06f9874efddea1dc06c5efe94541a7d6863108e3a5e4b"
1591
+ dependencies = [
1592
+ "same-file",
1593
+ "winapi-util",
1594
+ ]
1595
+
1596
+ [[package]]
1597
+ name = "wasi"
1598
+ version = "0.11.1+wasi-snapshot-preview1"
1599
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1600
+ checksum = "ccf3ec651a847eb01de73ccad15eb7d99f80485de043efb2f370cd654f4ea44b"
1601
+
1602
+ [[package]]
1603
+ name = "wasip2"
1604
+ version = "1.0.2+wasi-0.2.9"
1605
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1606
+ checksum = "9517f9239f02c069db75e65f174b3da828fe5f5b945c4dd26bd25d89c03ebcf5"
1607
+ dependencies = [
1608
+ "wit-bindgen",
1609
+ ]
1610
+
1611
+ [[package]]
1612
+ name = "wasm-bindgen"
1613
+ version = "0.2.108"
1614
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1615
+ checksum = "64024a30ec1e37399cf85a7ffefebdb72205ca1c972291c51512360d90bd8566"
1616
+ dependencies = [
1617
+ "cfg-if",
1618
+ "once_cell",
1619
+ "rustversion",
1620
+ "wasm-bindgen-macro",
1621
+ "wasm-bindgen-shared",
1622
+ ]
1623
+
1624
+ [[package]]
1625
+ name = "wasm-bindgen-macro"
1626
+ version = "0.2.108"
1627
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1628
+ checksum = "008b239d9c740232e71bd39e8ef6429d27097518b6b30bdf9086833bd5b6d608"
1629
+ dependencies = [
1630
+ "quote",
1631
+ "wasm-bindgen-macro-support",
1632
+ ]
1633
+
1634
+ [[package]]
1635
+ name = "wasm-bindgen-macro-support"
1636
+ version = "0.2.108"
1637
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1638
+ checksum = "5256bae2d58f54820e6490f9839c49780dff84c65aeab9e772f15d5f0e913a55"
1639
+ dependencies = [
1640
+ "bumpalo",
1641
+ "proc-macro2",
1642
+ "quote",
1643
+ "syn",
1644
+ "wasm-bindgen-shared",
1645
+ ]
1646
+
1647
+ [[package]]
1648
+ name = "wasm-bindgen-shared"
1649
+ version = "0.2.108"
1650
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1651
+ checksum = "1f01b580c9ac74c8d8f0c0e4afb04eeef2acf145458e52c03845ee9cd23e3d12"
1652
+ dependencies = [
1653
+ "unicode-ident",
1654
+ ]
1655
+
1656
+ [[package]]
1657
+ name = "web-sys"
1658
+ version = "0.3.85"
1659
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1660
+ checksum = "312e32e551d92129218ea9a2452120f4aabc03529ef03e4d0d82fb2780608598"
1661
+ dependencies = [
1662
+ "js-sys",
1663
+ "wasm-bindgen",
1664
+ ]
1665
+
1666
+ [[package]]
1667
+ name = "web-time"
1668
+ version = "1.1.0"
1669
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1670
+ checksum = "5a6580f308b1fad9207618087a65c04e7a10bc77e02c8e84e9b00dd4b12fa0bb"
1671
+ dependencies = [
1672
+ "js-sys",
1673
+ "wasm-bindgen",
1674
+ ]
1675
+
1676
+ [[package]]
1677
+ name = "winapi"
1678
+ version = "0.3.9"
1679
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1680
+ checksum = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419"
1681
+ dependencies = [
1682
+ "winapi-i686-pc-windows-gnu",
1683
+ "winapi-x86_64-pc-windows-gnu",
1684
+ ]
1685
+
1686
+ [[package]]
1687
+ name = "winapi-i686-pc-windows-gnu"
1688
+ version = "0.4.0"
1689
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1690
+ checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6"
1691
+
1692
+ [[package]]
1693
+ name = "winapi-util"
1694
+ version = "0.1.11"
1695
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1696
+ checksum = "c2a7b1c03c876122aa43f3020e6c3c3ee5c05081c9a00739faf7503aeba10d22"
1697
+ dependencies = [
1698
+ "windows-sys 0.61.2",
1699
+ ]
1700
+
1701
+ [[package]]
1702
+ name = "winapi-x86_64-pc-windows-gnu"
1703
+ version = "0.4.0"
1704
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1705
+ checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f"
1706
+
1707
+ [[package]]
1708
+ name = "windows-link"
1709
+ version = "0.2.1"
1710
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1711
+ checksum = "f0805222e57f7521d6a62e36fa9163bc891acd422f971defe97d64e70d0a4fe5"
1712
+
1713
+ [[package]]
1714
+ name = "windows-sys"
1715
+ version = "0.60.2"
1716
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1717
+ checksum = "f2f500e4d28234f72040990ec9d39e3a6b950f9f22d3dba18416c35882612bcb"
1718
+ dependencies = [
1719
+ "windows-targets",
1720
+ ]
1721
+
1722
+ [[package]]
1723
+ name = "windows-sys"
1724
+ version = "0.61.2"
1725
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1726
+ checksum = "ae137229bcbd6cdf0f7b80a31df61766145077ddf49416a728b02cb3921ff3fc"
1727
+ dependencies = [
1728
+ "windows-link",
1729
+ ]
1730
+
1731
+ [[package]]
1732
+ name = "windows-targets"
1733
+ version = "0.53.5"
1734
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1735
+ checksum = "4945f9f551b88e0d65f3db0bc25c33b8acea4d9e41163edf90dcd0b19f9069f3"
1736
+ dependencies = [
1737
+ "windows-link",
1738
+ "windows_aarch64_gnullvm",
1739
+ "windows_aarch64_msvc",
1740
+ "windows_i686_gnu",
1741
+ "windows_i686_gnullvm",
1742
+ "windows_i686_msvc",
1743
+ "windows_x86_64_gnu",
1744
+ "windows_x86_64_gnullvm",
1745
+ "windows_x86_64_msvc",
1746
+ ]
1747
+
1748
+ [[package]]
1749
+ name = "windows_aarch64_gnullvm"
1750
+ version = "0.53.1"
1751
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1752
+ checksum = "a9d8416fa8b42f5c947f8482c43e7d89e73a173cead56d044f6a56104a6d1b53"
1753
+
1754
+ [[package]]
1755
+ name = "windows_aarch64_msvc"
1756
+ version = "0.53.1"
1757
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1758
+ checksum = "b9d782e804c2f632e395708e99a94275910eb9100b2114651e04744e9b125006"
1759
+
1760
+ [[package]]
1761
+ name = "windows_i686_gnu"
1762
+ version = "0.53.1"
1763
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1764
+ checksum = "960e6da069d81e09becb0ca57a65220ddff016ff2d6af6a223cf372a506593a3"
1765
+
1766
+ [[package]]
1767
+ name = "windows_i686_gnullvm"
1768
+ version = "0.53.1"
1769
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1770
+ checksum = "fa7359d10048f68ab8b09fa71c3daccfb0e9b559aed648a8f95469c27057180c"
1771
+
1772
+ [[package]]
1773
+ name = "windows_i686_msvc"
1774
+ version = "0.53.1"
1775
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1776
+ checksum = "1e7ac75179f18232fe9c285163565a57ef8d3c89254a30685b57d83a38d326c2"
1777
+
1778
+ [[package]]
1779
+ name = "windows_x86_64_gnu"
1780
+ version = "0.53.1"
1781
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1782
+ checksum = "9c3842cdd74a865a8066ab39c8a7a473c0778a3f29370b5fd6b4b9aa7df4a499"
1783
+
1784
+ [[package]]
1785
+ name = "windows_x86_64_gnullvm"
1786
+ version = "0.53.1"
1787
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1788
+ checksum = "0ffa179e2d07eee8ad8f57493436566c7cc30ac536a3379fdf008f47f6bb7ae1"
1789
+
1790
+ [[package]]
1791
+ name = "windows_x86_64_msvc"
1792
+ version = "0.53.1"
1793
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1794
+ checksum = "d6bbff5f0aada427a1e5a6da5f1f98158182f26556f345ac9e04d36d0ebed650"
1795
+
1796
+ [[package]]
1797
+ name = "wit-bindgen"
1798
+ version = "0.51.0"
1799
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1800
+ checksum = "d7249219f66ced02969388cf2bb044a09756a083d0fab1e566056b04d9fbcaa5"
1801
+
1802
+ [[package]]
1803
+ name = "zerocopy"
1804
+ version = "0.8.34"
1805
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1806
+ checksum = "71ddd76bcebeed25db614f82bf31a9f4222d3fbba300e6fb6c00afa26cbd4d9d"
1807
+ dependencies = [
1808
+ "zerocopy-derive",
1809
+ ]
1810
+
1811
+ [[package]]
1812
+ name = "zerocopy-derive"
1813
+ version = "0.8.34"
1814
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1815
+ checksum = "d8187381b52e32220d50b255276aa16a084ec0a9017a0ca2152a1f55c539758d"
1816
+ dependencies = [
1817
+ "proc-macro2",
1818
+ "quote",
1819
+ "syn",
1820
+ ]
1821
+
1822
+ [[package]]
1823
+ name = "zmij"
1824
+ version = "1.0.17"
1825
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1826
+ checksum = "02aae0f83f69aafc94776e879363e9771d7ecbffe2c7fbb6c14c5e00dfe88439"