rsshogi 1.0.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 (194) hide show
  1. rsshogi-1.0.0/Cargo.lock +844 -0
  2. rsshogi-1.0.0/Cargo.toml +20 -0
  3. rsshogi-1.0.0/LICENSE +21 -0
  4. rsshogi-1.0.0/PKG-INFO +167 -0
  5. rsshogi-1.0.0/README.md +152 -0
  6. rsshogi-1.0.0/crates/rsshogi/Cargo.toml +100 -0
  7. rsshogi-1.0.0/crates/rsshogi/README.md +491 -0
  8. rsshogi-1.0.0/crates/rsshogi/benches/apply_undo.rs +40 -0
  9. rsshogi-1.0.0/crates/rsshogi/benches/movegen.rs +138 -0
  10. rsshogi-1.0.0/crates/rsshogi/build.rs +1260 -0
  11. rsshogi-1.0.0/crates/rsshogi/examples/sazpack_measure.rs +64 -0
  12. rsshogi-1.0.0/crates/rsshogi/examples/sbinpack_size_breakdown.rs +187 -0
  13. rsshogi-1.0.0/crates/rsshogi/src/board/attack_tables/tests/mod.rs +1044 -0
  14. rsshogi-1.0.0/crates/rsshogi/src/board/attack_tables.rs +209 -0
  15. rsshogi-1.0.0/crates/rsshogi/src/board/bitboard256.rs +215 -0
  16. rsshogi-1.0.0/crates/rsshogi/src/board/bitboard_set.rs +354 -0
  17. rsshogi-1.0.0/crates/rsshogi/src/board/initial_positions.rs +209 -0
  18. rsshogi-1.0.0/crates/rsshogi/src/board/lookup.rs +298 -0
  19. rsshogi-1.0.0/crates/rsshogi/src/board/mate_constant.rs +175 -0
  20. rsshogi-1.0.0/crates/rsshogi/src/board/mod.rs +264 -0
  21. rsshogi-1.0.0/crates/rsshogi/src/board/move_list.rs +568 -0
  22. rsshogi-1.0.0/crates/rsshogi/src/board/movegen/checks.rs +504 -0
  23. rsshogi-1.0.0/crates/rsshogi/src/board/movegen/drops.rs +826 -0
  24. rsshogi-1.0.0/crates/rsshogi/src/board/movegen/evasions.rs +130 -0
  25. rsshogi-1.0.0/crates/rsshogi/src/board/movegen/generate.rs +361 -0
  26. rsshogi-1.0.0/crates/rsshogi/src/board/movegen/mod.rs +841 -0
  27. rsshogi-1.0.0/crates/rsshogi/src/board/movegen/pieces.rs +337 -0
  28. rsshogi-1.0.0/crates/rsshogi/src/board/movegen/promotions.rs +35 -0
  29. rsshogi-1.0.0/crates/rsshogi/src/board/movegen/recaptures.rs +25 -0
  30. rsshogi-1.0.0/crates/rsshogi/src/board/movegen/tests/basic.rs +165 -0
  31. rsshogi-1.0.0/crates/rsshogi/src/board/movegen/tests/checks_move32.rs +76 -0
  32. rsshogi-1.0.0/crates/rsshogi/src/board/movegen/tests/drops.rs +195 -0
  33. rsshogi-1.0.0/crates/rsshogi/src/board/movegen/tests/evasions.rs +184 -0
  34. rsshogi-1.0.0/crates/rsshogi/src/board/movegen/tests/is_legal.rs +108 -0
  35. rsshogi-1.0.0/crates/rsshogi/src/board/movegen/tests/mod.rs +13 -0
  36. rsshogi-1.0.0/crates/rsshogi/src/board/movegen/tests/piece_moves.rs +146 -0
  37. rsshogi-1.0.0/crates/rsshogi/src/board/movegen/tests/pinned.rs +73 -0
  38. rsshogi-1.0.0/crates/rsshogi/src/board/movegen/tests/promoted_pieces.rs +75 -0
  39. rsshogi-1.0.0/crates/rsshogi/src/board/movegen/tests/promotion_rules.rs +51 -0
  40. rsshogi-1.0.0/crates/rsshogi/src/board/movegen/tests/recaptures.rs +95 -0
  41. rsshogi-1.0.0/crates/rsshogi/src/board/movegen/tests/slider_moves.rs +106 -0
  42. rsshogi-1.0.0/crates/rsshogi/src/board/movegen/types.rs +346 -0
  43. rsshogi-1.0.0/crates/rsshogi/src/board/parser.rs +514 -0
  44. rsshogi-1.0.0/crates/rsshogi/src/board/perft.rs +275 -0
  45. rsshogi-1.0.0/crates/rsshogi/src/board/position/accessors.rs +414 -0
  46. rsshogi-1.0.0/crates/rsshogi/src/board/position/attacks.rs +330 -0
  47. rsshogi-1.0.0/crates/rsshogi/src/board/position/bit_io.rs +138 -0
  48. rsshogi-1.0.0/crates/rsshogi/src/board/position/cache.rs +309 -0
  49. rsshogi-1.0.0/crates/rsshogi/src/board/position/constructors.rs +46 -0
  50. rsshogi-1.0.0/crates/rsshogi/src/board/position/hash.rs +276 -0
  51. rsshogi-1.0.0/crates/rsshogi/src/board/position/huffman_coded_pos.rs +353 -0
  52. rsshogi-1.0.0/crates/rsshogi/src/board/position/legality.rs +151 -0
  53. rsshogi-1.0.0/crates/rsshogi/src/board/position/maintenance.rs +268 -0
  54. rsshogi-1.0.0/crates/rsshogi/src/board/position/mod.rs +422 -0
  55. rsshogi-1.0.0/crates/rsshogi/src/board/position/packed_sfen.rs +564 -0
  56. rsshogi-1.0.0/crates/rsshogi/src/board/position/parser.rs +112 -0
  57. rsshogi-1.0.0/crates/rsshogi/src/board/position/rules.rs +1051 -0
  58. rsshogi-1.0.0/crates/rsshogi/src/board/position/svg.rs +282 -0
  59. rsshogi-1.0.0/crates/rsshogi/src/board/position/tests/attacks.rs +36 -0
  60. rsshogi-1.0.0/crates/rsshogi/src/board/position/tests/basics.rs +272 -0
  61. rsshogi-1.0.0/crates/rsshogi/src/board/position/tests/cache_view.rs +106 -0
  62. rsshogi-1.0.0/crates/rsshogi/src/board/position/tests/carry_over.rs +98 -0
  63. rsshogi-1.0.0/crates/rsshogi/src/board/position/tests/helpers.rs +10 -0
  64. rsshogi-1.0.0/crates/rsshogi/src/board/position/tests/huffman_coded_pos.rs +53 -0
  65. rsshogi-1.0.0/crates/rsshogi/src/board/position/tests/mod.rs +19 -0
  66. rsshogi-1.0.0/crates/rsshogi/src/board/position/tests/packed_sfen.rs +320 -0
  67. rsshogi-1.0.0/crates/rsshogi/src/board/position/tests/roundtrip.rs +209 -0
  68. rsshogi-1.0.0/crates/rsshogi/src/board/position/tests/rules/declaration_win.rs +322 -0
  69. rsshogi-1.0.0/crates/rsshogi/src/board/position/tests/rules/discovered_checks.rs +67 -0
  70. rsshogi-1.0.0/crates/rsshogi/src/board/position/tests/rules/drops.rs +25 -0
  71. rsshogi-1.0.0/crates/rsshogi/src/board/position/tests/rules/helpers.rs +10 -0
  72. rsshogi-1.0.0/crates/rsshogi/src/board/position/tests/rules/mod.rs +13 -0
  73. rsshogi-1.0.0/crates/rsshogi/src/board/position/tests/rules/repetition.rs +461 -0
  74. rsshogi-1.0.0/crates/rsshogi/src/board/position/tests/rules/split_legality.rs +30 -0
  75. rsshogi-1.0.0/crates/rsshogi/src/board/position/tests/search_substrate.rs +176 -0
  76. rsshogi-1.0.0/crates/rsshogi/src/board/position/tests/sfen_parsing.rs +51 -0
  77. rsshogi-1.0.0/crates/rsshogi/src/board/position/tests/undo.rs +503 -0
  78. rsshogi-1.0.0/crates/rsshogi/src/board/position/tests/validation.rs +182 -0
  79. rsshogi-1.0.0/crates/rsshogi/src/board/position/tests/zobrist.rs +368 -0
  80. rsshogi-1.0.0/crates/rsshogi/src/board/position/types.rs +588 -0
  81. rsshogi-1.0.0/crates/rsshogi/src/board/position/updates.rs +868 -0
  82. rsshogi-1.0.0/crates/rsshogi/src/board/position/validation.rs +233 -0
  83. rsshogi-1.0.0/crates/rsshogi/src/board/state_info/tests/mod.rs +433 -0
  84. rsshogi-1.0.0/crates/rsshogi/src/board/state_info.rs +1087 -0
  85. rsshogi-1.0.0/crates/rsshogi/src/board/test_support.rs +47 -0
  86. rsshogi-1.0.0/crates/rsshogi/src/board/tests/mod.rs +1 -0
  87. rsshogi-1.0.0/crates/rsshogi/src/board/tests/yaneuraou_compat.rs +247 -0
  88. rsshogi-1.0.0/crates/rsshogi/src/board/zobrist.rs +473 -0
  89. rsshogi-1.0.0/crates/rsshogi/src/book/builder.rs +205 -0
  90. rsshogi-1.0.0/crates/rsshogi/src/book/control.rs +12 -0
  91. rsshogi-1.0.0/crates/rsshogi/src/book/database.rs +1353 -0
  92. rsshogi-1.0.0/crates/rsshogi/src/book/error.rs +36 -0
  93. rsshogi-1.0.0/crates/rsshogi/src/book/memory.rs +62 -0
  94. rsshogi-1.0.0/crates/rsshogi/src/book/mod.rs +135 -0
  95. rsshogi-1.0.0/crates/rsshogi/src/book/sbk.rs +2271 -0
  96. rsshogi-1.0.0/crates/rsshogi/src/book/solver.rs +1026 -0
  97. rsshogi-1.0.0/crates/rsshogi/src/book/static_book.rs +393 -0
  98. rsshogi-1.0.0/crates/rsshogi/src/book/types.rs +68 -0
  99. rsshogi-1.0.0/crates/rsshogi/src/book/writer.rs +677 -0
  100. rsshogi-1.0.0/crates/rsshogi/src/book/yaneuraou.rs +1192 -0
  101. rsshogi-1.0.0/crates/rsshogi/src/book/ybb.rs +787 -0
  102. rsshogi-1.0.0/crates/rsshogi/src/labels/mod.rs +7 -0
  103. rsshogi-1.0.0/crates/rsshogi/src/labels/policy.rs +611 -0
  104. rsshogi-1.0.0/crates/rsshogi/src/lib.rs +49 -0
  105. rsshogi-1.0.0/crates/rsshogi/src/mate/mod.rs +44 -0
  106. rsshogi-1.0.0/crates/rsshogi/src/mate/table.rs +549 -0
  107. rsshogi-1.0.0/crates/rsshogi/src/records/error.rs +38 -0
  108. rsshogi-1.0.0/crates/rsshogi/src/records/formats/common.rs +196 -0
  109. rsshogi-1.0.0/crates/rsshogi/src/records/formats/csa.rs +1409 -0
  110. rsshogi-1.0.0/crates/rsshogi/src/records/formats/hcpe.rs +225 -0
  111. rsshogi-1.0.0/crates/rsshogi/src/records/formats/jkf.rs +1340 -0
  112. rsshogi-1.0.0/crates/rsshogi/src/records/formats/kif/bytes.rs +92 -0
  113. rsshogi-1.0.0/crates/rsshogi/src/records/formats/kif/error.rs +28 -0
  114. rsshogi-1.0.0/crates/rsshogi/src/records/formats/kif.rs +3194 -0
  115. rsshogi-1.0.0/crates/rsshogi/src/records/formats/mod.rs +38 -0
  116. rsshogi-1.0.0/crates/rsshogi/src/records/formats/pack.rs +824 -0
  117. rsshogi-1.0.0/crates/rsshogi/src/records/formats/sazpack.rs +12 -0
  118. rsshogi-1.0.0/crates/rsshogi/src/records/formats/sazpack_selfplay.rs +534 -0
  119. rsshogi-1.0.0/crates/rsshogi/src/records/formats/sbinpack.rs +1173 -0
  120. rsshogi-1.0.0/crates/rsshogi/src/records/formats/sfen.rs +3 -0
  121. rsshogi-1.0.0/crates/rsshogi/src/records/formats/traversal.rs +431 -0
  122. rsshogi-1.0.0/crates/rsshogi/src/records/formats/usi.rs +295 -0
  123. rsshogi-1.0.0/crates/rsshogi/src/records/mod.rs +99 -0
  124. rsshogi-1.0.0/crates/rsshogi/src/records/record.rs +1836 -0
  125. rsshogi-1.0.0/crates/rsshogi/src/records/time_control.rs +162 -0
  126. rsshogi-1.0.0/crates/rsshogi/src/simd/mod.rs +4 -0
  127. rsshogi-1.0.0/crates/rsshogi/src/simd/u64x2_ops.rs +222 -0
  128. rsshogi-1.0.0/crates/rsshogi/src/simd/u64x4/avx2.rs +275 -0
  129. rsshogi-1.0.0/crates/rsshogi/src/simd/u64x4/mod.rs +17 -0
  130. rsshogi-1.0.0/crates/rsshogi/src/simd/u64x4/scalar.rs +142 -0
  131. rsshogi-1.0.0/crates/rsshogi/src/simd/u64x4/tests/mod.rs +60 -0
  132. rsshogi-1.0.0/crates/rsshogi/src/types/bitboard/tests/mod.rs +279 -0
  133. rsshogi-1.0.0/crates/rsshogi/src/types/bitboard.rs +970 -0
  134. rsshogi-1.0.0/crates/rsshogi/src/types/color.rs +207 -0
  135. rsshogi-1.0.0/crates/rsshogi/src/types/entering_king_rule.rs +43 -0
  136. rsshogi-1.0.0/crates/rsshogi/src/types/eval.rs +73 -0
  137. rsshogi-1.0.0/crates/rsshogi/src/types/file.rs +258 -0
  138. rsshogi-1.0.0/crates/rsshogi/src/types/game_result.rs +261 -0
  139. rsshogi-1.0.0/crates/rsshogi/src/types/hand.rs +545 -0
  140. rsshogi-1.0.0/crates/rsshogi/src/types/mod.rs +92 -0
  141. rsshogi-1.0.0/crates/rsshogi/src/types/moves.rs +2013 -0
  142. rsshogi-1.0.0/crates/rsshogi/src/types/piece.rs +822 -0
  143. rsshogi-1.0.0/crates/rsshogi/src/types/rank.rs +306 -0
  144. rsshogi-1.0.0/crates/rsshogi/src/types/repetition_state.rs +127 -0
  145. rsshogi-1.0.0/crates/rsshogi/src/types/square.rs +660 -0
  146. rsshogi-1.0.0/crates/rsshogi/tests/hash_primitives.rs +46 -0
  147. rsshogi-1.0.0/crates/rsshogi/tests/movegen_integration.rs +63 -0
  148. rsshogi-1.0.0/crates/rsshogi/tests/movegen_pinned_pieces.rs +53 -0
  149. rsshogi-1.0.0/crates/rsshogi/tests/perft.rs +421 -0
  150. rsshogi-1.0.0/crates/rsshogi/tests/property_apply_move.proptest-regressions +7 -0
  151. rsshogi-1.0.0/crates/rsshogi/tests/property_apply_move.rs +45 -0
  152. rsshogi-1.0.0/crates/rsshogi/tests/test_data/README.md +85 -0
  153. rsshogi-1.0.0/crates/rsshogi/tests/test_data/move_sequences.txt +14 -0
  154. rsshogi-1.0.0/crates/rsshogi/tests/test_data/pack/sample.pack +0 -0
  155. rsshogi-1.0.0/crates/rsshogi/tests/test_data/perft_expectations.json +62 -0
  156. rsshogi-1.0.0/crates/rsshogi/tests/test_data/perft_results.txt +22 -0
  157. rsshogi-1.0.0/crates/rsshogi/tests/test_data/sfen_positions.txt +15 -0
  158. rsshogi-1.0.0/crates/rsshogi/tests/test_data/yaneuraou_legal_moves.json +356 -0
  159. rsshogi-1.0.0/crates/rsshogi/tests/yaneu_compatibility.rs +374 -0
  160. rsshogi-1.0.0/crates/rsshogi-py/Cargo.toml +23 -0
  161. rsshogi-1.0.0/crates/rsshogi-py/LICENSE +21 -0
  162. rsshogi-1.0.0/crates/rsshogi-py/README-avx2.md +27 -0
  163. rsshogi-1.0.0/crates/rsshogi-py/README.md +152 -0
  164. rsshogi-1.0.0/crates/rsshogi-py/pyproject-avx2.toml +27 -0
  165. rsshogi-1.0.0/crates/rsshogi-py/src/book.rs +903 -0
  166. rsshogi-1.0.0/crates/rsshogi-py/src/dtype.rs +65 -0
  167. rsshogi-1.0.0/crates/rsshogi-py/src/lib.rs +5588 -0
  168. rsshogi-1.0.0/crates/rsshogi-py/src/pack.rs +242 -0
  169. rsshogi-1.0.0/crates/rsshogi-py/src/policy.rs +67 -0
  170. rsshogi-1.0.0/crates/rsshogi-py/src/python_types.rs +882 -0
  171. rsshogi-1.0.0/crates/rsshogi-py/src/sazpack.rs +342 -0
  172. rsshogi-1.0.0/crates/rsshogi-py/uv.lock +7 -0
  173. rsshogi-1.0.0/pyproject.toml +26 -0
  174. rsshogi-1.0.0/python/rsshogi/__init__.py +61 -0
  175. rsshogi-1.0.0/python/rsshogi/book.py +45 -0
  176. rsshogi-1.0.0/python/rsshogi/book.pyi +240 -0
  177. rsshogi-1.0.0/python/rsshogi/core.py +41 -0
  178. rsshogi-1.0.0/python/rsshogi/core.pyi +329 -0
  179. rsshogi-1.0.0/python/rsshogi/initial_positions.py +63 -0
  180. rsshogi-1.0.0/python/rsshogi/numpy.py +16 -0
  181. rsshogi-1.0.0/python/rsshogi/numpy.pyi +12 -0
  182. rsshogi-1.0.0/python/rsshogi/policy.py +44 -0
  183. rsshogi-1.0.0/python/rsshogi/policy.pyi +29 -0
  184. rsshogi-1.0.0/python/rsshogi/py.typed +1 -0
  185. rsshogi-1.0.0/python/rsshogi/record.py +182 -0
  186. rsshogi-1.0.0/python/rsshogi/record.pyi +476 -0
  187. rsshogi-1.0.0/python/rsshogi/sazpack.py +23 -0
  188. rsshogi-1.0.0/python/rsshogi/sazpack.pyi +103 -0
  189. rsshogi-1.0.0/python/rsshogi/svg.py +5 -0
  190. rsshogi-1.0.0/python/rsshogi/svg.pyi +10 -0
  191. rsshogi-1.0.0/python/rsshogi/types.py +23 -0
  192. rsshogi-1.0.0/python/rsshogi/types.pyi +183 -0
  193. rsshogi-1.0.0/python/rsshogi/usi.py +228 -0
  194. rsshogi-1.0.0/python/rsshogi/usi.pyi +97 -0
@@ -0,0 +1,844 @@
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.3"
8
+ source = "registry+https://github.com/rust-lang/crates.io-index"
9
+ checksum = "8e60d3430d3a69478ad0993f19238d2df97c507009a52b3c10addcd7f6bcb916"
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 = "anstyle"
22
+ version = "1.0.13"
23
+ source = "registry+https://github.com/rust-lang/crates.io-index"
24
+ checksum = "5192cca8006f1fd4f7237516f40fa183bb07f8fbdfedaa0036de5ea9b0b45e78"
25
+
26
+ [[package]]
27
+ name = "autocfg"
28
+ version = "1.5.0"
29
+ source = "registry+https://github.com/rust-lang/crates.io-index"
30
+ checksum = "c08606f8c3cbf4ce6ec8e28fb0014a2c086708fe954eaa885384a6165172e7e8"
31
+
32
+ [[package]]
33
+ name = "bitflags"
34
+ version = "2.9.4"
35
+ source = "registry+https://github.com/rust-lang/crates.io-index"
36
+ checksum = "2261d10cca569e4643e526d8dc2e62e433cc8aba21ab764233731f8d369bf394"
37
+
38
+ [[package]]
39
+ name = "cast"
40
+ version = "0.3.0"
41
+ source = "registry+https://github.com/rust-lang/crates.io-index"
42
+ checksum = "37b2a672a2cb129a2e41c10b1224bb368f9f37a2b16b612598138befd7b37eb5"
43
+
44
+ [[package]]
45
+ name = "cfg-if"
46
+ version = "1.0.3"
47
+ source = "registry+https://github.com/rust-lang/crates.io-index"
48
+ checksum = "2fd1289c04a9ea8cb22300a459a72a385d7c73d3259e2ed7dcb2af674838cfa9"
49
+
50
+ [[package]]
51
+ name = "ciborium"
52
+ version = "0.2.2"
53
+ source = "registry+https://github.com/rust-lang/crates.io-index"
54
+ checksum = "42e69ffd6f0917f5c029256a24d0161db17cea3997d185db0d35926308770f0e"
55
+ dependencies = [
56
+ "ciborium-io",
57
+ "ciborium-ll",
58
+ "serde",
59
+ ]
60
+
61
+ [[package]]
62
+ name = "ciborium-io"
63
+ version = "0.2.2"
64
+ source = "registry+https://github.com/rust-lang/crates.io-index"
65
+ checksum = "05afea1e0a06c9be33d539b876f1ce3692f4afea2cb41f740e7743225ed1c757"
66
+
67
+ [[package]]
68
+ name = "ciborium-ll"
69
+ version = "0.2.2"
70
+ source = "registry+https://github.com/rust-lang/crates.io-index"
71
+ checksum = "57663b653d948a338bfb3eeba9bb2fd5fcfaecb9e199e87e1eda4d9e8b240fd9"
72
+ dependencies = [
73
+ "ciborium-io",
74
+ "half",
75
+ ]
76
+
77
+ [[package]]
78
+ name = "clap"
79
+ version = "4.5.48"
80
+ source = "registry+https://github.com/rust-lang/crates.io-index"
81
+ checksum = "e2134bb3ea021b78629caa971416385309e0131b351b25e01dc16fb54e1b5fae"
82
+ dependencies = [
83
+ "clap_builder",
84
+ ]
85
+
86
+ [[package]]
87
+ name = "clap_builder"
88
+ version = "4.5.48"
89
+ source = "registry+https://github.com/rust-lang/crates.io-index"
90
+ checksum = "c2ba64afa3c0a6df7fa517765e31314e983f51dda798ffba27b988194fb65dc9"
91
+ dependencies = [
92
+ "anstyle",
93
+ "clap_lex",
94
+ ]
95
+
96
+ [[package]]
97
+ name = "clap_lex"
98
+ version = "0.7.5"
99
+ source = "registry+https://github.com/rust-lang/crates.io-index"
100
+ checksum = "b94f61472cee1439c0b966b47e3aca9ae07e45d070759512cd390ea2bebc6675"
101
+
102
+ [[package]]
103
+ name = "criterion"
104
+ version = "0.5.1"
105
+ source = "registry+https://github.com/rust-lang/crates.io-index"
106
+ checksum = "f2b12d017a929603d80db1831cd3a24082f8137ce19c69e6447f54f5fc8d692f"
107
+ dependencies = [
108
+ "anes",
109
+ "cast",
110
+ "ciborium",
111
+ "clap",
112
+ "criterion-plot",
113
+ "is-terminal",
114
+ "itertools",
115
+ "num-traits",
116
+ "once_cell",
117
+ "oorandom",
118
+ "regex",
119
+ "serde",
120
+ "serde_derive",
121
+ "serde_json",
122
+ "tinytemplate",
123
+ "walkdir",
124
+ ]
125
+
126
+ [[package]]
127
+ name = "criterion-plot"
128
+ version = "0.5.0"
129
+ source = "registry+https://github.com/rust-lang/crates.io-index"
130
+ checksum = "6b50826342786a51a89e2da3a28f1c32b06e387201bc2d19791f622c673706b1"
131
+ dependencies = [
132
+ "cast",
133
+ "itertools",
134
+ ]
135
+
136
+ [[package]]
137
+ name = "crunchy"
138
+ version = "0.2.4"
139
+ source = "registry+https://github.com/rust-lang/crates.io-index"
140
+ checksum = "460fbee9c2c2f33933d720630a6a0bac33ba7053db5344fac858d4b8952d77d5"
141
+
142
+ [[package]]
143
+ name = "either"
144
+ version = "1.15.0"
145
+ source = "registry+https://github.com/rust-lang/crates.io-index"
146
+ checksum = "48c757948c5ede0e46177b7add2e67155f70e33c07fea8284df6576da70b3719"
147
+
148
+ [[package]]
149
+ name = "encoding_rs"
150
+ version = "0.8.35"
151
+ source = "registry+https://github.com/rust-lang/crates.io-index"
152
+ checksum = "75030f3c4f45dafd7586dd6780965a8c7e8e285a5ecb86713e63a79c5b2766f3"
153
+ dependencies = [
154
+ "cfg-if",
155
+ ]
156
+
157
+ [[package]]
158
+ name = "getrandom"
159
+ version = "0.3.3"
160
+ source = "registry+https://github.com/rust-lang/crates.io-index"
161
+ checksum = "26145e563e54f2cadc477553f1ec5ee650b00862f0a58bcd12cbdc5f0ea2d2f4"
162
+ dependencies = [
163
+ "cfg-if",
164
+ "libc",
165
+ "r-efi",
166
+ "wasi",
167
+ ]
168
+
169
+ [[package]]
170
+ name = "half"
171
+ version = "2.6.0"
172
+ source = "registry+https://github.com/rust-lang/crates.io-index"
173
+ checksum = "459196ed295495a68f7d7fe1d84f6c4b7ff0e21fe3017b2f283c6fac3ad803c9"
174
+ dependencies = [
175
+ "cfg-if",
176
+ "crunchy",
177
+ ]
178
+
179
+ [[package]]
180
+ name = "heck"
181
+ version = "0.5.0"
182
+ source = "registry+https://github.com/rust-lang/crates.io-index"
183
+ checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea"
184
+
185
+ [[package]]
186
+ name = "hermit-abi"
187
+ version = "0.5.2"
188
+ source = "registry+https://github.com/rust-lang/crates.io-index"
189
+ checksum = "fc0fef456e4baa96da950455cd02c081ca953b141298e41db3fc7e36b1da849c"
190
+
191
+ [[package]]
192
+ name = "indoc"
193
+ version = "2.0.7"
194
+ source = "registry+https://github.com/rust-lang/crates.io-index"
195
+ checksum = "79cf5c93f93228cf8efb3ba362535fb11199ac548a09ce117c9b1adc3030d706"
196
+ dependencies = [
197
+ "rustversion",
198
+ ]
199
+
200
+ [[package]]
201
+ name = "is-terminal"
202
+ version = "0.4.16"
203
+ source = "registry+https://github.com/rust-lang/crates.io-index"
204
+ checksum = "e04d7f318608d35d4b61ddd75cbdaee86b023ebe2bd5a66ee0915f0bf93095a9"
205
+ dependencies = [
206
+ "hermit-abi",
207
+ "libc",
208
+ "windows-sys 0.59.0",
209
+ ]
210
+
211
+ [[package]]
212
+ name = "itertools"
213
+ version = "0.10.5"
214
+ source = "registry+https://github.com/rust-lang/crates.io-index"
215
+ checksum = "b0fd2260e829bddf4cb6ea802289de2f86d6a7a690192fbe91b3f46e0f2c8473"
216
+ dependencies = [
217
+ "either",
218
+ ]
219
+
220
+ [[package]]
221
+ name = "itoa"
222
+ version = "1.0.15"
223
+ source = "registry+https://github.com/rust-lang/crates.io-index"
224
+ checksum = "4a5f13b858c8d314ee3e8f639011f7ccefe71f97f96e50151fb991f267928e2c"
225
+
226
+ [[package]]
227
+ name = "lazy_static"
228
+ version = "1.5.0"
229
+ source = "registry+https://github.com/rust-lang/crates.io-index"
230
+ checksum = "bbd2bcb4c963f2ddae06a2efc7e9f3591312473c50c6685e1f298068316e66fe"
231
+
232
+ [[package]]
233
+ name = "libc"
234
+ version = "0.2.176"
235
+ source = "registry+https://github.com/rust-lang/crates.io-index"
236
+ checksum = "58f929b4d672ea937a23a1ab494143d968337a5f47e56d0815df1e0890ddf174"
237
+
238
+ [[package]]
239
+ name = "log"
240
+ version = "0.4.28"
241
+ source = "registry+https://github.com/rust-lang/crates.io-index"
242
+ checksum = "34080505efa8e45a4b816c349525ebe327ceaa8559756f0356cba97ef3bf7432"
243
+
244
+ [[package]]
245
+ name = "memchr"
246
+ version = "2.7.6"
247
+ source = "registry+https://github.com/rust-lang/crates.io-index"
248
+ checksum = "f52b00d39961fc5b2736ea853c9cc86238e165017a493d1d5c8eac6bdc4cc273"
249
+
250
+ [[package]]
251
+ name = "memoffset"
252
+ version = "0.9.1"
253
+ source = "registry+https://github.com/rust-lang/crates.io-index"
254
+ checksum = "488016bfae457b036d996092f6cb448677611ce4449e970ceaf42695203f218a"
255
+ dependencies = [
256
+ "autocfg",
257
+ ]
258
+
259
+ [[package]]
260
+ name = "num-traits"
261
+ version = "0.2.19"
262
+ source = "registry+https://github.com/rust-lang/crates.io-index"
263
+ checksum = "071dfc062690e90b734c0b2273ce72ad0ffa95f0c74596bc250dcfd960262841"
264
+ dependencies = [
265
+ "autocfg",
266
+ ]
267
+
268
+ [[package]]
269
+ name = "once_cell"
270
+ version = "1.21.3"
271
+ source = "registry+https://github.com/rust-lang/crates.io-index"
272
+ checksum = "42f5e15c9953c5e4ccceeb2e7382a716482c34515315f7b03532b8b4e8393d2d"
273
+
274
+ [[package]]
275
+ name = "oorandom"
276
+ version = "11.1.5"
277
+ source = "registry+https://github.com/rust-lang/crates.io-index"
278
+ checksum = "d6790f58c7ff633d8771f42965289203411a5e5c68388703c06e14f24770b41e"
279
+
280
+ [[package]]
281
+ name = "ordered-float"
282
+ version = "4.6.0"
283
+ source = "registry+https://github.com/rust-lang/crates.io-index"
284
+ checksum = "7bb71e1b3fa6ca1c61f383464aaf2bb0e2f8e772a1f01d486832464de363b951"
285
+ dependencies = [
286
+ "num-traits",
287
+ ]
288
+
289
+ [[package]]
290
+ name = "portable-atomic"
291
+ version = "1.13.0"
292
+ source = "registry+https://github.com/rust-lang/crates.io-index"
293
+ checksum = "f89776e4d69bb58bc6993e99ffa1d11f228b839984854c7daeb5d37f87cbe950"
294
+
295
+ [[package]]
296
+ name = "ppv-lite86"
297
+ version = "0.2.21"
298
+ source = "registry+https://github.com/rust-lang/crates.io-index"
299
+ checksum = "85eae3c4ed2f50dcfe72643da4befc30deadb458a9b590d720cde2f2b1e97da9"
300
+ dependencies = [
301
+ "zerocopy",
302
+ ]
303
+
304
+ [[package]]
305
+ name = "proc-macro2"
306
+ version = "1.0.101"
307
+ source = "registry+https://github.com/rust-lang/crates.io-index"
308
+ checksum = "89ae43fd86e4158d6db51ad8e2b80f313af9cc74f5c0e03ccb87de09998732de"
309
+ dependencies = [
310
+ "unicode-ident",
311
+ ]
312
+
313
+ [[package]]
314
+ name = "proptest"
315
+ version = "1.8.0"
316
+ source = "registry+https://github.com/rust-lang/crates.io-index"
317
+ checksum = "2bb0be07becd10686a0bb407298fb425360a5c44a663774406340c59a22de4ce"
318
+ dependencies = [
319
+ "bitflags",
320
+ "lazy_static",
321
+ "num-traits",
322
+ "rand",
323
+ "rand_chacha",
324
+ "rand_xorshift",
325
+ "regex-syntax",
326
+ "unarray",
327
+ ]
328
+
329
+ [[package]]
330
+ name = "pyo3"
331
+ version = "0.27.2"
332
+ source = "registry+https://github.com/rust-lang/crates.io-index"
333
+ checksum = "ab53c047fcd1a1d2a8820fe84f05d6be69e9526be40cb03b73f86b6b03e6d87d"
334
+ dependencies = [
335
+ "indoc",
336
+ "libc",
337
+ "memoffset",
338
+ "once_cell",
339
+ "portable-atomic",
340
+ "pyo3-build-config",
341
+ "pyo3-ffi",
342
+ "pyo3-macros",
343
+ "unindent",
344
+ ]
345
+
346
+ [[package]]
347
+ name = "pyo3-build-config"
348
+ version = "0.27.2"
349
+ source = "registry+https://github.com/rust-lang/crates.io-index"
350
+ checksum = "b455933107de8642b4487ed26d912c2d899dec6114884214a0b3bb3be9261ea6"
351
+ dependencies = [
352
+ "target-lexicon",
353
+ ]
354
+
355
+ [[package]]
356
+ name = "pyo3-ffi"
357
+ version = "0.27.2"
358
+ source = "registry+https://github.com/rust-lang/crates.io-index"
359
+ checksum = "1c85c9cbfaddf651b1221594209aed57e9e5cff63c4d11d1feead529b872a089"
360
+ dependencies = [
361
+ "libc",
362
+ "pyo3-build-config",
363
+ ]
364
+
365
+ [[package]]
366
+ name = "pyo3-macros"
367
+ version = "0.27.2"
368
+ source = "registry+https://github.com/rust-lang/crates.io-index"
369
+ checksum = "0a5b10c9bf9888125d917fb4d2ca2d25c8df94c7ab5a52e13313a07e050a3b02"
370
+ dependencies = [
371
+ "proc-macro2",
372
+ "pyo3-macros-backend",
373
+ "quote",
374
+ "syn",
375
+ ]
376
+
377
+ [[package]]
378
+ name = "pyo3-macros-backend"
379
+ version = "0.27.2"
380
+ source = "registry+https://github.com/rust-lang/crates.io-index"
381
+ checksum = "03b51720d314836e53327f5871d4c0cfb4fb37cc2c4a11cc71907a86342c40f9"
382
+ dependencies = [
383
+ "heck",
384
+ "proc-macro2",
385
+ "pyo3-build-config",
386
+ "quote",
387
+ "syn",
388
+ ]
389
+
390
+ [[package]]
391
+ name = "quote"
392
+ version = "1.0.41"
393
+ source = "registry+https://github.com/rust-lang/crates.io-index"
394
+ checksum = "ce25767e7b499d1b604768e7cde645d14cc8584231ea6b295e9c9eb22c02e1d1"
395
+ dependencies = [
396
+ "proc-macro2",
397
+ ]
398
+
399
+ [[package]]
400
+ name = "r-efi"
401
+ version = "5.3.0"
402
+ source = "registry+https://github.com/rust-lang/crates.io-index"
403
+ checksum = "69cdb34c158ceb288df11e18b4bd39de994f6657d83847bdffdbd7f346754b0f"
404
+
405
+ [[package]]
406
+ name = "rand"
407
+ version = "0.9.2"
408
+ source = "registry+https://github.com/rust-lang/crates.io-index"
409
+ checksum = "6db2770f06117d490610c7488547d543617b21bfa07796d7a12f6f1bd53850d1"
410
+ dependencies = [
411
+ "rand_chacha",
412
+ "rand_core",
413
+ ]
414
+
415
+ [[package]]
416
+ name = "rand_chacha"
417
+ version = "0.9.0"
418
+ source = "registry+https://github.com/rust-lang/crates.io-index"
419
+ checksum = "d3022b5f1df60f26e1ffddd6c66e8aa15de382ae63b3a0c1bfc0e4d3e3f325cb"
420
+ dependencies = [
421
+ "ppv-lite86",
422
+ "rand_core",
423
+ ]
424
+
425
+ [[package]]
426
+ name = "rand_core"
427
+ version = "0.9.3"
428
+ source = "registry+https://github.com/rust-lang/crates.io-index"
429
+ checksum = "99d9a13982dcf210057a8a78572b2217b667c3beacbf3a0d8b454f6f82837d38"
430
+ dependencies = [
431
+ "getrandom",
432
+ ]
433
+
434
+ [[package]]
435
+ name = "rand_xorshift"
436
+ version = "0.4.0"
437
+ source = "registry+https://github.com/rust-lang/crates.io-index"
438
+ checksum = "513962919efc330f829edb2535844d1b912b0fbe2ca165d613e4e8788bb05a5a"
439
+ dependencies = [
440
+ "rand_core",
441
+ ]
442
+
443
+ [[package]]
444
+ name = "regex"
445
+ version = "1.11.3"
446
+ source = "registry+https://github.com/rust-lang/crates.io-index"
447
+ checksum = "8b5288124840bee7b386bc413c487869b360b2b4ec421ea56425128692f2a82c"
448
+ dependencies = [
449
+ "aho-corasick",
450
+ "memchr",
451
+ "regex-automata",
452
+ "regex-syntax",
453
+ ]
454
+
455
+ [[package]]
456
+ name = "regex-automata"
457
+ version = "0.4.11"
458
+ source = "registry+https://github.com/rust-lang/crates.io-index"
459
+ checksum = "833eb9ce86d40ef33cb1306d8accf7bc8ec2bfea4355cbdebb3df68b40925cad"
460
+ dependencies = [
461
+ "aho-corasick",
462
+ "memchr",
463
+ "regex-syntax",
464
+ ]
465
+
466
+ [[package]]
467
+ name = "regex-syntax"
468
+ version = "0.8.6"
469
+ source = "registry+https://github.com/rust-lang/crates.io-index"
470
+ checksum = "caf4aa5b0f434c91fe5c7f1ecb6a5ece2130b02ad2a590589dda5146df959001"
471
+
472
+ [[package]]
473
+ name = "rsshogi"
474
+ version = "1.0.0"
475
+ dependencies = [
476
+ "criterion",
477
+ "encoding_rs",
478
+ "log",
479
+ "ordered-float",
480
+ "proptest",
481
+ "serde",
482
+ "serde_json",
483
+ "shogi_core",
484
+ "thiserror",
485
+ ]
486
+
487
+ [[package]]
488
+ name = "rsshogi-py"
489
+ version = "1.0.0"
490
+ dependencies = [
491
+ "pyo3",
492
+ "rsshogi",
493
+ ]
494
+
495
+ [[package]]
496
+ name = "rustversion"
497
+ version = "1.0.22"
498
+ source = "registry+https://github.com/rust-lang/crates.io-index"
499
+ checksum = "b39cdef0fa800fc44525c84ccb54a029961a8215f9619753635a9c0d2538d46d"
500
+
501
+ [[package]]
502
+ name = "ryu"
503
+ version = "1.0.20"
504
+ source = "registry+https://github.com/rust-lang/crates.io-index"
505
+ checksum = "28d3b2b1366ec20994f1fd18c3c594f05c5dd4bc44d8bb0c1c632c8d6829481f"
506
+
507
+ [[package]]
508
+ name = "same-file"
509
+ version = "1.0.6"
510
+ source = "registry+https://github.com/rust-lang/crates.io-index"
511
+ checksum = "93fc1dc3aaa9bfed95e02e6eadabb4baf7e3078b0bd1b4d7b6b0b68378900502"
512
+ dependencies = [
513
+ "winapi-util",
514
+ ]
515
+
516
+ [[package]]
517
+ name = "serde"
518
+ version = "1.0.228"
519
+ source = "registry+https://github.com/rust-lang/crates.io-index"
520
+ checksum = "9a8e94ea7f378bd32cbbd37198a4a91436180c5bb472411e48b5ec2e2124ae9e"
521
+ dependencies = [
522
+ "serde_core",
523
+ "serde_derive",
524
+ ]
525
+
526
+ [[package]]
527
+ name = "serde_core"
528
+ version = "1.0.228"
529
+ source = "registry+https://github.com/rust-lang/crates.io-index"
530
+ checksum = "41d385c7d4ca58e59fc732af25c3983b67ac852c1a25000afe1175de458b67ad"
531
+ dependencies = [
532
+ "serde_derive",
533
+ ]
534
+
535
+ [[package]]
536
+ name = "serde_derive"
537
+ version = "1.0.228"
538
+ source = "registry+https://github.com/rust-lang/crates.io-index"
539
+ checksum = "d540f220d3187173da220f885ab66608367b6574e925011a9353e4badda91d79"
540
+ dependencies = [
541
+ "proc-macro2",
542
+ "quote",
543
+ "syn",
544
+ ]
545
+
546
+ [[package]]
547
+ name = "serde_json"
548
+ version = "1.0.145"
549
+ source = "registry+https://github.com/rust-lang/crates.io-index"
550
+ checksum = "402a6f66d8c709116cf22f558eab210f5a50187f702eb4d7e5ef38d9a7f1c79c"
551
+ dependencies = [
552
+ "itoa",
553
+ "memchr",
554
+ "ryu",
555
+ "serde",
556
+ "serde_core",
557
+ ]
558
+
559
+ [[package]]
560
+ name = "shogi_core"
561
+ version = "0.1.5"
562
+ source = "registry+https://github.com/rust-lang/crates.io-index"
563
+ checksum = "3d0a7de4ff7c66bf0b6346bda1d530c94a496f8aa3317938923886c58191aa14"
564
+
565
+ [[package]]
566
+ name = "syn"
567
+ version = "2.0.106"
568
+ source = "registry+https://github.com/rust-lang/crates.io-index"
569
+ checksum = "ede7c438028d4436d71104916910f5bb611972c5cfd7f89b8300a8186e6fada6"
570
+ dependencies = [
571
+ "proc-macro2",
572
+ "quote",
573
+ "unicode-ident",
574
+ ]
575
+
576
+ [[package]]
577
+ name = "target-lexicon"
578
+ version = "0.13.4"
579
+ source = "registry+https://github.com/rust-lang/crates.io-index"
580
+ checksum = "b1dd07eb858a2067e2f3c7155d54e929265c264e6f37efe3ee7a8d1b5a1dd0ba"
581
+
582
+ [[package]]
583
+ name = "thiserror"
584
+ version = "2.0.18"
585
+ source = "registry+https://github.com/rust-lang/crates.io-index"
586
+ checksum = "4288b5bcbc7920c07a1149a35cf9590a2aa808e0bc1eafaade0b80947865fbc4"
587
+ dependencies = [
588
+ "thiserror-impl",
589
+ ]
590
+
591
+ [[package]]
592
+ name = "thiserror-impl"
593
+ version = "2.0.18"
594
+ source = "registry+https://github.com/rust-lang/crates.io-index"
595
+ checksum = "ebc4ee7f67670e9b64d05fa4253e753e016c6c95ff35b89b7941d6b856dec1d5"
596
+ dependencies = [
597
+ "proc-macro2",
598
+ "quote",
599
+ "syn",
600
+ ]
601
+
602
+ [[package]]
603
+ name = "tinytemplate"
604
+ version = "1.2.1"
605
+ source = "registry+https://github.com/rust-lang/crates.io-index"
606
+ checksum = "be4d6b5f19ff7664e8c98d03e2139cb510db9b0a60b55f8e8709b689d939b6bc"
607
+ dependencies = [
608
+ "serde",
609
+ "serde_json",
610
+ ]
611
+
612
+ [[package]]
613
+ name = "unarray"
614
+ version = "0.1.4"
615
+ source = "registry+https://github.com/rust-lang/crates.io-index"
616
+ checksum = "eaea85b334db583fe3274d12b4cd1880032beab409c0d774be044d4480ab9a94"
617
+
618
+ [[package]]
619
+ name = "unicode-ident"
620
+ version = "1.0.19"
621
+ source = "registry+https://github.com/rust-lang/crates.io-index"
622
+ checksum = "f63a545481291138910575129486daeaf8ac54aee4387fe7906919f7830c7d9d"
623
+
624
+ [[package]]
625
+ name = "unindent"
626
+ version = "0.2.4"
627
+ source = "registry+https://github.com/rust-lang/crates.io-index"
628
+ checksum = "7264e107f553ccae879d21fbea1d6724ac785e8c3bfc762137959b5802826ef3"
629
+
630
+ [[package]]
631
+ name = "walkdir"
632
+ version = "2.5.0"
633
+ source = "registry+https://github.com/rust-lang/crates.io-index"
634
+ checksum = "29790946404f91d9c5d06f9874efddea1dc06c5efe94541a7d6863108e3a5e4b"
635
+ dependencies = [
636
+ "same-file",
637
+ "winapi-util",
638
+ ]
639
+
640
+ [[package]]
641
+ name = "wasi"
642
+ version = "0.14.7+wasi-0.2.4"
643
+ source = "registry+https://github.com/rust-lang/crates.io-index"
644
+ checksum = "883478de20367e224c0090af9cf5f9fa85bed63a95c1abf3afc5c083ebc06e8c"
645
+ dependencies = [
646
+ "wasip2",
647
+ ]
648
+
649
+ [[package]]
650
+ name = "wasip2"
651
+ version = "1.0.1+wasi-0.2.4"
652
+ source = "registry+https://github.com/rust-lang/crates.io-index"
653
+ checksum = "0562428422c63773dad2c345a1882263bbf4d65cf3f42e90921f787ef5ad58e7"
654
+ dependencies = [
655
+ "wit-bindgen",
656
+ ]
657
+
658
+ [[package]]
659
+ name = "winapi-util"
660
+ version = "0.1.11"
661
+ source = "registry+https://github.com/rust-lang/crates.io-index"
662
+ checksum = "c2a7b1c03c876122aa43f3020e6c3c3ee5c05081c9a00739faf7503aeba10d22"
663
+ dependencies = [
664
+ "windows-sys 0.60.2",
665
+ ]
666
+
667
+ [[package]]
668
+ name = "windows-link"
669
+ version = "0.2.0"
670
+ source = "registry+https://github.com/rust-lang/crates.io-index"
671
+ checksum = "45e46c0661abb7180e7b9c281db115305d49ca1709ab8242adf09666d2173c65"
672
+
673
+ [[package]]
674
+ name = "windows-sys"
675
+ version = "0.59.0"
676
+ source = "registry+https://github.com/rust-lang/crates.io-index"
677
+ checksum = "1e38bc4d79ed67fd075bcc251a1c39b32a1776bbe92e5bef1f0bf1f8c531853b"
678
+ dependencies = [
679
+ "windows-targets 0.52.6",
680
+ ]
681
+
682
+ [[package]]
683
+ name = "windows-sys"
684
+ version = "0.60.2"
685
+ source = "registry+https://github.com/rust-lang/crates.io-index"
686
+ checksum = "f2f500e4d28234f72040990ec9d39e3a6b950f9f22d3dba18416c35882612bcb"
687
+ dependencies = [
688
+ "windows-targets 0.53.4",
689
+ ]
690
+
691
+ [[package]]
692
+ name = "windows-targets"
693
+ version = "0.52.6"
694
+ source = "registry+https://github.com/rust-lang/crates.io-index"
695
+ checksum = "9b724f72796e036ab90c1021d4780d4d3d648aca59e491e6b98e725b84e99973"
696
+ dependencies = [
697
+ "windows_aarch64_gnullvm 0.52.6",
698
+ "windows_aarch64_msvc 0.52.6",
699
+ "windows_i686_gnu 0.52.6",
700
+ "windows_i686_gnullvm 0.52.6",
701
+ "windows_i686_msvc 0.52.6",
702
+ "windows_x86_64_gnu 0.52.6",
703
+ "windows_x86_64_gnullvm 0.52.6",
704
+ "windows_x86_64_msvc 0.52.6",
705
+ ]
706
+
707
+ [[package]]
708
+ name = "windows-targets"
709
+ version = "0.53.4"
710
+ source = "registry+https://github.com/rust-lang/crates.io-index"
711
+ checksum = "2d42b7b7f66d2a06854650af09cfdf8713e427a439c97ad65a6375318033ac4b"
712
+ dependencies = [
713
+ "windows-link",
714
+ "windows_aarch64_gnullvm 0.53.0",
715
+ "windows_aarch64_msvc 0.53.0",
716
+ "windows_i686_gnu 0.53.0",
717
+ "windows_i686_gnullvm 0.53.0",
718
+ "windows_i686_msvc 0.53.0",
719
+ "windows_x86_64_gnu 0.53.0",
720
+ "windows_x86_64_gnullvm 0.53.0",
721
+ "windows_x86_64_msvc 0.53.0",
722
+ ]
723
+
724
+ [[package]]
725
+ name = "windows_aarch64_gnullvm"
726
+ version = "0.52.6"
727
+ source = "registry+https://github.com/rust-lang/crates.io-index"
728
+ checksum = "32a4622180e7a0ec044bb555404c800bc9fd9ec262ec147edd5989ccd0c02cd3"
729
+
730
+ [[package]]
731
+ name = "windows_aarch64_gnullvm"
732
+ version = "0.53.0"
733
+ source = "registry+https://github.com/rust-lang/crates.io-index"
734
+ checksum = "86b8d5f90ddd19cb4a147a5fa63ca848db3df085e25fee3cc10b39b6eebae764"
735
+
736
+ [[package]]
737
+ name = "windows_aarch64_msvc"
738
+ version = "0.52.6"
739
+ source = "registry+https://github.com/rust-lang/crates.io-index"
740
+ checksum = "09ec2a7bb152e2252b53fa7803150007879548bc709c039df7627cabbd05d469"
741
+
742
+ [[package]]
743
+ name = "windows_aarch64_msvc"
744
+ version = "0.53.0"
745
+ source = "registry+https://github.com/rust-lang/crates.io-index"
746
+ checksum = "c7651a1f62a11b8cbd5e0d42526e55f2c99886c77e007179efff86c2b137e66c"
747
+
748
+ [[package]]
749
+ name = "windows_i686_gnu"
750
+ version = "0.52.6"
751
+ source = "registry+https://github.com/rust-lang/crates.io-index"
752
+ checksum = "8e9b5ad5ab802e97eb8e295ac6720e509ee4c243f69d781394014ebfe8bbfa0b"
753
+
754
+ [[package]]
755
+ name = "windows_i686_gnu"
756
+ version = "0.53.0"
757
+ source = "registry+https://github.com/rust-lang/crates.io-index"
758
+ checksum = "c1dc67659d35f387f5f6c479dc4e28f1d4bb90ddd1a5d3da2e5d97b42d6272c3"
759
+
760
+ [[package]]
761
+ name = "windows_i686_gnullvm"
762
+ version = "0.52.6"
763
+ source = "registry+https://github.com/rust-lang/crates.io-index"
764
+ checksum = "0eee52d38c090b3caa76c563b86c3a4bd71ef1a819287c19d586d7334ae8ed66"
765
+
766
+ [[package]]
767
+ name = "windows_i686_gnullvm"
768
+ version = "0.53.0"
769
+ source = "registry+https://github.com/rust-lang/crates.io-index"
770
+ checksum = "9ce6ccbdedbf6d6354471319e781c0dfef054c81fbc7cf83f338a4296c0cae11"
771
+
772
+ [[package]]
773
+ name = "windows_i686_msvc"
774
+ version = "0.52.6"
775
+ source = "registry+https://github.com/rust-lang/crates.io-index"
776
+ checksum = "240948bc05c5e7c6dabba28bf89d89ffce3e303022809e73deaefe4f6ec56c66"
777
+
778
+ [[package]]
779
+ name = "windows_i686_msvc"
780
+ version = "0.53.0"
781
+ source = "registry+https://github.com/rust-lang/crates.io-index"
782
+ checksum = "581fee95406bb13382d2f65cd4a908ca7b1e4c2f1917f143ba16efe98a589b5d"
783
+
784
+ [[package]]
785
+ name = "windows_x86_64_gnu"
786
+ version = "0.52.6"
787
+ source = "registry+https://github.com/rust-lang/crates.io-index"
788
+ checksum = "147a5c80aabfbf0c7d901cb5895d1de30ef2907eb21fbbab29ca94c5b08b1a78"
789
+
790
+ [[package]]
791
+ name = "windows_x86_64_gnu"
792
+ version = "0.53.0"
793
+ source = "registry+https://github.com/rust-lang/crates.io-index"
794
+ checksum = "2e55b5ac9ea33f2fc1716d1742db15574fd6fc8dadc51caab1c16a3d3b4190ba"
795
+
796
+ [[package]]
797
+ name = "windows_x86_64_gnullvm"
798
+ version = "0.52.6"
799
+ source = "registry+https://github.com/rust-lang/crates.io-index"
800
+ checksum = "24d5b23dc417412679681396f2b49f3de8c1473deb516bd34410872eff51ed0d"
801
+
802
+ [[package]]
803
+ name = "windows_x86_64_gnullvm"
804
+ version = "0.53.0"
805
+ source = "registry+https://github.com/rust-lang/crates.io-index"
806
+ checksum = "0a6e035dd0599267ce1ee132e51c27dd29437f63325753051e71dd9e42406c57"
807
+
808
+ [[package]]
809
+ name = "windows_x86_64_msvc"
810
+ version = "0.52.6"
811
+ source = "registry+https://github.com/rust-lang/crates.io-index"
812
+ checksum = "589f6da84c646204747d1270a2a5661ea66ed1cced2631d546fdfb155959f9ec"
813
+
814
+ [[package]]
815
+ name = "windows_x86_64_msvc"
816
+ version = "0.53.0"
817
+ source = "registry+https://github.com/rust-lang/crates.io-index"
818
+ checksum = "271414315aff87387382ec3d271b52d7ae78726f5d44ac98b4f4030c91880486"
819
+
820
+ [[package]]
821
+ name = "wit-bindgen"
822
+ version = "0.46.0"
823
+ source = "registry+https://github.com/rust-lang/crates.io-index"
824
+ checksum = "f17a85883d4e6d00e8a97c586de764dabcc06133f7f1d55dce5cdc070ad7fe59"
825
+
826
+ [[package]]
827
+ name = "zerocopy"
828
+ version = "0.8.27"
829
+ source = "registry+https://github.com/rust-lang/crates.io-index"
830
+ checksum = "0894878a5fa3edfd6da3f88c4805f4c8558e2b996227a3d864f47fe11e38282c"
831
+ dependencies = [
832
+ "zerocopy-derive",
833
+ ]
834
+
835
+ [[package]]
836
+ name = "zerocopy-derive"
837
+ version = "0.8.27"
838
+ source = "registry+https://github.com/rust-lang/crates.io-index"
839
+ checksum = "88d2b8d9c68ad2b9e4340d7832716a4d21a22a1154777ad56ea55c51a9cf3831"
840
+ dependencies = [
841
+ "proc-macro2",
842
+ "quote",
843
+ "syn",
844
+ ]