🎌 RustShogi
A high-performance Shogi library implemented in Rust.
🚀 Features
- ⚡ High-performance Rust implementation
- 🐍 Python bindings support
- 💾 Memory-efficient data structures
- ✅ Complete Shogi rule implementation
📦 Installation
pip install rustshogi
💻 Quick Start
import rustshogi
# Create a new game
game = rustshogi.Game()
# Display board state
print(game.board)
# Search for possible moves
moves = game.board.search_moves(rustshogi.ColorType.Black)
print(f"Number of possible moves: {len(moves)}")
# Execute a move
if moves:
game.execute_move(moves[0])
print("Move executed")
print(game.board)
# Check game end
is_finished, winner = game.is_finished()
if is_finished:
print(f"Game ended: Winner = {winner}")
📚 See Detailed Usage
Address Operations
# Create an address
address = rustshogi.Address(3, 4) # Column 3, Row 4
print(f"Address: {address}")
# Create address from string
address = rustshogi.Address.from_string("3d")
print(f"Address: {address}")
# Convert to index
index = address.to_index()
print(f"Index: {index}")
Piece Operations
# Create a piece
piece = rustshogi.Piece(rustshogi.ColorType.Black, rustshogi.PieceType.King)
print(f"Piece: {piece}")
# Create piece from character
piece = rustshogi.Piece.from_char('K') # Black King
print(f"Piece: {piece}")
piece = rustshogi.Piece.from_char('p') # White Pawn
print(f"Piece: {piece}")
Move Operations
# Create a normal move
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: {move}")
# Create a drop 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: {drop_move}")
# Create move from CSA format
csa_move = rustshogi.Move(csa="3c3d")
print(f"CSA move: {csa_move}")
Board Operations
# Create a new board
board = rustshogi.Board()
# Set initial position
board.startpos()
print("Initial position:")
print(board)
# Deploy a piece
piece = rustshogi.Piece(rustshogi.ColorType.Black, rustshogi.PieceType.King)
address = rustshogi.Address(5, 1)
board.deploy(address, piece.piece_type, piece.owner)
# Get piece at specific position
piece_at_pos = board.get_piece(address)
print(f"Piece at {address}: {piece_at_pos}")
# Search for possible moves
moves = board.search_moves(rustshogi.ColorType.Black)
print(f"Black's possible moves: {len(moves)} moves")
# Execute a move
if moves:
board.execute_move(moves[0])
print("Board after move execution:")
print(board)
Game Progression
# Create a game
game = rustshogi.Game()
# Random play
result = game.random_play()
print(f"Random play result: Winner = {result.winner}")
# Manual game progression
game = rustshogi.Game()
while not game.is_finished()[0]:
moves = game.board.search_moves(game.turn)
if moves:
# Select the first move
game.execute_move(moves[0])
else:
break
is_finished, winner = game.is_finished()
print(f"Game ended: Winner = {winner}")
Data Structures
ColorType
rustshogi.ColorType.Black # Sente (First player)
rustshogi.ColorType.White # Gote (Second player)
rustshogi.ColorType.None # None
PieceType
rustshogi.PieceType.King # King
rustshogi.PieceType.Gold # Gold General
rustshogi.PieceType.Rook # Rook
rustshogi.PieceType.Bishop # Bishop
rustshogi.PieceType.Silver # Silver General
rustshogi.PieceType.Knight # Knight
rustshogi.PieceType.Lance # Lance
rustshogi.PieceType.Pawn # Pawn
# Promoted pieces
rustshogi.PieceType.Dragon # Dragon King
rustshogi.PieceType.Horse # Dragon Horse
rustshogi.PieceType.ProSilver # Promoted Silver
rustshogi.PieceType.ProKnight # Promoted Knight
rustshogi.PieceType.ProLance # Promoted Lance
rustshogi.PieceType.ProPawn # Tokin
📖 Documentation
See the detailed documentation here: https://applyuser160.github.io/rustshogi/
⚡ Performance
This library achieves high-speed processing through the following optimizations:
- Efficient board representation using bitboards
- Memory-efficient data structures (e.g., u16 Move representation)
- Utilization of SIMD instructions
- Zero-cost abstractions
📄 License
This project is released under the MIT License.
🤝 Contributing
Pull requests and issue reports are welcome. If you want to participate in development, please create an issue first and contact us.
Release files for rustshogi 0.8.0
For a detailed explanation of source distributions (sdists) and built distributions (wheels), please see the package formats documentation.
Built distributions (wheels)
Total release size: 203.7 MB
Release files / rustshogi-0.8.0-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl
| Download URL | rustshogi-0.8.0-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl |
|---|---|
| Size | 3.4 MB |
| Tags | Linux musl 1.2+ x86-64 PyPy 3.11 PyPy 3.11 7.3 |
|
SHA-256 checksum How to use checksums |
bfc60d3961cdc8f8d567588401bd1bcca8d7110b2c9cf50bc7bf2b245d563029
|
|
BLAKE2b-256 checksum How to use checksums |
c14720243e4675e443d8803af72b5847c63569cd98f189a56086601e8fea012a
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
maturin/1.9.6
|
Release files / rustshogi-0.8.0-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl
| Download URL | rustshogi-0.8.0-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl |
|---|---|
| Size | 3.2 MB |
| Tags | Linux musl 1.2+ ARM64 PyPy 3.11 PyPy 3.11 7.3 |
|
SHA-256 checksum How to use checksums |
3de6700e893544624502b977f72e7bf76774067ccefa3d86c4d085805fa1a676
|
|
BLAKE2b-256 checksum How to use checksums |
017d60d5ba7a897c9c9e953d263994af51ca56a2c97f2defeea50ac6b0cf3e5f
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
maturin/1.9.6
|
Release files / rustshogi-0.8.0-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
| Download URL | rustshogi-0.8.0-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl |
|---|---|
| Size | 3.1 MB |
| Tags | Linux glibc 2.17+ IBM System/390x PyPy 3.11 PyPy 3.11 7.3 |
|
SHA-256 checksum How to use checksums |
a0337777df8b161b5a6c8f9fd4cd6c695f8820d49df7832da6f6abde017142b9
|
|
BLAKE2b-256 checksum How to use checksums |
25e52ec714511defadc4abfd772907266e819f011c3ccd6c25dfdc080e6314db
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
maturin/1.9.6
|
Release files / rustshogi-0.8.0-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
| Download URL | rustshogi-0.8.0-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl |
|---|---|
| Size | 3.5 MB |
| Tags | Linux glibc 2.17+ PowerPC 64-le PyPy 3.11 PyPy 3.11 7.3 |
|
SHA-256 checksum How to use checksums |
656279c003cb3a54cd290763f2b81d9ce952294538865b59a3718a98e30c8148
|
|
BLAKE2b-256 checksum How to use checksums |
b10b7ad4e9af26125fb67bada9151f740a7fea4dbeab6f872b773a2db93b0e59
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
maturin/1.9.6
|
Release files / rustshogi-0.8.0-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
| Download URL | rustshogi-0.8.0-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl |
|---|---|
| Size | 2.9 MB |
| Tags | Linux glibc 2.17+ ARM64 PyPy 3.11 PyPy 3.11 7.3 |
|
SHA-256 checksum How to use checksums |
48cb50f3c7f3457aad8a4da37039b80dd0d39fb19f52c8d921ad8b6389cc65f6
|
|
BLAKE2b-256 checksum How to use checksums |
55a372c189340a34b00f9a779addee0f1a1e6062c30ebf7b239811e9cd97b5da
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
maturin/1.9.6
|
Release files / rustshogi-0.8.0-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl
| Download URL | rustshogi-0.8.0-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl |
|---|---|
| Size | 3.4 MB |
| Tags | Linux musl 1.2+ x86-64 PyPy 3.10 PyPy 3.10 7.3 |
|
SHA-256 checksum How to use checksums |
7ee5b048655a4a8ca9c5b78b9b0c3e36d595a9f7212de2166fdc9be9583fcc13
|
|
BLAKE2b-256 checksum How to use checksums |
1c056040300cb4162ae1dad90313858b3ed370c67857757aac8096b9eaea4822
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
maturin/1.9.6
|
Release files / rustshogi-0.8.0-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl
| Download URL | rustshogi-0.8.0-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl |
|---|---|
| Size | 3.2 MB |
| Tags | Linux musl 1.2+ ARM64 PyPy 3.10 PyPy 3.10 7.3 |
|
SHA-256 checksum How to use checksums |
82c04241c6ceff15d15fe5e4b38badd4f69d5d82d124a112edc00e10ca88e975
|
|
BLAKE2b-256 checksum How to use checksums |
9d15b1f8f3677b99f46a55b4b4bcfa009eeb7aac9bc2773a813a542dd1e4b898
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
maturin/1.9.6
|
Release files / rustshogi-0.8.0-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
| Download URL | rustshogi-0.8.0-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl |
|---|---|
| Size | 3.1 MB |
| Tags | Linux glibc 2.17+ IBM System/390x PyPy 3.10 PyPy 3.10 7.3 |
|
SHA-256 checksum How to use checksums |
97c4b04ba1355182bfc95fcf5ad7303e921bfeb4a3addebe3ae9a579e0134409
|
|
BLAKE2b-256 checksum How to use checksums |
102bef56317551dea5516c67bf8f16669203d3d6c864f39ad6e36cbf272cd618
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
maturin/1.9.6
|
Release files / rustshogi-0.8.0-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
| Download URL | rustshogi-0.8.0-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl |
|---|---|
| Size | 3.5 MB |
| Tags | Linux glibc 2.17+ PowerPC 64-le PyPy 3.10 PyPy 3.10 7.3 |
|
SHA-256 checksum How to use checksums |
f5f9d4603bf2227d907c4921d4dfb99d1ef75b0e26bf07914410b00902920722
|
|
BLAKE2b-256 checksum How to use checksums |
e0aad934b938fcd2979933798e8c61a3b7bcce9412912b6685b0e5996f8bf5f8
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
maturin/1.9.6
|
Release files / rustshogi-0.8.0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
| Download URL | rustshogi-0.8.0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl |
|---|---|
| Size | 2.9 MB |
| Tags | Linux glibc 2.17+ ARM64 PyPy 3.10 PyPy 3.10 7.3 |
|
SHA-256 checksum How to use checksums |
a84796b41cd81b7f4b1bf3db56df4293f63f27c6ebfa9540ea6d1a1eb73dcaab
|
|
BLAKE2b-256 checksum How to use checksums |
11ef0c7fd38b69ac34b645a6e9989321f8ed51c7ae014db0ea5738a35239ada5
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
maturin/1.9.6
|
Release files / rustshogi-0.8.0-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl
| Download URL | rustshogi-0.8.0-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl |
|---|---|
| Size | 3.4 MB |
| Tags | Linux musl 1.2+ x86-64 PyPy 3.9 PyPy 3.9 7.3 |
|
SHA-256 checksum How to use checksums |
c45d36078826bd1c40a2e0d3942e6b2efc3a318a1d277d5eff44ebe357d37dc6
|
|
BLAKE2b-256 checksum How to use checksums |
ec7a766593ae811bd1a5e5b4ac1d81454df96c9756d185111e5d35e408538156
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
maturin/1.9.6
|
Release files / rustshogi-0.8.0-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl
| Download URL | rustshogi-0.8.0-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl |
|---|---|
| Size | 3.2 MB |
| Tags | Linux musl 1.2+ ARM64 PyPy 3.9 PyPy 3.9 7.3 |
|
SHA-256 checksum How to use checksums |
17a620f397a270d7a82f133e154ddc12c8f2f84b1596204e3017184da0e2ccc5
|
|
BLAKE2b-256 checksum How to use checksums |
3c7362930492314549d7ee45e3044f1f0c4006a1c13f91936f8c701f790bb23c
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
maturin/1.9.6
|
Release files / rustshogi-0.8.0-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
| Download URL | rustshogi-0.8.0-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl |
|---|---|
| Size | 3.1 MB |
| Tags | Linux glibc 2.17+ IBM System/390x PyPy 3.9 PyPy 3.9 7.3 |
|
SHA-256 checksum How to use checksums |
6caaa52ceb8f38d1fecb1e0f26aa637dd4024858f5c6f2b6f6889273262ab09a
|
|
BLAKE2b-256 checksum How to use checksums |
5520d483be925c263aef2057b5a3205ed5a2af0878cf1552ebf71ed1a78e2d90
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
maturin/1.9.6
|
Release files / rustshogi-0.8.0-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
| Download URL | rustshogi-0.8.0-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl |
|---|---|
| Size | 3.5 MB |
| Tags | Linux glibc 2.17+ PowerPC 64-le PyPy 3.9 PyPy 3.9 7.3 |
|
SHA-256 checksum How to use checksums |
a786fc0d207a64c4c18ce2dbf396c8e5ecc552fde73c6c6dea55b0e8078048e4
|
|
BLAKE2b-256 checksum How to use checksums |
4f7027193ab2eec02966cd6a99aa935cd18e5aa49d4097239bcf81c6b3f0cade
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
maturin/1.9.6
|
Release files / rustshogi-0.8.0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
| Download URL | rustshogi-0.8.0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl |
|---|---|
| Size | 2.9 MB |
| Tags | Linux glibc 2.17+ ARM64 PyPy 3.9 PyPy 3.9 7.3 |
|
SHA-256 checksum How to use checksums |
7ea8f346c6e770e3468a364e65a69bc59e11478f1b76859031665d80640d6d36
|
|
BLAKE2b-256 checksum How to use checksums |
78fdd9f3f436b90bc7f7f4ebe098d6c141f581ec8b85718fc1de3f9b7b5bab33
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
maturin/1.9.6
|
Release files / rustshogi-0.8.0-cp314-cp314-win_amd64.whl
| Download URL | rustshogi-0.8.0-cp314-cp314-win_amd64.whl |
|---|---|
| Size | 2.7 MB |
| Tags | CPython 3.14 Windows x86-64 |
|
SHA-256 checksum How to use checksums |
bd665515147fc0272dd40c2fce7999a6f675aa9b24fe20eaaee88e5c8392db47
|
|
BLAKE2b-256 checksum How to use checksums |
9645cca2e0248824caf217c9713fd442da62faa80527403d543d17d25c61cae0
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
maturin/1.9.6
|
Release files / rustshogi-0.8.0-cp314-cp314-manylinux_2_34_x86_64.whl
| Download URL | rustshogi-0.8.0-cp314-cp314-manylinux_2_34_x86_64.whl |
|---|---|
| Size | 3.2 MB |
| Tags | CPython 3.14 Linux glibc 2.34+ x86-64 |
|
SHA-256 checksum How to use checksums |
7811a21c1e6b73617ae2ccb7052ccc4cb466f3fc03d02b509a78f37bd7e1f9ce
|
|
BLAKE2b-256 checksum How to use checksums |
8e50f674f4517a15ce1a7badd00cabff26fed3437c8256b303a2eadf3f85c17c
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
maturin/1.9.6
|
Release files / rustshogi-0.8.0-cp314-cp314-macosx_11_0_arm64.whl
| Download URL | rustshogi-0.8.0-cp314-cp314-macosx_11_0_arm64.whl |
|---|---|
| Size | 2.8 MB |
| Tags | CPython 3.14 macOS 11.0+ ARM64 |
|
SHA-256 checksum How to use checksums |
ed5e96a62a318ab5ee8be3c920274cbab426f790eb66cd2d08ead21ee08770c3
|
|
BLAKE2b-256 checksum How to use checksums |
64b80e21be156d227c6846dcdfac3894c0c5d936d317af8c69a052ac40077b4c
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
maturin/1.9.6
|
Release files / rustshogi-0.8.0-cp313-cp313t-musllinux_1_2_x86_64.whl
| Download URL | rustshogi-0.8.0-cp313-cp313t-musllinux_1_2_x86_64.whl |
|---|---|
| Size | 3.4 MB |
| Tags | CPython 3.13 CPython 3.13 free-threading Linux musl 1.2+ x86-64 |
|
SHA-256 checksum How to use checksums |
d25c817c50d206f71c623c5358933fe5901538c3982dbf3816570ffe9d073cf2
|
|
BLAKE2b-256 checksum How to use checksums |
bd6f4555055ea6c18c54804564c3a44466a155670f67c937750c6670f777c781
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
maturin/1.9.6
|
Release files / rustshogi-0.8.0-cp313-cp313t-musllinux_1_2_aarch64.whl
| Download URL | rustshogi-0.8.0-cp313-cp313t-musllinux_1_2_aarch64.whl |
|---|---|
| Size | 3.2 MB |
| Tags | CPython 3.13 CPython 3.13 free-threading Linux musl 1.2+ ARM64 |
|
SHA-256 checksum How to use checksums |
062341f8c486ca1a87ac575d60678fcba5b0d1101331435533390d469e7c001d
|
|
BLAKE2b-256 checksum How to use checksums |
4ab376fb56bb1da54a8dead0fc6ff48e324eaba2c91889ebf9b77ac1b81c30da
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
maturin/1.9.6
|
Release files / rustshogi-0.8.0-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl
| Download URL | rustshogi-0.8.0-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl |
|---|---|
| Size | 3.1 MB |
| Tags | CPython 3.13 CPython 3.13 free-threading Linux glibc 2.17+ IBM System/390x |
|
SHA-256 checksum How to use checksums |
b127fcae57754574ad774a9ef7b240da652bfb2fc4c0844d819cbe245695fb9c
|
|
BLAKE2b-256 checksum How to use checksums |
9fc49e09567f800f8cd31567f21947f3a74321cd4e560f1358958bc87103efca
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
maturin/1.9.6
|
Release files / rustshogi-0.8.0-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
| Download URL | rustshogi-0.8.0-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl |
|---|---|
| Size | 3.5 MB |
| Tags | CPython 3.13 CPython 3.13 free-threading Linux glibc 2.17+ PowerPC 64-le |
|
SHA-256 checksum How to use checksums |
c0ceb441ea2a33fa4b5cc88966a353a553aa8d8115f5ab84e4a8a329c7dca73c
|
|
BLAKE2b-256 checksum How to use checksums |
c18a8363f73bfe9ed37fe022d5d5e6c5960dadbf7f582dc7428109ff33d4c079
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
maturin/1.9.6
|
Release files / rustshogi-0.8.0-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
| Download URL | rustshogi-0.8.0-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl |
|---|---|
| Size | 2.9 MB |
| Tags | CPython 3.13 CPython 3.13 free-threading Linux glibc 2.17+ ARM64 |
|
SHA-256 checksum How to use checksums |
66cbf0ec154004e9a194a65d42974e7e791790051b538b42170e04feed8d7f6c
|
|
BLAKE2b-256 checksum How to use checksums |
18236782523b466fb0353af1bff1538c28efd9d0569a9491b861a279dda6900d
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
maturin/1.9.6
|
Release files / rustshogi-0.8.0-cp313-cp313-win_amd64.whl
| Download URL | rustshogi-0.8.0-cp313-cp313-win_amd64.whl |
|---|---|
| Size | 2.7 MB |
| Tags | CPython 3.13 Windows x86-64 |
|
SHA-256 checksum How to use checksums |
744fbd09b9fe688d1a5fe52ce10af55d1870399cfc07d56c95e26d5c561761ec
|
|
BLAKE2b-256 checksum How to use checksums |
576fbd066fd92e64232304ca294375b75f8bc851d6f04b4eaedff73aee6d24e1
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
maturin/1.9.6
|
Release files / rustshogi-0.8.0-cp313-cp313-musllinux_1_2_x86_64.whl
| Download URL | rustshogi-0.8.0-cp313-cp313-musllinux_1_2_x86_64.whl |
|---|---|
| Size | 3.4 MB |
| Tags | CPython 3.13 Linux musl 1.2+ x86-64 |
|
SHA-256 checksum How to use checksums |
991d443ba1011888fed8f27a1ffe4d6d53d5d7fffad4ae345c89629f12b7e05a
|
|
BLAKE2b-256 checksum How to use checksums |
6da695125f2341be1dd84156a289a02dcb223398a4b3093517207c017f584cff
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
maturin/1.9.6
|
Release files / rustshogi-0.8.0-cp313-cp313-musllinux_1_2_aarch64.whl
| Download URL | rustshogi-0.8.0-cp313-cp313-musllinux_1_2_aarch64.whl |
|---|---|
| Size | 3.2 MB |
| Tags | CPython 3.13 Linux musl 1.2+ ARM64 |
|
SHA-256 checksum How to use checksums |
8c6d7aa56d428b22ce1de80ae664d96bdadf3edde7632b1e7e10ba6a33037ec4
|
|
BLAKE2b-256 checksum How to use checksums |
69a2150e081f32ece21b80e34a5aeb1fe6d39163770c76561770dca54fe436b1
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
maturin/1.9.6
|
Release files / rustshogi-0.8.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
| Download URL | rustshogi-0.8.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl |
|---|---|
| Size | 3.1 MB |
| Tags | CPython 3.13 Linux glibc 2.17+ IBM System/390x |
|
SHA-256 checksum How to use checksums |
3c453c08c8fe0befe8cb28bacce76f0578f3816f00e89f82cf51bf9c2e02d94c
|
|
BLAKE2b-256 checksum How to use checksums |
ceec5ea00fcd788dba945d484ee3bcceb82bc5d3bd8f229ba75f8b9110d7a067
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
maturin/1.9.6
|
Release files / rustshogi-0.8.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
| Download URL | rustshogi-0.8.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl |
|---|---|
| Size | 3.5 MB |
| Tags | CPython 3.13 Linux glibc 2.17+ PowerPC 64-le |
|
SHA-256 checksum How to use checksums |
06f4db1e01a06f3460fd9d28f7125216c22912ee573f8c2b68bb5f7dae131092
|
|
BLAKE2b-256 checksum How to use checksums |
7dc88475748971c2f61849912ef3afffc9c7a940c0360aec58358dc9fc3b45e8
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
maturin/1.9.6
|
Release files / rustshogi-0.8.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
| Download URL | rustshogi-0.8.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl |
|---|---|
| Size | 2.9 MB |
| Tags | CPython 3.13 Linux glibc 2.17+ ARM64 |
|
SHA-256 checksum How to use checksums |
9bdc070fba5695bb98077bc5a7478e84f614d6a613c92875931f7ea950ecf522
|
|
BLAKE2b-256 checksum How to use checksums |
c4775961edf686ef418573b7cf6f147097d6d4559be8b38107f6fd4d9f5c7782
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
maturin/1.9.6
|
Release files / rustshogi-0.8.0-cp313-cp313-macosx_11_0_arm64.whl
| Download URL | rustshogi-0.8.0-cp313-cp313-macosx_11_0_arm64.whl |
|---|---|
| Size | 2.8 MB |
| Tags | CPython 3.13 macOS 11.0+ ARM64 |
|
SHA-256 checksum How to use checksums |
0857956a35b86e1cc8726d6de7c3e7d0b704a4fda4b22f00c03b80f61143436e
|
|
BLAKE2b-256 checksum How to use checksums |
a531a360fd2976bdeff668749eae68a278cdce1736e7b3ea26cd82d770289ee1
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
maturin/1.9.6
|
Release files / rustshogi-0.8.0-cp313-cp313-macosx_10_12_x86_64.whl
| Download URL | rustshogi-0.8.0-cp313-cp313-macosx_10_12_x86_64.whl |
|---|---|
| Size | 3.0 MB |
| Tags | CPython 3.13 macOS 10.12+ x86-64 |
|
SHA-256 checksum How to use checksums |
f435e25cae0ab2584da0695b098ed556de60a71fa7fac9ba16e84bd6d643a893
|
|
BLAKE2b-256 checksum How to use checksums |
a1440ab8c3d933f786e080e45ad1b4251d95644d96f0b097bd8f4e8f0774672d
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
maturin/1.9.6
|
Release files / rustshogi-0.8.0-cp312-cp312-win_amd64.whl
| Download URL | rustshogi-0.8.0-cp312-cp312-win_amd64.whl |
|---|---|
| Size | 2.7 MB |
| Tags | CPython 3.12 Windows x86-64 |
|
SHA-256 checksum How to use checksums |
1c11076f8df1775b8a83eb57e1f2ff756d5fff9952461ef12edbc38923c8af92
|
|
BLAKE2b-256 checksum How to use checksums |
f7cdf58a61889b6856dcb86d3597de13918cd5f7309fb49878e06cde4c8eb21a
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
maturin/1.9.6
|
Release files / rustshogi-0.8.0-cp312-cp312-musllinux_1_2_x86_64.whl
| Download URL | rustshogi-0.8.0-cp312-cp312-musllinux_1_2_x86_64.whl |
|---|---|
| Size | 3.4 MB |
| Tags | CPython 3.12 Linux musl 1.2+ x86-64 |
|
SHA-256 checksum How to use checksums |
0e936360162a4fe2ddc90bb88cb7007538a5d36836ff28eef79546d777d95fa9
|
|
BLAKE2b-256 checksum How to use checksums |
599be2f90b51dfc5295caf4201399f0d8040e1069ecdc441397f458d983bb25e
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
maturin/1.9.6
|
Release files / rustshogi-0.8.0-cp312-cp312-musllinux_1_2_aarch64.whl
| Download URL | rustshogi-0.8.0-cp312-cp312-musllinux_1_2_aarch64.whl |
|---|---|
| Size | 3.2 MB |
| Tags | CPython 3.12 Linux musl 1.2+ ARM64 |
|
SHA-256 checksum How to use checksums |
831351751a892438d0bd73497a4afb6ffd894bb69f3c9aeae2f91990af9dd762
|
|
BLAKE2b-256 checksum How to use checksums |
c1b552429ef334cd9b470a0a2b1d66e5dc9322299abcd943bea02fe3595b0b29
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
maturin/1.9.6
|
Release files / rustshogi-0.8.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
| Download URL | rustshogi-0.8.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl |
|---|---|
| Size | 3.1 MB |
| Tags | CPython 3.12 Linux glibc 2.17+ IBM System/390x |
|
SHA-256 checksum How to use checksums |
6dfe8b77ee51bd7e264b3fc4e96748c46ba29fae89416d3a5342be3f64ab76aa
|
|
BLAKE2b-256 checksum How to use checksums |
cdb92bb69dbfec8679f9355bfaa5bc7137793f304e2dde6767e4a5f12cf0f4e9
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
maturin/1.9.6
|
Release files / rustshogi-0.8.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
| Download URL | rustshogi-0.8.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl |
|---|---|
| Size | 3.5 MB |
| Tags | CPython 3.12 Linux glibc 2.17+ PowerPC 64-le |
|
SHA-256 checksum How to use checksums |
c8a25804ee42b01d18e52f65bfe71f31fc479d14b22342e876c1181b26b94810
|
|
BLAKE2b-256 checksum How to use checksums |
ae7cf218af3fb0b0b73199f7e766398506fe8882cebe757779b7fc363ccf050f
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
maturin/1.9.6
|
Release files / rustshogi-0.8.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
| Download URL | rustshogi-0.8.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl |
|---|---|
| Size | 2.9 MB |
| Tags | CPython 3.12 Linux glibc 2.17+ ARM64 |
|
SHA-256 checksum How to use checksums |
c07bdd1cff6e7a535c1ca339164187a0732e98966d385a31217a12847e1e5c5a
|
|
BLAKE2b-256 checksum How to use checksums |
2b2c210a3459a3814d0dc39ffcd271247cd300ed09e03c8ed8ed1f26858969c2
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
maturin/1.9.6
|
Release files / rustshogi-0.8.0-cp312-cp312-macosx_11_0_arm64.whl
| Download URL | rustshogi-0.8.0-cp312-cp312-macosx_11_0_arm64.whl |
|---|---|
| Size | 2.8 MB |
| Tags | CPython 3.12 macOS 11.0+ ARM64 |
|
SHA-256 checksum How to use checksums |
16b94363a069af936d102c43ec9ad0bcc72e9e11a3be4ad09eb7bf42a5e85f68
|
|
BLAKE2b-256 checksum How to use checksums |
541fe81407de16f1ccc8156277dbf61e2aff549e334da5bf3b19907455d99edd
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
maturin/1.9.6
|
Release files / rustshogi-0.8.0-cp312-cp312-macosx_10_12_x86_64.whl
| Download URL | rustshogi-0.8.0-cp312-cp312-macosx_10_12_x86_64.whl |
|---|---|
| Size | 3.0 MB |
| Tags | CPython 3.12 macOS 10.12+ x86-64 |
|
SHA-256 checksum How to use checksums |
b5642034c39c9424689e648284781ce3bdf98b82c7e2be25a3bde6f623f020ef
|
|
BLAKE2b-256 checksum How to use checksums |
ca474921fb1f44f46ab4a09cdc7bd663f3eed073b030d7b2ac2c8abd1a75cd30
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
maturin/1.9.6
|
Release files / rustshogi-0.8.0-cp311-cp311-win_amd64.whl
| Download URL | rustshogi-0.8.0-cp311-cp311-win_amd64.whl |
|---|---|
| Size | 2.7 MB |
| Tags | CPython 3.11 Windows x86-64 |
|
SHA-256 checksum How to use checksums |
d126b2ba5e92ed76f09b5b4108d3d54f9249c9b31fbca595d13037f4c531761c
|
|
BLAKE2b-256 checksum How to use checksums |
c52ce2bbe89cf2e1303ebad00c850fec174f316cc2c91d0fec60a99e3946b7a2
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
maturin/1.9.6
|
Release files / rustshogi-0.8.0-cp311-cp311-musllinux_1_2_x86_64.whl
| Download URL | rustshogi-0.8.0-cp311-cp311-musllinux_1_2_x86_64.whl |
|---|---|
| Size | 3.4 MB |
| Tags | CPython 3.11 Linux musl 1.2+ x86-64 |
|
SHA-256 checksum How to use checksums |
75e89fd8780e4a098bcf5a5a5ac96ab53e4f4d5b96fbafcf2e110223e53d3939
|
|
BLAKE2b-256 checksum How to use checksums |
173e9c0f18a9dd8e2df8951f58d2fbb22ee5ee5af5d03cea704123b0f1543af5
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
maturin/1.9.6
|
Release files / rustshogi-0.8.0-cp311-cp311-musllinux_1_2_aarch64.whl
| Download URL | rustshogi-0.8.0-cp311-cp311-musllinux_1_2_aarch64.whl |
|---|---|
| Size | 3.2 MB |
| Tags | CPython 3.11 Linux musl 1.2+ ARM64 |
|
SHA-256 checksum How to use checksums |
69199d0dfdae52c8d6fe5ff44f08828d876bf5fe2723e3ae1961852674a17264
|
|
BLAKE2b-256 checksum How to use checksums |
834f86672a4a6101b22d59522ac5f2e8466eff79dec9dbaff9a1c82d39438ce1
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
maturin/1.9.6
|
Release files / rustshogi-0.8.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
| Download URL | rustshogi-0.8.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl |
|---|---|
| Size | 3.1 MB |
| Tags | CPython 3.11 Linux glibc 2.17+ IBM System/390x |
|
SHA-256 checksum How to use checksums |
c8dd6bda3ff5cde5e287a3b9370fac6d3926212ce09a2334bf61d688fa64ff48
|
|
BLAKE2b-256 checksum How to use checksums |
2a872dbd96a2d826e2bee2a2f5c9f3f8128bf8ae4375cf6c77571a486d1159d6
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
maturin/1.9.6
|
Release files / rustshogi-0.8.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
| Download URL | rustshogi-0.8.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl |
|---|---|
| Size | 3.5 MB |
| Tags | CPython 3.11 Linux glibc 2.17+ PowerPC 64-le |
|
SHA-256 checksum How to use checksums |
6217bf42ff1e36022f46af947d278843f5720d4de7805a9ad7ac7c838ac212d2
|
|
BLAKE2b-256 checksum How to use checksums |
42dc5d4de20ac61480a145ab8cf8232ddfd96a03dd48febca1d75757fa72b3c6
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
maturin/1.9.6
|
Release files / rustshogi-0.8.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
| Download URL | rustshogi-0.8.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl |
|---|---|
| Size | 2.9 MB |
| Tags | CPython 3.11 Linux glibc 2.17+ ARM64 |
|
SHA-256 checksum How to use checksums |
ae91655a52292d510c78c5b8240e3b7003628efb2ed575919b2d0c76389663bd
|
|
BLAKE2b-256 checksum How to use checksums |
3c0895123edbd09a92c48fe5a5ff0ffd372574a51c0985b810caa20c9dd37bf6
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
maturin/1.9.6
|
Release files / rustshogi-0.8.0-cp311-cp311-macosx_11_0_arm64.whl
| Download URL | rustshogi-0.8.0-cp311-cp311-macosx_11_0_arm64.whl |
|---|---|
| Size | 2.8 MB |
| Tags | CPython 3.11 macOS 11.0+ ARM64 |
|
SHA-256 checksum How to use checksums |
06def1672cc57302358065866ff5769a4b91fc9b0f2818b8dbbebb4b24ac248c
|
|
BLAKE2b-256 checksum How to use checksums |
a108857fa73c55b3d441fb527d2e742e600aaef8f26c3272708e02389d79e72f
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
maturin/1.9.6
|
Release files / rustshogi-0.8.0-cp311-cp311-macosx_10_12_x86_64.whl
| Download URL | rustshogi-0.8.0-cp311-cp311-macosx_10_12_x86_64.whl |
|---|---|
| Size | 3.0 MB |
| Tags | CPython 3.11 macOS 10.12+ x86-64 |
|
SHA-256 checksum How to use checksums |
03b61da90eee1a13fa194b4baaf230e7ee282b91669601fe8c29224a53555fea
|
|
BLAKE2b-256 checksum How to use checksums |
bc30b1e4db77efdb6f9eb6944338d4ff67ee083e41acbf099d8c715c3acac209
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
maturin/1.9.6
|
Release files / rustshogi-0.8.0-cp310-cp310-win_amd64.whl
| Download URL | rustshogi-0.8.0-cp310-cp310-win_amd64.whl |
|---|---|
| Size | 2.7 MB |
| Tags | CPython 3.10 Windows x86-64 |
|
SHA-256 checksum How to use checksums |
d57f5e37a1194c52ad39a4e6912adf65d2babb33b4d5481d9dda7869d1ed6e64
|
|
BLAKE2b-256 checksum How to use checksums |
e6cb5a80bf57e8b7eb6780ce6a7ce4e477a46d750659a8b1e23faa2c1bf15be2
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
maturin/1.9.6
|
Release files / rustshogi-0.8.0-cp310-cp310-musllinux_1_2_x86_64.whl
| Download URL | rustshogi-0.8.0-cp310-cp310-musllinux_1_2_x86_64.whl |
|---|---|
| Size | 3.4 MB |
| Tags | CPython 3.10 Linux musl 1.2+ x86-64 |
|
SHA-256 checksum How to use checksums |
0430d59e04580abf1d2a38e46626e74a7a336bf1d588329555b3f6d510b41c38
|
|
BLAKE2b-256 checksum How to use checksums |
95b5a08f0233da6b631386b420ed9fa87e6ea626cf1fac5a14a0df0a5ae3eee3
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
maturin/1.9.6
|
Release files / rustshogi-0.8.0-cp310-cp310-musllinux_1_2_aarch64.whl
| Download URL | rustshogi-0.8.0-cp310-cp310-musllinux_1_2_aarch64.whl |
|---|---|
| Size | 3.2 MB |
| Tags | CPython 3.10 Linux musl 1.2+ ARM64 |
|
SHA-256 checksum How to use checksums |
f093f56a6ace845f3e7c347c777b38c208475de536a0a4a0701da665e92bffba
|
|
BLAKE2b-256 checksum How to use checksums |
e981c192372e9d341ed09fd68ad1daa2555aec6f8810d8ecd099478a73e5b8ce
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
maturin/1.9.6
|
Release files / rustshogi-0.8.0-cp310-cp310-manylinux_2_34_x86_64.whl
| Download URL | rustshogi-0.8.0-cp310-cp310-manylinux_2_34_x86_64.whl |
|---|---|
| Size | 3.2 MB |
| Tags | CPython 3.10 Linux glibc 2.34+ x86-64 |
|
SHA-256 checksum How to use checksums |
1056bc28133c45800a4578f98d5484fd8f587127f83ea5f90aa914db55eb8908
|
|
BLAKE2b-256 checksum How to use checksums |
2b4c974eadc3a2a3d75ff4a8d33ae8d412ef7223d274a92f389a58d06519a3b5
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
maturin/1.9.6
|
Release files / rustshogi-0.8.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
| Download URL | rustshogi-0.8.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl |
|---|---|
| Size | 3.1 MB |
| Tags | CPython 3.10 Linux glibc 2.17+ IBM System/390x |
|
SHA-256 checksum How to use checksums |
7bb4f7200c697627b44d3178a91727ffac79f87fa059af941ab0daf488bd4859
|
|
BLAKE2b-256 checksum How to use checksums |
a06a096a2ee30da9ad6870bc3bba92d02e876be8723602a49aa1feb475eac596
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
maturin/1.9.6
|
Release files / rustshogi-0.8.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
| Download URL | rustshogi-0.8.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl |
|---|---|
| Size | 3.5 MB |
| Tags | CPython 3.10 Linux glibc 2.17+ PowerPC 64-le |
|
SHA-256 checksum How to use checksums |
1a05c5788c20e62b58da25c604d9df11768fd8d11774e83251cdf6cd4f67509a
|
|
BLAKE2b-256 checksum How to use checksums |
9215c42820755b66d654a9bb89f9ccea13a182814296d02ef1cc85914cb88362
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
maturin/1.9.6
|
Release files / rustshogi-0.8.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
| Download URL | rustshogi-0.8.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl |
|---|---|
| Size | 2.9 MB |
| Tags | CPython 3.10 Linux glibc 2.17+ ARM64 |
|
SHA-256 checksum How to use checksums |
64be034ac33e9992920c04a450167d9613a3bca077b67066c98ef21d8eaee3e4
|
|
BLAKE2b-256 checksum How to use checksums |
a692d98893a2351a4fd409babd8b81f07d39e94d6e427988c3d190f0c3f2a116
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
maturin/1.9.6
|
Release files / rustshogi-0.8.0-cp39-cp39-win_amd64.whl
| Download URL | rustshogi-0.8.0-cp39-cp39-win_amd64.whl |
|---|---|
| Size | 2.7 MB |
| Tags | CPython 3.9 Windows x86-64 |
|
SHA-256 checksum How to use checksums |
9a855f3afa4d1b93e0c0fa68b63a7cf1f4d0f6437b2fd7fe363cd036882721ea
|
|
BLAKE2b-256 checksum How to use checksums |
dbb7ff4e8f0522fdf37c9c84a9b6e727b8d792d6e1294ec7af6afc9e1f373bbd
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
maturin/1.9.6
|
Release files / rustshogi-0.8.0-cp39-cp39-musllinux_1_2_x86_64.whl
| Download URL | rustshogi-0.8.0-cp39-cp39-musllinux_1_2_x86_64.whl |
|---|---|
| Size | 3.4 MB |
| Tags | CPython 3.9 Linux musl 1.2+ x86-64 |
|
SHA-256 checksum How to use checksums |
545e3ccfa09694c66641b8c5679599ecf4217af96788e5274765a4cfe3513128
|
|
BLAKE2b-256 checksum How to use checksums |
b51ec0c3f08006161a590f455b3c0084245c5664e411133e0028d258b72b043d
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
maturin/1.9.6
|
Release files / rustshogi-0.8.0-cp39-cp39-musllinux_1_2_aarch64.whl
| Download URL | rustshogi-0.8.0-cp39-cp39-musllinux_1_2_aarch64.whl |
|---|---|
| Size | 3.2 MB |
| Tags | CPython 3.9 Linux musl 1.2+ ARM64 |
|
SHA-256 checksum How to use checksums |
bb1c35f2c1a14cf5f5c9f44df7f0680b370906d66e1f9fec0c53cb3b31f70e29
|
|
BLAKE2b-256 checksum How to use checksums |
297ab7b7811f3b9124e2d6f736bde631da06054b4d41633c3745f752e14a07d4
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
maturin/1.9.6
|
Release files / rustshogi-0.8.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
| Download URL | rustshogi-0.8.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl |
|---|---|
| Size | 3.1 MB |
| Tags | CPython 3.9 Linux glibc 2.17+ IBM System/390x |
|
SHA-256 checksum How to use checksums |
797b221a667bdb17e2ba618e11eb54128a349b6fcc010f7fe6c8f5a392c1a26f
|
|
BLAKE2b-256 checksum How to use checksums |
cb91bf9a3e395b7840f636f39d620cd9804fe330b92b4c344fc0ac80f07368a3
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
maturin/1.9.6
|
Release files / rustshogi-0.8.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
| Download URL | rustshogi-0.8.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl |
|---|---|
| Size | 3.5 MB |
| Tags | CPython 3.9 Linux glibc 2.17+ PowerPC 64-le |
|
SHA-256 checksum How to use checksums |
92a93b112b54803082f4789d49c94221bf39b620afd3f52ce180e42ef81a55c1
|
|
BLAKE2b-256 checksum How to use checksums |
31e5ecbc88ff4807c8e6c1d9e5f1efb514c0a2f3f3cbb962ce45c5bcd4e95b9c
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
maturin/1.9.6
|
Release files / rustshogi-0.8.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
| Download URL | rustshogi-0.8.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl |
|---|---|
| Size | 2.9 MB |
| Tags | CPython 3.9 Linux glibc 2.17+ ARM64 |
|
SHA-256 checksum How to use checksums |
4534742eb1da9cab7dc4da2c4cd32164a5844e9f0fcd7dfdb11efec872573cb2
|
|
BLAKE2b-256 checksum How to use checksums |
3c044ec274ffcd2f9813fa00a4550506fce85c41e57fb0d3434c9ce268ad1440
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
maturin/1.9.6
|
Release files / rustshogi-0.8.0-cp38-cp38-musllinux_1_2_x86_64.whl
| Download URL | rustshogi-0.8.0-cp38-cp38-musllinux_1_2_x86_64.whl |
|---|---|
| Size | 3.4 MB |
| Tags | CPython 3.8 Linux musl 1.2+ x86-64 |
|
SHA-256 checksum How to use checksums |
808d0a4dc7fffd4fb6ba8b50bddb0aab47ca7c3d3a4173ed1d742c516542c0aa
|
|
BLAKE2b-256 checksum How to use checksums |
7c90880eb1c54594ba2cec8a1245a3bfbba9e121c2765707690db79134bc7ee6
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
maturin/1.9.6
|
Release files / rustshogi-0.8.0-cp38-cp38-musllinux_1_2_aarch64.whl
| Download URL | rustshogi-0.8.0-cp38-cp38-musllinux_1_2_aarch64.whl |
|---|---|
| Size | 3.2 MB |
| Tags | CPython 3.8 Linux musl 1.2+ ARM64 |
|
SHA-256 checksum How to use checksums |
1876b2f877c75e714a77010f01817f77e0ada4935e4ab5071532cd649f22955d
|
|
BLAKE2b-256 checksum How to use checksums |
fab3c79de5a26a9b0b566fdc2f3b4bd9bb2ff39dd218bf815628f94b8842ec3b
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
maturin/1.9.6
|
Release files / rustshogi-0.8.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl
| Download URL | rustshogi-0.8.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl |
|---|---|
| Size | 3.1 MB |
| Tags | CPython 3.8 Linux glibc 2.17+ IBM System/390x |
|
SHA-256 checksum How to use checksums |
9c9a2d452d927d03d64670f543ecc126705ad72a36f74b7ab989b277e19de9c9
|
|
BLAKE2b-256 checksum How to use checksums |
0329a0d47cfee8891c4f30b6ec3e54554d32b512e0514f0fdfb077c615913a0b
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
maturin/1.9.6
|
Release files / rustshogi-0.8.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
| Download URL | rustshogi-0.8.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl |
|---|---|
| Size | 3.5 MB |
| Tags | CPython 3.8 Linux glibc 2.17+ PowerPC 64-le |
|
SHA-256 checksum How to use checksums |
ee4bc07f2d0c7543e1ec812df8151c9119a58267bd689825f87c9c41a9036662
|
|
BLAKE2b-256 checksum How to use checksums |
60ecf30241793554ad42b4c1f98615ad4acf6eb9473135697d817cb209952155
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
maturin/1.9.6
|
Release files / rustshogi-0.8.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
| Download URL | rustshogi-0.8.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl |
|---|---|
| Size | 2.9 MB |
| Tags | CPython 3.8 Linux glibc 2.17+ ARM64 |
|
SHA-256 checksum How to use checksums |
fba01aaefa7b70c504088127b059bef83ad152e8b5e21d6e294fe28c0770fa89
|
|
BLAKE2b-256 checksum How to use checksums |
0a98772c9137a215ab96877578f7195817ac20195493f07223279cb607842e0f
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
maturin/1.9.6
|