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