No project description provided
Project description
Rust Reversi
A high-performance Reversi (Othello) game engine implemented in Rust with Python bindings. This library provides a fast and efficient Reversi implementation by leveraging Rust's performance while maintaining a friendly Python interface.
Features
- High-performance implementation in Rust
- Efficient board representation using bitboards
- Easy-to-use Python interface
- Comprehensive game state manipulation methods
- Move generation and validation
- Random move sampling for testing
- Verified move generation through Perft testing
Installation
pip install rust-reversi
Basic Usage
from rust_reversi import Board, Turn, Color
# Start a new game
board = Board()
# Display the current board state
print(board)
while not board.is_game_over():
if board.is_pass():
print("No legal moves available. Passing turn.")
board.do_pass()
continue
# Get legal moves
legal_moves = board.get_legal_moves_vec()
print(f"Legal moves: {legal_moves}")
# Get random move
move = board.get_random_move()
print(f"Random move: {move}")
# Execute move
board.do_move(move)
print(board)
# Game over
winner = board.get_winner()
if winner is None:
print("Game drawn.")
elif winner == Turn.Black:
print("Black wins!")
else:
print("White wins!")
API Reference
Classes
Turn
Represents a player's turn in the game.
Turn.Black: Black playerTurn.White: White player
Color
Represents the state of a cell on the board.
Color.Empty: Empty cellColor.Black: Black pieceColor.White: White piece
Board
The main game board class with all game logic.
Constructor
Board(): Creates a new board with standard starting position
Board State Methods
get_board() -> tuple[int, int, Turn]: Returns current board state (player bitboard, opponent bitboard, turn)set_board(player_board: int, opponent_board: int, turn: Turn) -> None: Sets board state directlyset_board_str(board_str: str, turn: Turn) -> None: Sets board state from string representationget_board_vec() -> list[int]: Returns flattened board representation as a list of Colorsget_board_matrix() -> list[list[list[int]]]: Returns 3D matrix representation of board stateclone() -> Board: Creates a deep copy of the board
Piece Count Methods
player_piece_num() -> int: Returns number of current player's piecesopponent_piece_num() -> int: Returns number of opponent's piecesblack_piece_num() -> int: Returns number of black pieceswhite_piece_num() -> int: Returns number of white piecespiece_sum() -> int: Returns total number of pieces on boarddiff_piece_num() -> int: Returns absolute difference in piece count
Move Generation and Validation
get_legal_moves() -> int: Returns bitboard of legal movesget_legal_moves_vec() -> list[int]: Returns list of legal move positionsis_legal_move(pos: int) -> bool: Checks if move at position is legalget_random_move() -> int: Returns random legal move position
Game State Methods
is_pass() -> bool: Checks if current player must passis_game_over() -> bool: Checks if game is finishedis_win() -> bool: Checks if current player has wonis_lose() -> bool: Checks if current player has lostis_draw() -> bool: Checks if game is drawnis_black_win() -> bool: Checks if black has wonis_white_win() -> bool: Checks if white has wonget_winner() -> Optional[Turn]: Returns winner of game (None if draw)
Move Execution
do_move(pos: int) -> None: Executes move at specified positiondo_pass() -> None: Executes pass move when no legal moves available
Board Representation
__str__() -> str: Returns string representation of board
Board is displayed as:
|abcdefgh
-+--------
1|XXXXXXXX
2|OOOOOOOO
3|--------
...
Where:
X: Black piecesO: White pieces-: Empty cells
Development
Requirements
- Python >=3.8
- Rust toolchain
Building from Source
git clone https://github.com/yourusername/rust-reversi.git
cd rust-reversi
make dev # Development build
Running Tests
make test
Available Commands
make build: Build the project in release modemake dev: Build and install in development modemake test: Run test suitemake run: Run example script
Testing
The project includes comprehensive test coverage including Perft (Performance Test) for verifying game tree correctness:
Perft Testing
The Perft (performance test) suite verifies the correctness of the move generator by counting all possible game positions at different depths. This ensures:
- Legal move generation is working correctly
- Game state transitions are handled properly
- All game tree paths are being correctly explored
Two testing modes are implemented:
- Standard mode: Counts leaf nodes at each depth
- Pass-exclusive mode: Counts leaf nodes. Depth does not decriment by passing turn
These tests compare against known correct node counts for the Reversi game tree, providing confidence in the game engine's core functionality.
Performance
The library uses bitboard representation and efficient algorithms for:
- Legal move generation
- Board state updates
- Game state evaluation
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 Distribution
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 rust_reversi-0.1.1.tar.gz.
File metadata
- Download URL: rust_reversi-0.1.1.tar.gz
- Upload date:
- Size: 12.9 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.8
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
4c3d99f8ba4396d3ea5cc25aaa25128e1058a182ed417d1d0d1941dd000a648a
|
|
| MD5 |
ea23f5f7f2997642906d1074ad778858
|
|
| BLAKE2b-256 |
6d08094d4ee494b8aa5472ea6d0af8c8f5701857ce9ed44291d77b5e972938eb
|
File details
Details for the file rust_reversi-0.1.1-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: rust_reversi-0.1.1-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 461.0 kB
- Tags: PyPy, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.8
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
ad83e53a80c040c41561bb644960a27fcb71a47ed1d095c4e558c63b59202c27
|
|
| MD5 |
b0f3656276194685c5bcdba431c50599
|
|
| BLAKE2b-256 |
d5657167094bfaa3a287c867f904954bfbfdb8ab1b7bb05f9aaa6880b58895f2
|
File details
Details for the file rust_reversi-0.1.1-pp310-pypy310_pp73-musllinux_1_2_i686.whl.
File metadata
- Download URL: rust_reversi-0.1.1-pp310-pypy310_pp73-musllinux_1_2_i686.whl
- Upload date:
- Size: 485.3 kB
- Tags: PyPy, musllinux: musl 1.2+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.8
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
8119b3f5b3ef3329243b502ae672ed407432cbb52bb62b2c33273a5c16eb5bda
|
|
| MD5 |
75eaf720897d69fffc8b417a3e09ca62
|
|
| BLAKE2b-256 |
5d8b611019a33cc33cd14588778d04fae1a70358e08917ec61497bdd0ea631fd
|
File details
Details for the file rust_reversi-0.1.1-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl.
File metadata
- Download URL: rust_reversi-0.1.1-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl
- Upload date:
- Size: 557.3 kB
- Tags: PyPy, musllinux: musl 1.2+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.8
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
a313778417d61566cadfb9885d74b576697274287d09b41ed11bb30a43c2fda0
|
|
| MD5 |
e5a44e2af79046ce899ef15e1df50dfb
|
|
| BLAKE2b-256 |
a031e0b9a9ce201987ac7c6974ae333134a4bbead8dd387a21435b803fc26ac3
|
File details
Details for the file rust_reversi-0.1.1-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: rust_reversi-0.1.1-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 465.5 kB
- Tags: PyPy, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.8
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
93ad431e3a93d0e486ff2a3446a052e88742779c12af09c397f3f394b4efe21f
|
|
| MD5 |
7ddbf06ed4eb73bdc541cf0afffa80d6
|
|
| BLAKE2b-256 |
2393a17dcb7c03e18cc5c6a42a36966a5b3a483bb3b79be1d271267d5ee3842f
|
File details
Details for the file rust_reversi-0.1.1-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: rust_reversi-0.1.1-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 290.2 kB
- Tags: PyPy, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.8
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
271e56eddc47960f9704610d939ac84c910d563b3708bacfb8b58650243f8815
|
|
| MD5 |
b2bfc9ebf4ea23f9c0e6d970391f5c99
|
|
| BLAKE2b-256 |
af64223d2389207b65dbaa0bb4362294f9fe0ae9726a1dc3cda4afbe999c3151
|
File details
Details for the file rust_reversi-0.1.1-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl.
File metadata
- Download URL: rust_reversi-0.1.1-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
- Upload date:
- Size: 336.9 kB
- Tags: PyPy, manylinux: glibc 2.17+ s390x
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.8
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
bf3aced82c54d8a4843866857bfe3feb3da83024330fcd09f5af1e6f2ab5e5ca
|
|
| MD5 |
7f0a1da166814f5fabaad4c112e8c57e
|
|
| BLAKE2b-256 |
293282d93d691fa1bd4a9513c53fed76d5e0ed0ee92b243f53603326e980e6cd
|
File details
Details for the file rust_reversi-0.1.1-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.
File metadata
- Download URL: rust_reversi-0.1.1-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
- Upload date:
- Size: 330.8 kB
- Tags: PyPy, manylinux: glibc 2.17+ ppc64le
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.8
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
9940128e97bf1547edeaff420366471e2bf103f253707d053ef7cf7e172f2deb
|
|
| MD5 |
dd207b0fda0112cb835d7bc3144a7e66
|
|
| BLAKE2b-256 |
217b3e19eaecfffe03d91821ad686997c9812e9911410f6de1aaedca139fceaf
|
File details
Details for the file rust_reversi-0.1.1-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.
File metadata
- Download URL: rust_reversi-0.1.1-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
- Upload date:
- Size: 295.1 kB
- Tags: PyPy, manylinux: glibc 2.17+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.8
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
14d1c63063ec8024eea3270f7b27c49a45d0ad1c39c946ce69afa341e420065b
|
|
| MD5 |
acd1fbdd1320bba2bb8d4cbe86d1aaf3
|
|
| BLAKE2b-256 |
06d59047b384af08778adde7faa53d58322639b7b80a06503a22f176adcdc32c
|
File details
Details for the file rust_reversi-0.1.1-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: rust_reversi-0.1.1-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 287.1 kB
- Tags: PyPy, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.8
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
13088b6b3d406d178e1ad3fe13ed09e5ec7d28e029412f310a0c1abe9c9d4ae7
|
|
| MD5 |
3388bed1f6f78d6e4a760515a0c864c7
|
|
| BLAKE2b-256 |
d2b1a4c76815da9911f732cbcc5933dd3feba2658e9a47f7c3faf3edb3968f92
|
File details
Details for the file rust_reversi-0.1.1-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl.
File metadata
- Download URL: rust_reversi-0.1.1-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl
- Upload date:
- Size: 308.0 kB
- Tags: PyPy, manylinux: glibc 2.5+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.8
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
a601690ea3ca16bd68f2b1a625999ff4118d156f16b34b96c94aed377c113988
|
|
| MD5 |
912dc4aaa2e4d400abceaf0d8b4db5aa
|
|
| BLAKE2b-256 |
8ad060cf4113699fb51f3a230da21333d324093d579f25b87539d5a371caa1a9
|
File details
Details for the file rust_reversi-0.1.1-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: rust_reversi-0.1.1-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 460.9 kB
- Tags: PyPy, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.8
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
bb5920efd526f0d1aee08ad6f1a4f624b919272e5ece661d97182a1104766167
|
|
| MD5 |
7cb2dfd2d5f025c8f90e7be868dda361
|
|
| BLAKE2b-256 |
b72de2231749028e520ce0c553fe2733fd6669f56b86b273ba74d9f5785087b3
|
File details
Details for the file rust_reversi-0.1.1-pp39-pypy39_pp73-musllinux_1_2_i686.whl.
File metadata
- Download URL: rust_reversi-0.1.1-pp39-pypy39_pp73-musllinux_1_2_i686.whl
- Upload date:
- Size: 485.4 kB
- Tags: PyPy, musllinux: musl 1.2+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.8
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
632ba581030c5a496428f0b95d536bed0789c1e5b43bc9f68ec48c5b9d616c63
|
|
| MD5 |
886d839afa6ecee067fece770b70b3a7
|
|
| BLAKE2b-256 |
008cb6d72b0f5e5d73d4512567769a19637c1ddf144511aaafc81a85f70e8af5
|
File details
Details for the file rust_reversi-0.1.1-pp39-pypy39_pp73-musllinux_1_2_armv7l.whl.
File metadata
- Download URL: rust_reversi-0.1.1-pp39-pypy39_pp73-musllinux_1_2_armv7l.whl
- Upload date:
- Size: 557.5 kB
- Tags: PyPy, musllinux: musl 1.2+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.8
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
65220f707c393f888c7c960a9a0c1b07826db8231966aa443494d475b6c77efd
|
|
| MD5 |
012ed527a67686339420775685cf5382
|
|
| BLAKE2b-256 |
2efe79fb5d41d0847d55d48b896cbce527df18c5ba68b6ef1ce9a4a00c7e3d2b
|
File details
Details for the file rust_reversi-0.1.1-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: rust_reversi-0.1.1-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 465.2 kB
- Tags: PyPy, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.8
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
1e5a9abfd0f0ead7c4ee12dfe8c8f7146bd4f78494ba2644bddf671932cc62bb
|
|
| MD5 |
59326c18d4a02ce80ead487516be6a55
|
|
| BLAKE2b-256 |
a78ac5aa741051d87253c0836c519a4d911429e46e91ac1cca437d4366d2bbe8
|
File details
Details for the file rust_reversi-0.1.1-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl.
File metadata
- Download URL: rust_reversi-0.1.1-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
- Upload date:
- Size: 336.8 kB
- Tags: PyPy, manylinux: glibc 2.17+ s390x
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.8
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
90b08baa2bb84405fc41828f4bf8340430833bda115d7244a6f88083432cabce
|
|
| MD5 |
4b085bd8d14f9c1f3bf8991ae8d327ad
|
|
| BLAKE2b-256 |
cb41aa166e6ed155e97db1cf04e2b10584a7a5ef27f73cfe42dd7dab57cfc3f8
|
File details
Details for the file rust_reversi-0.1.1-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.
File metadata
- Download URL: rust_reversi-0.1.1-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
- Upload date:
- Size: 330.7 kB
- Tags: PyPy, manylinux: glibc 2.17+ ppc64le
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.8
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
08d13ec56a898e74f08a868d0883d8cce83f0d726b8cc2fe8047ad68e4b1fcf0
|
|
| MD5 |
d5288321155c465e9620d7fb7e3bc336
|
|
| BLAKE2b-256 |
2313a220b60724a6d13d8140c1f9445801a61ac792e4a3516de4b8e303446d97
|
File details
Details for the file rust_reversi-0.1.1-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.
File metadata
- Download URL: rust_reversi-0.1.1-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
- Upload date:
- Size: 294.8 kB
- Tags: PyPy, manylinux: glibc 2.17+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.8
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
07edd745bec403d8c091eb5f70218ecafa5474f5ea220d2cbb73cddb39ec1db4
|
|
| MD5 |
42c8cfb6d9a4922aa3943f460cc41b47
|
|
| BLAKE2b-256 |
80a5a1eca6f692186d33fee821306acbb9c1a7ef41c72bef2a0ebb1a96f6f2f9
|
File details
Details for the file rust_reversi-0.1.1-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: rust_reversi-0.1.1-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 287.1 kB
- Tags: PyPy, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.8
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
143ff165d4a84e062ffebff86a73ae0839b1545bfdbf9cdc107396d3f8f4cb59
|
|
| MD5 |
8cc85663447c1d69230bddb7a5ad8fff
|
|
| BLAKE2b-256 |
40696961605ae762256cb1e37eb264efa6f777f4a2fcf71704c5afc0350e09f7
|
File details
Details for the file rust_reversi-0.1.1-cp313-cp313t-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: rust_reversi-0.1.1-cp313-cp313t-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 460.3 kB
- Tags: CPython 3.13t, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.8
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
41cf8245703f3403666a7d88bfcf4ec97ddbb144e4472d394f9c69b52a291567
|
|
| MD5 |
9de43ccdb4e2a5b1d63ce28811b175e0
|
|
| BLAKE2b-256 |
023abc50703f24bc243184c613a2eb235cb218ea0743c10c9d7c6873f51e584d
|
File details
Details for the file rust_reversi-0.1.1-cp313-cp313t-musllinux_1_2_i686.whl.
File metadata
- Download URL: rust_reversi-0.1.1-cp313-cp313t-musllinux_1_2_i686.whl
- Upload date:
- Size: 485.0 kB
- Tags: CPython 3.13t, musllinux: musl 1.2+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.8
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
7f98be80319ea0e01b4b53fea5c10e86a637a2ddf69da7f82c9b6d900a9fafbd
|
|
| MD5 |
90a0fe2f330baddabae6de76e8b8af3c
|
|
| BLAKE2b-256 |
6aec2d3ef8531991abe849b83b1285ad29702a66b01b5bf15dca186b2593d219
|
File details
Details for the file rust_reversi-0.1.1-cp313-cp313t-musllinux_1_2_armv7l.whl.
File metadata
- Download URL: rust_reversi-0.1.1-cp313-cp313t-musllinux_1_2_armv7l.whl
- Upload date:
- Size: 557.0 kB
- Tags: CPython 3.13t, musllinux: musl 1.2+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.8
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
80e073959482f3770a53643104b5d5ec2259603b745a58d6f2a9dbb97ada8ce3
|
|
| MD5 |
7bd43e5a1cf6765b80e55b84ea9731cc
|
|
| BLAKE2b-256 |
c6615feff75d3afd195e0b7ad11dc01fcf8bed29be7edfc004b142763e935299
|
File details
Details for the file rust_reversi-0.1.1-cp313-cp313t-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: rust_reversi-0.1.1-cp313-cp313t-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 464.6 kB
- Tags: CPython 3.13t, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.8
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
bae901adbf687b93a3210aef43d85dd303633e93ec1010e7aad88fc157646c2a
|
|
| MD5 |
43489571b667d0291c7b964dade7045c
|
|
| BLAKE2b-256 |
cfd757155b10a90edfffd9c2c8a1db1c045f144d6b50964c437b782986cd3f38
|
File details
Details for the file rust_reversi-0.1.1-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl.
File metadata
- Download URL: rust_reversi-0.1.1-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl
- Upload date:
- Size: 336.8 kB
- Tags: CPython 3.13t, manylinux: glibc 2.17+ s390x
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.8
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
6c489f6a0bc21992488b11b073516e28ce229033e93aca4ca2711c9fdc791a24
|
|
| MD5 |
ff2c53d157a9d8ec04f096344407821c
|
|
| BLAKE2b-256 |
61ba35b667151f8d62409ccb4e82da210af4f4b7565d3a4492f85590487760a4
|
File details
Details for the file rust_reversi-0.1.1-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.
File metadata
- Download URL: rust_reversi-0.1.1-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
- Upload date:
- Size: 330.3 kB
- Tags: CPython 3.13t, manylinux: glibc 2.17+ ppc64le
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.8
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
95a5181511db15cca649dacad0951644873e48fa065e346cb45d7c1c92cea71b
|
|
| MD5 |
dcb66166c20fd4584ee4a5c7148f8d41
|
|
| BLAKE2b-256 |
24408cc13838006668fd1c2c269b10d563d1eb6b725f4b4e11799b785e0ae963
|
File details
Details for the file rust_reversi-0.1.1-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.
File metadata
- Download URL: rust_reversi-0.1.1-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
- Upload date:
- Size: 294.9 kB
- Tags: CPython 3.13t, manylinux: glibc 2.17+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.8
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
539f8b456fa6791c41989890cf17212b4180e7f3151bfee1bc96ec5d3f02e470
|
|
| MD5 |
ae1d3682fb77a9e11c454727dd2b8c0d
|
|
| BLAKE2b-256 |
8a3b385f78456cd9d91e9cd1298fd931a4fd4f854ae949cb4788d931ecd545e4
|
File details
Details for the file rust_reversi-0.1.1-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: rust_reversi-0.1.1-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 286.0 kB
- Tags: CPython 3.13t, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.8
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
74f05d8547110b08850b0c86c79a19d82d5090fa0874dd8c8b64a2bcea7a0dd6
|
|
| MD5 |
0e2e7346aa753efbe971f22622c5a9ec
|
|
| BLAKE2b-256 |
ae9ccd8978564c23aaca14e78c10c7957fec99169a3fb1bcc85a2cacefc846ad
|
File details
Details for the file rust_reversi-0.1.1-cp313-cp313-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: rust_reversi-0.1.1-cp313-cp313-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 460.5 kB
- Tags: CPython 3.13, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.8
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
cde654e4b2210676d8bdf1c9954ab0f89cc43bf8cafa3896f1112ead0cc6f929
|
|
| MD5 |
d4e8ebf280605f2b56c7dd3b003c631a
|
|
| BLAKE2b-256 |
159800d188ab0a7d15ccb041d0780c896e9e5db72c6ba858c2bbbd35a773e1c9
|
File details
Details for the file rust_reversi-0.1.1-cp313-cp313-musllinux_1_2_i686.whl.
File metadata
- Download URL: rust_reversi-0.1.1-cp313-cp313-musllinux_1_2_i686.whl
- Upload date:
- Size: 485.4 kB
- Tags: CPython 3.13, musllinux: musl 1.2+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.8
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
45cad1a3452be160a725ef125d5560de2f024ca83c9f62edb3a42a20d098927f
|
|
| MD5 |
34d1ffb1bb54dffea0e015c64fbefc07
|
|
| BLAKE2b-256 |
1007934b56156c021c1e63c2a5c0a67d09dc2078fded5ae0b67515fdca95cf1c
|
File details
Details for the file rust_reversi-0.1.1-cp313-cp313-musllinux_1_2_armv7l.whl.
File metadata
- Download URL: rust_reversi-0.1.1-cp313-cp313-musllinux_1_2_armv7l.whl
- Upload date:
- Size: 557.4 kB
- Tags: CPython 3.13, musllinux: musl 1.2+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.8
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
b893049b4897a8378ef3d35e03acf14d34333f6906e5fc8e16de55092982e392
|
|
| MD5 |
df9738848b98eeeb2d29f1c1e418f589
|
|
| BLAKE2b-256 |
ab61c567bfedf3312ad83019bf3013e80ea06fbea6e6f7bc79e1b53d56fc4bc9
|
File details
Details for the file rust_reversi-0.1.1-cp313-cp313-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: rust_reversi-0.1.1-cp313-cp313-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 465.1 kB
- Tags: CPython 3.13, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.8
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
514103fc9e41fd59d217d4bb17fdbc301edb312596bff589ac5552e88ac9989b
|
|
| MD5 |
33c61338a2b9bb770b70b932671cab77
|
|
| BLAKE2b-256 |
8d299104549971984a200f6d2bad5354b0ca19dbfd2ecf8bf9a5e6b9de8800a7
|
File details
Details for the file rust_reversi-0.1.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: rust_reversi-0.1.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 289.6 kB
- Tags: CPython 3.13, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.8
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
5328305626623e1ffd8368a7376b4a82c9f9985a1225dde6721031ff068d6ece
|
|
| MD5 |
73eb8fc02a1d06df8c8a990b073b9de1
|
|
| BLAKE2b-256 |
868f91cb24cd1105f3c07a7897f97ba7c51ca99b2dc612968a279d26938c5e24
|
File details
Details for the file rust_reversi-0.1.1-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl.
File metadata
- Download URL: rust_reversi-0.1.1-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
- Upload date:
- Size: 334.2 kB
- Tags: CPython 3.13, manylinux: glibc 2.17+ s390x
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.8
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
3fb98908c1d9cb11cdbe78ed4343256e88f1433daff49971e88917a456d53b04
|
|
| MD5 |
3bb8c39de337364c925309bc38bd8918
|
|
| BLAKE2b-256 |
448ca39e369c8cfa182a50063d55b2e7c9e0384b46c0dbe243e5f5e21dbbed55
|
File details
Details for the file rust_reversi-0.1.1-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.
File metadata
- Download URL: rust_reversi-0.1.1-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
- Upload date:
- Size: 330.3 kB
- Tags: CPython 3.13, manylinux: glibc 2.17+ ppc64le
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.8
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
fdb2095e3b0cd3dd15580e1ec1af1fe327b45145ae940ec5559f2e956c229994
|
|
| MD5 |
c97020b34bc03fd4a50c7c16ea681b8c
|
|
| BLAKE2b-256 |
0fdfc507391063d308ffeab12873adad0ea376901824be18a00f3d85ef5aba1b
|
File details
Details for the file rust_reversi-0.1.1-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.
File metadata
- Download URL: rust_reversi-0.1.1-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
- Upload date:
- Size: 295.3 kB
- Tags: CPython 3.13, manylinux: glibc 2.17+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.8
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
24f243a4e2dfd7be8c95cd0ae8c9cc2d20d0e5b5cd3fe76044133ae44eb782e9
|
|
| MD5 |
1accb082b5b02409dfa179e200ac2f1b
|
|
| BLAKE2b-256 |
2977f7358c97bbc4983a8aa41e4eaa9d68e8d8a5f3c490bd56ea41aaa81dd180
|
File details
Details for the file rust_reversi-0.1.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: rust_reversi-0.1.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 286.5 kB
- Tags: CPython 3.13, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.8
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
5660dc1644e03a3a7d7c33d5cb3b3669ddbafd824bfec90afb2e975db0388f0e
|
|
| MD5 |
9010f9e96dcd211de3caff832932f6b8
|
|
| BLAKE2b-256 |
4cd8bf6538d4cd1c10528d828353b420bb29bf51c83341307a05fb8f7bace6b8
|
File details
Details for the file rust_reversi-0.1.1-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl.
File metadata
- Download URL: rust_reversi-0.1.1-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl
- Upload date:
- Size: 307.7 kB
- Tags: CPython 3.13, manylinux: glibc 2.5+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.8
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
2801d9a37efd6d88cacfab54ec33988c7fd69bd0fac202d549022d8749615a8a
|
|
| MD5 |
7426ee910731a715d04390b341a91549
|
|
| BLAKE2b-256 |
a13516377fbb3504d764849906df31feb2759d560bd60568491ecdaa8977b779
|
File details
Details for the file rust_reversi-0.1.1-cp313-cp313-macosx_11_0_arm64.whl.
File metadata
- Download URL: rust_reversi-0.1.1-cp313-cp313-macosx_11_0_arm64.whl
- Upload date:
- Size: 250.7 kB
- Tags: CPython 3.13, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.8
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
47d7c402b778c2d2a93f6664a301c55658d22c66330deecc377e808904fc2fe6
|
|
| MD5 |
dd8caa1c629de08bde21d9cceb737932
|
|
| BLAKE2b-256 |
90d1a49981bbc279f469919188ba2ffc5aaa5ca9425ff969efca09d9e46c6833
|
File details
Details for the file rust_reversi-0.1.1-cp313-cp313-macosx_10_12_x86_64.whl.
File metadata
- Download URL: rust_reversi-0.1.1-cp313-cp313-macosx_10_12_x86_64.whl
- Upload date:
- Size: 258.5 kB
- Tags: CPython 3.13, macOS 10.12+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.8
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
190fa136cb8b6f590d7bd8484a605525b0b9b916c7d9e14631b6c3746cf37cfb
|
|
| MD5 |
bc7baf157a42ea5b3d28b7a7cc7888f9
|
|
| BLAKE2b-256 |
ba1941dbff202b46819b456761b935f3b22a0a51f3722f76598ecaf40d277626
|
File details
Details for the file rust_reversi-0.1.1-cp312-cp312-win_amd64.whl.
File metadata
- Download URL: rust_reversi-0.1.1-cp312-cp312-win_amd64.whl
- Upload date:
- Size: 151.4 kB
- Tags: CPython 3.12, Windows x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.8
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
4c2366034b5faa1bd75d443f9b4fa4f91cb6c473ed634f91131b9bcb98e26f4e
|
|
| MD5 |
7792bd126445c7776fa935c2d11f3d7d
|
|
| BLAKE2b-256 |
0ae8e550c2670a9474d958823ec7f775152bb5c1ad2e86d1564e0e3b010e700a
|
File details
Details for the file rust_reversi-0.1.1-cp312-cp312-win32.whl.
File metadata
- Download URL: rust_reversi-0.1.1-cp312-cp312-win32.whl
- Upload date:
- Size: 142.4 kB
- Tags: CPython 3.12, Windows x86
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.8
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
301842361646f199557acde29ed632cf2d39c8b0c5143c4bf8d693cfe75c5021
|
|
| MD5 |
04bfba5b1db81500ce0a6d2ed3f889c2
|
|
| BLAKE2b-256 |
96952c01a3a720b25d24d4030ae188db3fbcc5eec2c6fe58c992de676377d0b2
|
File details
Details for the file rust_reversi-0.1.1-cp312-cp312-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: rust_reversi-0.1.1-cp312-cp312-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 460.5 kB
- Tags: CPython 3.12, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.8
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
8cb136de66c44aeaa2d5da61d3c455b2c3da598358b21a7754dd273a8426dcd8
|
|
| MD5 |
24b701cc7f9c34ad13942d705a063ec7
|
|
| BLAKE2b-256 |
cf071c1359389a8570d879833e8eda005f679d2b755399465bb1748306d9c05a
|
File details
Details for the file rust_reversi-0.1.1-cp312-cp312-musllinux_1_2_i686.whl.
File metadata
- Download URL: rust_reversi-0.1.1-cp312-cp312-musllinux_1_2_i686.whl
- Upload date:
- Size: 485.6 kB
- Tags: CPython 3.12, musllinux: musl 1.2+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.8
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
a4b3bdf80743f3d18b19956cc7f32f66a2f829b44022e4965cf7c6b64d5414a5
|
|
| MD5 |
dc1394787f6ada9138138cdad5b4d428
|
|
| BLAKE2b-256 |
9d0ea7c60972442f58e83a54b0b9c9ffc0eef04bfb8acf61fd246dc825a096be
|
File details
Details for the file rust_reversi-0.1.1-cp312-cp312-musllinux_1_2_armv7l.whl.
File metadata
- Download URL: rust_reversi-0.1.1-cp312-cp312-musllinux_1_2_armv7l.whl
- Upload date:
- Size: 557.5 kB
- Tags: CPython 3.12, musllinux: musl 1.2+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.8
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
e4aa5c59287485f828048eec439d2ff16baa077ef1cdb99566a1390731e966b4
|
|
| MD5 |
41f9b57752dd76af7d2cf4b9666e65dc
|
|
| BLAKE2b-256 |
b566a1f913150430b8443e1aaf7d312eeb8f17e028b2f86ecd7b881ba790fe62
|
File details
Details for the file rust_reversi-0.1.1-cp312-cp312-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: rust_reversi-0.1.1-cp312-cp312-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 465.3 kB
- Tags: CPython 3.12, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.8
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
a452e97387d21906d814c4f35e16b7cf90f9b85cfe32e9a2d9c5dd2c66f30ae3
|
|
| MD5 |
0e63b78bed3232b97d1d3d9251f5a2f3
|
|
| BLAKE2b-256 |
b529defdfae73c32e3821f3ccd5f78bfa2b53cada3ab4300c8423b9eedfbadcd
|
File details
Details for the file rust_reversi-0.1.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: rust_reversi-0.1.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 289.6 kB
- Tags: CPython 3.12, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.8
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
c1eb175d0023236de0d209c3d07da84dbe67776dbc632b8875b23ede7da061af
|
|
| MD5 |
6c683967d0d71f036dfc13ef704d3308
|
|
| BLAKE2b-256 |
d08b4e61cd10b40f4cdff94d912659fe2fac3d7306daf5dca36fb483a70db7a7
|
File details
Details for the file rust_reversi-0.1.1-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl.
File metadata
- Download URL: rust_reversi-0.1.1-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
- Upload date:
- Size: 334.9 kB
- Tags: CPython 3.12, manylinux: glibc 2.17+ s390x
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.8
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
57dd1a6c5b9e4abf78274aebaa883309eb6511e77e990395390dedea74867172
|
|
| MD5 |
da6b83af0e078ba57e86d9fcfaf3ec82
|
|
| BLAKE2b-256 |
cc9e28fee8469a4322ddc45b8752b1f00638f1dd141052c0b5d29eb53275e6de
|
File details
Details for the file rust_reversi-0.1.1-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.
File metadata
- Download URL: rust_reversi-0.1.1-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
- Upload date:
- Size: 330.5 kB
- Tags: CPython 3.12, manylinux: glibc 2.17+ ppc64le
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.8
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
728612c3af7d374ec567c53c7dcb1529dc7aee890810cec3e4b986a93d5ef257
|
|
| MD5 |
e49d335952f30a22f077b52a29e3d355
|
|
| BLAKE2b-256 |
121aa1fd6e64a0dbf445babd15164c72e079db4eec49e01bc600d18cf7130602
|
File details
Details for the file rust_reversi-0.1.1-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.
File metadata
- Download URL: rust_reversi-0.1.1-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
- Upload date:
- Size: 295.4 kB
- Tags: CPython 3.12, manylinux: glibc 2.17+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.8
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
0029244d3f5998cc4efd4d3c59040cb3b8723e5405eacfc405f9b58afa114f45
|
|
| MD5 |
efeb0226a100c0b582fbf01692ab7b5b
|
|
| BLAKE2b-256 |
a2e7afdef572ef551191b4b4ea694af29bd34e74053eeb6c35d70044cacbc818
|
File details
Details for the file rust_reversi-0.1.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: rust_reversi-0.1.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 286.5 kB
- Tags: CPython 3.12, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.8
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
9a68599dd799e250fa907be48f6e5634ae67dea5f230c599f1c40818d0318204
|
|
| MD5 |
49b534e08514e7ebe33e7b01daf380af
|
|
| BLAKE2b-256 |
a01a098841121996c864e936132d1e0565913ff26848338621f6886fce37ebc8
|
File details
Details for the file rust_reversi-0.1.1-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl.
File metadata
- Download URL: rust_reversi-0.1.1-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl
- Upload date:
- Size: 307.7 kB
- Tags: CPython 3.12, manylinux: glibc 2.5+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.8
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
38b6eaa7ea7490cfbbfd85c365592f60333bc4dc663cff3f5827a185ec5803f9
|
|
| MD5 |
81627d3b1f860998be509b5fb83f4e60
|
|
| BLAKE2b-256 |
67bdcd90bf4e8dd818e87b20652d22fa167678124a8dec1cc2f5dbc5c8a30ca1
|
File details
Details for the file rust_reversi-0.1.1-cp312-cp312-macosx_11_0_arm64.whl.
File metadata
- Download URL: rust_reversi-0.1.1-cp312-cp312-macosx_11_0_arm64.whl
- Upload date:
- Size: 250.1 kB
- Tags: CPython 3.12, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.8
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
6b84fd16c2ba4dcaf997b6fc4ae950138ef58654d210dcb4bd6ee6234c92f9c6
|
|
| MD5 |
14a52acb1aa5fa8e8c06c44fa2764850
|
|
| BLAKE2b-256 |
5ce2cbf96df2653f87c112cd8e9fb0ec3e73f8a62183d1b7bb87ae87a83de85e
|
File details
Details for the file rust_reversi-0.1.1-cp312-cp312-macosx_10_12_x86_64.whl.
File metadata
- Download URL: rust_reversi-0.1.1-cp312-cp312-macosx_10_12_x86_64.whl
- Upload date:
- Size: 258.2 kB
- Tags: CPython 3.12, macOS 10.12+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.8
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
1db4da667028ffaefaf56fbb41b496c172532589f24273dda92406b4cc0c8901
|
|
| MD5 |
ddd75a9dfa7071e78757f585b1209981
|
|
| BLAKE2b-256 |
1be8c47ba1f7f003b61abcb9f0f1c97dcef74a55f2d11581f55fd8ef1b38a7c1
|
File details
Details for the file rust_reversi-0.1.1-cp311-cp311-win_amd64.whl.
File metadata
- Download URL: rust_reversi-0.1.1-cp311-cp311-win_amd64.whl
- Upload date:
- Size: 150.6 kB
- Tags: CPython 3.11, Windows x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.8
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
8987d7c6116878674c82e833c52fdef29fad0dbbf1ed1d7647edafc0a7f13ea8
|
|
| MD5 |
5ec7b21dc1df4c64acd2b5aeb0608dcf
|
|
| BLAKE2b-256 |
3512856024e702547761b5f34e31c44bbddb185d173f750222389a5815861dfa
|
File details
Details for the file rust_reversi-0.1.1-cp311-cp311-win32.whl.
File metadata
- Download URL: rust_reversi-0.1.1-cp311-cp311-win32.whl
- Upload date:
- Size: 142.0 kB
- Tags: CPython 3.11, Windows x86
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.8
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
1f989664f55fb88102951c1dc47b31f7aa02786c90b145a6e0c5a43bd49e51f1
|
|
| MD5 |
f27082c136ea053f6e344b68b0f8a088
|
|
| BLAKE2b-256 |
d756e84792e3926f3f59d99b30dc3a442fdb455058b28e82023adf1781103a64
|
File details
Details for the file rust_reversi-0.1.1-cp311-cp311-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: rust_reversi-0.1.1-cp311-cp311-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 460.5 kB
- Tags: CPython 3.11, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.8
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
3cadb310018684bf2ea21ecc079a5888b112b8bb38e54452b18dfb2ed2584723
|
|
| MD5 |
946180096f984f74ff3aa4fb229e5fff
|
|
| BLAKE2b-256 |
697a83010eaec7957cf96ceb02a344f445106169cc9d274dff3301c5525e30ab
|
File details
Details for the file rust_reversi-0.1.1-cp311-cp311-musllinux_1_2_i686.whl.
File metadata
- Download URL: rust_reversi-0.1.1-cp311-cp311-musllinux_1_2_i686.whl
- Upload date:
- Size: 486.4 kB
- Tags: CPython 3.11, musllinux: musl 1.2+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.8
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
1fd68de26b0cb1775e476f0244975d2de1a43aaa17ac0bf09efaa60b56b2f977
|
|
| MD5 |
a469335fadd3b95d058b65464927422e
|
|
| BLAKE2b-256 |
4874b5697d7b655b45adf2ef0ac700036ac3d0543e538ddc20f6cab1cbcdea1b
|
File details
Details for the file rust_reversi-0.1.1-cp311-cp311-musllinux_1_2_armv7l.whl.
File metadata
- Download URL: rust_reversi-0.1.1-cp311-cp311-musllinux_1_2_armv7l.whl
- Upload date:
- Size: 557.3 kB
- Tags: CPython 3.11, musllinux: musl 1.2+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.8
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
4bd38639a00994a8c9c93530144fd03a505ccd61284f7f8c55339f810cfdc8de
|
|
| MD5 |
399b9630f94def8772df92fd4f6f0160
|
|
| BLAKE2b-256 |
e20cca845188e7e7b31a3d8eb0dda4a4f11b820cae4c858e1d23fdf48e8a8b19
|
File details
Details for the file rust_reversi-0.1.1-cp311-cp311-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: rust_reversi-0.1.1-cp311-cp311-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 465.2 kB
- Tags: CPython 3.11, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.8
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
4868de184c15c2f1b83f3bedb00e0b2f7de68345a1f9b20b172d2bf55c980836
|
|
| MD5 |
a422e66db5db464b5550dd031413fb70
|
|
| BLAKE2b-256 |
81455902975e5035e9b46591fd68f2fd42a82dcee3df06fca4b9eaa82b48c67f
|
File details
Details for the file rust_reversi-0.1.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: rust_reversi-0.1.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 289.7 kB
- Tags: CPython 3.11, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.8
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
18e454e48654ce991b1be57a30631ad3a4fc90f3537db5fcd86e22ed3811d781
|
|
| MD5 |
eb414eab160e7314220d384ddb1b1500
|
|
| BLAKE2b-256 |
912c0b2d305d690e2d8922d248c3fd43cc1b0ef0f271a58b69bd80df4e971c15
|
File details
Details for the file rust_reversi-0.1.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl.
File metadata
- Download URL: rust_reversi-0.1.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
- Upload date:
- Size: 336.4 kB
- Tags: CPython 3.11, manylinux: glibc 2.17+ s390x
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.8
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
b2a388b4da1cc48373c06e4620c94b6a3168f8d741326493c7e6458d95d2e513
|
|
| MD5 |
879cfa840edff7aaa7cdd8318b6bc961
|
|
| BLAKE2b-256 |
e31c448d63e49b672564000d7d387e937e18ec4ffc011f0324b2df80aa85d6a3
|
File details
Details for the file rust_reversi-0.1.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.
File metadata
- Download URL: rust_reversi-0.1.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
- Upload date:
- Size: 331.3 kB
- Tags: CPython 3.11, manylinux: glibc 2.17+ ppc64le
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.8
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
20b7d82f259c19f2cd6ac6ff58f1be9dc89189110f0d7a6dde7445f8dc4850e9
|
|
| MD5 |
2fb4a8debb7374103a501407e8504483
|
|
| BLAKE2b-256 |
01058bbd50f347d74ef4e4a288f3aa59636905d3cba06573df116c44aa6c7046
|
File details
Details for the file rust_reversi-0.1.1-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.
File metadata
- Download URL: rust_reversi-0.1.1-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
- Upload date:
- Size: 295.0 kB
- Tags: CPython 3.11, manylinux: glibc 2.17+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.8
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
6313eb4b44ca1e6fcba60a96fd1c8642af500ac769382a8bc32738be560e0579
|
|
| MD5 |
42b369b31e414f56640513e5903f5f5d
|
|
| BLAKE2b-256 |
d63ba6768d3e22442a7f650809d32c6b78c7f4c611755801b9c36e2b8cd3d0c6
|
File details
Details for the file rust_reversi-0.1.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: rust_reversi-0.1.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 286.9 kB
- Tags: CPython 3.11, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.8
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
1567c971459278f16d6012e82d5a9acf7827bc4ac31dfdc013c11b8e676bf06b
|
|
| MD5 |
5e0c9ad9d732f6c5e3523563fd4bfafe
|
|
| BLAKE2b-256 |
3ae1b27a681dac8cf37702954304b9dc83794b2fa0c7fc1bdb974156077188eb
|
File details
Details for the file rust_reversi-0.1.1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl.
File metadata
- Download URL: rust_reversi-0.1.1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl
- Upload date:
- Size: 308.4 kB
- Tags: CPython 3.11, manylinux: glibc 2.5+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.8
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
25249ba9f18dd57abea7599f80b1f816abeae88581f8d346796283d8b25c8159
|
|
| MD5 |
535a76396f93500dfe6f353ec5251919
|
|
| BLAKE2b-256 |
53c4e73126824b6ed0675b09d2573f6f95f10e43ab6333943f4e6a5ed0bc970c
|
File details
Details for the file rust_reversi-0.1.1-cp311-cp311-macosx_11_0_arm64.whl.
File metadata
- Download URL: rust_reversi-0.1.1-cp311-cp311-macosx_11_0_arm64.whl
- Upload date:
- Size: 254.6 kB
- Tags: CPython 3.11, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.8
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
87732d9c30863ce5ca4a87c82ba3a7dfd89ba63fa3cb6a6c803d79c2f3854936
|
|
| MD5 |
775207d5ae109daddfe4ad9409f37ab1
|
|
| BLAKE2b-256 |
a9cdd45d09d0729aa24ce2be0a7ca9b9f6710620f18bb85254e1178b8f4a4fa8
|
File details
Details for the file rust_reversi-0.1.1-cp311-cp311-macosx_10_12_x86_64.whl.
File metadata
- Download URL: rust_reversi-0.1.1-cp311-cp311-macosx_10_12_x86_64.whl
- Upload date:
- Size: 262.5 kB
- Tags: CPython 3.11, macOS 10.12+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.8
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
9fb37ed3c0f2979f2d4775b3b3e0144ebb2318048b453a195a22828fb21fbf23
|
|
| MD5 |
a933d629b727026d401ac4e23610d29d
|
|
| BLAKE2b-256 |
e3fbd555288c4527a9f68c66f010f3ab2b1b1b646db50955446a6a52fdf096ee
|
File details
Details for the file rust_reversi-0.1.1-cp310-cp310-win_amd64.whl.
File metadata
- Download URL: rust_reversi-0.1.1-cp310-cp310-win_amd64.whl
- Upload date:
- Size: 150.6 kB
- Tags: CPython 3.10, Windows x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.8
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
6cfe33a3e3e075a865272c0d0bd04a27a3f345e0fc0456cb79ecb234cffc3e2d
|
|
| MD5 |
cde7bff1f8a3d9b7719efd5371fcdadb
|
|
| BLAKE2b-256 |
a686e2fc855f65b8ce999bd39f3ca5bfa24196efab2fe5ee4b1541f53ef9a4b5
|
File details
Details for the file rust_reversi-0.1.1-cp310-cp310-win32.whl.
File metadata
- Download URL: rust_reversi-0.1.1-cp310-cp310-win32.whl
- Upload date:
- Size: 142.0 kB
- Tags: CPython 3.10, Windows x86
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.8
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
80b42998e6fa36fa8c587c233a9bcda0cf544e4e3fe39ebafa398e711ff812bf
|
|
| MD5 |
0fdd12643576dcfafe6cc133f6b43e66
|
|
| BLAKE2b-256 |
26ce22923b628f50c94215bf2169a034f87b7190a5f057487465a5eaa8bd1257
|
File details
Details for the file rust_reversi-0.1.1-cp310-cp310-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: rust_reversi-0.1.1-cp310-cp310-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 461.1 kB
- Tags: CPython 3.10, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.8
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
8c73d30bc4965ef3d227fdf5d7b881f50b090e096df5b89379cb5017a4174ba8
|
|
| MD5 |
5dd4b10bc904d68ae08c2f181ea548ef
|
|
| BLAKE2b-256 |
e496e3a21e88c88136a1248d0731c6203a6aeb84c6ae199780c71d5210c46f1b
|
File details
Details for the file rust_reversi-0.1.1-cp310-cp310-musllinux_1_2_i686.whl.
File metadata
- Download URL: rust_reversi-0.1.1-cp310-cp310-musllinux_1_2_i686.whl
- Upload date:
- Size: 486.4 kB
- Tags: CPython 3.10, musllinux: musl 1.2+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.8
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
a856b7fe4243b9d62c19bf1c6df342166c467540f91cd42a00b0475cbf90adf7
|
|
| MD5 |
b289752a051c66615f250caaa4ded1ac
|
|
| BLAKE2b-256 |
3220be9881b3d58e3d89b068c850fa9a046c317cd9e8ddfc364546d2baeab7d0
|
File details
Details for the file rust_reversi-0.1.1-cp310-cp310-musllinux_1_2_armv7l.whl.
File metadata
- Download URL: rust_reversi-0.1.1-cp310-cp310-musllinux_1_2_armv7l.whl
- Upload date:
- Size: 557.1 kB
- Tags: CPython 3.10, musllinux: musl 1.2+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.8
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
2faafd3f73aa245faefeaef6aa223c276eb9575b5c153a21ff8b2eb1e79ce7a1
|
|
| MD5 |
3e087c462c7d6854a05d72200f07aa22
|
|
| BLAKE2b-256 |
c8480aede144ad8a7dc4e6e5c14dbe21b5de810257590109039f3945e7dc5c9b
|
File details
Details for the file rust_reversi-0.1.1-cp310-cp310-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: rust_reversi-0.1.1-cp310-cp310-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 465.2 kB
- Tags: CPython 3.10, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.8
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
11727c3f75784633499facd6522070915b6bc1413def4f3b49426b080b00515f
|
|
| MD5 |
d3d4b46e302b07dd05099dc819482e4e
|
|
| BLAKE2b-256 |
a0625948d48dc5360d31b48cd73875803b010dc6b1904fbdf9d70373b249bef1
|
File details
Details for the file rust_reversi-0.1.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: rust_reversi-0.1.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 290.0 kB
- Tags: CPython 3.10, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.8
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
46668dcc632f97824f81424ac0683445957746c7aaad16d4cb9588fabcde20db
|
|
| MD5 |
bb0e430398d6123126e889312c64b5fa
|
|
| BLAKE2b-256 |
558a895ced1b1066db66b4baf054e3d18fd41edbf4de28a7c299aec84115b9ad
|
File details
Details for the file rust_reversi-0.1.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl.
File metadata
- Download URL: rust_reversi-0.1.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
- Upload date:
- Size: 336.9 kB
- Tags: CPython 3.10, manylinux: glibc 2.17+ s390x
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.8
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
78ebd67f9e75c7fb051fa2773d9e5cd515b070b122a5b1ba8e8da309b3f24843
|
|
| MD5 |
c5048c98427fe9bb7a9d972fe2ac673a
|
|
| BLAKE2b-256 |
e0be69a1265711d6f5523571960011a7c0917e1f445647191fce2d1375a88bfb
|
File details
Details for the file rust_reversi-0.1.1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.
File metadata
- Download URL: rust_reversi-0.1.1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
- Upload date:
- Size: 331.3 kB
- Tags: CPython 3.10, manylinux: glibc 2.17+ ppc64le
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.8
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
487162c4eed4ce1654934055fffa9b9d15bb6303e696945b9e4412039f7c0a86
|
|
| MD5 |
01062f1ba3b8b112423c720409801e58
|
|
| BLAKE2b-256 |
976d7ca815a00f289c8b1a9f483eeb765913f1de88436e2b65f28dc91b5c3214
|
File details
Details for the file rust_reversi-0.1.1-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.
File metadata
- Download URL: rust_reversi-0.1.1-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
- Upload date:
- Size: 294.9 kB
- Tags: CPython 3.10, manylinux: glibc 2.17+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.8
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
faf51b2c25a51eec7ad8529bc8c1096fa62cecbd1191ce7d6cd6970f3d6ddc7a
|
|
| MD5 |
afed98a9006d788dc0b056c0af530e29
|
|
| BLAKE2b-256 |
9cb6049c536a11c7abc570f65400da9add236a29e6d7a4041dbfec341ed4aa6b
|
File details
Details for the file rust_reversi-0.1.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: rust_reversi-0.1.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 287.0 kB
- Tags: CPython 3.10, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.8
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
1baeb9d6d44f5a76db34f3008b94d033d930699d3f02dd1f612352ecc45ce504
|
|
| MD5 |
249aabaf0aba83eb44e9ee98083cbd05
|
|
| BLAKE2b-256 |
c5e789b90335a373261e3f777a2a19d558c59d9e04c2854756daaacede209ac8
|
File details
Details for the file rust_reversi-0.1.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl.
File metadata
- Download URL: rust_reversi-0.1.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl
- Upload date:
- Size: 308.5 kB
- Tags: CPython 3.10, manylinux: glibc 2.5+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.8
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
86da108df5616ab45148447b20ee3152975939fe7da53b71fd8726b49e173657
|
|
| MD5 |
7304a069a33ed1f5e75fcb6d34ea268c
|
|
| BLAKE2b-256 |
4361147e50e273573d4424c6a663d1d031da36dd6bebb1e18cf54cdfc31c3a3d
|
File details
Details for the file rust_reversi-0.1.1-cp39-cp39-win_amd64.whl.
File metadata
- Download URL: rust_reversi-0.1.1-cp39-cp39-win_amd64.whl
- Upload date:
- Size: 151.2 kB
- Tags: CPython 3.9, Windows x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.8
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
79801a1821548d5fb38b6ad2b0b7cd3d20bb1a615f56a693aec5741582e1e6ed
|
|
| MD5 |
aee1227a17fca1bed045bfa30aa70e66
|
|
| BLAKE2b-256 |
a00ec79b31cf84bba190477bc35d4125dbeead186f16aa7c36a9649759d4f0ff
|
File details
Details for the file rust_reversi-0.1.1-cp39-cp39-win32.whl.
File metadata
- Download URL: rust_reversi-0.1.1-cp39-cp39-win32.whl
- Upload date:
- Size: 142.3 kB
- Tags: CPython 3.9, Windows x86
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.8
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
f000f031dff106255cefa77f902b41f38d445296039d12dd1c32e08f9b2fbfce
|
|
| MD5 |
521f0e2fae47d723fcf8daabba25e35f
|
|
| BLAKE2b-256 |
6e1cfa708abc65d438bb726f1ad2bf7ea4182b872e804e18e8078c50aab2f86c
|
File details
Details for the file rust_reversi-0.1.1-cp39-cp39-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: rust_reversi-0.1.1-cp39-cp39-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 461.3 kB
- Tags: CPython 3.9, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.8
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
44ca3e59257951c8c4c243303021980d8692cd78edf1f016c3b37f1df844a5c8
|
|
| MD5 |
1cc1a9a92587e121f7ef34a086425ca1
|
|
| BLAKE2b-256 |
71541a93fbdbe17a5435798bbcf2d3ae575739bb1faed857455cf4e0a616547a
|
File details
Details for the file rust_reversi-0.1.1-cp39-cp39-musllinux_1_2_i686.whl.
File metadata
- Download URL: rust_reversi-0.1.1-cp39-cp39-musllinux_1_2_i686.whl
- Upload date:
- Size: 486.7 kB
- Tags: CPython 3.9, musllinux: musl 1.2+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.8
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
7af29d26820d465970205b65fbd7bdd255df10a3733a0345fe809b4fbf4c3d56
|
|
| MD5 |
9011fd2da33fa4c5e0af5004a26b65e6
|
|
| BLAKE2b-256 |
b736627e8e187a61296144b890225c8e794a95a34f84c0c82c6f3b83b1d7a7b3
|
File details
Details for the file rust_reversi-0.1.1-cp39-cp39-musllinux_1_2_armv7l.whl.
File metadata
- Download URL: rust_reversi-0.1.1-cp39-cp39-musllinux_1_2_armv7l.whl
- Upload date:
- Size: 557.8 kB
- Tags: CPython 3.9, musllinux: musl 1.2+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.8
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
f5dd3d8991533996f82471f7b61d09271ee4092b43fdb4cbe1d5ba670e15d1c9
|
|
| MD5 |
cbc7443f989b5988451efb872f2a33a8
|
|
| BLAKE2b-256 |
68bbea745c9c5179ac629200794b4080a07eff9a2b370b1c83395a02ee485a35
|
File details
Details for the file rust_reversi-0.1.1-cp39-cp39-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: rust_reversi-0.1.1-cp39-cp39-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 465.7 kB
- Tags: CPython 3.9, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.8
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
1170b1a99892bd72b366ff27631793e1741754b9c50e89db7d2ac399c499efe6
|
|
| MD5 |
b2b04cf074a9d44f8e7f00c2d9c5e09f
|
|
| BLAKE2b-256 |
894ab265c316bf06411e0c30e5b5c79f5f52723d5e0f95d47c9dc7dba10213cc
|
File details
Details for the file rust_reversi-0.1.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: rust_reversi-0.1.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 291.1 kB
- Tags: CPython 3.9, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.8
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
da07c78b34ede896308784b8a94b228ea177e35d33e744d07a3cfbc1f05183d6
|
|
| MD5 |
ba54483aefae1fcc3071bbe4f7209452
|
|
| BLAKE2b-256 |
61cb78a32ea0e2bbfe18e40d17d2800db87a860afb833c760997eee277e1d677
|
File details
Details for the file rust_reversi-0.1.1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl.
File metadata
- Download URL: rust_reversi-0.1.1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
- Upload date:
- Size: 337.9 kB
- Tags: CPython 3.9, manylinux: glibc 2.17+ s390x
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.8
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
72a689de9e890b0bfac77a2cc7bebd9416dbf7906cec086f8a72e04605ea9928
|
|
| MD5 |
67b3b99525cf18cb8c51f641c605da1d
|
|
| BLAKE2b-256 |
56d0fc6004be5e430eeec3284a02745fc4e50a8ac3d958e92a7ac9454aab67b9
|
File details
Details for the file rust_reversi-0.1.1-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.
File metadata
- Download URL: rust_reversi-0.1.1-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
- Upload date:
- Size: 331.5 kB
- Tags: CPython 3.9, manylinux: glibc 2.17+ ppc64le
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.8
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
9ba1b074088470846d27f7c11387689d82fd54c1946a1083c2fba0814bc64cd6
|
|
| MD5 |
60f621819317b03771c3c7138b0ae21d
|
|
| BLAKE2b-256 |
504b0ac892b12a9605bf6e14234eee8c2ed68742eef1327de0d053daa553c9f1
|
File details
Details for the file rust_reversi-0.1.1-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.
File metadata
- Download URL: rust_reversi-0.1.1-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
- Upload date:
- Size: 295.2 kB
- Tags: CPython 3.9, manylinux: glibc 2.17+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.8
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
b94d52bb00ffc6befbc24843e69738b005ba439241c0193dadd97b0a1b4045c9
|
|
| MD5 |
b6dc3d9c35ebd63ec0ff0d6b86ecb157
|
|
| BLAKE2b-256 |
d3b813fa87766acf9415ff1da8a40a6ca960714a2fc9876b0ea6a7ceb0a8ed61
|
File details
Details for the file rust_reversi-0.1.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: rust_reversi-0.1.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 287.7 kB
- Tags: CPython 3.9, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.8
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
7d52c2eaf5a875f11e98d65008e61abaf231d3944ed38ee2f61c83d4b0aa6c98
|
|
| MD5 |
502081fe56737f7b2dcec09511d96a28
|
|
| BLAKE2b-256 |
b990634bc9ad2c440827f49f17a309c132cd854a8bd53374067588aa94625955
|
File details
Details for the file rust_reversi-0.1.1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl.
File metadata
- Download URL: rust_reversi-0.1.1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl
- Upload date:
- Size: 308.7 kB
- Tags: CPython 3.9, manylinux: glibc 2.5+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.8
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
e1d1eca6a8af38b691adfcdaaebd838de112e393448f413a0473b65ee3ef5a71
|
|
| MD5 |
b9137ca9ea5d4dccd9004d23bc1ebfb5
|
|
| BLAKE2b-256 |
14b15b389aa54c3f979543e8140e7d36b58e47a6e1ee4fa626b28630cae1c1b0
|
File details
Details for the file rust_reversi-0.1.1-cp38-cp38-win_amd64.whl.
File metadata
- Download URL: rust_reversi-0.1.1-cp38-cp38-win_amd64.whl
- Upload date:
- Size: 151.1 kB
- Tags: CPython 3.8, Windows x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.8
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
64ea6a0bba2b6cb45cd7a89f779c87e29bf747e955ae713dc3d7773da2826302
|
|
| MD5 |
ed68c0e20055bd922f0e9197a68f2bf5
|
|
| BLAKE2b-256 |
e40d022dbd772feb02978605fb6dc52d33c06cf310728ef33ebce44492be1576
|
File details
Details for the file rust_reversi-0.1.1-cp38-cp38-win32.whl.
File metadata
- Download URL: rust_reversi-0.1.1-cp38-cp38-win32.whl
- Upload date:
- Size: 142.4 kB
- Tags: CPython 3.8, Windows x86
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.8
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
d4ab44eae543373215a72d9f5064944235ceaa72fab0735902b61a897e266b41
|
|
| MD5 |
1ae8f17c890c1fb5c6165efe2fcc5f26
|
|
| BLAKE2b-256 |
094a97526e83fc601a208d979c2de0012760ce47eeadfde50651583dffe64fc2
|
File details
Details for the file rust_reversi-0.1.1-cp38-cp38-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: rust_reversi-0.1.1-cp38-cp38-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 461.2 kB
- Tags: CPython 3.8, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.8
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
a2fbb716871b85d51d836d529512f31d752b2ddf9ee3af48cf0954d5aa5d5af9
|
|
| MD5 |
8f2b3c647e36bd88887015b516745198
|
|
| BLAKE2b-256 |
c4c57b1d575fbb23ac0a2fbff314a9db483a735cec80df73e3d7664d4ac46913
|
File details
Details for the file rust_reversi-0.1.1-cp38-cp38-musllinux_1_2_i686.whl.
File metadata
- Download URL: rust_reversi-0.1.1-cp38-cp38-musllinux_1_2_i686.whl
- Upload date:
- Size: 486.3 kB
- Tags: CPython 3.8, musllinux: musl 1.2+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.8
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
d7d7846484b135cf78cf3c1cb6f0c3e1cb1f1cee0253132c4fb3fa3f7743ac4a
|
|
| MD5 |
f2e777ca9c20af6a70c099cade796306
|
|
| BLAKE2b-256 |
fdbbdbc980f1640c731c1921152f5d5db9bbd2002d2227064181911c77065a4b
|
File details
Details for the file rust_reversi-0.1.1-cp38-cp38-musllinux_1_2_armv7l.whl.
File metadata
- Download URL: rust_reversi-0.1.1-cp38-cp38-musllinux_1_2_armv7l.whl
- Upload date:
- Size: 557.0 kB
- Tags: CPython 3.8, musllinux: musl 1.2+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.8
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
1cb38a84028fb15e7cd9994633bcdb246eca55046ab90d1bfde2d780c67d06a8
|
|
| MD5 |
b008cc80ba983e0ebc2f18ae2f0ff6a3
|
|
| BLAKE2b-256 |
14ba03500f80f64f8f977ed5b52c964d4d441da10b353c59fcaa9b5eeb810ebd
|
File details
Details for the file rust_reversi-0.1.1-cp38-cp38-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: rust_reversi-0.1.1-cp38-cp38-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 465.7 kB
- Tags: CPython 3.8, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.8
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
49c065a00413ebd0034f401767d3837bd5cd2b85e6c8d1ed66b7ea51c2b240ab
|
|
| MD5 |
4fef3acd3bfd40dcee90456ee0a1a718
|
|
| BLAKE2b-256 |
daebb617b8c0b27d2fcc8b0ec860cec6f52f250fd3f45b264785f53491ba02c4
|
File details
Details for the file rust_reversi-0.1.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: rust_reversi-0.1.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 290.8 kB
- Tags: CPython 3.8, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.8
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
eeec1f0930260e3b73ae8b68c02b8efe9ecd1a2363dd3daa1da3040b621904f8
|
|
| MD5 |
8395bc65c60622f5fe6bac437a9ec9ea
|
|
| BLAKE2b-256 |
e9a65dc073793cca41e3305d6ff942e5533fdc23bd1e9578046cba0d42363362
|
File details
Details for the file rust_reversi-0.1.1-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl.
File metadata
- Download URL: rust_reversi-0.1.1-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl
- Upload date:
- Size: 337.4 kB
- Tags: CPython 3.8, manylinux: glibc 2.17+ s390x
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.8
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
e8b5be0f47b90aba233bf1ff591fcf18522df038ace4cb1e981294d2de7b4061
|
|
| MD5 |
1ae5e36f9dc8ea52ca1487470186404b
|
|
| BLAKE2b-256 |
bd2a19ace5272de36881883fe305f595bc9c0d19dfa5d8ecaf56081b9b0e24b1
|
File details
Details for the file rust_reversi-0.1.1-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.
File metadata
- Download URL: rust_reversi-0.1.1-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
- Upload date:
- Size: 331.6 kB
- Tags: CPython 3.8, manylinux: glibc 2.17+ ppc64le
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.8
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
08c5a22b5c7c6c6c5a3a816fb5ed7c8102d7b1ff037001b6efe2b0190816b09c
|
|
| MD5 |
8bd8d3e85f8e4bfaa2decd3ffe6d44b5
|
|
| BLAKE2b-256 |
a7dc3213ecc49677cdd619d2d74408f808b23f778bbaf3ddcbbcd22810f8d693
|
File details
Details for the file rust_reversi-0.1.1-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.
File metadata
- Download URL: rust_reversi-0.1.1-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
- Upload date:
- Size: 294.8 kB
- Tags: CPython 3.8, manylinux: glibc 2.17+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.8
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
b3f1700d97bc456afeebfe585a7558fb686d49daadbe5d3cfdedc3921d0624c3
|
|
| MD5 |
1656eb81b25a120d0ead137a2abb57c1
|
|
| BLAKE2b-256 |
83fd5844267c51980ed642e1e6b34fb3e51143fce052833d842451cd6ab44722
|
File details
Details for the file rust_reversi-0.1.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: rust_reversi-0.1.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 287.7 kB
- Tags: CPython 3.8, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.8
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
a6c0158490c8b87a4889a29929d13e8720ce326ff4c5fcf029f08fccd9b34205
|
|
| MD5 |
25b82e404bef0b557298feb198716468
|
|
| BLAKE2b-256 |
ff081bc39269a1478ac793b05e7920a9f17ec1d91e011ea8cf2f88ffd5e946ad
|
File details
Details for the file rust_reversi-0.1.1-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl.
File metadata
- Download URL: rust_reversi-0.1.1-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl
- Upload date:
- Size: 308.4 kB
- Tags: CPython 3.8, manylinux: glibc 2.5+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.8
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
d7397ce6ca397875c5cce7d29c3af24ce1cd99b740b2d7f45dd7958f3170295c
|
|
| MD5 |
7c26a98b8072709e39266ffe4ae5b4f1
|
|
| BLAKE2b-256 |
c7e40dcd94b1665656d74fe19eec0a35f28c6f02e38e676eed25a87e5bd2d38c
|