No project description provided
Project description
RustShogi
Rustで実装された将棋ライブラリ
特徴
- 高速なRust実装
- Pythonバインディング対応
- メモリ効率的なデータ構造
- 完全な将棋ルール実装
インストール
pip install rustshogi
基本的な使い方
import rustshogi
# 新しいゲームを作成
game = rustshogi.Game()
# 盤面の状態を表示
print(game.board)
# 可能な手を検索
moves = game.board.search_moves(rustshogi.ColorType.Black)
print(f"可能な手の数: {len(moves)}")
# 手を実行
if moves:
game.execute_move(moves[0])
print("手を実行しました")
print(game.board)
# ゲーム終了判定
is_finished, winner = game.is_finished()
if is_finished:
print(f"ゲーム終了: 勝者 = {winner}")
アドレスの操作
# アドレスを作成
address = rustshogi.Address(3, 4) # 3列4行
print(f"アドレス: {address}")
# 文字列からアドレスを作成
address = rustshogi.Address.from_string("3d")
print(f"アドレス: {address}")
# インデックスに変換
index = address.to_index()
print(f"インデックス: {index}")
駒の操作
# 駒を作成
piece = rustshogi.Piece(rustshogi.ColorType.Black, rustshogi.PieceType.King)
print(f"駒: {piece}")
# 文字から駒を作成
piece = rustshogi.Piece.from_char('K') # 黒の王
print(f"駒: {piece}")
piece = rustshogi.Piece.from_char('p') # 白の歩
print(f"駒: {piece}")
手の操作
# 通常の手を作成
from_addr = rustshogi.Address(3, 3)
to_addr = rustshogi.Address(3, 4)
move = rustshogi.Move(from_address=from_addr, to_address=to_addr, promote=False)
print(f"手: {move}")
# ドロップ手を作成
piece = rustshogi.Piece.from_char('p')
to_addr = rustshogi.Address(3, 4)
drop_move = rustshogi.Move(piece=piece, to_address=to_addr)
print(f"ドロップ手: {drop_move}")
# CSA形式から手を作成
csa_move = rustshogi.Move(csa="3c3d")
print(f"CSA手: {csa_move}")
盤面の操作
# 新しい盤面を作成
board = rustshogi.Board()
# 初期配置を設定
board.startpos()
print("初期配置:")
print(board)
# 駒を配置
piece = rustshogi.Piece(rustshogi.ColorType.Black, rustshogi.PieceType.King)
address = rustshogi.Address(5, 1)
board.deploy(address, piece.piece_type, piece.owner)
# 特定の位置の駒を取得
piece_at_pos = board.get_piece(address)
print(f"位置{address}の駒: {piece_at_pos}")
# 可能な手を検索
moves = board.search_moves(rustshogi.ColorType.Black)
print(f"黒の可能な手: {len(moves)}手")
# 手を実行
if moves:
board.execute_move(moves[0])
print("手を実行後の盤面:")
print(board)
ゲームの進行
# ゲームを作成
game = rustshogi.Game()
# ランダムプレイ
result = game.random_play()
print(f"ランダムプレイ結果: 勝者 = {result.winner}")
# 手動でゲームを進行
game = rustshogi.Game()
while not game.is_finished()[0]:
moves = game.board.search_moves(game.turn)
if moves:
# 最初の手を選択
game.execute_move(moves[0])
else:
break
is_finished, winner = game.is_finished()
print(f"ゲーム終了: 勝者 = {winner}")
ドキュメント
https://applyuser160.github.io/mctsshogirust/
データ構造
ColorType
rustshogi.ColorType.Black # 先手
rustshogi.ColorType.White # 後手
rustshogi.ColorType.None # なし
PieceType
rustshogi.PieceType.King # 王
rustshogi.PieceType.Gold # 金
rustshogi.PieceType.Rook # 飛車
rustshogi.PieceType.Bichop # 角
rustshogi.PieceType.Silver # 銀
rustshogi.PieceType.Knight # 桂
rustshogi.PieceType.Lance # 香
rustshogi.PieceType.Pawn # 歩
# 成駒
rustshogi.PieceType.Dragon # 龍
rustshogi.PieceType.Horse # 馬
rustshogi.PieceType.ProSilver # 成銀
rustshogi.PieceType.ProKnight # 成桂
rustshogi.PieceType.ProLance # 成香
rustshogi.PieceType.ProPawn # と
パフォーマンス
このライブラリは以下の最適化により高速な処理を実現しています:
- ビットボードによる効率的な盤面表現
- メモリ効率的なデータ構造(u16によるMove表現など)
- SIMD命令の活用
- ゼロコスト抽象化
ライセンス
このプロジェクトはMITライセンスの下で公開されています。
貢献
プルリクエストやイシューの報告を歓迎します。開発に参加したい場合は、まずイシューを作成してご連絡ください。
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distributions
Built Distributions
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file rustshogi-0.7.1-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: rustshogi-0.7.1-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 623.7 kB
- Tags: PyPy, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
4aa5583669939785775b5a40eb46950db7a58f387911a507edc2b7a89842d8b4
|
|
| MD5 |
12ef635ef8595d3e2298edc195225812
|
|
| BLAKE2b-256 |
557b79f747dbc445078ee368a93c6b2a959ff91e9e1c9592e896c3d81436903b
|
File details
Details for the file rustshogi-0.7.1-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: rustshogi-0.7.1-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 633.3 kB
- Tags: PyPy, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
e731beb55a1695f81c28d93f64fedc1732feba5e2d2f76311744350bb73280ac
|
|
| MD5 |
46e02323fdb50890dd022ee739959f59
|
|
| BLAKE2b-256 |
672498fcadf8366be6ce35bbab18269c0f7b09a9bedf0461b80b277740fee9f8
|
File details
Details for the file rustshogi-0.7.1-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: rustshogi-0.7.1-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 454.4 kB
- Tags: PyPy, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
d5e74d4fbaee4662b96d4e7087415aff817857756363f609b93a9eedfa0e6a78
|
|
| MD5 |
7ce46f062f9834743ef5f60d2ad5545b
|
|
| BLAKE2b-256 |
aca6e45b67be8791a005fd2c43d98282212dac59220ea44d44f5b393ddba407b
|
File details
Details for the file rustshogi-0.7.1-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl.
File metadata
- Download URL: rustshogi-0.7.1-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
- Upload date:
- Size: 485.6 kB
- Tags: PyPy, manylinux: glibc 2.17+ s390x
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
0f6a20cd7d2b76e16e34f0d0cd0e0a37b8af8293adde88ebba9051892ae038dd
|
|
| MD5 |
807190a4461fe2cd1732a0c9425ba3b3
|
|
| BLAKE2b-256 |
60bb306742e749bc7d9f4181828cfa09ee6ef483418449c9d3b17d161fd049b7
|
File details
Details for the file rustshogi-0.7.1-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.
File metadata
- Download URL: rustshogi-0.7.1-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
- Upload date:
- Size: 605.9 kB
- Tags: PyPy, manylinux: glibc 2.17+ ppc64le
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
cdd223238785d096402ae073594017de0bd9c2a481b09e6dbc687d36d29455be
|
|
| MD5 |
218e9664aafbe70b7996a6676a972e7a
|
|
| BLAKE2b-256 |
751614775c94a9033b14e77b6bc840abe5bb81deb98461b7ae2a2fda89106934
|
File details
Details for the file rustshogi-0.7.1-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: rustshogi-0.7.1-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 452.1 kB
- Tags: PyPy, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
b952f765ec774b0700f9d6e4f24294263b866e93319c0ecc692fdfdc58fb092e
|
|
| MD5 |
8a635a91a9872c4d001a88f0950a060a
|
|
| BLAKE2b-256 |
6c747aff1f0fb6c13564d6af9bd43e1bfdfc7e0fda9f4836fc7f5ee416812414
|
File details
Details for the file rustshogi-0.7.1-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: rustshogi-0.7.1-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 623.9 kB
- Tags: PyPy, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
b991dd64585c3f29ffbe93a249b80ec6c6cf62b90bd76d4f6355f7436fcae4ec
|
|
| MD5 |
3df0ece0421532565ba4b97eba2b8365
|
|
| BLAKE2b-256 |
76b1525a3be411a13c4d6d9fbb8191395c043429afde6a3dd238d15060ca6ff3
|
File details
Details for the file rustshogi-0.7.1-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: rustshogi-0.7.1-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 633.3 kB
- Tags: PyPy, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
bf6f8699ce24cb249a2cded1a1a6df17402fe5123206f2371b2ff4236f466efe
|
|
| MD5 |
792f16db27449dae7d3ecebf4c5b81cf
|
|
| BLAKE2b-256 |
aed75e536089012d7172c07c51e5c72b57bdb1c99185372cb6d58a2df9ebb650
|
File details
Details for the file rustshogi-0.7.1-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl.
File metadata
- Download URL: rustshogi-0.7.1-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
- Upload date:
- Size: 485.7 kB
- Tags: PyPy, manylinux: glibc 2.17+ s390x
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
d1a9bc5aa6c65904fea0e2a1680507d5c71810e1e0cf85adc764eb287d155429
|
|
| MD5 |
68c88160c61df10a3f3b78bd1f86aaf0
|
|
| BLAKE2b-256 |
a568ae57aee1cf740f42d6e54b459cef084f8c9a692751ef9ffc0f645114fa12
|
File details
Details for the file rustshogi-0.7.1-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.
File metadata
- Download URL: rustshogi-0.7.1-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
- Upload date:
- Size: 605.5 kB
- Tags: PyPy, manylinux: glibc 2.17+ ppc64le
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
e21391809a79e22de0de9881575e67badaf44b568fcc99d6f2d59c33a2bc8a40
|
|
| MD5 |
a4da52a9518f393dbf9aa8ee0975bb3d
|
|
| BLAKE2b-256 |
af7ebe1e31eb6858b3675fea690247085dbd133019f63d51b3099047d21aa982
|
File details
Details for the file rustshogi-0.7.1-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: rustshogi-0.7.1-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 452.1 kB
- Tags: PyPy, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
48da896580949d352bcd658372949a6ebd4a39b8a7315553e5ea46d8cc646361
|
|
| MD5 |
74530d56684331b19d1093bb4da99aa8
|
|
| BLAKE2b-256 |
b57bd49f04dce2b379a7fee4fc8ac51064c3d90d373a9826cd4e5452ceb1c24a
|
File details
Details for the file rustshogi-0.7.1-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: rustshogi-0.7.1-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 623.9 kB
- Tags: PyPy, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
9a13475dcbb399db2744802bdd9116e0c852b3b9d89d01666862b8cd409c4b7a
|
|
| MD5 |
f4a7670e2f1306b9fffb62eb6fcf2ce4
|
|
| BLAKE2b-256 |
a41fae14c357ecd3f7be5af71c59d7c06a9a6ec718357fa1e1f5b1a501d4901a
|
File details
Details for the file rustshogi-0.7.1-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: rustshogi-0.7.1-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 633.3 kB
- Tags: PyPy, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
8f706a1bf7c2a0481a17b5455cde8c9946c35c816ebe992b31356b14244cdcf0
|
|
| MD5 |
544da91a24433837005c35fb180e3d3a
|
|
| BLAKE2b-256 |
b4d9c56b0cf7b3e786515d1953d6350a3edaf7cd6681160f520c056d6786487b
|
File details
Details for the file rustshogi-0.7.1-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl.
File metadata
- Download URL: rustshogi-0.7.1-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
- Upload date:
- Size: 485.7 kB
- Tags: PyPy, manylinux: glibc 2.17+ s390x
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
8b2bec25a2ef91fe546a131c6c8cfc36e9b1d0ce85d9be426729a772d6aa211b
|
|
| MD5 |
f1461d1cebce20b258e596a83bc57f80
|
|
| BLAKE2b-256 |
98df64e33e7390ae1e325a1f43483dc1aac8ad615e962cafb5be92be294d96d8
|
File details
Details for the file rustshogi-0.7.1-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.
File metadata
- Download URL: rustshogi-0.7.1-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
- Upload date:
- Size: 603.7 kB
- Tags: PyPy, manylinux: glibc 2.17+ ppc64le
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
57de5c9faaa5482acff1d6d7f788bc80f6c22b5b32208bee395053e11d118dd6
|
|
| MD5 |
a096b9429dcfb27d5ec0c45729d172ed
|
|
| BLAKE2b-256 |
976e74732fab6142432c62322537285e995a9dd295feeef39e7700858d35bba3
|
File details
Details for the file rustshogi-0.7.1-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: rustshogi-0.7.1-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 451.9 kB
- Tags: PyPy, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
d66f357beb8f26addc11701543c6e869c22d3818f3c55d19d7c81b0068838346
|
|
| MD5 |
9915d114518712602519acb8df13edc2
|
|
| BLAKE2b-256 |
b7c5b033cc6f5a78ae25c12e379394edd827812c3abea63bb8d7437551fab09a
|
File details
Details for the file rustshogi-0.7.1-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: rustshogi-0.7.1-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 454.8 kB
- Tags: CPython 3.14, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
7e9082cf401580ec82b54bb0f747443ea1f5ea9a528c3bfac7170fb20d2bb75b
|
|
| MD5 |
3dd95bec6d8c5abe0f77124db66bbe2e
|
|
| BLAKE2b-256 |
5695ff3a4ddc20bbbef5b6b4685185410eb014a2c23a7e4aca5f10f2580211f8
|
File details
Details for the file rustshogi-0.7.1-cp313-cp313t-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: rustshogi-0.7.1-cp313-cp313t-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 622.3 kB
- Tags: CPython 3.13t, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
f32e3241c83c7668ddb556f187024567bc38091d3e7975d281871a67abf015ac
|
|
| MD5 |
8d86c3b449054ac57e4bb7854eb87c75
|
|
| BLAKE2b-256 |
8f13819375bc5ac671f4b2c1f387b79b2653f876359ff6c22fb4cc3fbab4c0b1
|
File details
Details for the file rustshogi-0.7.1-cp313-cp313t-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: rustshogi-0.7.1-cp313-cp313t-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 632.3 kB
- Tags: CPython 3.13t, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
4d2bb061c5ac3aa170f397d99f3d1dba4013f4e097466706286b690731ac39fb
|
|
| MD5 |
76b614a2ee5ed066f076f71bc5c73b60
|
|
| BLAKE2b-256 |
10173bf772f6dc712e7734ed87617f0b889f3cf1ffe45bdd25024dee684a78fc
|
File details
Details for the file rustshogi-0.7.1-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl.
File metadata
- Download URL: rustshogi-0.7.1-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl
- Upload date:
- Size: 483.8 kB
- Tags: CPython 3.13t, manylinux: glibc 2.17+ s390x
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
1ef7e716e3c3a18e6ac55b54c1e8611332a1c430ca35d6accc197a542cc2c888
|
|
| MD5 |
aa742fc3c14e7336af5058f81dcc4360
|
|
| BLAKE2b-256 |
d3c2bf7878ce3c76d886de3be66d9da03cb32b994d5df373a4fde180ae0754e9
|
File details
Details for the file rustshogi-0.7.1-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.
File metadata
- Download URL: rustshogi-0.7.1-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
- Upload date:
- Size: 602.4 kB
- Tags: CPython 3.13t, manylinux: glibc 2.17+ ppc64le
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
9ab12f7415df873d1e6ff7cadfb3ab159f06b0111ef12f87816c0d50435946b8
|
|
| MD5 |
b63771154153200c3d164198806512b4
|
|
| BLAKE2b-256 |
fe7fa16e9440d94b458bebf7a55aefa40ccbb37f95d7906647251b94a8d389c4
|
File details
Details for the file rustshogi-0.7.1-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: rustshogi-0.7.1-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 451.0 kB
- Tags: CPython 3.13t, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
72b6a56408d3fd860858e1999a5e8fc8d0eb89009518d7b9f45d405c40a666bb
|
|
| MD5 |
5d88471ca8101abfb160cb53647285a5
|
|
| BLAKE2b-256 |
2fa66b866bfffea171772ab40d6601137ad1f6da02a2c77ac39b7465bba815c5
|
File details
Details for the file rustshogi-0.7.1-cp313-cp313-win_amd64.whl.
File metadata
- Download URL: rustshogi-0.7.1-cp313-cp313-win_amd64.whl
- Upload date:
- Size: 270.7 kB
- Tags: CPython 3.13, Windows x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
2f64f287570ad498e33476aa9c9d41fa53fd9e07731688aa2de0f73e9a0edca2
|
|
| MD5 |
8d462be40da27e2eda83d8586f860844
|
|
| BLAKE2b-256 |
aa2a85468b15eae0d9076bcd2d41a960148d0a194418a9ec6c78083a304636d2
|
File details
Details for the file rustshogi-0.7.1-cp313-cp313-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: rustshogi-0.7.1-cp313-cp313-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 624.7 kB
- Tags: CPython 3.13, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
7345b3dde9095e99c306697a9394a27f39a63e7a029f656c2e8d663cbbda28f5
|
|
| MD5 |
a342300ae25c98bd28fb9f8c2af57dd8
|
|
| BLAKE2b-256 |
fd80125fcb15d8c932e9ba5747d855b6d870ce5092d932429019d086abf851c7
|
File details
Details for the file rustshogi-0.7.1-cp313-cp313-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: rustshogi-0.7.1-cp313-cp313-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 634.1 kB
- Tags: CPython 3.13, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
bcf13f5bf1e0968f1c3158d0d3b5f8bd1ab575eb3212bb9247ce02bb15cf7608
|
|
| MD5 |
90fac443d749bf5e7a809bfd739b8694
|
|
| BLAKE2b-256 |
b17e939b1eba9f7624379f885b7800891f29e8e4bc7d18b575f5e25430e3c616
|
File details
Details for the file rustshogi-0.7.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: rustshogi-0.7.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 454.9 kB
- Tags: CPython 3.13, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
26cf3c14850b4000378734b0a3b96f7611ba18e8fe96325b44048a70708bedb6
|
|
| MD5 |
bc9da8f399d3cc1490d1d411ec186198
|
|
| BLAKE2b-256 |
ac5715b081a370d9b2826d4618f25156127481d06fb928c95db366d59b727372
|
File details
Details for the file rustshogi-0.7.1-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl.
File metadata
- Download URL: rustshogi-0.7.1-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
- Upload date:
- Size: 487.1 kB
- Tags: CPython 3.13, manylinux: glibc 2.17+ s390x
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
befdb3f20ddc941105883e94dd9259fdf2e86f44bb52c0d1302e9284246ee018
|
|
| MD5 |
e4abdbffc3069feb54d40bc74fdfb6ed
|
|
| BLAKE2b-256 |
ef2c7c439e0892abbd7699e52c5460bf693f4832083b915b7f4bc7e29dbe2f78
|
File details
Details for the file rustshogi-0.7.1-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.
File metadata
- Download URL: rustshogi-0.7.1-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
- Upload date:
- Size: 603.1 kB
- Tags: CPython 3.13, manylinux: glibc 2.17+ ppc64le
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
1b2b3a35281cd73dd6e40478a6bfb9ed4d419e740292fbcebbcc2c2f4d58d563
|
|
| MD5 |
ddc320c80d133967209b2b12c7985dad
|
|
| BLAKE2b-256 |
99b0b490b331fb106ece590ef7c0e65383564c24d58511fcb31e23facb56c3a2
|
File details
Details for the file rustshogi-0.7.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: rustshogi-0.7.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 452.9 kB
- Tags: CPython 3.13, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
857fabff3f982fe92eb66c527d3bb4850183f4e83999af039b359bb927d57c57
|
|
| MD5 |
008a4a2a4a5678b76901013eaffedcb1
|
|
| BLAKE2b-256 |
e68ef32a12c48a8e029920d7b3ebe007ff5de04a9bc5758a9cf7a775cce8d728
|
File details
Details for the file rustshogi-0.7.1-cp313-cp313-macosx_11_0_arm64.whl.
File metadata
- Download URL: rustshogi-0.7.1-cp313-cp313-macosx_11_0_arm64.whl
- Upload date:
- Size: 393.5 kB
- Tags: CPython 3.13, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
10c1abad1145c11c5269baf3f1881a90edc96b78bba8bea5b0ad30e5056e07e8
|
|
| MD5 |
4043960395e58390eb998e890a221105
|
|
| BLAKE2b-256 |
e67df55189909c7ec61100bd28b3f75d1c8e56fb0944651d03550cc8671460ea
|
File details
Details for the file rustshogi-0.7.1-cp313-cp313-macosx_10_12_x86_64.whl.
File metadata
- Download URL: rustshogi-0.7.1-cp313-cp313-macosx_10_12_x86_64.whl
- Upload date:
- Size: 406.4 kB
- Tags: CPython 3.13, macOS 10.12+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
20b4521b1d342764192d19055e3ccc58a26411539700c8d4dc7f6430e297aea8
|
|
| MD5 |
27531f70f9c538b83b08b2e4fafddc58
|
|
| BLAKE2b-256 |
37540a4c5bba6d0e6d7f07f0e963ed2b8c229df060af3e1afb508d45121e5f0f
|
File details
Details for the file rustshogi-0.7.1-cp312-cp312-win_amd64.whl.
File metadata
- Download URL: rustshogi-0.7.1-cp312-cp312-win_amd64.whl
- Upload date:
- Size: 270.8 kB
- Tags: CPython 3.12, Windows x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
ac623ef4f6566e98bd859b6cd4376791a44d0265ca140675951de10397cb1722
|
|
| MD5 |
c9e14d78c79c09576f552e03e9612848
|
|
| BLAKE2b-256 |
507c2a040aea3627f1a80656c63d1d0636bf6d29a1bd60d0777e14da8f245eba
|
File details
Details for the file rustshogi-0.7.1-cp312-cp312-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: rustshogi-0.7.1-cp312-cp312-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 625.1 kB
- Tags: CPython 3.12, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
c4f83a9dfd6132f7adbb58b98225ef866c84b408f1779d71a692e5f3646e4258
|
|
| MD5 |
a62af6209befe0fd9ed24fa8846a9ad0
|
|
| BLAKE2b-256 |
6074b61ecef0338c10945ecfa2f5a24d1950c15ea167806b9db630dbcac6364b
|
File details
Details for the file rustshogi-0.7.1-cp312-cp312-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: rustshogi-0.7.1-cp312-cp312-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 634.1 kB
- Tags: CPython 3.12, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
e912a3af24247f713852c12cc53c970a26577be077fc9133bfa74c20f316b92a
|
|
| MD5 |
edbfccd2dc4d87c7d5f4c0763a577c3e
|
|
| BLAKE2b-256 |
0730ff7e515ae762bbd9bd473a4abdb8759013895b82282189498a36b14015e4
|
File details
Details for the file rustshogi-0.7.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: rustshogi-0.7.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 455.3 kB
- Tags: CPython 3.12, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
8facf0e23765501ae482aca0f2e0eb9ee3d72640873b5a3962436ac7d8008529
|
|
| MD5 |
1fd39b220320b361ab074ef9585479ec
|
|
| BLAKE2b-256 |
fbcf54481b5641b1c7d4c130141e0a433644630ec5a6756d125003be7f6bbc5e
|
File details
Details for the file rustshogi-0.7.1-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl.
File metadata
- Download URL: rustshogi-0.7.1-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
- Upload date:
- Size: 487.3 kB
- Tags: CPython 3.12, manylinux: glibc 2.17+ s390x
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
6bce3e298b4b424f8475a3e23d3e0444b390b302de7d1d9fb9558e464372b58c
|
|
| MD5 |
ef9d0b40f7f71c5daf77786217416d5d
|
|
| BLAKE2b-256 |
9597ee610e222d77806d7778d14866d8a51f9f2a8d6629120a99396418281ce0
|
File details
Details for the file rustshogi-0.7.1-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.
File metadata
- Download URL: rustshogi-0.7.1-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
- Upload date:
- Size: 603.4 kB
- Tags: CPython 3.12, manylinux: glibc 2.17+ ppc64le
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
ce4bfb9b02039fd27349a81d580f813599278594e6bcf1f0ea3b94b625aabacb
|
|
| MD5 |
7008996ebae5d218d4c9d3a826919768
|
|
| BLAKE2b-256 |
99a0c3c6e37c0040cd9fc3fe7b48bc3af597a5f951b197493dd813bae8515868
|
File details
Details for the file rustshogi-0.7.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: rustshogi-0.7.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 453.0 kB
- Tags: CPython 3.12, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
19d421212dc470c389b5b8a4785a25e1bc116f1431d583d2bf699346ab700470
|
|
| MD5 |
f7a3a12f7873f5fce10705a24e1edcfb
|
|
| BLAKE2b-256 |
1f51506ac54b81b4affc14708d665ec845d9ef5df268b95b60d76440cf8b7027
|
File details
Details for the file rustshogi-0.7.1-cp312-cp312-macosx_11_0_arm64.whl.
File metadata
- Download URL: rustshogi-0.7.1-cp312-cp312-macosx_11_0_arm64.whl
- Upload date:
- Size: 393.9 kB
- Tags: CPython 3.12, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
5f064090d85f0066538385523a16fcb7c94998a30422e6025a20f2a192c28c2b
|
|
| MD5 |
8e20d8cf81b2aed77416642ece17c93a
|
|
| BLAKE2b-256 |
62ebda25cadc649bf54d669dc9cb19339d252fe2813b11fcb545114801301276
|
File details
Details for the file rustshogi-0.7.1-cp312-cp312-macosx_10_12_x86_64.whl.
File metadata
- Download URL: rustshogi-0.7.1-cp312-cp312-macosx_10_12_x86_64.whl
- Upload date:
- Size: 406.4 kB
- Tags: CPython 3.12, macOS 10.12+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
fd2b50b186ad407050cc3d237925fdeac905d0016efd191f89553b63d5de840c
|
|
| MD5 |
fd2336b19544e41135851ac07258dbfc
|
|
| BLAKE2b-256 |
e6843a772ee86b973dc89c2479a032532e002f5f3cf6f66d6701acd919a70ad5
|
File details
Details for the file rustshogi-0.7.1-cp311-cp311-win_amd64.whl.
File metadata
- Download URL: rustshogi-0.7.1-cp311-cp311-win_amd64.whl
- Upload date:
- Size: 270.2 kB
- Tags: CPython 3.11, Windows x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
2236b6391374c04f5b49085c07d3ec5447bb7069d43d03d60a6dbb054f7e8630
|
|
| MD5 |
48d1af118c5e97bcf9713613c7d777b0
|
|
| BLAKE2b-256 |
7b42caf2c4a28ffdcf54f7895e4eb8eaac00f73fe3cd6148d9037d5c8cf83a54
|
File details
Details for the file rustshogi-0.7.1-cp311-cp311-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: rustshogi-0.7.1-cp311-cp311-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 622.7 kB
- Tags: CPython 3.11, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
189fb8b9c8a07670d5cfaeb60f323e4fa25294c7031ae4d8e2b2972b520f0b71
|
|
| MD5 |
2f6262cf1b61668a27f9a669e4c22678
|
|
| BLAKE2b-256 |
2feaa61b7fe196c197786235f3e86c902d5e527df2ab45df65b5f14b454401af
|
File details
Details for the file rustshogi-0.7.1-cp311-cp311-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: rustshogi-0.7.1-cp311-cp311-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 633.4 kB
- Tags: CPython 3.11, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
33f8a42cd889e5eaeb10d3f968b63a5af4ff7be0b4343878c3c7ac7cce05a2d7
|
|
| MD5 |
b3b3d2aed40d7a5961f16c640a70f807
|
|
| BLAKE2b-256 |
0737de1447231bf016d22f286bac6bcb9fccfeed8dd0910250621e7b8d3cc6c4
|
File details
Details for the file rustshogi-0.7.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: rustshogi-0.7.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 453.2 kB
- Tags: CPython 3.11, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
5f18f4b0ca89e114a9b44c001ea707e380d7296fa081e2c39cb94f9e3cde334e
|
|
| MD5 |
702259a3f8b532c7b3110478f4ed8640
|
|
| BLAKE2b-256 |
ef6c69cca85fee65f5e4202d05f19593a6fc23ddd6e5a233f8898ea31ce6cb51
|
File details
Details for the file rustshogi-0.7.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl.
File metadata
- Download URL: rustshogi-0.7.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
- Upload date:
- Size: 485.6 kB
- Tags: CPython 3.11, manylinux: glibc 2.17+ s390x
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
0246cedbaef699292063325d5c83943946f58a1c9047851effcfdb96781729a2
|
|
| MD5 |
f5b4beeeabc3e81762d2bc678347f8da
|
|
| BLAKE2b-256 |
efd9b9c307a7c4f62d922e83235a0bd46883a7e90cbe975fd8191f64aa4b5391
|
File details
Details for the file rustshogi-0.7.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.
File metadata
- Download URL: rustshogi-0.7.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
- Upload date:
- Size: 605.4 kB
- Tags: CPython 3.11, manylinux: glibc 2.17+ ppc64le
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
b7a3f8e02460cb6c9aaa71e7986c5f55b8e95c60757fe3e933572d8c5f330cc3
|
|
| MD5 |
4d36b0bf5b96aa3da6cf462731788d35
|
|
| BLAKE2b-256 |
e8d2eef965f420afc52bcabc8e1062aa35e20d936524e018a58b0d8cbe2ead1c
|
File details
Details for the file rustshogi-0.7.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: rustshogi-0.7.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 452.6 kB
- Tags: CPython 3.11, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
47f8da6b79b808611964a132fdb7ee0cd501cc0ab367feceff4530a2b2912765
|
|
| MD5 |
c4b5e33218a4e00530c5f316ef0c482f
|
|
| BLAKE2b-256 |
11bd07d2d36e558742f0c8177351070f3941fff9a7cd48dd387102c687a988aa
|
File details
Details for the file rustshogi-0.7.1-cp311-cp311-macosx_11_0_arm64.whl.
File metadata
- Download URL: rustshogi-0.7.1-cp311-cp311-macosx_11_0_arm64.whl
- Upload date:
- Size: 400.7 kB
- Tags: CPython 3.11, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
1e1b5e1573486a9a6e2c38a0c35aa66897758ba0bf21e62bbfe36fea2f4dfe62
|
|
| MD5 |
2fc55077cc8eacf690ec0f21538f9a1d
|
|
| BLAKE2b-256 |
72a410e5c8d265e0955504d062d2b7cc916787f0f33bb03195aa91c028f2ff4c
|
File details
Details for the file rustshogi-0.7.1-cp311-cp311-macosx_10_12_x86_64.whl.
File metadata
- Download URL: rustshogi-0.7.1-cp311-cp311-macosx_10_12_x86_64.whl
- Upload date:
- Size: 415.4 kB
- Tags: CPython 3.11, macOS 10.12+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
a90e8a7893b4528d2c8e96d9d54e4f84c09b2d6c7ca32ce0a41e573b85d0d7cf
|
|
| MD5 |
399c342e49ad02d2155637d7f8511d5d
|
|
| BLAKE2b-256 |
83f581196c4b5ce503b5ee239a9ddc107c7e9f852b45e868833d0acb0ce19fa1
|
File details
Details for the file rustshogi-0.7.1-cp310-cp310-win_amd64.whl.
File metadata
- Download URL: rustshogi-0.7.1-cp310-cp310-win_amd64.whl
- Upload date:
- Size: 270.0 kB
- Tags: CPython 3.10, Windows x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
b2ea5106665ef6ea9c9b7e724e8c520c19274ce6bd8dd7ac526ba7577ff7e40a
|
|
| MD5 |
09885f56a2605bb6a82349ef42f13a59
|
|
| BLAKE2b-256 |
3c31cd54cc4edecec8387c1d7aa0dfa5a48e42d2eeb404435c9a50a59c596fc0
|
File details
Details for the file rustshogi-0.7.1-cp310-cp310-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: rustshogi-0.7.1-cp310-cp310-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 622.8 kB
- Tags: CPython 3.10, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
0cedeb334f3e340a65bc81f6ce9b6110ab22343113ec9b89f2b8f702e233f654
|
|
| MD5 |
9904018e1a1f7f091f12771996972d87
|
|
| BLAKE2b-256 |
b01edbf4331afbe8b1a864514c2168b9bc1cb5f0ccbb82c1384240100bb47e1a
|
File details
Details for the file rustshogi-0.7.1-cp310-cp310-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: rustshogi-0.7.1-cp310-cp310-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 632.8 kB
- Tags: CPython 3.10, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
64b031176ab7fec55abc59560b176c3134b0d8c62d422737f3ef866d38bb7ed8
|
|
| MD5 |
99fd94c3601a2757ce49f68ffcf3b27e
|
|
| BLAKE2b-256 |
c542c4ba840b7036c85611ca80fb76686a5c22bdb4c9dc874f4bff3059742534
|
File details
Details for the file rustshogi-0.7.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: rustshogi-0.7.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 453.3 kB
- Tags: CPython 3.10, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
1b6efc51ea3e562450da36ae468a893bf3c3ebfe1a3630c1eb48207bf25e57fb
|
|
| MD5 |
a7a908229e7765c3e479ee6175927cd7
|
|
| BLAKE2b-256 |
60958f4606b94c88142ca9adfe19e81862bf2d54a90e6e1bb1104bd321996978
|
File details
Details for the file rustshogi-0.7.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl.
File metadata
- Download URL: rustshogi-0.7.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
- Upload date:
- Size: 485.9 kB
- Tags: CPython 3.10, manylinux: glibc 2.17+ s390x
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
9e23d922c89485f2d90946ffb99a7e16ea9c58a5a495d3f550f254016866fbea
|
|
| MD5 |
cd6a7c8e0e611c63cc1bc00671637285
|
|
| BLAKE2b-256 |
15e15c5e745dabcb27c1895018ca9ed57f91b561b55c52d286a35985c4e17987
|
File details
Details for the file rustshogi-0.7.1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.
File metadata
- Download URL: rustshogi-0.7.1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
- Upload date:
- Size: 607.0 kB
- Tags: CPython 3.10, manylinux: glibc 2.17+ ppc64le
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
2c0d6d4fbfd7bb2954d3135f40a1477045780e23567153127e62a4c35bb30408
|
|
| MD5 |
3beba77a760bad21a0767c180b32bc40
|
|
| BLAKE2b-256 |
58078c5e540fb994c0c5e95c52b2de8e0917c03e067a88b7370bcc863b5a66ec
|
File details
Details for the file rustshogi-0.7.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: rustshogi-0.7.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 451.6 kB
- Tags: CPython 3.10, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
b10dbc0d2e1a5c11027d39426564e866b8bc89ceba671e5f68e9157d2db3def1
|
|
| MD5 |
c98bac63ec6aa77a0b0935350e17455c
|
|
| BLAKE2b-256 |
9be1463ace8ca6bf9bd79dd07d9382c56206a8a978e66170cba5737d2e6512b5
|
File details
Details for the file rustshogi-0.7.1-cp39-cp39-win_amd64.whl.
File metadata
- Download URL: rustshogi-0.7.1-cp39-cp39-win_amd64.whl
- Upload date:
- Size: 270.2 kB
- Tags: CPython 3.9, Windows x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
9d5c38db2b7a145cf6adf5c0ee4ea68d5ae67682747edb1f64883c83ef3fb382
|
|
| MD5 |
cafb21b59417c141cea485d39d525325
|
|
| BLAKE2b-256 |
a60ae562acd3ad647558005b7b1cde93d642cb2bc6f4e13bcf4a71f2832e5ee8
|
File details
Details for the file rustshogi-0.7.1-cp39-cp39-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: rustshogi-0.7.1-cp39-cp39-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 623.4 kB
- Tags: CPython 3.9, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
7ea23b3fff2fa4db65c84bf1f33aa70b84cf0c47c6137555c6ac0f2f8732c85a
|
|
| MD5 |
9730351166cc026ff9642a0e57ca16c9
|
|
| BLAKE2b-256 |
4b57a5c1d5b2af10899319f1f0fdd2eb2ae51fe8363975de289521ce3e5d5b86
|
File details
Details for the file rustshogi-0.7.1-cp39-cp39-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: rustshogi-0.7.1-cp39-cp39-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 633.0 kB
- Tags: CPython 3.9, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
00d61255b8afba37c93a800172fb8b94600df0dbc95d6a8dcd8733cc23d3bbe4
|
|
| MD5 |
0ffc1d60f6728eb8adfc2fdaad0c689a
|
|
| BLAKE2b-256 |
bc76314bef2215c84178c3072ffcb7ee1075ce3e40687ea97b8eb18d4708d03a
|
File details
Details for the file rustshogi-0.7.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: rustshogi-0.7.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 453.6 kB
- Tags: CPython 3.9, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
45d9c572d07137879b9e102049a14e64997e057bfb5e0f5e64dd238d5103dcda
|
|
| MD5 |
f40a3905cdb512d8986efd74b05b67c5
|
|
| BLAKE2b-256 |
45b60f00ad4bd1b6081f03b7909ba222990dcb9ccc47521daa8050d8f31fe297
|
File details
Details for the file rustshogi-0.7.1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl.
File metadata
- Download URL: rustshogi-0.7.1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
- Upload date:
- Size: 486.4 kB
- Tags: CPython 3.9, manylinux: glibc 2.17+ s390x
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
e977472f69503c698333b087a20c4994d0467432c787041a6610fd717113f15d
|
|
| MD5 |
2f1e68241a8addcf9d22b8fff4d9c9a2
|
|
| BLAKE2b-256 |
34ff78ea7836e790b24f897253900f53b1d3ef5f93d8acf03d3bb564a7751b5e
|
File details
Details for the file rustshogi-0.7.1-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.
File metadata
- Download URL: rustshogi-0.7.1-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
- Upload date:
- Size: 605.8 kB
- Tags: CPython 3.9, manylinux: glibc 2.17+ ppc64le
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
73d2b2329cd28bdac3c23b87461cca914824e2ce81ceef8a960ec17e8f402300
|
|
| MD5 |
242d03b955d76dc3f9c400956e63b346
|
|
| BLAKE2b-256 |
92d352d7567657fad3d7fc90b90ddfd427377056995498b60fdc2eee26179feb
|
File details
Details for the file rustshogi-0.7.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: rustshogi-0.7.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 452.1 kB
- Tags: CPython 3.9, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
680ec7e0283d00c1f22b76bfc2d58a6ff5c98bb151a5bb108a6218fc9ddd68b9
|
|
| MD5 |
775a320a4bf05130edc85192f2d20868
|
|
| BLAKE2b-256 |
5d389dbaab23227923f18d92a25842b04cb99845966aa0ec560fada4a72f9de9
|
File details
Details for the file rustshogi-0.7.1-cp38-cp38-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: rustshogi-0.7.1-cp38-cp38-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 623.6 kB
- Tags: CPython 3.8, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
efb2e1c91dd7793272215b114e7511bccce697e005a06ca9ceda726c1f82f8bc
|
|
| MD5 |
fd17a41384c1fcff3922a16649956e25
|
|
| BLAKE2b-256 |
d537957830f3aad0eeff2a0c7f5bd467b3d8a42bfc6fb877f8a2a5c11d392b18
|
File details
Details for the file rustshogi-0.7.1-cp38-cp38-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: rustshogi-0.7.1-cp38-cp38-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 633.3 kB
- Tags: CPython 3.8, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
5074b413eb11f3312ed5300de5deb6d1684a69f9cec507c1864569480a79061b
|
|
| MD5 |
17c6d678585016ad5cee30cacc475590
|
|
| BLAKE2b-256 |
94f2cec28f82f0d6b928f2fa79bee0e5c884d04607246cb72dd41cee3551683c
|
File details
Details for the file rustshogi-0.7.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: rustshogi-0.7.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 453.8 kB
- Tags: CPython 3.8, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
6cb20d1701a900c869734e31347b8caae0baf087b7c2ce8311b968582c186868
|
|
| MD5 |
281ff4671e5164cf2c3deb296fb33649
|
|
| BLAKE2b-256 |
9fb7a8d248a5248ea6d836f41daf3c1aac5f45216481c6bf7ad673833dcc02ce
|
File details
Details for the file rustshogi-0.7.1-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl.
File metadata
- Download URL: rustshogi-0.7.1-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl
- Upload date:
- Size: 486.2 kB
- Tags: CPython 3.8, manylinux: glibc 2.17+ s390x
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
e18367c64952727cc2e2b80847818c7d468e1da1848b65bd301b2b9d562775de
|
|
| MD5 |
789310c7a185a541afb156cc5b2569ce
|
|
| BLAKE2b-256 |
45a468bea5fe6a8bebb37ee6befc926693d11d053b0517d1bc19d6402ba0f680
|
File details
Details for the file rustshogi-0.7.1-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.
File metadata
- Download URL: rustshogi-0.7.1-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
- Upload date:
- Size: 606.5 kB
- Tags: CPython 3.8, manylinux: glibc 2.17+ ppc64le
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
c229c009b398fc46938575a09519f42507e282d7c8214213297f1959557a1aec
|
|
| MD5 |
088311a6483cc46390615091662ca188
|
|
| BLAKE2b-256 |
bf57b23b3a68a39eac4945167ed59be3dee7db0f472f4b2b4a3603b7850a5a67
|
File details
Details for the file rustshogi-0.7.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: rustshogi-0.7.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 452.1 kB
- Tags: CPython 3.8, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
039dc9e451135aa31066e784cca1b7bde0bb20acf40a7e6cfcdf4a058263ffe6
|
|
| MD5 |
7515bf9c9a0ba021126df61681f8ad43
|
|
| BLAKE2b-256 |
e6a7fc26930e88eae3ca34a0eaba79e51f9b587c1e8faea6b230356652b085cf
|