Skip to main content

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 player
  • Turn.WHITE: White player

Color

Represents the state of a cell on the board.

  • Color.EMPTY: Empty cell
  • Color.BLACK: Black piece
  • Color.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 directly
  • set_board_str(board_str: str, turn: Turn) -> None: Sets board state from string representation
  • get_board_vec_black() -> list[Color]: Returns flattened board state as if current player using black pieces
  • get_board_vec_turn() -> list[Color]: Returns flattened board state with current player's pieces
  • get_board_matrix() -> list[list[list[int]]]: Returns 3D matrix representation of board state
  • clone() -> Board: Creates a deep copy of the board
Piece Count Methods
  • player_piece_num() -> int: Returns number of current player's pieces
  • opponent_piece_num() -> int: Returns number of opponent's pieces
  • black_piece_num() -> int: Returns number of black pieces
  • white_piece_num() -> int: Returns number of white pieces
  • piece_sum() -> int: Returns total number of pieces on board
  • diff_piece_num() -> int: Returns absolute difference in piece count
Move Generation and Validation
  • get_legal_moves() -> int: Returns bitboard of legal moves
  • get_legal_moves_vec() -> list[int]: Returns list of legal move positions
  • is_legal_move(pos: int) -> bool: Checks if move at position is legal
  • get_random_move() -> int: Returns random legal move position
Game State Methods
  • is_pass() -> bool: Checks if current player must pass
  • is_game_over() -> bool: Checks if game is finished
  • is_win() -> bool: Checks if current player has won
  • is_lose() -> bool: Checks if current player has lost
  • is_draw() -> bool: Checks if game is drawn
  • is_black_win() -> bool: Checks if black has won
  • is_white_win() -> bool: Checks if white has won
  • get_winner() -> Optional[Turn]: Returns winner of game (None if draw)
Move Execution
  • do_move(pos: int) -> None: Executes move at specified position
  • do_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 pieces
  • O: 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 mode
  • make dev: Build and install in development mode
  • make test: Run test suite
  • make 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:

  1. Standard mode: Counts leaf nodes at each depth
  2. 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


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

rust_reversi-1.0.0.tar.gz (14.0 kB view details)

Uploaded Source

Built Distributions

If you're not sure about the file name format, learn more about wheel file names.

rust_reversi-1.0.0-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl (461.7 kB view details)

Uploaded PyPymusllinux: musl 1.2+ x86-64

rust_reversi-1.0.0-pp310-pypy310_pp73-musllinux_1_2_i686.whl (486.1 kB view details)

Uploaded PyPymusllinux: musl 1.2+ i686

rust_reversi-1.0.0-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl (558.1 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

rust_reversi-1.0.0-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl (466.6 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARM64

rust_reversi-1.0.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (291.2 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

rust_reversi-1.0.0-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (337.1 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ s390x

rust_reversi-1.0.0-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (331.9 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

rust_reversi-1.0.0-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (295.7 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

rust_reversi-1.0.0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (288.2 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

rust_reversi-1.0.0-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl (308.4 kB view details)

Uploaded PyPymanylinux: glibc 2.5+ i686

rust_reversi-1.0.0-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl (461.6 kB view details)

Uploaded PyPymusllinux: musl 1.2+ x86-64

rust_reversi-1.0.0-pp39-pypy39_pp73-musllinux_1_2_i686.whl (485.8 kB view details)

Uploaded PyPymusllinux: musl 1.2+ i686

rust_reversi-1.0.0-pp39-pypy39_pp73-musllinux_1_2_armv7l.whl (558.1 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

rust_reversi-1.0.0-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl (466.0 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARM64

rust_reversi-1.0.0-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (336.5 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ s390x

rust_reversi-1.0.0-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (331.5 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

rust_reversi-1.0.0-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (295.5 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

rust_reversi-1.0.0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (287.9 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

rust_reversi-1.0.0-cp313-cp313t-musllinux_1_2_x86_64.whl (461.2 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ x86-64

rust_reversi-1.0.0-cp313-cp313t-musllinux_1_2_i686.whl (485.1 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ i686

rust_reversi-1.0.0-cp313-cp313t-musllinux_1_2_armv7l.whl (556.8 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARMv7l

rust_reversi-1.0.0-cp313-cp313t-musllinux_1_2_aarch64.whl (465.3 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARM64

rust_reversi-1.0.0-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl (337.0 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ s390x

rust_reversi-1.0.0-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (331.2 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ppc64le

rust_reversi-1.0.0-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (294.7 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARMv7l

rust_reversi-1.0.0-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (286.9 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARM64

rust_reversi-1.0.0-cp313-cp313-musllinux_1_2_x86_64.whl (461.3 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

rust_reversi-1.0.0-cp313-cp313-musllinux_1_2_i686.whl (485.6 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ i686

rust_reversi-1.0.0-cp313-cp313-musllinux_1_2_armv7l.whl (557.6 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARMv7l

rust_reversi-1.0.0-cp313-cp313-musllinux_1_2_aarch64.whl (466.0 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

rust_reversi-1.0.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (290.5 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

rust_reversi-1.0.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl (334.8 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ s390x

rust_reversi-1.0.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (331.2 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ppc64le

rust_reversi-1.0.0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (295.6 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARMv7l

rust_reversi-1.0.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (287.3 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

rust_reversi-1.0.0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl (307.6 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.5+ i686

rust_reversi-1.0.0-cp313-cp313-macosx_11_0_arm64.whl (251.4 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

rust_reversi-1.0.0-cp313-cp313-macosx_10_12_x86_64.whl (259.2 kB view details)

Uploaded CPython 3.13macOS 10.12+ x86-64

rust_reversi-1.0.0-cp312-cp312-win_amd64.whl (151.7 kB view details)

Uploaded CPython 3.12Windows x86-64

rust_reversi-1.0.0-cp312-cp312-win32.whl (142.2 kB view details)

Uploaded CPython 3.12Windows x86

rust_reversi-1.0.0-cp312-cp312-musllinux_1_2_x86_64.whl (461.1 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

rust_reversi-1.0.0-cp312-cp312-musllinux_1_2_i686.whl (485.7 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ i686

rust_reversi-1.0.0-cp312-cp312-musllinux_1_2_armv7l.whl (557.8 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

rust_reversi-1.0.0-cp312-cp312-musllinux_1_2_aarch64.whl (466.1 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

rust_reversi-1.0.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (290.4 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

rust_reversi-1.0.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl (335.4 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ s390x

rust_reversi-1.0.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (331.4 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ppc64le

rust_reversi-1.0.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (295.7 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARMv7l

rust_reversi-1.0.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (287.4 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

rust_reversi-1.0.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl (307.6 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.5+ i686

rust_reversi-1.0.0-cp312-cp312-macosx_11_0_arm64.whl (250.9 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

rust_reversi-1.0.0-cp312-cp312-macosx_10_12_x86_64.whl (258.9 kB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

rust_reversi-1.0.0-cp311-cp311-win_amd64.whl (151.5 kB view details)

Uploaded CPython 3.11Windows x86-64

rust_reversi-1.0.0-cp311-cp311-win32.whl (141.8 kB view details)

Uploaded CPython 3.11Windows x86

rust_reversi-1.0.0-cp311-cp311-musllinux_1_2_x86_64.whl (461.7 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

rust_reversi-1.0.0-cp311-cp311-musllinux_1_2_i686.whl (487.0 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ i686

rust_reversi-1.0.0-cp311-cp311-musllinux_1_2_armv7l.whl (558.2 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARMv7l

rust_reversi-1.0.0-cp311-cp311-musllinux_1_2_aarch64.whl (466.6 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

rust_reversi-1.0.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (291.1 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

rust_reversi-1.0.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl (336.8 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ s390x

rust_reversi-1.0.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (332.6 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ppc64le

rust_reversi-1.0.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (296.0 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARMv7l

rust_reversi-1.0.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (288.2 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

rust_reversi-1.0.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl (308.8 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.5+ i686

rust_reversi-1.0.0-cp311-cp311-macosx_11_0_arm64.whl (255.3 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

rust_reversi-1.0.0-cp311-cp311-macosx_10_12_x86_64.whl (263.3 kB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

rust_reversi-1.0.0-cp310-cp310-win_amd64.whl (151.5 kB view details)

Uploaded CPython 3.10Windows x86-64

rust_reversi-1.0.0-cp310-cp310-win32.whl (141.9 kB view details)

Uploaded CPython 3.10Windows x86

rust_reversi-1.0.0-cp310-cp310-musllinux_1_2_x86_64.whl (461.8 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

rust_reversi-1.0.0-cp310-cp310-musllinux_1_2_i686.whl (487.1 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ i686

rust_reversi-1.0.0-cp310-cp310-musllinux_1_2_armv7l.whl (558.3 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARMv7l

rust_reversi-1.0.0-cp310-cp310-musllinux_1_2_aarch64.whl (466.6 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

rust_reversi-1.0.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (291.3 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

rust_reversi-1.0.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl (337.4 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ s390x

rust_reversi-1.0.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (332.5 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ppc64le

rust_reversi-1.0.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (296.0 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARMv7l

rust_reversi-1.0.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (288.3 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

rust_reversi-1.0.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl (308.8 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.5+ i686

rust_reversi-1.0.0-cp39-cp39-win_amd64.whl (152.1 kB view details)

Uploaded CPython 3.9Windows x86-64

rust_reversi-1.0.0-cp39-cp39-win32.whl (142.1 kB view details)

Uploaded CPython 3.9Windows x86

rust_reversi-1.0.0-cp39-cp39-musllinux_1_2_x86_64.whl (462.2 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

rust_reversi-1.0.0-cp39-cp39-musllinux_1_2_i686.whl (487.4 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ i686

rust_reversi-1.0.0-cp39-cp39-musllinux_1_2_armv7l.whl (558.8 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARMv7l

rust_reversi-1.0.0-cp39-cp39-musllinux_1_2_aarch64.whl (466.9 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

rust_reversi-1.0.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (292.6 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

rust_reversi-1.0.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl (337.9 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ s390x

rust_reversi-1.0.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (332.5 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ppc64le

rust_reversi-1.0.0-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (296.3 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARMv7l

rust_reversi-1.0.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (289.0 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64

rust_reversi-1.0.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl (309.2 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.5+ i686

rust_reversi-1.0.0-cp38-cp38-win_amd64.whl (152.0 kB view details)

Uploaded CPython 3.8Windows x86-64

rust_reversi-1.0.0-cp38-cp38-win32.whl (142.4 kB view details)

Uploaded CPython 3.8Windows x86

rust_reversi-1.0.0-cp38-cp38-musllinux_1_2_x86_64.whl (462.0 kB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ x86-64

rust_reversi-1.0.0-cp38-cp38-musllinux_1_2_i686.whl (487.0 kB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ i686

rust_reversi-1.0.0-cp38-cp38-musllinux_1_2_armv7l.whl (558.0 kB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ ARMv7l

rust_reversi-1.0.0-cp38-cp38-musllinux_1_2_aarch64.whl (466.9 kB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ ARM64

rust_reversi-1.0.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (291.9 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ x86-64

rust_reversi-1.0.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl (337.4 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ s390x

rust_reversi-1.0.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (332.4 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ppc64le

rust_reversi-1.0.0-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (295.8 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ARMv7l

rust_reversi-1.0.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (289.0 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ARM64

rust_reversi-1.0.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl (308.7 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.5+ i686

File details

Details for the file rust_reversi-1.0.0.tar.gz.

File metadata

  • Download URL: rust_reversi-1.0.0.tar.gz
  • Upload date:
  • Size: 14.0 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.7.8

File hashes

Hashes for rust_reversi-1.0.0.tar.gz
Algorithm Hash digest
SHA256 c232b393354da23314acd6cd1b6c44fdfb14a4e9bc5c12b2c2990d4a18c04652
MD5 d05369f72c2f0971b8e6777bda247215
BLAKE2b-256 360cc2229aef075a4b613912006e444fff82f65f007d9b60da05b7a759967227

See more details on using hashes here.

File details

Details for the file rust_reversi-1.0.0-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for rust_reversi-1.0.0-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 517b6bea7892c1bb75546bd63f19b49e48e4c38ff71f20526ba5525fd1c8b5b8
MD5 8955d9d645655fa246b34afb696b5dc9
BLAKE2b-256 e7b0c6468c1f1c2be25adbd4dfefe8c262a2c4dc12200273ca8b7498857be825

See more details on using hashes here.

File details

Details for the file rust_reversi-1.0.0-pp310-pypy310_pp73-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for rust_reversi-1.0.0-pp310-pypy310_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 76d085f37a88281b6d31de867ec3bcdfca76004c62dc54f58b0ac540a0291be7
MD5 adb5dcaab37107e4fe3c9be95250a31a
BLAKE2b-256 89a58139c19560a3f225d12e8e52ba436af9452064169301d4f5ae8880ba0a52

See more details on using hashes here.

File details

Details for the file rust_reversi-1.0.0-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for rust_reversi-1.0.0-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 4c77138804ad3d28b3a50e6ce6c7919c8ddd5d7c71f060ab619764bf921d3bcd
MD5 2756957d26e70ef24f0a587e0eb10b8a
BLAKE2b-256 81df984d63093e497c96aa7f3fdca52e9507c59ad615dc8bf1010360a0e78c56

See more details on using hashes here.

File details

Details for the file rust_reversi-1.0.0-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for rust_reversi-1.0.0-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 ef398546295913cd707ad1531cef428cd868a9cdb02018dd71eb86a9931615dc
MD5 95990b8bc13aa69c30ab6bcc5e648f5d
BLAKE2b-256 db2a86934e4d81786582f738fe05e9f8db3a64816eee0ef918aafdc48c544d67

See more details on using hashes here.

File details

Details for the file rust_reversi-1.0.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for rust_reversi-1.0.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 a9686b2533d62ac548df70b1329e39183f1dc3a9110ec129e55a3f3e6e877401
MD5 879cf840ea2f58fbb52b76d149470d9c
BLAKE2b-256 2e62d75d47cdeb7773c6373f6e095bea843c1f266a5d762c790461e774b2741c

See more details on using hashes here.

File details

Details for the file rust_reversi-1.0.0-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for rust_reversi-1.0.0-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 99092b5e9185f6acd49048bd74398c9ea24cc760ccd3cdebf2d7fa8cd8972b13
MD5 8be19e553dbcf681ad70df0c4192d7f2
BLAKE2b-256 98ee9febc03d74baefca59513a05a95861f00367d0876d7850c7e87dbd877015

See more details on using hashes here.

File details

Details for the file rust_reversi-1.0.0-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for rust_reversi-1.0.0-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 2c9ede0df4596f04cda3ef008f1a2a33fe47fce9976b687bc96d5a0915ce041b
MD5 7930af75dae5f84d98c2a8c24fe6bf7e
BLAKE2b-256 cbc743fb792acae26650dd96b7deeb53149881da9c6450aac95889cc92702e47

See more details on using hashes here.

File details

Details for the file rust_reversi-1.0.0-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for rust_reversi-1.0.0-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 0cc1adcab3f24698283671e391d22d20773a8cd0f23ccdbad80acae533144bcd
MD5 b999f01483128aab745635740991aa17
BLAKE2b-256 d7c51578272e68ce365394512597e3c92390c5d5454af2a2af19ec188f0f1ad0

See more details on using hashes here.

File details

Details for the file rust_reversi-1.0.0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for rust_reversi-1.0.0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 0ea58e013135625a76f819c101d49461346f48851f7d8bfd44cdeccfc011e3a8
MD5 d024f4995f66e399f37ebea8b0dac4f9
BLAKE2b-256 cee8aafbb7fbe741dd6572405438fb1e2d288c5a519ceaae2eeff7c04bef68c8

See more details on using hashes here.

File details

Details for the file rust_reversi-1.0.0-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for rust_reversi-1.0.0-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 0b74d3535c2df7adf252fbac14551a6bf874b9ea562caf275d976e675b9d1f9f
MD5 4e436888e8cfa292d80248fb7ea068e7
BLAKE2b-256 8fc0e06ebc9e354a3e7d8d573ceb7675ddbf827cb3326d45096a2734fcef6187

See more details on using hashes here.

File details

Details for the file rust_reversi-1.0.0-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for rust_reversi-1.0.0-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 dd278c24276b7059493ac510ecd8e4850b2a054e8c8bf930e71930646fa6acf2
MD5 250c43f5def7ec4d01cb3ebf098160d1
BLAKE2b-256 e2ce6cf4acc3ebb94a85443fa558931b60ad7d4dc4ee90f24b93cc74dfbab4a1

See more details on using hashes here.

File details

Details for the file rust_reversi-1.0.0-pp39-pypy39_pp73-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for rust_reversi-1.0.0-pp39-pypy39_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 f80be879c0ae25b9f5c931960cbef22f0c059d5eb085335b7cc35577ce719cb5
MD5 1030aff1c1ac5ee964dfc5a8e19275c3
BLAKE2b-256 fac3bdbff5241b0f8df74ed26832f33a196a2913ba91a3012c1d3c052c4dab28

See more details on using hashes here.

File details

Details for the file rust_reversi-1.0.0-pp39-pypy39_pp73-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for rust_reversi-1.0.0-pp39-pypy39_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 0a52954ef7caaa6260d14d09c5ffb16cda9024d7a1419be29dbc4ce3297e155b
MD5 38c02d94163ce4fec085e0154ce54b4a
BLAKE2b-256 13b8ce2e3c5408bd87ea96f53863dd46a10be503e21ce84825c15f65cec5a600

See more details on using hashes here.

File details

Details for the file rust_reversi-1.0.0-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for rust_reversi-1.0.0-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 ec25a3cd4f27f356327671920fbe7419ca24545e7b6244fa085c87adb658a1a7
MD5 8c000976c91f74b207c1ec3c4d0f659b
BLAKE2b-256 e03f3fed84fee6981c556624b73f5cf0ac0288cfc3da2767a3f855c3bdf1c151

See more details on using hashes here.

File details

Details for the file rust_reversi-1.0.0-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for rust_reversi-1.0.0-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 03e433041e9f75b2779440bc16acb34cc5b51e7b7a123dde57dae2392abfa1a6
MD5 6e70730d2a8264d63881f4606dc5bf96
BLAKE2b-256 a4901df52371b6ed516b3ac9342514cf1e534960df848fb7fc7f0df6beef051a

See more details on using hashes here.

File details

Details for the file rust_reversi-1.0.0-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for rust_reversi-1.0.0-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 d1699f59d99fb2352cd0c0b2fc92d8fd8170dc7ffafb098e11fd3de5a37091bd
MD5 337e2e2ada066a62806d8381c69ca33c
BLAKE2b-256 bc30e2ce6fb15478862220db3448aad1dccebbc0422e7f4d6c39cb1c9026d35c

See more details on using hashes here.

File details

Details for the file rust_reversi-1.0.0-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for rust_reversi-1.0.0-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 e4c4953f590cfecf746f573ff5bccd33e958b50ef99522cf69bed0a7c0a2410c
MD5 06fe9987252f23658d9cd6737cb9fad8
BLAKE2b-256 f83aa0f54bb438bb17695e603143d49edc52b0b98a42a8c2535d1c93330cc5b9

See more details on using hashes here.

File details

Details for the file rust_reversi-1.0.0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for rust_reversi-1.0.0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 c8a08ad5aaefe9eba820c675d97c964c2f164273f586f2f6a87d176e023adf65
MD5 13b18fc020d194c2bbc34962d6898f08
BLAKE2b-256 aeba13509e549d04da58e7aecd3108e10123779fc16684b3835c108c881789f0

See more details on using hashes here.

File details

Details for the file rust_reversi-1.0.0-cp313-cp313t-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for rust_reversi-1.0.0-cp313-cp313t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 82df982b71fb6fe56d6b68d4b7ca4c30466e2aa4171583df329f90a79e5a8023
MD5 67bc0c9530ddee0742f9a2d5a68c1b34
BLAKE2b-256 37b1edabd6b1280545fa4d4278456501959520bbe2b5041fda1a67c3a8604a27

See more details on using hashes here.

File details

Details for the file rust_reversi-1.0.0-cp313-cp313t-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for rust_reversi-1.0.0-cp313-cp313t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 6b941213c40395582d47cd4898eef51801b47d9613c33b4f24e71cce517e8cd0
MD5 4b2b52f97fd7665a43f9ffd587583378
BLAKE2b-256 5b4e2d10e4ca23138e7dfbbf0d1ada56df49ae5115daa8f906051ae0acaaf081

See more details on using hashes here.

File details

Details for the file rust_reversi-1.0.0-cp313-cp313t-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for rust_reversi-1.0.0-cp313-cp313t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 69385ccf322c5a563bfef86d306c0928bb7249a266f136261ac46a6c3b16575e
MD5 5f0d95c62a56c5cd51c476cf7f8c1b85
BLAKE2b-256 d82cd27eba250e3c43189710d59f80b0d3f2923294657d21e61566155503aeee

See more details on using hashes here.

File details

Details for the file rust_reversi-1.0.0-cp313-cp313t-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for rust_reversi-1.0.0-cp313-cp313t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 31479f8e25e5227cb0df06c3150ac97cc01e24f925e9dc21f0a5127a0e222ecf
MD5 2193ff1ce11e6e97c5c0e24686ccc186
BLAKE2b-256 b06fe889d79a30a4b00a7436c7703e81713449df0d4fa3a56377aa09056119fd

See more details on using hashes here.

File details

Details for the file rust_reversi-1.0.0-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for rust_reversi-1.0.0-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 de4b39d072660d674ca72ef2d55509377d472fdc33de0e15d0ed8defaa794f36
MD5 6d71a4b7c5160c49fdf0f6284f8970a0
BLAKE2b-256 41fad068d3fbd7a47c6865c9c66d3697c70396d4bfd2b5c5c1f940f7d6f91079

See more details on using hashes here.

File details

Details for the file rust_reversi-1.0.0-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for rust_reversi-1.0.0-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 a1b7bbd6718454313e49025495d3b4b4528d49e25472680ea292a0e1f8ca4a7d
MD5 cd37f7c499ed87f5e1ce940a8e7969ab
BLAKE2b-256 409f225fea1598046927034bf251e29e420585ab56467ee14e96883e28aff780

See more details on using hashes here.

File details

Details for the file rust_reversi-1.0.0-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for rust_reversi-1.0.0-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 35a5354e0a78bf13b3c71179fd8f49c036b4a79112c755bc588f492bb819a9ab
MD5 4de444ddfed0a1ce2c84c0feed09e248
BLAKE2b-256 c733568852ed8ed719e1daeb186327dba556623918b6294b93590e831a9b9ab3

See more details on using hashes here.

File details

Details for the file rust_reversi-1.0.0-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for rust_reversi-1.0.0-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 92d1519057bc28fcb38cafe020e5ea3ffb49eb6257f48867eb6668baaaf1c7f9
MD5 dc23758ba4b81ced0a493cd2ee2d88f5
BLAKE2b-256 317faea1f4ce436d4110528c2c550792acfb309b02ddd664f1043a89d215e1ea

See more details on using hashes here.

File details

Details for the file rust_reversi-1.0.0-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for rust_reversi-1.0.0-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 925d0fd2dfe5408226603dc4df490cb1c95d9e8fbaa1deddd04f0f2cf3bae242
MD5 e738f6fa18b630cc8993103958692555
BLAKE2b-256 51fe10cbbaaea1c3f000d9944391dbc916b92a91deef9d7566d88d441045dea6

See more details on using hashes here.

File details

Details for the file rust_reversi-1.0.0-cp313-cp313-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for rust_reversi-1.0.0-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 4dce77bd97b01d533f9fdd4facef94439b628153eb90719d5ff76b5ac2da565d
MD5 b0a600cdc8d4858b06af48ad9e303d54
BLAKE2b-256 a6541f5b7f14d8687ba8fb57ccb414a89f87363b0192f125c6d7fcccf5b2cf8c

See more details on using hashes here.

File details

Details for the file rust_reversi-1.0.0-cp313-cp313-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for rust_reversi-1.0.0-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 fb0786b8e6db923190c54f0f738475e8ee46991909ab12f878a490505c7f30e3
MD5 31c9c39861765ec265ce7e30ae7a88c2
BLAKE2b-256 7e0577a4d32633a82b8e80bb3fc1277111b114eb936dd2ebdb210d9b6b1cb701

See more details on using hashes here.

File details

Details for the file rust_reversi-1.0.0-cp313-cp313-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for rust_reversi-1.0.0-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 0797e17acda3d8443fe12519988d23889d6779a969e8ddbd15fba190b13a17a3
MD5 350d43369caf9821a36a909497bba972
BLAKE2b-256 cad51b3a15483b8266eb46d68ec063e845834153a5e1d988d03226ddf73cfd1e

See more details on using hashes here.

File details

Details for the file rust_reversi-1.0.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for rust_reversi-1.0.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 d5b8f6e8965c3b887a7ba4fcafa3d95eedd2d45f500e38d91dddb1cea7b63fd0
MD5 d06142a28d8f8ffd95a1b5d8780481af
BLAKE2b-256 25a394ab2a081c9a25743c27975fe5037a6d745c023d51f1d215f2ddc4584065

See more details on using hashes here.

File details

Details for the file rust_reversi-1.0.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for rust_reversi-1.0.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 04a6a1f9461f699278f93e44b55f4e269efa1bee0cb9a82af737000d4c7ce3dc
MD5 7a88f69976bfff2ab7d17edb5b77d423
BLAKE2b-256 4a599d2a11f3ff1226d31edb77039afee076e904252ca743c8e7af813928c17a

See more details on using hashes here.

File details

Details for the file rust_reversi-1.0.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for rust_reversi-1.0.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 a9536ed497e78bb7cf569298b96d45f1a4f3d660e3f0a3d7d5a499e66ec1087d
MD5 440bfcd102101b3345b2b4096ecc49e4
BLAKE2b-256 38fe92bf8aaa474da8eea8f2bc5f9cb506c281e3a2fcec6485f8b54b45e2f6f5

See more details on using hashes here.

File details

Details for the file rust_reversi-1.0.0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for rust_reversi-1.0.0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 ac3378daaff397043fa5d0c153724a9de6a374e437932b724f52a475ab6ebdd3
MD5 e0c9ec4b0de4e0ba8b22ea357c9fa501
BLAKE2b-256 9eb420094737aac8b9adb8bb5c15d4ad10f016010233b122b4c461c2f02a5894

See more details on using hashes here.

File details

Details for the file rust_reversi-1.0.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for rust_reversi-1.0.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 49b91995133fdffcd7282073febe346acb3f4ef153d4d7c488ad82955d85fe50
MD5 3137e90716014de44782ca79f9a5610f
BLAKE2b-256 61c19b561b9d4a586881ef06a063d429e8ef4391868129283875f03f2dd35e22

See more details on using hashes here.

File details

Details for the file rust_reversi-1.0.0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for rust_reversi-1.0.0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 4573403d7679deb4a0191ce97b0449c19cda36b8cdf1fd612f0424ce823a9843
MD5 00817dd614134c07b2afbdec79a5c23c
BLAKE2b-256 05e72d45cbea26d3e5fbb2f8bb1082fd518ce793b0c3f2f22eb71f04b497e0b7

See more details on using hashes here.

File details

Details for the file rust_reversi-1.0.0-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for rust_reversi-1.0.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 8e5f39748d3fe566e9226ccb2d986c434763210fa48fbb60ecac92323039aaf5
MD5 51abaa9c0c16277b98e13d22f9af8640
BLAKE2b-256 5064841befa52540f8374c8d9e2cb8f7dc6f416c5c4057470b3aa34e5ece9233

See more details on using hashes here.

File details

Details for the file rust_reversi-1.0.0-cp313-cp313-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for rust_reversi-1.0.0-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 6b0e6cae5a9abafd6843a062c1112276d73cb810414f83842d1085dac1e36910
MD5 514b2c920b93596f937cd26ad39c9cb0
BLAKE2b-256 07431a69159d0bef83451986b235fd625592b46de01fa7faa42fe31440632cc6

See more details on using hashes here.

File details

Details for the file rust_reversi-1.0.0-cp312-cp312-win_amd64.whl.

File metadata

File hashes

Hashes for rust_reversi-1.0.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 7f8af4843db0695533de0c13a314fe78063129652d849cc0f4c78ef40330ab50
MD5 252ba31929238fb85f559a6713aa52d5
BLAKE2b-256 83adb2dbc75631479743da0a3b508a0293a3c04ded939cd188ec18718237f48d

See more details on using hashes here.

File details

Details for the file rust_reversi-1.0.0-cp312-cp312-win32.whl.

File metadata

File hashes

Hashes for rust_reversi-1.0.0-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 dab42fecab15da8654a24218fae585ff70cfd15b095464ba7abb46c07110552a
MD5 e8152c395acd72085ca85886096d611f
BLAKE2b-256 c2a6203e7e5faa719a7ae02a67a7016afbef54fc44e9d3a0e3056c19d9921185

See more details on using hashes here.

File details

Details for the file rust_reversi-1.0.0-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for rust_reversi-1.0.0-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 30086e144dfcd84aaebc4b5b17f87376ead2edc23a10115ac0402893776ea165
MD5 18746e45fc61a542378db90f609da17a
BLAKE2b-256 254aea111f380d546e1f74317f6147a13100cbfd9a1dbc49cbc17fd5197c8f8e

See more details on using hashes here.

File details

Details for the file rust_reversi-1.0.0-cp312-cp312-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for rust_reversi-1.0.0-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 b4041e373d4f95190f82bb67affd488d3f8809e33968c3ee5d322ca9e54146c7
MD5 f02bcb38eee566a0b4f9835faa2c2575
BLAKE2b-256 73caccde03d915083bb13fc4c14134080f03456a5f04a74699c77c63c63d3049

See more details on using hashes here.

File details

Details for the file rust_reversi-1.0.0-cp312-cp312-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for rust_reversi-1.0.0-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 f782c5a9bf519def3a0b6091e7d834eb3d5d0964154ebe9b01266786ca96ab20
MD5 f58f8e4a6c2fa162c065af79dff0d142
BLAKE2b-256 a041f925c8c6b9eebc494b34980645e10f6629bd8cfb47f253bf3052d0696325

See more details on using hashes here.

File details

Details for the file rust_reversi-1.0.0-cp312-cp312-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for rust_reversi-1.0.0-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 4dbd7ce22e5da88ae37b88922424c9f38e2f9a27b0c4fe6f1b6a0ff1612a0377
MD5 457409daef0832cc50ad73a0bab8a6dc
BLAKE2b-256 a6132d4806dce43673c80cc0342492bc65c006351e92b93afdcf5e3bf5bc7590

See more details on using hashes here.

File details

Details for the file rust_reversi-1.0.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for rust_reversi-1.0.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 fde1772b0140b78c267a720f2ab76cfe7dfc86ec90df96657b65acc2c3aa02a5
MD5 a99a58d2bddde0ce54525ca483e81e8c
BLAKE2b-256 c562c2ba2035938e79b9b5d503c280e555f7ecf82ad18d139bcc9df4531824ce

See more details on using hashes here.

File details

Details for the file rust_reversi-1.0.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for rust_reversi-1.0.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 04bf8c5a01e835b7922e4cc1a76ee5d124de7aaa6bd2ac46a3a809dd68f565d6
MD5 c74b22c73c1ee88acf101ebcd0c9820a
BLAKE2b-256 6fd8e5eb5a09e113788ab6d455102c93f6cc7cadcdfaa40905dfa29285d42ac9

See more details on using hashes here.

File details

Details for the file rust_reversi-1.0.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for rust_reversi-1.0.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 aab1c87a34dedde3b16dff3ba505a17ab1d8b471cca46936e78a4409ab527c85
MD5 608870c102e0a5cac8610d9d691cfff2
BLAKE2b-256 c76ed1038dd2c0af053bf2bbf2cdba21739d78ab638cd29c256177307c67d732

See more details on using hashes here.

File details

Details for the file rust_reversi-1.0.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for rust_reversi-1.0.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 f8048b4e78a37720c078f4cdc05e3571396c581369c80c23e7ec260a3ff03255
MD5 71b7bd216015092125acbd621dfb0b95
BLAKE2b-256 4bfc302803e6865df018d6b89a07192bdc50218fd02e1e93c5ff18c49daae11e

See more details on using hashes here.

File details

Details for the file rust_reversi-1.0.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for rust_reversi-1.0.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 4ee844cf99c45281269123897cfa52947e9f36bb709583f12fb030331ef55d54
MD5 cd6d404081b0fa83141e42d637993fe0
BLAKE2b-256 d2b556abea9ec1461be49ef108d8bc0593782b5e015c8662f0628a8d1263a924

See more details on using hashes here.

File details

Details for the file rust_reversi-1.0.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for rust_reversi-1.0.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 c39d26c06307112b7ea4772c31e9ccfc131f79dd081833da1a68b2eb3e5976ce
MD5 de2c2ecaa5fb7bd7094390bedf60fb18
BLAKE2b-256 88fd7bb997b612d8d71b5718f35278dcbbea65cc06dc8ebceaea7842c97797f6

See more details on using hashes here.

File details

Details for the file rust_reversi-1.0.0-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for rust_reversi-1.0.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 734ccfa2b1b70170d54968fc90c6be574d6288a8ce10d14b4a546fedfe16e881
MD5 76b0168655f099e1b7d1f48ffc3d1ac0
BLAKE2b-256 b820a66e1bff76bdce4a1186f5da970dd679c59b25111af32e7b27bee8f8e545

See more details on using hashes here.

File details

Details for the file rust_reversi-1.0.0-cp312-cp312-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for rust_reversi-1.0.0-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 dcce86e9f420705533ee3e9ad5c147c8e6d2a09a0e83f995488bfcb06abe2c60
MD5 ec188ebaf40f6fe8b0b1365a208703d8
BLAKE2b-256 64e2f9734fbc252a51510ce36966b7d3585bfcb1636f94a9a65df4c8afa53e0d

See more details on using hashes here.

File details

Details for the file rust_reversi-1.0.0-cp311-cp311-win_amd64.whl.

File metadata

File hashes

Hashes for rust_reversi-1.0.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 6feb011b344213984f2b714b224c99dad7a4f410f0b2285ad7195c5b01d6e56f
MD5 b96328f7cd166727d2d39b311db6779d
BLAKE2b-256 3ed1d3259402973fe82cdfbae2a1a7c5a98516cea242dea8689c83c1d14c3e33

See more details on using hashes here.

File details

Details for the file rust_reversi-1.0.0-cp311-cp311-win32.whl.

File metadata

File hashes

Hashes for rust_reversi-1.0.0-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 05816ddb88a1d36df9025fda8f8316ea45dc641a47c9249d75e850511a9ec60f
MD5 df94c9272ae92ce4c419ea711c2981b2
BLAKE2b-256 0dcdd4ec5e0ce1d9a6f58d08b212cc067de132fedece6b7ba7e071a50e099235

See more details on using hashes here.

File details

Details for the file rust_reversi-1.0.0-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for rust_reversi-1.0.0-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 91af36bb83580c030c6f698d8a210dab7ecf45d015a323759a6dbb46f751e06f
MD5 f04a07260bbd4bf4749fe3fe170e2af0
BLAKE2b-256 716f3de7632f19752520b81c427043c434677738f5435777a36648eadee146c1

See more details on using hashes here.

File details

Details for the file rust_reversi-1.0.0-cp311-cp311-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for rust_reversi-1.0.0-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 7abc395668c769693e2d0c4cf997b2d58f146317e72012b8f3db43c82d9f20eb
MD5 95d0dd1ecb6ef1cd77d1b344523d2992
BLAKE2b-256 5829e5e90ec315d448d8c8eb4e986c6285b831dcf94f0ac81e33c70dd738ed4f

See more details on using hashes here.

File details

Details for the file rust_reversi-1.0.0-cp311-cp311-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for rust_reversi-1.0.0-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 8e20befeb59027a26bcb52269a02acb28d3762e3bb7b522f3736a45ec038c2a4
MD5 e58944c665d345ce168bb1dddacf79b2
BLAKE2b-256 bd58e099d23a5ef2ca75afff08438ff431ca6b8cf7effa7e94b21e89c1d847da

See more details on using hashes here.

File details

Details for the file rust_reversi-1.0.0-cp311-cp311-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for rust_reversi-1.0.0-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 f578efa88f3f1c2f7aea583629fdbfec8cde9b727ee85430407ea137942e25d3
MD5 f6fda1220905254a2b429705e687424a
BLAKE2b-256 524d952244ac179423ba87b95049fb8c7c65381621fcf438db7e170353a8624f

See more details on using hashes here.

File details

Details for the file rust_reversi-1.0.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for rust_reversi-1.0.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 abe36ae70928b839550bcb67d1658efbbc3ec9d069285979dfbeeab9a6bb5bd4
MD5 82bc950b8be9bf435a7f56fa67659967
BLAKE2b-256 d5269f489d610995ea72b6a4a869d0d66885899388816c23381f04d0bc04d255

See more details on using hashes here.

File details

Details for the file rust_reversi-1.0.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for rust_reversi-1.0.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 96ad02cbf1f244c8486c00eac8959c1a9d66bd25c9822f19794211372e9b09fa
MD5 3fedc6a33d65560ea0a2c2f4c284e198
BLAKE2b-256 e5f762c91f81bcfc248d7134fc60a86008c4b7d8d6ae29544dd0b54788907fc9

See more details on using hashes here.

File details

Details for the file rust_reversi-1.0.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for rust_reversi-1.0.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 7b7cae263de3d18505a288e70d7dfd1025631a4183edc962c5d5e38949073175
MD5 f9a2f7a799d8d6eeed8fc2af2aa99d69
BLAKE2b-256 83e8c5d38a7f05e9be17b0b36550a7609624e177e172fd6a802c667d955000f7

See more details on using hashes here.

File details

Details for the file rust_reversi-1.0.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for rust_reversi-1.0.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 6a5a820f33296cdd76f3ae291d24d65ccd8d0dccb04e0d4a2e2dc29b2017f176
MD5 3518561893263a963a386ac42adfc02c
BLAKE2b-256 8b20b265d036b93bb166410e90b5af6df331e9dd491a50b3f9a2c6b3f2701c4f

See more details on using hashes here.

File details

Details for the file rust_reversi-1.0.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for rust_reversi-1.0.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 5322ceb4481ae7ac9034f69f2ff365d89179778931d4bdad95dd06c9ce7438aa
MD5 252702830c1be284af73cf29ccf08229
BLAKE2b-256 8533eccf63787acb4d67e40458e96d011b41ddb9569a55cdd0fd62291fccf9cc

See more details on using hashes here.

File details

Details for the file rust_reversi-1.0.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for rust_reversi-1.0.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 50e083c6834bb4fbb40d8b4c4cf58d8e53aa87adb1ef72ffa98b89cef34ff1d2
MD5 bfb25c49e3607301f39c874c76492a4d
BLAKE2b-256 f2dcc74d7611bf0baf8a81b3b6d2c50c5f9fbcaa15ee8d220e550d80ac3993b0

See more details on using hashes here.

File details

Details for the file rust_reversi-1.0.0-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for rust_reversi-1.0.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 8d53f3c29b033fbf01c72edf169c826adf3db37df30c9204d33ad62b92a83f98
MD5 fa7a97d983cb80d35240a1e5037faf04
BLAKE2b-256 0c1a8eb10e3edbff28afd6bd7417b218d4a0d5d931a3b951afc1441cf9c86aa7

See more details on using hashes here.

File details

Details for the file rust_reversi-1.0.0-cp311-cp311-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for rust_reversi-1.0.0-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 e9808c0e84c815a79d1b235467683236783d22900e07e9b5f6058f5e816315ef
MD5 2ef1eab875231d89cc4c2205f3ae1049
BLAKE2b-256 29d5bf0d3d8661ef80154f48d1a6d2e9236df0bbf8cc86ee52ed67ca805dc74b

See more details on using hashes here.

File details

Details for the file rust_reversi-1.0.0-cp310-cp310-win_amd64.whl.

File metadata

File hashes

Hashes for rust_reversi-1.0.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 328df714500318a0041155e0cbb8ca89c8a69a0bb32bb330dae7f0a8334c1ea1
MD5 96cf871d6a562b942dd5981a33f73e77
BLAKE2b-256 706a250423375ac1d1c8911cd9a19af7705dcf8d431411de3e23102528de764e

See more details on using hashes here.

File details

Details for the file rust_reversi-1.0.0-cp310-cp310-win32.whl.

File metadata

File hashes

Hashes for rust_reversi-1.0.0-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 52446c6407cd552ccee29d3e3652c87b03b327e141753e88c92d07ae02b5efe8
MD5 b5f24e0ca6bff4a0ddd2a2bea1594871
BLAKE2b-256 313d6d2ee6f6667ccfc89a9931969f4f0b096512c537b4d89d3c7501a3160417

See more details on using hashes here.

File details

Details for the file rust_reversi-1.0.0-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for rust_reversi-1.0.0-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 2a50845bc13678ec8485227a9551e221f39a458ed6091e5cb9b0829fbcd6929c
MD5 8fbb65c3e5c1e0d2b875707675dea55e
BLAKE2b-256 691b1abcc949a685501805189eb35b3b711799d5d0cb9801a42a171c2e07db32

See more details on using hashes here.

File details

Details for the file rust_reversi-1.0.0-cp310-cp310-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for rust_reversi-1.0.0-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 38c38f036da5db6ceadb9c7e7a72536f82520320780691baad5982edd994a6c4
MD5 d178134a9cf4b03e15b80a86de0893b4
BLAKE2b-256 90cfa861deb45711f5620d229e1d6de25e8d229579919815fe35230af1f54c00

See more details on using hashes here.

File details

Details for the file rust_reversi-1.0.0-cp310-cp310-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for rust_reversi-1.0.0-cp310-cp310-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 a32e86f5ac7793a3b5b7ad5026064e14ab11d7f427ef9459ac55283afc8e28fb
MD5 2602c9f608abebfd6c460d18eca70746
BLAKE2b-256 6cf492398e6ec6def7548ae2fd13320fe207d6acf59bd6897c58c0cacc9265e4

See more details on using hashes here.

File details

Details for the file rust_reversi-1.0.0-cp310-cp310-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for rust_reversi-1.0.0-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 edbe7ac477902f0fac05935444a2342e978511f997dd994228b93defc15cf5cb
MD5 0daaeb6d38d2e30712db49285d52a0d6
BLAKE2b-256 dbd68bc9cf00792af58c3de731758336198c3a8c789333986684fa5738834709

See more details on using hashes here.

File details

Details for the file rust_reversi-1.0.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for rust_reversi-1.0.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 aa8d7a25866d62c443666d378f50b42e0117f08201e0a678a6bdaa809e7a3d07
MD5 c701dc9588b8e28c2b823d0959648819
BLAKE2b-256 d4491963e157e7579365ed18c24f059a894f912cfb06c21ce8d37b44a71dd81a

See more details on using hashes here.

File details

Details for the file rust_reversi-1.0.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for rust_reversi-1.0.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 d4e6d63f4db370352d9f3654aee0e8833425f43a69d9270df2040dfffa2b83c9
MD5 4a5e72f86929e84fff2419758b2ca563
BLAKE2b-256 78032edf39603c7b919b5bbd3385190a7c50dd3e60ce08d50e28d3ee985a3ce6

See more details on using hashes here.

File details

Details for the file rust_reversi-1.0.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for rust_reversi-1.0.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 76883776c1dd298a04c1210dc4fb65e196129e6e8a12ac7d037d8aa9fff0b8a0
MD5 6acb9c8c758ce2324084835cb4df2fe0
BLAKE2b-256 44fc2e97e86362fb18f5671c4d5ce1a3873eda100062ba8254445c712c4f5d07

See more details on using hashes here.

File details

Details for the file rust_reversi-1.0.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for rust_reversi-1.0.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 51b865e9a8d17f180011fcbb6118b41f467f9e291ec1a1601c5eee27acc950a0
MD5 a9d1dec9a6512b09e6c6dd3bca66dc33
BLAKE2b-256 1e36d647d3bd186890d4062e3e449554abf548c07ad6f53774ba0a443ad7846f

See more details on using hashes here.

File details

Details for the file rust_reversi-1.0.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for rust_reversi-1.0.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 86f579d81d88af213846b0152310197a8677f78bd26ed2bb0bc5087589c7794e
MD5 533e3706aebcb2295276f42631ecc642
BLAKE2b-256 f9629549ecb9efa9f817aef543ec76d7ff0f541612c674677b85786235feb6e6

See more details on using hashes here.

File details

Details for the file rust_reversi-1.0.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for rust_reversi-1.0.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 70a27a8857fd0cf46af2f3f3c092f2c4c4efab11f15e588de5a5725c8dd4ae82
MD5 62f16f1aa0c9ccf65cbf4befaa0e9304
BLAKE2b-256 b0908a93b9bfc416e857a4eb332e494272d48ef96a69e0d75d865eec50192fdd

See more details on using hashes here.

File details

Details for the file rust_reversi-1.0.0-cp39-cp39-win_amd64.whl.

File metadata

File hashes

Hashes for rust_reversi-1.0.0-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 e31b237455070648c6e2908abcc2e8da50ea7ec5b8af3af1faf7ab8c5813eb2f
MD5 faffb1d90fb137cfb81c2443af0204fe
BLAKE2b-256 8aa5ef69b582c8371301caf4b07a178c8f37554fadd5e7c79c305212290acf16

See more details on using hashes here.

File details

Details for the file rust_reversi-1.0.0-cp39-cp39-win32.whl.

File metadata

  • Download URL: rust_reversi-1.0.0-cp39-cp39-win32.whl
  • Upload date:
  • Size: 142.1 kB
  • Tags: CPython 3.9, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.7.8

File hashes

Hashes for rust_reversi-1.0.0-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 dd2f5c58f47b5361e84dfd7bfd359cd63286d5a124f8bbdaa808e6d885755d09
MD5 48144ecd209955e858111130f2d686f1
BLAKE2b-256 f9bd64dd7042675b38cd87846cbe8975b4c89f70d579f878862b3d6d6f8c3850

See more details on using hashes here.

File details

Details for the file rust_reversi-1.0.0-cp39-cp39-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for rust_reversi-1.0.0-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 00d151f3369eef1d8543f4b5870464a993e9532120d1494410e16ee983a9c87a
MD5 541622a3bad730279027bee3a41b7678
BLAKE2b-256 15c967135309c7bdb57a0d4183f06ed613a924581ef2bf6fd8a19df467c0b6a3

See more details on using hashes here.

File details

Details for the file rust_reversi-1.0.0-cp39-cp39-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for rust_reversi-1.0.0-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 f5f0e4a685def8f4e0e8a3524aea0c3327141cd058fab97e259d8bdfbe4f3640
MD5 a0cd222f68e89cb6bf164ddc6dc63652
BLAKE2b-256 767c675447e4bc512e901771abfda8bba5be8e1740dfbd4519d28d752012ca46

See more details on using hashes here.

File details

Details for the file rust_reversi-1.0.0-cp39-cp39-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for rust_reversi-1.0.0-cp39-cp39-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 83c3d87b1e42bc70d2c7bc297effb3053c58d389b0c386b8651090714c2b2ffb
MD5 cf106463b618153aad65fbac55b68392
BLAKE2b-256 25f3f59c8ccce79980178a2b3879d8c57a3fd112f882a7bf88542827fa81637d

See more details on using hashes here.

File details

Details for the file rust_reversi-1.0.0-cp39-cp39-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for rust_reversi-1.0.0-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 e550c602d061cc261bf9ebcac329a83897e56c4faf6fb4fd1d5467cfe4a1a9a7
MD5 c683f382b994d3c90b8a70f020ae2a94
BLAKE2b-256 3aa5847652b8b88f1f6f4cf2b0df5c0703a38d03ebf8877a771a095de7869c87

See more details on using hashes here.

File details

Details for the file rust_reversi-1.0.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for rust_reversi-1.0.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 1b1e6a14d41bafda909d7f8ecc2623edf5ddae9405d1603051d4f24feeb817ee
MD5 4d46fb95965767cde9d32838a6282b45
BLAKE2b-256 cc446c09e37bbde08a4ee06b36458c52f2e78bce49a82dec77696d69d583e5fd

See more details on using hashes here.

File details

Details for the file rust_reversi-1.0.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for rust_reversi-1.0.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 ad954f2c19c815f5c8dbf8934fb5056c64f33f4fba728ea76ae97dc52be2af3c
MD5 15036cf9b826b4c8ce20a6078a5b8268
BLAKE2b-256 abcd07d5f8ceab5771f36c52a97b3704f6a6f65d2c6553d88a0a7d1700174eda

See more details on using hashes here.

File details

Details for the file rust_reversi-1.0.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for rust_reversi-1.0.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 5cae4a401580387ec13db3b9879fdeab4675263787996d02ac1692d3a337c772
MD5 530ccd7e7a3cba34a85783671e909f41
BLAKE2b-256 bd0d613e5a6711f3d17786c0f93590ffcb8739b39b8c854375b5bf4f51473385

See more details on using hashes here.

File details

Details for the file rust_reversi-1.0.0-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for rust_reversi-1.0.0-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 bb8e57130b825d8815b9055f00bc869bb0b4d40b78d9e156f9fa83efd263cc71
MD5 6a7cd8a982034e0db4e81a6511b20f33
BLAKE2b-256 dc4bd8b37549e669ba3d07da07e6a6aa01f15695e24307e1c75945dd37ae8494

See more details on using hashes here.

File details

Details for the file rust_reversi-1.0.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for rust_reversi-1.0.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 93f7e79d3f08efc7f0dc1ab89756844477a37aaed0aa5975ab96c34e9352bd0e
MD5 d186a3a290338224d6e0e662931e1738
BLAKE2b-256 dbed11d5c904c0582b14971d3acc1612b35a67da87a484b85856296ddca49118

See more details on using hashes here.

File details

Details for the file rust_reversi-1.0.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for rust_reversi-1.0.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 7b03ea4125e0744357efe6a809011b724e9f45799910496abc4774b9fa1ee033
MD5 6277f5c110793f3b49132f6987672542
BLAKE2b-256 e1015982f6370c2a4765f65d8c65fe343cf3acac51b5b5abfba9067f5b2e69b7

See more details on using hashes here.

File details

Details for the file rust_reversi-1.0.0-cp38-cp38-win_amd64.whl.

File metadata

File hashes

Hashes for rust_reversi-1.0.0-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 1f82b357e62365d13860826e09e1a32f00e08ddfe88f0e3d38fc7c0557647913
MD5 6ef39875e8c5c9a9b07164df6e2616a0
BLAKE2b-256 994c3038846b26aac0558781e20e6dfc5eb77768d7ca9b148cd86c83e1d8614b

See more details on using hashes here.

File details

Details for the file rust_reversi-1.0.0-cp38-cp38-win32.whl.

File metadata

  • Download URL: rust_reversi-1.0.0-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

Hashes for rust_reversi-1.0.0-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 37cd23c37dea7dae6ac30c4632c8261441f47289124bc79ae8bc534700cbd47e
MD5 2f2255e9c8216b85acba6051dafe9209
BLAKE2b-256 d3db7ed347182752daa26eb1e28d87d7a6267b7dd080d99f882f5307416ead65

See more details on using hashes here.

File details

Details for the file rust_reversi-1.0.0-cp38-cp38-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for rust_reversi-1.0.0-cp38-cp38-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 7697c2dc0484ffececc322b68d56ac4eb7f147c3d9ea1a63e58917ff11cf81e5
MD5 281bb08d90ec9f1feebceaf5db8a836a
BLAKE2b-256 57215f14738541510052c58d4d2caa3205f7e511935b1736c232095e321e89e0

See more details on using hashes here.

File details

Details for the file rust_reversi-1.0.0-cp38-cp38-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for rust_reversi-1.0.0-cp38-cp38-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 0fc90901908ce49692f5d81718ab2447a836b29bc92e4c40f11cc653586995bb
MD5 4149f8077a26cd5166aeb22aa1fde7e9
BLAKE2b-256 1490a8b679f526bd369208e77423cd12984759b7547e0df8ba45147cf50c1068

See more details on using hashes here.

File details

Details for the file rust_reversi-1.0.0-cp38-cp38-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for rust_reversi-1.0.0-cp38-cp38-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 637b792ac02aba822d867246d47af71495b0f539e158df1eeed3cbfd8afda91c
MD5 e19638f7bb29221f20b8623fe06ca037
BLAKE2b-256 246834d0b515f2f3111ca45f6392491a208e89618739aef383e1fa7d6b87f5e2

See more details on using hashes here.

File details

Details for the file rust_reversi-1.0.0-cp38-cp38-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for rust_reversi-1.0.0-cp38-cp38-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 6e2215a79a991f238a4f0d245662cdcee214dedc73f9aa73af05c3f6a1974f82
MD5 d9866c22b780d2c53e21627a3d78dc45
BLAKE2b-256 b470f87930eb66e6fa9658fd0d0c3bb3f2a7b71600bf25e8979a2a208941ba3e

See more details on using hashes here.

File details

Details for the file rust_reversi-1.0.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for rust_reversi-1.0.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 971e627e30ea35f57e4d9a11443fde4423846094f99d3af112a9c33f17728173
MD5 211bdf7e28dededeb98e13deadf49579
BLAKE2b-256 7c8f2eb2fba7884dfd2d05780bb57167fbf6ae31c49864deac912b033a420d39

See more details on using hashes here.

File details

Details for the file rust_reversi-1.0.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for rust_reversi-1.0.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 74fa8e54f9189c23ff65c78804666e758e094fc02b374cdda46fa9afef3d014b
MD5 58ae4e37b3451a784696391cf9f11c06
BLAKE2b-256 261491b8f2427b15c247cf1489d3bd5e113b4b679538c84a4e694c68b637f878

See more details on using hashes here.

File details

Details for the file rust_reversi-1.0.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for rust_reversi-1.0.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 164ba95b0ef80cab49d7920b03ff3326ce7b48b64b5257b49013e84a479192ac
MD5 f59a66213f1aa7b61899fcc0e0c1e9eb
BLAKE2b-256 5557c1561dba99bbeb0c34c43053bc57c4f04914625c16e77bb434cb6280948f

See more details on using hashes here.

File details

Details for the file rust_reversi-1.0.0-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for rust_reversi-1.0.0-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 c5c06e746f7d6d6f82f75ec2b174869f0676cd8604322dfff9ee2db52123cbde
MD5 f92ca196a077946791b3b98152fd0e08
BLAKE2b-256 b7993ecd6fbefeab163587956a9157a4156c71db26f971097a7c3a577040641d

See more details on using hashes here.

File details

Details for the file rust_reversi-1.0.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for rust_reversi-1.0.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 8473d3fafd2235cb2a2020fe39d6ad839e5f0b94fe507de7f270b439cec8d025
MD5 2f70c8aaaae7423a4cc26c9d6948695e
BLAKE2b-256 e993326cbc9afc20fae4ba4ff4a2ed83b00685a3ec9f44be66fb341fc93266fd

See more details on using hashes here.

File details

Details for the file rust_reversi-1.0.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for rust_reversi-1.0.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 1f4d982870e7088fe9f4ad33625ccda5a604de4f99cb1501c6d4d97461e2e639
MD5 487f90eb204ff8d2a912a13afd839b6c
BLAKE2b-256 337be7cb73c636e27c1418674c157894679380cf00fbf9a8e4a7b44fa2a114c6

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page