Skip to main content

High-level bindings for the Rust tar crate

Project description

Fastar

Versions PyPI Downloads License CodSpeed

The fastar library wraps the Rust tar and flate2 crates, providing a high-performance way for with compressed and uncompressed tar archives in Python.

Installation

pip install fastar

Usage

This section shows basic examples of how to create and extract tar archives using Fastar. For more usage examples, please refer directly to the test cases in the tests directory.

Working with uncompressed tar archives

import fastar
from pathlib import Path


input_file = Path("file.txt")
input_file.write_text("Hello, Fastar!")


with fastar.open("archive.tar", "w") as archive:
    archive.append(input_file)


with fastar.open("archive.tar", "r") as archive:
    archive.unpack("output/")


unpacked_file = Path("output/file.txt")
print(unpacked_file.read_text())  # Hello, Fastar!

Working with gzip-compressed tar archives

import fastar
from pathlib import Path


input_file = Path("file.txt")
input_file.write_text("Hello, Fastar!")


with fastar.open("archive.tar.gz", "w:gz") as archive:
    archive.append(input_file)


with fastar.open("archive.tar.gz", "r:gz") as archive:
    archive.unpack("output/")


unpacked_file = Path("output/file.txt")
print(unpacked_file.read_text())  # Hello, Fastar!

Development

  1. Install dependencies into a virtual env: uv sync
  2. Make changes to the code and tests
  3. Build the package: uv run maturin develop
  4. Run the tests: uv run pytest

Download files

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

Source Distribution

fastar-0.3.0.tar.gz (66.6 kB view details)

Uploaded Source

Built Distributions

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

fastar-0.3.0-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl (592.5 kB view details)

Uploaded PyPymusllinux: musl 1.2+ x86-64

fastar-0.3.0-pp311-pypy311_pp73-musllinux_1_2_i686.whl (636.0 kB view details)

Uploaded PyPymusllinux: musl 1.2+ i686

fastar-0.3.0-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl (691.6 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

fastar-0.3.0-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl (601.6 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARM64

fastar-0.3.0-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (421.4 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

fastar-0.3.0-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (441.7 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ s390x

fastar-0.3.0-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (554.2 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

fastar-0.3.0-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (424.4 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

fastar-0.3.0-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (419.8 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

fastar-0.3.0-pp311-pypy311_pp73-manylinux_2_12_i686.manylinux2010_i686.whl (465.8 kB view details)

Uploaded PyPymanylinux: glibc 2.12+ i686

fastar-0.3.0-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl (592.5 kB view details)

Uploaded PyPymusllinux: musl 1.2+ x86-64

fastar-0.3.0-pp310-pypy310_pp73-musllinux_1_2_i686.whl (635.8 kB view details)

Uploaded PyPymusllinux: musl 1.2+ i686

fastar-0.3.0-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl (691.3 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

fastar-0.3.0-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl (601.5 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARM64

fastar-0.3.0-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (441.8 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ s390x

fastar-0.3.0-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (554.4 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

fastar-0.3.0-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (424.2 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

fastar-0.3.0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (420.0 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

fastar-0.3.0-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl (592.2 kB view details)

Uploaded PyPymusllinux: musl 1.2+ x86-64

fastar-0.3.0-pp39-pypy39_pp73-musllinux_1_2_i686.whl (635.7 kB view details)

Uploaded PyPymusllinux: musl 1.2+ i686

fastar-0.3.0-pp39-pypy39_pp73-musllinux_1_2_armv7l.whl (689.6 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

fastar-0.3.0-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl (601.6 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARM64

fastar-0.3.0-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (441.4 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ s390x

fastar-0.3.0-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (555.7 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

fastar-0.3.0-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (422.8 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

fastar-0.3.0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (419.9 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

fastar-0.3.0-cp314-cp314t-musllinux_1_2_x86_64.whl (591.0 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

fastar-0.3.0-cp314-cp314t-musllinux_1_2_i686.whl (633.7 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ i686

fastar-0.3.0-cp314-cp314t-musllinux_1_2_armv7l.whl (686.8 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARMv7l

fastar-0.3.0-cp314-cp314t-musllinux_1_2_aarch64.whl (599.6 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

fastar-0.3.0-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl (439.9 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ s390x

fastar-0.3.0-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (551.6 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ppc64le

fastar-0.3.0-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (421.1 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARMv7l

fastar-0.3.0-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (418.2 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARM64

fastar-0.3.0-cp314-cp314-win_amd64.whl (275.2 kB view details)

Uploaded CPython 3.14Windows x86-64

fastar-0.3.0-cp314-cp314-win32.whl (267.3 kB view details)

Uploaded CPython 3.14Windows x86

fastar-0.3.0-cp314-cp314-musllinux_1_2_x86_64.whl (591.3 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

fastar-0.3.0-cp314-cp314-musllinux_1_2_i686.whl (634.0 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ i686

fastar-0.3.0-cp314-cp314-musllinux_1_2_armv7l.whl (687.9 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARMv7l

fastar-0.3.0-cp314-cp314-musllinux_1_2_aarch64.whl (600.4 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

fastar-0.3.0-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (420.1 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ x86-64

fastar-0.3.0-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl (440.4 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ s390x

fastar-0.3.0-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (551.1 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ppc64le

fastar-0.3.0-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (421.8 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARMv7l

fastar-0.3.0-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (419.0 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARM64

fastar-0.3.0-cp314-cp314-manylinux_2_12_i686.manylinux2010_i686.whl (463.4 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.12+ i686

fastar-0.3.0-cp314-cp314-macosx_11_0_arm64.whl (368.5 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

fastar-0.3.0-cp314-cp314-macosx_10_12_x86_64.whl (378.0 kB view details)

Uploaded CPython 3.14macOS 10.12+ x86-64

fastar-0.3.0-cp313-cp313t-musllinux_1_2_x86_64.whl (590.9 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ x86-64

fastar-0.3.0-cp313-cp313t-musllinux_1_2_i686.whl (634.2 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ i686

fastar-0.3.0-cp313-cp313t-musllinux_1_2_armv7l.whl (686.8 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARMv7l

fastar-0.3.0-cp313-cp313t-musllinux_1_2_aarch64.whl (600.0 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARM64

fastar-0.3.0-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl (439.9 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ s390x

fastar-0.3.0-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (552.8 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ppc64le

fastar-0.3.0-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (421.4 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARMv7l

fastar-0.3.0-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (418.8 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARM64

fastar-0.3.0-cp313-cp313-win_amd64.whl (274.9 kB view details)

Uploaded CPython 3.13Windows x86-64

fastar-0.3.0-cp313-cp313-musllinux_1_2_x86_64.whl (590.7 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

fastar-0.3.0-cp313-cp313-musllinux_1_2_i686.whl (634.2 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ i686

fastar-0.3.0-cp313-cp313-musllinux_1_2_armv7l.whl (688.0 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARMv7l

fastar-0.3.0-cp313-cp313-musllinux_1_2_aarch64.whl (600.3 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

fastar-0.3.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (419.9 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

fastar-0.3.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl (440.2 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ s390x

fastar-0.3.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (551.9 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ppc64le

fastar-0.3.0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (421.9 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARMv7l

fastar-0.3.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (419.1 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

fastar-0.3.0-cp313-cp313-manylinux_2_12_i686.manylinux2010_i686.whl (463.1 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.12+ i686

fastar-0.3.0-cp313-cp313-macosx_11_0_arm64.whl (368.4 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

fastar-0.3.0-cp313-cp313-macosx_10_12_x86_64.whl (377.8 kB view details)

Uploaded CPython 3.13macOS 10.12+ x86-64

fastar-0.3.0-cp312-cp312-win_amd64.whl (275.1 kB view details)

Uploaded CPython 3.12Windows x86-64

fastar-0.3.0-cp312-cp312-musllinux_1_2_x86_64.whl (591.0 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

fastar-0.3.0-cp312-cp312-musllinux_1_2_i686.whl (634.5 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ i686

fastar-0.3.0-cp312-cp312-musllinux_1_2_armv7l.whl (688.7 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

fastar-0.3.0-cp312-cp312-musllinux_1_2_aarch64.whl (600.4 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

fastar-0.3.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (420.7 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

fastar-0.3.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl (440.3 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ s390x

fastar-0.3.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (552.5 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ppc64le

fastar-0.3.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (422.3 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARMv7l

fastar-0.3.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (419.0 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

fastar-0.3.0-cp312-cp312-manylinux_2_12_i686.manylinux2010_i686.whl (463.5 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.12+ i686

fastar-0.3.0-cp312-cp312-macosx_11_0_arm64.whl (368.6 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

fastar-0.3.0-cp312-cp312-macosx_10_12_x86_64.whl (378.1 kB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

fastar-0.3.0-cp311-cp311-win_amd64.whl (275.4 kB view details)

Uploaded CPython 3.11Windows x86-64

fastar-0.3.0-cp311-cp311-musllinux_1_2_x86_64.whl (591.0 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

fastar-0.3.0-cp311-cp311-musllinux_1_2_i686.whl (635.6 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ i686

fastar-0.3.0-cp311-cp311-musllinux_1_2_armv7l.whl (690.0 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARMv7l

fastar-0.3.0-cp311-cp311-musllinux_1_2_aarch64.whl (600.7 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

fastar-0.3.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (420.4 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

fastar-0.3.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl (440.4 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ s390x

fastar-0.3.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (552.6 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ppc64le

fastar-0.3.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (423.2 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARMv7l

fastar-0.3.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (419.3 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

fastar-0.3.0-cp311-cp311-manylinux_2_12_i686.manylinux2010_i686.whl (465.1 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.12+ i686

fastar-0.3.0-cp311-cp311-macosx_11_0_arm64.whl (370.9 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

fastar-0.3.0-cp311-cp311-macosx_10_12_x86_64.whl (380.8 kB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

fastar-0.3.0-cp310-cp310-win_amd64.whl (275.3 kB view details)

Uploaded CPython 3.10Windows x86-64

fastar-0.3.0-cp310-cp310-musllinux_1_2_x86_64.whl (591.1 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

fastar-0.3.0-cp310-cp310-musllinux_1_2_i686.whl (635.7 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ i686

fastar-0.3.0-cp310-cp310-musllinux_1_2_armv7l.whl (690.7 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARMv7l

fastar-0.3.0-cp310-cp310-musllinux_1_2_aarch64.whl (600.6 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

fastar-0.3.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (420.5 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

fastar-0.3.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl (440.5 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ s390x

fastar-0.3.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (552.3 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ppc64le

fastar-0.3.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (423.5 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARMv7l

fastar-0.3.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (419.1 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

fastar-0.3.0-cp310-cp310-manylinux_2_12_i686.manylinux2010_i686.whl (465.1 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.12+ i686

fastar-0.3.0-cp39-cp39-win_amd64.whl (275.2 kB view details)

Uploaded CPython 3.9Windows x86-64

fastar-0.3.0-cp39-cp39-musllinux_1_2_x86_64.whl (591.9 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

fastar-0.3.0-cp39-cp39-musllinux_1_2_i686.whl (635.6 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ i686

fastar-0.3.0-cp39-cp39-musllinux_1_2_armv7l.whl (690.8 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARMv7l

fastar-0.3.0-cp39-cp39-musllinux_1_2_aarch64.whl (601.3 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

fastar-0.3.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (421.1 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

fastar-0.3.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl (440.8 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ s390x

fastar-0.3.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (554.2 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ppc64le

fastar-0.3.0-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (423.8 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARMv7l

fastar-0.3.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (419.9 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64

fastar-0.3.0-cp39-cp39-manylinux_2_12_i686.manylinux2010_i686.whl (465.1 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.12+ i686

fastar-0.3.0-cp38-cp38-musllinux_1_2_x86_64.whl (591.8 kB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ x86-64

fastar-0.3.0-cp38-cp38-musllinux_1_2_i686.whl (635.4 kB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ i686

fastar-0.3.0-cp38-cp38-musllinux_1_2_armv7l.whl (690.4 kB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ ARMv7l

fastar-0.3.0-cp38-cp38-musllinux_1_2_aarch64.whl (601.2 kB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ ARM64

fastar-0.3.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (420.6 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ x86-64

fastar-0.3.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl (440.9 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ s390x

fastar-0.3.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (554.2 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ppc64le

fastar-0.3.0-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (423.4 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ARMv7l

fastar-0.3.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (419.3 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ARM64

fastar-0.3.0-cp38-cp38-manylinux_2_12_i686.manylinux2010_i686.whl (464.6 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.12+ i686

File details

Details for the file fastar-0.3.0.tar.gz.

File metadata

  • Download URL: fastar-0.3.0.tar.gz
  • Upload date:
  • Size: 66.6 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.10.1

File hashes

Hashes for fastar-0.3.0.tar.gz
Algorithm Hash digest
SHA256 a2b296f7d7a8c56f65dff487d614cf53f63eeda01986c636c889c0fe7a72819e
MD5 6f8ad240d6fa8e33490fec0a068b04e3
BLAKE2b-256 e8e9534dbbed86f7d11c37bdbecff57fef902595b982f6fab809f7e2f5218a7b

See more details on using hashes here.

File details

Details for the file fastar-0.3.0-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for fastar-0.3.0-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 b0dbb123258beac35c415525981d787d99e45ac48d10fcb30ba56d59b0313dd1
MD5 f74e28e3417496b5bf766119133c9e71
BLAKE2b-256 3e3a8388480eab33f3152570d9426876a2e59f52c060d01737f4df8a6b83526d

See more details on using hashes here.

File details

Details for the file fastar-0.3.0-pp311-pypy311_pp73-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for fastar-0.3.0-pp311-pypy311_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 55e0226c90b4a8ed29d53cd05ca2a9666cf6bee9e17ad43c54fa1d8b18dd4463
MD5 b78f12f2f343085c10f93c992f70c1eb
BLAKE2b-256 3945bdba1bd748336c72790f59d78f7b0a6bc36c5ea982509006c225b6704745

See more details on using hashes here.

File details

Details for the file fastar-0.3.0-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for fastar-0.3.0-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 b66d2a45e7a9de09a10d07b5a371bbdff4e362db72223950cc5e5167f60e731d
MD5 b2580c9bd715fe67973d0258e27b7dac
BLAKE2b-256 8dde97fde2c49b7470ef573ec4a0adfcccc268da3d5669a32eba2c6becdad83d

See more details on using hashes here.

File details

Details for the file fastar-0.3.0-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for fastar-0.3.0-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 597b756cd458b29b7cf401126f8abbdda83b732569e5fe837e87ada12165235f
MD5 c16f8189558b9d7ea76c2311027fcc67
BLAKE2b-256 9737d3e2828b85f85c52d0ba04e23e4187b13cbf1763c056eabd6e6a100a80db

See more details on using hashes here.

File details

Details for the file fastar-0.3.0-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for fastar-0.3.0-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 53830bf7eedd65ea3f28a65ede67e9577cb2f3920019bd2bcc3a96f7ee5d0c57
MD5 87095ba3e47338c48c6b0002c85d96e6
BLAKE2b-256 43ba0f448428cdb8ba0b22b85d56f940f2d534eeb8d29a66fe7452ece1cff440

See more details on using hashes here.

File details

Details for the file fastar-0.3.0-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for fastar-0.3.0-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 fa6ce3fcf2b0ca4e6b6c0ce766311beeec51afe24d682363216b48a293832c83
MD5 7c49d3b7846e3138b6817c05af8cb40d
BLAKE2b-256 181fb2761ce011e9c8abb88a9e56d3ba2c8905e72c99bce705f244f5c6cef7d0

See more details on using hashes here.

File details

Details for the file fastar-0.3.0-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for fastar-0.3.0-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 408b3e60a187eb51907bff25c37c12538e4a415d1eafc5852d45454c98030523
MD5 6b2a9cb6ff2aef22470f597d35fe0dcb
BLAKE2b-256 74975a0d6056555a71535d359281e8842e22512485e68910f6459e187eff7fa3

See more details on using hashes here.

File details

Details for the file fastar-0.3.0-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for fastar-0.3.0-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 aa32fb9721616661cbf068d2ae8b79fe22bb150ae858f89eae8496c5372ae787
MD5 be188a37fb2273c66219cbbbf2543950
BLAKE2b-256 35a854c0c8cca521a3ff74bc864e7947e7a01520893d17411b38f539495e300f

See more details on using hashes here.

File details

Details for the file fastar-0.3.0-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for fastar-0.3.0-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 4770278c9e8616c576777c9f34c8846c4611e20581dfeff5e125a08c76a971d8
MD5 88158a38254b8c16623e46ac278a6626
BLAKE2b-256 19fe1406813dce2807a5b34493c73b7471fbad94d3dd78b224556c82094e7b5f

See more details on using hashes here.

File details

Details for the file fastar-0.3.0-pp311-pypy311_pp73-manylinux_2_12_i686.manylinux2010_i686.whl.

File metadata

File hashes

Hashes for fastar-0.3.0-pp311-pypy311_pp73-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 1dcde6acbab94eb0f315c32c5889ee1cc2c71ee0180bdf7e262569ecf6913af4
MD5 e30ade80af58adcd9704181be9e278c6
BLAKE2b-256 07ad21ea43e62360342398b86fc80522dc41d9850f3692510a6aef9d1bd373a2

See more details on using hashes here.

File details

Details for the file fastar-0.3.0-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for fastar-0.3.0-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 05d34b9821d10dae2887926dca8ff2013d860ec7da8f217e6a6e353f2884aa1e
MD5 aba1d49d17333e36cd4782540c7a4bc8
BLAKE2b-256 68eacdd4f75e2f97cdb67b6f8119b675076abbf1f963e2b43316949da23e9a05

See more details on using hashes here.

File details

Details for the file fastar-0.3.0-pp310-pypy310_pp73-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for fastar-0.3.0-pp310-pypy310_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 48f081ff60d682c9d0a1997d203798427eded044bace78f07a1a07557bb36dc2
MD5 b8c4ec5301714431444c6cf4b414651b
BLAKE2b-256 3fa367951cdfa116e4c76a152c75662ea982de36066fb03e574e788732e95cdc

See more details on using hashes here.

File details

Details for the file fastar-0.3.0-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for fastar-0.3.0-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 ab99ebd670a1b93d57cad0ec86caeae72e3eaaca7b1ba3ff687cb721bfd524f5
MD5 228c574a6d6fa46aa97225501afac82b
BLAKE2b-256 715c519172cff1c31b1fa72292cbbf8bc783eaa74afff8ef43962603353f5eee

See more details on using hashes here.

File details

Details for the file fastar-0.3.0-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for fastar-0.3.0-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 3fcc517967b8b0ca65eed765c7ca08be1c5a6b60b873a87175d8054228e7680a
MD5 ea1835e5503e0cf1fa32fbd93f9b7a36
BLAKE2b-256 90e0d4039144c2599132c58b0fce472e9644a8d1ed693a20866d38b39ccea2b1

See more details on using hashes here.

File details

Details for the file fastar-0.3.0-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for fastar-0.3.0-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 7538cd6b3964febae47f94ace1f34fd8ed7cb3ff822164aae784c14557f6b53e
MD5 3a1b13542aa13e1f907601b0719077fc
BLAKE2b-256 14c37857b63750787182ca747a88681bc4eb09ea4b272246b794918dece08544

See more details on using hashes here.

File details

Details for the file fastar-0.3.0-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for fastar-0.3.0-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 075ec87737e59ce74fd20b331cb8dd2af63f30c8b6e913dfe817a2d654a142d2
MD5 731271b30dd2020c943579e77f53650d
BLAKE2b-256 e6f8712105652a20b1d9c98c1b8f5b1ef4288223166c77dc60112e50120a0875

See more details on using hashes here.

File details

Details for the file fastar-0.3.0-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for fastar-0.3.0-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 e0da93be29b25ba62a2e028de711234a27e875b7527f40da55adb116f3bb3cde
MD5 e4bf52574431ed68685e29b0d89c15b1
BLAKE2b-256 5a44401afce9dfbdcbed071db9c50bb487944bafe8ad237bfd2d22a70b6218a7

See more details on using hashes here.

File details

Details for the file fastar-0.3.0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for fastar-0.3.0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 5ec3b412c74f5093879147b286228486597602fd85a39f619f9b30e1191917ec
MD5 ea7d5125526450fd90ede3b2467dad71
BLAKE2b-256 fc4b6c17e1423c53e7901cbe4ba66212376bcc657d2c37153548656cfae5b97c

See more details on using hashes here.

File details

Details for the file fastar-0.3.0-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for fastar-0.3.0-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 2f2c375690a87741638ca2abe1346bb01a827f403a117f4293aaacf388aa5f6c
MD5 b12e38620967fa24bec22020c5f025cc
BLAKE2b-256 d09e219167e3d4be3c63e5afe6a09386eff27d45aed770f5cfe44282e0e74484

See more details on using hashes here.

File details

Details for the file fastar-0.3.0-pp39-pypy39_pp73-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for fastar-0.3.0-pp39-pypy39_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 39cf1964c9f78b7a5e7c894fc792a00b8ae6d65bfe9a33d08fe96dc035f2a737
MD5 babfdcbac390230a417192960978ce9b
BLAKE2b-256 510fa7759a96f80b38404ca2e99e93b1d063fd2767bcb8ecc8da68198a566565

See more details on using hashes here.

File details

Details for the file fastar-0.3.0-pp39-pypy39_pp73-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for fastar-0.3.0-pp39-pypy39_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 a6ed43637d6eed528dfa919db42ab165037d81bee712e35dce9a899c029da4d0
MD5 9fa4964f0d5b7e528139fdcbfc657a10
BLAKE2b-256 1bf94d1977e6f756bc488eab0568904ed07125dc1654a71a1295364e074aac84

See more details on using hashes here.

File details

Details for the file fastar-0.3.0-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for fastar-0.3.0-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 2a968f5f3839df1412384682e7a3add87703d13740dfcb5884730dfb74c2551c
MD5 d3f4887945164a1308e8c1c6ab9f78f7
BLAKE2b-256 8b8cac27c2072afbacffb5381b7a69b85e4f8912b34fe6fa75d50a00d6eab7dd

See more details on using hashes here.

File details

Details for the file fastar-0.3.0-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for fastar-0.3.0-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 4668c6b67847d099ef36311b66fc3e76d13c24245c591a9ab0fa637fc4617ae8
MD5 f5dd9bc6cda9636b1ec8082fea5db397
BLAKE2b-256 397bf86e0f05ba87df50ae4c90ad1db787cc8a12e23760fd1f2fc9af48404216

See more details on using hashes here.

File details

Details for the file fastar-0.3.0-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for fastar-0.3.0-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 57b86f9f5fc24bf0315897521d3b73f7f28d73a23803fd42c5944a2ffaa8b29a
MD5 e172d88490a2df28922ba15b29a15c48
BLAKE2b-256 b2c462c410b2ffc73708cbd3e4a4704fa0d6531bf4be0138c213e4d1452fabac

See more details on using hashes here.

File details

Details for the file fastar-0.3.0-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for fastar-0.3.0-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 55480b5a6d37c99234271f1367780bed50da7509198c78024f7b7e47c6a97ec1
MD5 0e75536c09d83370c681043484637df8
BLAKE2b-256 9552c5b8a05478c9290dbdd1d5b0ab25dfa06f5ecc8f488ea4fc4363f4616cc2

See more details on using hashes here.

File details

Details for the file fastar-0.3.0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for fastar-0.3.0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 54b41dda41173d9ed53d8fa60dbb64f6f4fd6c71714ebc47430d0453fe2789fe
MD5 4b7c03b037ff58bbbece9f050bd8cd7a
BLAKE2b-256 63c9830f46208843a0b4f0c8e15e62d9ad468eec1eeb3560d9e81b9260cced88

See more details on using hashes here.

File details

Details for the file fastar-0.3.0-cp314-cp314t-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for fastar-0.3.0-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 31867d1c9d7c3f903f633e358ecf91f46a09e9a122f2121005d15776689d40ff
MD5 1c415c7cfba0487b64e1965fbb380206
BLAKE2b-256 8a64ff18737bbd3bd6c4a75c34dca40b408769eba3d75f6bebea11fc55bb43b7

See more details on using hashes here.

File details

Details for the file fastar-0.3.0-cp314-cp314t-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for fastar-0.3.0-cp314-cp314t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 67b4448bfe91a978f7f2ff841d5ef59ceaf8c51751a29977b4e28288164087ed
MD5 236e70e6af9b25eea3e9dd33e7443cea
BLAKE2b-256 81f203647dc3ae746baaaca58654cc4817a881e6fff2fb9d61c02fd2c3817d8f

See more details on using hashes here.

File details

Details for the file fastar-0.3.0-cp314-cp314t-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for fastar-0.3.0-cp314-cp314t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 6ceae207acba4bce17e8ce6e622258a8cf8e698bbcb5197d33868537b4753653
MD5 82f58fe1e2d7fb1ffd78026c8353f438
BLAKE2b-256 d3115bf777b0a2538ede3fdcae61682fac436813e409abad5f5e88bc6dd51bcd

See more details on using hashes here.

File details

Details for the file fastar-0.3.0-cp314-cp314t-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for fastar-0.3.0-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 91ff0c360ecd670a73e15a20907d94e8b6586a17cab935f53b990a93d27e297a
MD5 b28e2668ee1729a8a2f8102011e1a28a
BLAKE2b-256 9e270185e64a48af77ead26baac39915f4fc614cee5920b203692915aa1631cb

See more details on using hashes here.

File details

Details for the file fastar-0.3.0-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for fastar-0.3.0-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 d9eb91c467c6696841819f36b29c785349bcf22e4ff39773cca35ffceba366fd
MD5 7b878a2a7c4c6b558b9714b3dbd57713
BLAKE2b-256 de2a49ec98b63907a538da04586846e8a6782386aed02790b7f405039916bcdc

See more details on using hashes here.

File details

Details for the file fastar-0.3.0-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for fastar-0.3.0-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 6a4df6feabb478bbc86ac7916e8be62d910ea4b44ce3220d24ae13c75500f72c
MD5 a32c07ddb796dee491ea4251a3ac2872
BLAKE2b-256 efbf8042805d86db48fa8cc6baf22d681f21c50a3979aab6863bfefe42f0c4a5

See more details on using hashes here.

File details

Details for the file fastar-0.3.0-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for fastar-0.3.0-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 fb907dc8ded18975cd50ff9a8c147d16c567ddb7d58d6a77058358d81480cbb3
MD5 d972677f2bd2864ab6655389177ea9cb
BLAKE2b-256 6148d1bb7bbfa99318d96f82d8bab9b491134b6075b74d3a77675dbbe32cea3a

See more details on using hashes here.

File details

Details for the file fastar-0.3.0-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for fastar-0.3.0-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 e3a4d802d92b7adce289c948c711cdcb5ed5bc50a1c54a0cfc5db4ff92aae89e
MD5 ae2ca964c3529c8f99116a390a550131
BLAKE2b-256 9cb5c3425265245c86c86921eadde684af6db95fc0f5a268a008dde3b73a2490

See more details on using hashes here.

File details

Details for the file fastar-0.3.0-cp314-cp314-win_amd64.whl.

File metadata

  • Download URL: fastar-0.3.0-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 275.2 kB
  • Tags: CPython 3.14, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.10.1

File hashes

Hashes for fastar-0.3.0-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 0c66a667c9edd5f01cd608e8d88e3987799cc8c65dd229a3076974b35dbd3dd3
MD5 bae52d83197bc3650a3b35510eff77b0
BLAKE2b-256 0b5fdca923438b44f5161f5632f2fecaaaceb2a6aa9bacd1165b41bc2d3af167

See more details on using hashes here.

File details

Details for the file fastar-0.3.0-cp314-cp314-win32.whl.

File metadata

  • Download URL: fastar-0.3.0-cp314-cp314-win32.whl
  • Upload date:
  • Size: 267.3 kB
  • Tags: CPython 3.14, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.10.1

File hashes

Hashes for fastar-0.3.0-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 df526484118ab6ac517a0370004fb495195fc0dfad9316f1f2f0528cc053456c
MD5 3fa95676c9f0b213b62187c6aa69a935
BLAKE2b-256 556236a1609170dfa3c8d5093ee10b2e36fa5da951f2a267b9d78d2902e832e6

See more details on using hashes here.

File details

Details for the file fastar-0.3.0-cp314-cp314-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for fastar-0.3.0-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 cb0aaeb31fa6179124e40d3e794159675f4d2a7011ed1bfc67901e243ba572d2
MD5 823e48177fba4de482798861c0217fa9
BLAKE2b-256 efab686b6f9f999bdde91fafa76dc55426a4a7a16cc499d0c0e7cf15cf764606

See more details on using hashes here.

File details

Details for the file fastar-0.3.0-cp314-cp314-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for fastar-0.3.0-cp314-cp314-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 44a4cdff79538fb736c3a9a88971417dbab220f2af5e03ea325c9b81f1911f17
MD5 ea0c9393018459ad308f00cfa475d64b
BLAKE2b-256 1dfcd5503ebab2b8a5ce60e2b1ddb759921adb64fc118b783160be6dbbbc85ec

See more details on using hashes here.

File details

Details for the file fastar-0.3.0-cp314-cp314-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for fastar-0.3.0-cp314-cp314-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 70ad20edb1ed099b44f22b29738fb9371a5f93b57978904d45a68cfe3236a1c1
MD5 b4a41d23e6be1525bb1cb60fb72865e7
BLAKE2b-256 06ca9df4bfbe478109b67e24722aa003d2bc8385b5c3d79069df7872f6eef013

See more details on using hashes here.

File details

Details for the file fastar-0.3.0-cp314-cp314-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for fastar-0.3.0-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 dcf2bc9515c8ee9ee8d3e54170769dd938baa4c786603beaa6c09a375043adc4
MD5 de6a829988182484c52bf03646b3aaf1
BLAKE2b-256 dd061eb2ff95a0d2825cc79ba8911c6c92156ed88160da532224b3640feb8346

See more details on using hashes here.

File details

Details for the file fastar-0.3.0-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for fastar-0.3.0-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 b9ddc12534ec70421d08a5296d953ba79ee0a9f165764af219c7c114ff46a800
MD5 97bcf9e2709c4f562a49f9ce60e1ca1d
BLAKE2b-256 0f8d6d1dcdbb7dce6b9af378c92648ecfd938216689b7e40b52a9e922df49deb

See more details on using hashes here.

File details

Details for the file fastar-0.3.0-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for fastar-0.3.0-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 8685c8c4041dc84c527b5b8bc947440019c8b0e0dfb161787e4d6ef3f7d7f208
MD5 bac749d67bad4a400c5af416140575ed
BLAKE2b-256 872ea4dd1b5b296b7f80227796dfd49e05cd24b4fb8c4d94f8df4f50916fad58

See more details on using hashes here.

File details

Details for the file fastar-0.3.0-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for fastar-0.3.0-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 c4f25115b3cd1535c7b8c2bf3edfa1f96f142df9241f89986fd8b6639eda717b
MD5 7ea6cce18a5bb18f2d1e86da1e29ada5
BLAKE2b-256 dfdfc77a56037da735963e387fdf4691502e952b39dbb92229801cbc722bcdfb

See more details on using hashes here.

File details

Details for the file fastar-0.3.0-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for fastar-0.3.0-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 73a33b10fe315f662e7e862e6036ecc19cc1e1ae5f2c87582fd472a3a5091786
MD5 4b824acde1dff83d346d9f38c64988df
BLAKE2b-256 b2c557801a71820b7fcecde8a429472f1336e12a3d40c8e8c69dd03ac2732631

See more details on using hashes here.

File details

Details for the file fastar-0.3.0-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for fastar-0.3.0-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 a01b3a1171fedcf6587ee315928aa0a9469f5c8209fa8da426e0e45766ef5eb4
MD5 a6de2d045f230b5ee8e5b1c9a81fb29c
BLAKE2b-256 56c82d86c15132e8175b987ba80855aa45de103eecc5fbbdec0e97da1482d397

See more details on using hashes here.

File details

Details for the file fastar-0.3.0-cp314-cp314-manylinux_2_12_i686.manylinux2010_i686.whl.

File metadata

File hashes

Hashes for fastar-0.3.0-cp314-cp314-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 c8d4d00dabc46992536cd819c9bb027122e0eaacfc108033ca9e9cef77672842
MD5 27a96e51afa4bc40d116f5e1016b54f0
BLAKE2b-256 c18eb163a37e4b22fff9ca69aa07c32981c4f0bb765d35c983b27b9a4e215092

See more details on using hashes here.

File details

Details for the file fastar-0.3.0-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for fastar-0.3.0-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 0303c7a04c20dc952c27fb3b8a88701d6dc46bfc77433bbe29a40a9506ece23c
MD5 6efe89b8ae0399861db00a8d9ea90c5b
BLAKE2b-256 b91baba182fb6d52b578ec1f5127a8c4c7218cc0f596485e68dea5b892811dc8

See more details on using hashes here.

File details

Details for the file fastar-0.3.0-cp314-cp314-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for fastar-0.3.0-cp314-cp314-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 9c5f63c18937d2e88f66d4feb1f9afabf7dafae70abf08bc48d5a3933414da9b
MD5 a33f97e4e2561f8aee5226fa0f96dd7a
BLAKE2b-256 c2e9e1a8413b3a9fdaad1aa618ae2e2c0561c7b5d656b33de69febbc12281d92

See more details on using hashes here.

File details

Details for the file fastar-0.3.0-cp313-cp313t-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for fastar-0.3.0-cp313-cp313t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 48307cd9326351271f49bc201918e5d6d37e17db51224d186caac7b33294ab5c
MD5 935bcc5181df8a375463747c882527f1
BLAKE2b-256 af9b40f1545ed5b192c3972309664bccbb66d8ca712fe7858bf529f85b7c9b22

See more details on using hashes here.

File details

Details for the file fastar-0.3.0-cp313-cp313t-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for fastar-0.3.0-cp313-cp313t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 5d65a0315a602afe3fa5b709b5fd6953588858e4b6f30ae907df2fbcf055e263
MD5 f66a304827ecf3f53be9488a484434a7
BLAKE2b-256 16cd9fb77c5a840cc120401bd058119ebc57b8861b78af447bfa257559fed6ca

See more details on using hashes here.

File details

Details for the file fastar-0.3.0-cp313-cp313t-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for fastar-0.3.0-cp313-cp313t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 b3f938c311479a8ccecdac52904aa8f7bfae206fc065872314e8fe7d98be2431
MD5 932fd71563ab6440418f8e9058fd8827
BLAKE2b-256 4bdab1973f308cf5b0a05f57b67acba07f2c4b6875a9d877c1c782ac45ce71c8

See more details on using hashes here.

File details

Details for the file fastar-0.3.0-cp313-cp313t-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for fastar-0.3.0-cp313-cp313t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 74e80f98af9c6ae02c0d955791648362e71cc7fe99f590ac363e3b27170d17f4
MD5 fe57c98263eb192abefed4fdf5de8eb6
BLAKE2b-256 5d7299646e568eb3e5bc1a800675708dccf8dc078a07bb452e4467797be82818

See more details on using hashes here.

File details

Details for the file fastar-0.3.0-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for fastar-0.3.0-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 29e6ee589f5eb90a6186e43a03b49eafd373086c60e9433ab2f444a7dca24d26
MD5 0352ae13df374339fd02ffb9d3466e39
BLAKE2b-256 c462210cd90a6fd743cf0889d5981e4e3a5d119ed23faea0554fae36047c37a5

See more details on using hashes here.

File details

Details for the file fastar-0.3.0-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for fastar-0.3.0-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 bab69dffb8c65b85dc077599df45ffa2d914283554013491fcd1da24d0df99e2
MD5 c78fb7d01693f85c6ad5ae2bb4f2f538
BLAKE2b-256 9723b0f743a5c5b5692937737c137b99d1829b9604ece0bbd56a313c520e87c3

See more details on using hashes here.

File details

Details for the file fastar-0.3.0-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for fastar-0.3.0-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 7996d29f9bf8ca8abb77e479361ee82009af1386bf49b42169d5aa75b4a4be9f
MD5 756539c47de344471125e73dfed180db
BLAKE2b-256 dd9407ca8e877e8455c457ac0c86ad5cfde90ae1a48854056e9affb16f7bbcbf

See more details on using hashes here.

File details

Details for the file fastar-0.3.0-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for fastar-0.3.0-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 3c42036b01bbf4a0abe58f8af76867c1ae9051a28a8b0c179dab83771ebb4897
MD5 5d5304974f27cd868469b17ac9328150
BLAKE2b-256 cfb45629f14869196369cd65a85db0a9c5349e2d0c22f0cdafe7f82dfb35a7b2

See more details on using hashes here.

File details

Details for the file fastar-0.3.0-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: fastar-0.3.0-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 274.9 kB
  • Tags: CPython 3.13, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.10.1

File hashes

Hashes for fastar-0.3.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 6841e691f460a4eab8adddc74bb0e1a9dc3a8081fd1812d1b18c830642761653
MD5 21fb5abb7feb680aa76f891a042b24e1
BLAKE2b-256 53025db78d28159b4fac822b764e235a30742df6fd07db49f042bc8274020a20

See more details on using hashes here.

File details

Details for the file fastar-0.3.0-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for fastar-0.3.0-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 581d60450ad94215810c5254cfaa97abfd896367b559777cfdeb3a8a902bc674
MD5 7efac7555953f69a34330631566c7b33
BLAKE2b-256 e7c23a7f8855b5967e00e4b26c534fb11802abc598b12707273775f9f2a558f3

See more details on using hashes here.

File details

Details for the file fastar-0.3.0-cp313-cp313-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for fastar-0.3.0-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 a551e535c7de2b7801a0a44c24721dc72a5391d3273a7c8230629b45463c88bf
MD5 68050a0f33da27108656499b7d66cdcc
BLAKE2b-256 beaa0e86bfff3a44657efe57b2501d344826446f7040e1fbb6da6aecf209a3b5

See more details on using hashes here.

File details

Details for the file fastar-0.3.0-cp313-cp313-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for fastar-0.3.0-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 64ad2efabe4776c35a892ff89a1a73b376998b0a6c4ae43178855433fc257aef
MD5 59879d344325ad0be29bbb42e1b7380d
BLAKE2b-256 03436997ace5dcfab4380f3eac90cd783ae0251496a42e87967a861394afbed7

See more details on using hashes here.

File details

Details for the file fastar-0.3.0-cp313-cp313-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for fastar-0.3.0-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 8f6374b42f6c6f8a591c8a84bc14c170493d215d0a5c5e1b6d43a4160344a559
MD5 8545f32d90f11cdc6090cb56f72da741
BLAKE2b-256 ea5157c387885fbb487104172cdb4f53c95ea044dabafc78b279bfaa7fc76a5f

See more details on using hashes here.

File details

Details for the file fastar-0.3.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for fastar-0.3.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 67a1e82aa10378e4435c29a6a95a04a28dfe29965786003f7e53c1fdeae6ca73
MD5 34a3b6cd29822952510336a77f4d68e2
BLAKE2b-256 0c7b8764d8b71e7ba50ca503380bcfc8bb60c5c0619a02b94ebd7bde15cd92af

See more details on using hashes here.

File details

Details for the file fastar-0.3.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for fastar-0.3.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 0de902bbdc354e6285b8dad3b3d171f9239f5eab087e71e7a6a761d303dfe351
MD5 1ed5be444a1a3cc4349b8577f310ff1a
BLAKE2b-256 4bbcc85ef1e04d9bba629fcfb8c1cecb2e997629ba52d737504390f0a242d6da

See more details on using hashes here.

File details

Details for the file fastar-0.3.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for fastar-0.3.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 0628381970dc292425990b57806f2752d47c68068d3a8631363904f05f04a953
MD5 caa2856d4990f695726ea8130fa0fc94
BLAKE2b-256 4c26cebbd6d50c4b111afcd68da38eb4bb4cb8ff480b8c87d3d04b50f1681ed6

See more details on using hashes here.

File details

Details for the file fastar-0.3.0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for fastar-0.3.0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 d26e4cba93c1a9446b4291fabc077d3345a95d4b23712260a6438119ae31dc38
MD5 efce71aff29e392bede5f77b50441293
BLAKE2b-256 e791d2c7fc13a7652e2cb02a0b6fb766fe6f2c6f2a5ba874fe1c3e9068661a12

See more details on using hashes here.

File details

Details for the file fastar-0.3.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for fastar-0.3.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 9fef214e8dacadb589d085c1b910d1deee701e9f8f3a6a243a90b66d7ce5f17b
MD5 f8416d0a4cf0b02789c1d482ea880861
BLAKE2b-256 7746836a75893c79cdc87e3b1dab64dc28236a4ae7ac7a76b3a1aaf2d3d98efc

See more details on using hashes here.

File details

Details for the file fastar-0.3.0-cp313-cp313-manylinux_2_12_i686.manylinux2010_i686.whl.

File metadata

File hashes

Hashes for fastar-0.3.0-cp313-cp313-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 bea43af3cd4a5e1250b0d01f90122c70b1e1c3eae86c3a3da44d1ce82aa62245
MD5 7e5ffd10b44824e315a77165f97b788a
BLAKE2b-256 5bdbf073626990b502d30cdff8a4bb02f295dd148978aa4c1150f2f9fb77397b

See more details on using hashes here.

File details

Details for the file fastar-0.3.0-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for fastar-0.3.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f96616adf17ff7657b0e6b22e03a9d4e51b13a9e6b9c03710686747f3cdd6a01
MD5 f6fc91f374900e5c9cad9435d4b18757
BLAKE2b-256 2ed67917d9e616b4aab8f91a3f48386da09138d80e45cb15ae648b62bc83fe73

See more details on using hashes here.

File details

Details for the file fastar-0.3.0-cp313-cp313-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for fastar-0.3.0-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 14cff20c21f1d73a524bbecdd4a4b3c7b85aae16a89d8d4b437a86838305a27d
MD5 15551f13ffe1dc5e4baf9325cab75466
BLAKE2b-256 54a328895c1eea5334aaa4a66fee4388d5949850c6a434445a9cce345f8dac6f

See more details on using hashes here.

File details

Details for the file fastar-0.3.0-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: fastar-0.3.0-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 275.1 kB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.10.1

File hashes

Hashes for fastar-0.3.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 44c65eb3a080c029fe7185a141703be0b258784bee38f1a360c02c1757f4d807
MD5 91bd74506169d7e683438b8d15987c74
BLAKE2b-256 268f4faa8141d51dee4718f50a1111812ce98131823a2346ec890d3ea21c1f33

See more details on using hashes here.

File details

Details for the file fastar-0.3.0-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for fastar-0.3.0-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 07a921d1e471d75701d28d355ab27d65f2de586a7d12fd7a6077ce580e58ba97
MD5 9f280b54c1ee855775af1240a553906f
BLAKE2b-256 e71d781c446503e478ebcb45da4514148aae043b2509a88c42102d5506efbe83

See more details on using hashes here.

File details

Details for the file fastar-0.3.0-cp312-cp312-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for fastar-0.3.0-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 42e2eaa6ed1ea7d212092f783f075e319893a3bca1a629a0610c8fd768fb9ada
MD5 4258f1cf53023b57a347cacd88b97825
BLAKE2b-256 091e6c761edd2e5da47f9d2dfcb2bfe4ee1c380af0883f6e43d253934405240a

See more details on using hashes here.

File details

Details for the file fastar-0.3.0-cp312-cp312-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for fastar-0.3.0-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 f4de64dc9586535e104152abebac170bff194d17220438f506aef5081adb52a0
MD5 5659ca27486769bcc520955b4266a4a7
BLAKE2b-256 1c327c9f6a7f07a154412993b43b6107063a14cfa712af8fcb221b7f4a5c01bb

See more details on using hashes here.

File details

Details for the file fastar-0.3.0-cp312-cp312-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for fastar-0.3.0-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 58027b526160a338038ba86913c0f78ac802daa7c227bc4172bb20a6c69c363e
MD5 197652865b74954e43486d42749a4f00
BLAKE2b-256 f4b97d3068595327c0b5e4c4b7c7e6595fdd07c20213693cb14092471299495b

See more details on using hashes here.

File details

Details for the file fastar-0.3.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for fastar-0.3.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 59cbe6adfbb27e995ce0121b3221ba9b785f5dfd37eabb2352cb5b4b71037203
MD5 7425b5cad4d7a4ed1487c88f9f255c3d
BLAKE2b-256 8be8e1012df956a2c6b0da3b2c22dbc0c603c74da90a1076fd8314d45da0abb0

See more details on using hashes here.

File details

Details for the file fastar-0.3.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for fastar-0.3.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 96ad5ae8fdbff9a75fb4ddf8a8f307ca47c37493d6f8d5357436476206185f72
MD5 ae20ab9807f84ae978a8031f8c9fe33d
BLAKE2b-256 a89dea0b6f637010bb044ebee0531c6d6daa2297ffdae84785033a88f87ed460

See more details on using hashes here.

File details

Details for the file fastar-0.3.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for fastar-0.3.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 b8c45fe1efae4893ee70078b90fe920d5356d3777e0862308a6cebb59b2dbbd3
MD5 f1b7117177522a7033b796a528c7ed4e
BLAKE2b-256 ad3f3488984f4ef2576f77d6e278a16fc04ee93b85434fad4fe10ee6ca09d536

See more details on using hashes here.

File details

Details for the file fastar-0.3.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for fastar-0.3.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 c6eec8aaa7420112b2bea9a39ef07a179dc058b8860fb4c113291120604810ad
MD5 1c7aa8d1cf640898d2a8f8ed7d075c71
BLAKE2b-256 9866d87f10e3623081cacfbe455be7945d69710606f2fe21a1e08a59973ee13b

See more details on using hashes here.

File details

Details for the file fastar-0.3.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for fastar-0.3.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 96309b543faa1844e804c66f3a4ac086d4d06a16ef289a2b25e3c4a83cc1893b
MD5 c8c956d5885c135f6f85baf84b912f44
BLAKE2b-256 e37b3daff447377e196bb92b5de0f8abdd4fd8429161228eab3998761c71c12c

See more details on using hashes here.

File details

Details for the file fastar-0.3.0-cp312-cp312-manylinux_2_12_i686.manylinux2010_i686.whl.

File metadata

File hashes

Hashes for fastar-0.3.0-cp312-cp312-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 361744dabc5db8ae5b28a584d34222d80f2ab15a9b98bcfafa7d267c28480f1f
MD5 7b1689e692041e71e8b6454aaba795c7
BLAKE2b-256 2bce497ad84b455d7e8b534945bd1f1120bbce23af32bcd09603b05ba2bd58eb

See more details on using hashes here.

File details

Details for the file fastar-0.3.0-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for fastar-0.3.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 56662e38dce6f8cf0a8de0d5b7ce0b38e0e298e241f9ca73dd8ebcbab80bf1ef
MD5 c89dadd6f5f0c9f478e3d08438ad8260
BLAKE2b-256 cae60b43fffb3d50d1246b6f0ee6cdd9dead0d47c1c75c73e38c1af6df1ee4ce

See more details on using hashes here.

File details

Details for the file fastar-0.3.0-cp312-cp312-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for fastar-0.3.0-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 4752a632394e81d8650c07b01deee93bb13958daed030fc52b6247d2399e2a76
MD5 7456dc65b88647ae20920ba80d45b85b
BLAKE2b-256 0f9051550747cc01ad0aa229b17da81f09df8ccf6b754c08f9a134a5d9897a07

See more details on using hashes here.

File details

Details for the file fastar-0.3.0-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: fastar-0.3.0-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 275.4 kB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.10.1

File hashes

Hashes for fastar-0.3.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 0bbe5085a5555456c6ce149e1556007ef2ff9d6f93a62acb9e3d6d157482f513
MD5 f21f3d903ff5edc5147af19cdcdcdf2e
BLAKE2b-256 a256774b2f98d67268e1287abf1ab698cd092b2c0723041746172bfec40d4cc1

See more details on using hashes here.

File details

Details for the file fastar-0.3.0-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for fastar-0.3.0-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 fb4fc9ea5c7e034ce69bda2fde44815fcd888ef081b9815e370445e05d96f385
MD5 725dbeb41ee6071a0484e0b796134f05
BLAKE2b-256 3fd2596f78631ab2be1098d047ba08bd470ed20a538492636ea7de9c909aa7c1

See more details on using hashes here.

File details

Details for the file fastar-0.3.0-cp311-cp311-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for fastar-0.3.0-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 efa11ac3a2b5995f38c5af08e5611a9adc3292fe8780119ae2b68d678e83d9ff
MD5 4fc3ead9370ad23a0965b1df2300e808
BLAKE2b-256 94ce1da7094820950b5b068085a524f0c633c618e4613a311318cf1a8a0aaa34

See more details on using hashes here.

File details

Details for the file fastar-0.3.0-cp311-cp311-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for fastar-0.3.0-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 f9a03734b259e007f96b25793e3aefe7acb6ba1299382c6c9e8a6dbea3b0a424
MD5 df904dc67617d9cf4042a300b95ec999
BLAKE2b-256 fd6ec725defee40fbd5a95213605ab6c71077b0c0955ecef9f6b135a10b9d7c8

See more details on using hashes here.

File details

Details for the file fastar-0.3.0-cp311-cp311-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for fastar-0.3.0-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 f13a061067553ddae9298ccaf429e6d0a96599f195d7ebf319def8a40d2edcaf
MD5 3e160b2ecedb0461c9ae9e5b8b9adf08
BLAKE2b-256 e0bd76203482a510c0b8c4e4497b143d993e0e7d98961e561883867c48dc54c7

See more details on using hashes here.

File details

Details for the file fastar-0.3.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for fastar-0.3.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 9c8f104359a5eedb782f285b01b4d1a861805d3c4b0de9701529443e1f86d833
MD5 2a762fd0595f0cf378ef52d318c242cd
BLAKE2b-256 c2bcd13728a113ea16890086200980aade202726c9a927ca828914df17a6f77c

See more details on using hashes here.

File details

Details for the file fastar-0.3.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for fastar-0.3.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 764cade93a63d477df32d958951de5cc85c77bdca94cdfd7693fe305534726f6
MD5 b2d9d3391309020b0ec5168a60220c94
BLAKE2b-256 19db6b41e4d2a16138bde8b72a4e56109f0e3afe95cbe6a7bce57693bf262413

See more details on using hashes here.

File details

Details for the file fastar-0.3.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for fastar-0.3.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 b5e15cf0b3b2b3c13614f7b1ed1d40f57f807da8d1c6e086dc27ee4356bbe3db
MD5 1a1d854dd0797b934e03a1578c72a401
BLAKE2b-256 e9bc05e4cb9429fc04a23b7ed306689105c03e8862f2da5b83cc49dc24d19fff

See more details on using hashes here.

File details

Details for the file fastar-0.3.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for fastar-0.3.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 4e815eff7bc7ac6de483d67035a5f1fb26cece852cd9e63a00e229ebf959d6d3
MD5 8893a029dd00ce859a2ccc700635c10a
BLAKE2b-256 3c98572109220279cb05c9ecd96a7845d5df97394866241429740afc33b4213a

See more details on using hashes here.

File details

Details for the file fastar-0.3.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for fastar-0.3.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 b777f040adbda4c7244880d604fbece70332093139b5f8685e05267af76d0299
MD5 40332602215b800b4e64ad5a1dfc6f72
BLAKE2b-256 5d7458e8837320c6d5b6ae003b372699e3c93c5b8a76dca774d46cf3d2a63a9e

See more details on using hashes here.

File details

Details for the file fastar-0.3.0-cp311-cp311-manylinux_2_12_i686.manylinux2010_i686.whl.

File metadata

File hashes

Hashes for fastar-0.3.0-cp311-cp311-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 a5916bfb5506bfe454c1ec5a33845ae634e9b7f42e35eab595d50c179952b7da
MD5 3922f12d4cdc268bc191931d78b1fae4
BLAKE2b-256 0bed591c083167e7024e393f5bc3efe4bf493e063f0d14f0dee29589673fa510

See more details on using hashes here.

File details

Details for the file fastar-0.3.0-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for fastar-0.3.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 9b54145fa038cc44b20070c68d0ca1c233e0e58e52b844bd8a2f3f377ebd767b
MD5 6d3f01da82fc84db3329f95ebd316ee1
BLAKE2b-256 1d000f762e2d4786cdfd9b26cd16fd47c6e6250bbfde183bcfdde233e5ecbc8f

See more details on using hashes here.

File details

Details for the file fastar-0.3.0-cp311-cp311-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for fastar-0.3.0-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 f456877224e44f9d35da1ba755dd034be866031c8b9f643ffe0e0fcb8c9c5cd2
MD5 0bbf57196f0f8274ea77505a9a1eba73
BLAKE2b-256 b3937696b257451812f34867fb4937c5b2cead380f2018368f20a10ee994113f

See more details on using hashes here.

File details

Details for the file fastar-0.3.0-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: fastar-0.3.0-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 275.3 kB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.10.1

File hashes

Hashes for fastar-0.3.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 f1f7c2b3a5e89b2a603680c220ae58945e3ba5d767d23baabd18edc3aef13cc3
MD5 afa87be4008c8a6f33517634e120e500
BLAKE2b-256 527aa9dce873b12f2f3f382ccd7aacb57ed3a6b925c7ba75981a439fd09bc5ad

See more details on using hashes here.

File details

Details for the file fastar-0.3.0-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for fastar-0.3.0-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 99191fba1d67cb0809f1f1dc4f2ca8bac0e46b209e99cc9685742285ab2b2a1a
MD5 24942f1df9d19c03527cb33503cbf5e9
BLAKE2b-256 c1db40b8f37c2a90f7c354e739e5ee89e8f19ed3e451e1e5ba1e8853ec45ff68

See more details on using hashes here.

File details

Details for the file fastar-0.3.0-cp310-cp310-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for fastar-0.3.0-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 5d12f028c8673b85b6fada5d71ab33ebf845967bde27fa12699dbaee07362537
MD5 f244387d9d80891b7a0de213bca72943
BLAKE2b-256 699087f7a0fc32e2d51a327770ea737d9a4ca4bddcfe5c800452013ce3a5a3a8

See more details on using hashes here.

File details

Details for the file fastar-0.3.0-cp310-cp310-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for fastar-0.3.0-cp310-cp310-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 67c6f138bd800e3ca63092105618565ee95f5bd08b5b27a572294ad8e378d1d8
MD5 b3ff18be85ca4027040aa3cee1673a47
BLAKE2b-256 19833ece9e791c8ad5d44c98e4364b43c9aa2e02622d933f51cb9c4458fb9f75

See more details on using hashes here.

File details

Details for the file fastar-0.3.0-cp310-cp310-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for fastar-0.3.0-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 10d2dfbb305e76e054a5c0222b2c369e23a8af500647c1850dc40575c94bdaf4
MD5 891c3329e69dd9f1fe66599b1f04ae60
BLAKE2b-256 6f34bc8fa55a3e223abc87bcf5154c8377d1f296505c2e938997f32fa0061507

See more details on using hashes here.

File details

Details for the file fastar-0.3.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for fastar-0.3.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 7ba9bcfb00fa0970d9337f96b0a9d3603ed475539bc264234e4fd0a26ad4f6cb
MD5 02cd97052327f39570f73def7323e579
BLAKE2b-256 188f09b43bf044382a6b41d0f3a96020b9aa12f922b2268cc26f22b26b1c00c8

See more details on using hashes here.

File details

Details for the file fastar-0.3.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for fastar-0.3.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 bb49faa1ecb41d5ad4e56aa899e65fbbe9872419535155a28acbda4706df2703
MD5 26363e7d75ac3647a35a4e2590749393
BLAKE2b-256 85647bc07c886a60579fcbc9e2435b9fa0283d6ed9b3dbf12934016c7ba8564b

See more details on using hashes here.

File details

Details for the file fastar-0.3.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for fastar-0.3.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 bf49edf602b50ca50d7359b3f23929d4468df018b917200067f4a168df9b956d
MD5 e0a31f4bc78666aa60de175ff0010104
BLAKE2b-256 1d0ee8c0aab1f37f29a8c31b7e7b882e7baf8bed98c67fd3c76af873e5d620d3

See more details on using hashes here.

File details

Details for the file fastar-0.3.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for fastar-0.3.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 db6d8dd3fb8b26782806c9b8255e43d89a2ab35074c269429f7f35c59cd75eb7
MD5 b6281cc2a9be5abcc5996cab736384d7
BLAKE2b-256 97865076b4a541d8a526878a34639bc6a9d72005f58fb696297df4e4cfee709c

See more details on using hashes here.

File details

Details for the file fastar-0.3.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for fastar-0.3.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 89eb999da1e364604a7cc833a5863977104055f828fc8b6d122cd7e8c4ba4cf4
MD5 1dbcb95ca89617f9a03f193de00b90ac
BLAKE2b-256 b96eba679ebd90affe19711377e3bb26248515ca4e4d7bfa3a22dfc489d3eb04

See more details on using hashes here.

File details

Details for the file fastar-0.3.0-cp310-cp310-manylinux_2_12_i686.manylinux2010_i686.whl.

File metadata

File hashes

Hashes for fastar-0.3.0-cp310-cp310-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 3c47990921ab5f123eef578d9faa1a0bda4d6be534ec90de046d241307f15b26
MD5 7969f42524569fae62500dc51071d2a2
BLAKE2b-256 4e99ee79ec7e419c86e935f7ed16c7b7aa3f00fa03782f41f271200fff4fba08

See more details on using hashes here.

File details

Details for the file fastar-0.3.0-cp39-cp39-win_amd64.whl.

File metadata

  • Download URL: fastar-0.3.0-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 275.2 kB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.10.1

File hashes

Hashes for fastar-0.3.0-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 20cd88fe9bbf3949b5559a35d6faba60f92ee433784667e18cafc9e1ccb54f70
MD5 8cef745ec900c82d1ed281fe74360897
BLAKE2b-256 db397428ffe6c4e212626e99591f36f5a00558bc9ffce455946b4061a2b14d14

See more details on using hashes here.

File details

Details for the file fastar-0.3.0-cp39-cp39-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for fastar-0.3.0-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 f81d50f49b4734e7af9de84225dbd0bc6dbf970f4fbf928b92fe1c5712b8123e
MD5 f2319d1b8c6efe6fbab2cd90bde2425c
BLAKE2b-256 e5cb6ea32f241fd9307dd779449c73f4e26cf43a55b9ba7a973a72bc6936e98c

See more details on using hashes here.

File details

Details for the file fastar-0.3.0-cp39-cp39-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for fastar-0.3.0-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 31f7202c8787652862516d6b4aa9da54a477cdfb6a39cc6741f44952b9da83dc
MD5 54d90598f68e94fa678dc12daac9485d
BLAKE2b-256 b3c928e9c6225a93774383c3e86f53c60003c44b723f04d59e5b51d053d5b17b

See more details on using hashes here.

File details

Details for the file fastar-0.3.0-cp39-cp39-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for fastar-0.3.0-cp39-cp39-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 cfc346d9a1d7081e706e5ce1165ca7c1619f50835d082600a61db54741a78bf9
MD5 4e72fc7cafbbdee2b1e1d50ac146fb50
BLAKE2b-256 b28ec68c487408f046b7ce189e5f516d19621ab88993e9687a91a06d1ed2ee3e

See more details on using hashes here.

File details

Details for the file fastar-0.3.0-cp39-cp39-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for fastar-0.3.0-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 a98f744376b25428a484dba8a7dbf1360ddcff9e7e31a30a855955215d44695b
MD5 573a104788cb42ca927f4cd09ba93049
BLAKE2b-256 c0a0b7b4c54dcef81a42f4d761414360536d0b93bd85e50e94bd7d6e5147abdd

See more details on using hashes here.

File details

Details for the file fastar-0.3.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for fastar-0.3.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f434f60b8f0f8d18a5d5b5bc8afcbb1db81ed18cc06faf712abe0892d08636e0
MD5 e05290b87c28d4a8420b8e5d7eba2a10
BLAKE2b-256 43b5e578e2f81115abb1e0e93ece9e6cb34b9ac1e79272d036984cd8c541acae

See more details on using hashes here.

File details

Details for the file fastar-0.3.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for fastar-0.3.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 6f273efb2803badd3c457a6c90419780c03de563fbe52cfad26424fae5b587f5
MD5 d878b559fa7d84fed5ef37ec9d3d87b5
BLAKE2b-256 11318c3e11c11c60007a16c4fe1a4a382f683f52d936550e693f55170669ee65

See more details on using hashes here.

File details

Details for the file fastar-0.3.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for fastar-0.3.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 d39502503830bbdab19ea5d7f35beb275bbf4c2297132ab6e736d6bbcbba9ef5
MD5 8c10ea5f5f7570f3c7b44b2e99516747
BLAKE2b-256 8570b19e4d52225feb583bde60367dad1d5efa2bc935764611b876f33ba16297

See more details on using hashes here.

File details

Details for the file fastar-0.3.0-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for fastar-0.3.0-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 efbc7d96e86c2c16bf19d3a175f35527f2571608db3625278c624c69c87c84c9
MD5 d455b81819bb870f591e1620f58f4874
BLAKE2b-256 33daa89999ff789a31c0aabca690965c6d8b7ed5ad26a18a6ba82dc59a788aab

See more details on using hashes here.

File details

Details for the file fastar-0.3.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for fastar-0.3.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 422007b8dac6a81e6e1495c246d111ae93c5dff3c76e83d7b3ffcae6f5afe8ca
MD5 93dd7eee725587ee146684c2d57cd5ea
BLAKE2b-256 747aca12a5e0a762657c87e0e7794289d9a1467ccb3e9e9774a7b8c1a0004848

See more details on using hashes here.

File details

Details for the file fastar-0.3.0-cp39-cp39-manylinux_2_12_i686.manylinux2010_i686.whl.

File metadata

File hashes

Hashes for fastar-0.3.0-cp39-cp39-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 0b148949047b9bc1584a761ed5329c8179af2885e577ffb25e6508564dfbb7cc
MD5 f1a66857b614eb8078193fce61c8b363
BLAKE2b-256 ad5056d4404561ddb2e85eaf3c1747ad1ce4fbc28e244109fcbf3be8b8ff1304

See more details on using hashes here.

File details

Details for the file fastar-0.3.0-cp38-cp38-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for fastar-0.3.0-cp38-cp38-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 d3c52abb9f9727fed77c48b3cd1f5caee4b0f2f3c9e2f018c446d5624ddf3cbd
MD5 fd9be91beb2307c2be3842bd2123323f
BLAKE2b-256 c765bab816921c2a867aa50b345d30a0081e76fa4e08c8c2b06f1e9f766b0792

See more details on using hashes here.

File details

Details for the file fastar-0.3.0-cp38-cp38-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for fastar-0.3.0-cp38-cp38-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 a768c2f161dc5c6fd0318af82cc08a26d32ac7dff6c1dae2bd807d5aecb317ca
MD5 5fd044bf65ae9eaea5c5547eea38cf3c
BLAKE2b-256 6770740b069f9ead4bff47d7c4e968fe80ba703701eef85c95f794abab1e9d6c

See more details on using hashes here.

File details

Details for the file fastar-0.3.0-cp38-cp38-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for fastar-0.3.0-cp38-cp38-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 73da7370d57df32a890394f411531a8a2f17e9ca1940a1f8044083564ad5d23a
MD5 faf04b89c26a0a6ddd3f2e592a9fb243
BLAKE2b-256 bbf3129f7b5182fcd3701dd8b9119a6c47bdf2c50c4098257803b35a68022845

See more details on using hashes here.

File details

Details for the file fastar-0.3.0-cp38-cp38-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for fastar-0.3.0-cp38-cp38-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 15d277efa0913c89b947a6d5e0815d286f90362e318aa7ea2548c9841b98a2db
MD5 71f89aa92e45f0a2e3733c12010d1649
BLAKE2b-256 0c2b4941edbbd67e0c166f7e201b48f4941fb84d035c5f401c26cc909a1d6b75

See more details on using hashes here.

File details

Details for the file fastar-0.3.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for fastar-0.3.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 5a4cb863ffa506878037045cd2e8b206be141db21872628105d294a6c82299a0
MD5 9d91986c1ff02fb1f30c3d5acec32bf2
BLAKE2b-256 88abe76ba61dc2dee75b6a5666dfa1cbe69d6939d1cd6aab4b87d2ee6be7eeb8

See more details on using hashes here.

File details

Details for the file fastar-0.3.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for fastar-0.3.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 ff3d08f7e90d1e4fc89c8f39791fd4a9a531926434b57bbfd432b2053b403bf5
MD5 dada993f76c14b81ffdcf4c57b0bd3e4
BLAKE2b-256 6d65a2eb329540b70728f0576e0fe878c2f01d27d5bea1adf75123303adc93f8

See more details on using hashes here.

File details

Details for the file fastar-0.3.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for fastar-0.3.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 18716096a8038dc732199501f878bf5d415d6f06f146e752de2251db62ffe059
MD5 3e9c47a31ca9f710ddd3a68d1cd80ebc
BLAKE2b-256 e2a11da4d28b2ee8a76c80fd1527f4d578f9c110364f08337de1e5e33902d3c0

See more details on using hashes here.

File details

Details for the file fastar-0.3.0-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for fastar-0.3.0-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 e0bd501a87832d08e6f95e84c18c59358474568a086050eb8a96f7cfd4148aa0
MD5 d3f7eac0cfd3a2d8be5b8f9259186574
BLAKE2b-256 4fa1ff557f85f1d73b35cba2674e65c9a994d4b886d118914aa03eb97762a32a

See more details on using hashes here.

File details

Details for the file fastar-0.3.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for fastar-0.3.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 019500940137c9be9d8735e8e47259cc421cc44bd30cd1dbadf8fed2fc0d61bf
MD5 13d9be6f6720f7fc305ad6b63e57f52c
BLAKE2b-256 ab76d62c3209d2f0166416368f068ff96bc0d5631ed6feb7eea6c16df5a8cf01

See more details on using hashes here.

File details

Details for the file fastar-0.3.0-cp38-cp38-manylinux_2_12_i686.manylinux2010_i686.whl.

File metadata

File hashes

Hashes for fastar-0.3.0-cp38-cp38-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 35aaf1d4af6eebd56b9b0d54d2abffe256b225028e5b7a49b7958f0bf3ba9cc1
MD5 832fb66ae95a45f32304d81db40b37e4
BLAKE2b-256 98f226c10bf32047a17146b382ec07a309f6851c993feb21196f845678217bcf

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