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.4.0.tar.gz (66.8 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.4.0-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl (592.5 kB view details)

Uploaded PyPymusllinux: musl 1.2+ x86-64

fastar-0.4.0-pp311-pypy311_pp73-musllinux_1_2_i686.whl (636.1 kB view details)

Uploaded PyPymusllinux: musl 1.2+ i686

fastar-0.4.0-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl (691.9 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

fastar-0.4.0-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl (601.9 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARM64

fastar-0.4.0-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (421.6 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

fastar-0.4.0-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (442.1 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ s390x

fastar-0.4.0-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (554.4 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

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

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

fastar-0.4.0-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (419.9 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

fastar-0.4.0-pp311-pypy311_pp73-manylinux_2_12_i686.manylinux2010_i686.whl (465.9 kB view details)

Uploaded PyPymanylinux: glibc 2.12+ i686

fastar-0.4.0-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl (592.6 kB view details)

Uploaded PyPymusllinux: musl 1.2+ x86-64

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

Uploaded PyPymusllinux: musl 1.2+ i686

fastar-0.4.0-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl (691.5 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

fastar-0.4.0-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl (601.8 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARM64

fastar-0.4.0-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (442.2 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ s390x

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

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

fastar-0.4.0-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (424.3 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

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

Uploaded PyPymanylinux: glibc 2.17+ ARM64

fastar-0.4.0-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl (592.3 kB view details)

Uploaded PyPymusllinux: musl 1.2+ x86-64

fastar-0.4.0-pp39-pypy39_pp73-musllinux_1_2_i686.whl (635.8 kB view details)

Uploaded PyPymusllinux: musl 1.2+ i686

fastar-0.4.0-pp39-pypy39_pp73-musllinux_1_2_armv7l.whl (690.1 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

fastar-0.4.0-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl (601.8 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARM64

fastar-0.4.0-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (441.5 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ s390x

fastar-0.4.0-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (555.9 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

fastar-0.4.0-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (422.9 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

fastar-0.4.0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (420.1 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

fastar-0.4.0-cp314-cp314t-musllinux_1_2_x86_64.whl (590.9 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.14tmusllinux: musl 1.2+ i686

fastar-0.4.0-cp314-cp314t-musllinux_1_2_armv7l.whl (687.2 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARMv7l

fastar-0.4.0-cp314-cp314t-musllinux_1_2_aarch64.whl (599.7 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

fastar-0.4.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.4.0-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (551.7 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ppc64le

fastar-0.4.0-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (421.2 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARMv7l

fastar-0.4.0-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (418.3 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARM64

fastar-0.4.0-cp314-cp314-win_amd64.whl (275.4 kB view details)

Uploaded CPython 3.14Windows x86-64

fastar-0.4.0-cp314-cp314-win32.whl (267.6 kB view details)

Uploaded CPython 3.14Windows x86

fastar-0.4.0-cp314-cp314-musllinux_1_2_x86_64.whl (591.4 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

fastar-0.4.0-cp314-cp314-musllinux_1_2_i686.whl (634.1 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ i686

fastar-0.4.0-cp314-cp314-musllinux_1_2_armv7l.whl (688.3 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARMv7l

fastar-0.4.0-cp314-cp314-musllinux_1_2_aarch64.whl (600.5 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

fastar-0.4.0-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (420.3 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ x86-64

fastar-0.4.0-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl (440.3 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ s390x

fastar-0.4.0-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (551.4 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ppc64le

fastar-0.4.0-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (421.9 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARMv7l

fastar-0.4.0-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (419.1 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARM64

fastar-0.4.0-cp314-cp314-manylinux_2_12_i686.manylinux2010_i686.whl (463.8 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.12+ i686

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

Uploaded CPython 3.14macOS 11.0+ ARM64

fastar-0.4.0-cp314-cp314-macosx_10_12_x86_64.whl (378.2 kB view details)

Uploaded CPython 3.14macOS 10.12+ x86-64

fastar-0.4.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.4.0-cp313-cp313t-musllinux_1_2_i686.whl (634.3 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ i686

fastar-0.4.0-cp313-cp313t-musllinux_1_2_armv7l.whl (687.2 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARM64

fastar-0.4.0-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl (439.8 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ s390x

fastar-0.4.0-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (553.1 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ppc64le

fastar-0.4.0-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (421.5 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARMv7l

fastar-0.4.0-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (418.9 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARM64

fastar-0.4.0-cp313-cp313-win_amd64.whl (275.2 kB view details)

Uploaded CPython 3.13Windows x86-64

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

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.13musllinux: musl 1.2+ i686

fastar-0.4.0-cp313-cp313-musllinux_1_2_armv7l.whl (688.5 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARMv7l

fastar-0.4.0-cp313-cp313-musllinux_1_2_aarch64.whl (600.6 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

fastar-0.4.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (420.1 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

fastar-0.4.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl (440.4 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ s390x

fastar-0.4.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (552.2 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ppc64le

fastar-0.4.0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (422.1 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARMv7l

fastar-0.4.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.4.0-cp313-cp313-manylinux_2_12_i686.manylinux2010_i686.whl (463.2 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.12+ i686

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

Uploaded CPython 3.13macOS 11.0+ ARM64

fastar-0.4.0-cp313-cp313-macosx_10_12_x86_64.whl (378.2 kB view details)

Uploaded CPython 3.13macOS 10.12+ x86-64

fastar-0.4.0-cp312-cp312-win_amd64.whl (275.4 kB view details)

Uploaded CPython 3.12Windows x86-64

fastar-0.4.0-cp312-cp312-musllinux_1_2_x86_64.whl (591.1 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

fastar-0.4.0-cp312-cp312-musllinux_1_2_i686.whl (634.4 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ i686

fastar-0.4.0-cp312-cp312-musllinux_1_2_armv7l.whl (688.8 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

fastar-0.4.0-cp312-cp312-musllinux_1_2_aarch64.whl (600.6 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

fastar-0.4.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (420.8 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

fastar-0.4.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl (440.5 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ s390x

fastar-0.4.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (552.8 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ppc64le

fastar-0.4.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (422.4 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARMv7l

fastar-0.4.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (419.2 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

fastar-0.4.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.4.0-cp312-cp312-macosx_11_0_arm64.whl (368.7 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

fastar-0.4.0-cp312-cp312-macosx_10_12_x86_64.whl (378.4 kB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

fastar-0.4.0-cp311-cp311-win_amd64.whl (275.8 kB view details)

Uploaded CPython 3.11Windows x86-64

fastar-0.4.0-cp311-cp311-musllinux_1_2_x86_64.whl (591.2 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

fastar-0.4.0-cp311-cp311-musllinux_1_2_i686.whl (635.7 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ i686

fastar-0.4.0-cp311-cp311-musllinux_1_2_armv7l.whl (690.2 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARMv7l

fastar-0.4.0-cp311-cp311-musllinux_1_2_aarch64.whl (600.9 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

fastar-0.4.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (420.8 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

fastar-0.4.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl (440.6 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ s390x

fastar-0.4.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (552.8 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ppc64le

fastar-0.4.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.4.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.4.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.4.0-cp311-cp311-macosx_11_0_arm64.whl (371.0 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

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

Uploaded CPython 3.11macOS 10.12+ x86-64

fastar-0.4.0-cp310-cp310-win_amd64.whl (275.7 kB view details)

Uploaded CPython 3.10Windows x86-64

fastar-0.4.0-cp310-cp310-musllinux_1_2_x86_64.whl (591.3 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

fastar-0.4.0-cp310-cp310-musllinux_1_2_i686.whl (635.9 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ i686

fastar-0.4.0-cp310-cp310-musllinux_1_2_armv7l.whl (690.9 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARMv7l

fastar-0.4.0-cp310-cp310-musllinux_1_2_aarch64.whl (600.9 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

fastar-0.4.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (420.7 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

fastar-0.4.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl (440.8 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ s390x

fastar-0.4.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (552.6 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ppc64le

fastar-0.4.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (423.7 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARMv7l

fastar-0.4.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (419.2 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

fastar-0.4.0-cp310-cp310-manylinux_2_12_i686.manylinux2010_i686.whl (465.3 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.12+ i686

fastar-0.4.0-cp39-cp39-win_amd64.whl (275.5 kB view details)

Uploaded CPython 3.9Windows x86-64

fastar-0.4.0-cp39-cp39-musllinux_1_2_x86_64.whl (592.0 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

fastar-0.4.0-cp39-cp39-musllinux_1_2_i686.whl (635.7 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ i686

fastar-0.4.0-cp39-cp39-musllinux_1_2_armv7l.whl (691.0 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARMv7l

fastar-0.4.0-cp39-cp39-musllinux_1_2_aarch64.whl (601.5 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

fastar-0.4.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (421.2 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

fastar-0.4.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl (440.9 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ s390x

fastar-0.4.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (554.3 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ppc64le

fastar-0.4.0-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (423.9 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARMv7l

fastar-0.4.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.4.0-cp39-cp39-manylinux_2_12_i686.manylinux2010_i686.whl (465.2 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.12+ i686

fastar-0.4.0-cp38-cp38-musllinux_1_2_x86_64.whl (591.7 kB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ x86-64

fastar-0.4.0-cp38-cp38-musllinux_1_2_i686.whl (635.5 kB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ i686

fastar-0.4.0-cp38-cp38-musllinux_1_2_armv7l.whl (690.6 kB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ ARMv7l

fastar-0.4.0-cp38-cp38-musllinux_1_2_aarch64.whl (601.4 kB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ ARM64

fastar-0.4.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (420.9 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ x86-64

fastar-0.4.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl (441.1 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ s390x

fastar-0.4.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (554.4 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ppc64le

fastar-0.4.0-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (423.6 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ARMv7l

fastar-0.4.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (419.6 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ARM64

fastar-0.4.0-cp38-cp38-manylinux_2_12_i686.manylinux2010_i686.whl (464.9 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.12+ i686

File details

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

File metadata

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

File hashes

Hashes for fastar-0.4.0.tar.gz
Algorithm Hash digest
SHA256 c39395299ce0c21a636bcd8d7a1b21718f1daec8e954732b7364c10db6beec39
MD5 1b4dee870aa8e70fdadde734700bb333
BLAKE2b-256 5567775e46a2d0450a81cba9e04f672388c3d1d712c162175db5dd07e172442a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastar-0.4.0-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 66ba159658359239b51e3b48e401032f76b20650d13afdb7b75e97ff5b94eafd
MD5 c50dfa139cac21ead0d870e81f6bb229
BLAKE2b-256 b3cbfa28d82d5f574e2e2c531be37583bd822d4b6618d02098c072bc18d093a6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastar-0.4.0-pp311-pypy311_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 667f0ab4b6f6352025b4b30a369fe4dd9d2ca4726a068ba716cc45a1dd4d71a8
MD5 862e722440262ab1cb1d91434ef5966b
BLAKE2b-256 89844e69e2911c55e520e7868b1e0aee646c555dc1615bf60aa940681d43ad7a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastar-0.4.0-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 419ca4f9a68fa8b1f4394597741037dcbad60de2a2f7213f83809eaf83909f2a
MD5 7383dfcebb00570bb3c519bb69e59f0d
BLAKE2b-256 3d1ba8d67e8d4a5b8454b4f293c7ab774d6991de35637bf538a1ab94874bcedc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastar-0.4.0-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 176e06fe21533b612c4b3f5958fd0a609d6049ce63312efa2cf0eda57f7c7067
MD5 866ac92d42d8db67f1719b057cc43737
BLAKE2b-256 810636c544384cdcb5c2ccdc0644a08f1ba604737c548b5a939bd05733959a95

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastar-0.4.0-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 1c0e3058bef14bff15ab907c62636b5a915652b444dcf9c2ed54bcebd1b0c7c9
MD5 16f1318d699d485e95970475041569b9
BLAKE2b-256 e4e55eb5dce85784afd7753c3207921ff7548e708ed1a80bdd17e720bdec59d8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastar-0.4.0-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 04c7d44bd3c45a88429a8dd6ba9fb04e4be160daf7cae94b1cc00f7ad6aa5017
MD5 4dc9dff4043b0c62c5404b1bb9251809
BLAKE2b-256 63b7cba35bb6c35ab4ea000b826a2348bd5b2575ebda44c31f809abd478f9ab6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastar-0.4.0-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 0df4a93948d092cbb673c488958326991e5f886f803f747d272700a33fda33ab
MD5 a6e7815d4a54357004198799c53d19a2
BLAKE2b-256 c247fc03dbaa2c3e13cfec5da2e7feb4135057758d6fd73a1018917872291e19

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastar-0.4.0-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 687f98f0f4d76c1d73ef7c353622b61ae935ab271e2abbddcedf49d8da42b68e
MD5 471e68a8bd9f09b85d214236ff99896a
BLAKE2b-256 14df7fd77f9c89ef8908284a0cc629e5c5601281f8779d177ff0a96126e752be

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastar-0.4.0-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 d2875739b99635f48dff18cf96f2cac4579f62d7fe900625f087bbd2a656b070
MD5 fbf254ae33684e6fdd0b62706ccfb509
BLAKE2b-256 2b970afc2f933a7ad0661c23a212fb0834bbca51ceb4d22a13cc7db2ba6c9497

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastar-0.4.0-pp311-pypy311_pp73-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 268c9940b893f91d511036826789eac14fb87baafa992f427657f8fb839095d4
MD5 8da10dc2e1b5c4bef4fc965d9de48878
BLAKE2b-256 a706dab31c30d9e7cc60c008ca31d06755fbeda856e3689e288cbc4578f6c8d3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastar-0.4.0-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 2281190d09272413ed081cd346d45383e1ef264ea8b5a154eab9eaba3180a372
MD5 f3b7ebc2ec1e29331896e9adbec9d9d1
BLAKE2b-256 699ff1f40f516f619f3caadbe615f353f6fdddb258cb5c01d3f3e9d684a4fc71

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastar-0.4.0-pp310-pypy310_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 53db4d8f0782781fac5da144c76468d5ada753c66766b7717f0df4b038c8da75
MD5 dc6ea958c974ddb497c5d0320df88078
BLAKE2b-256 57c8d0065d748d1efc29fb8a0d0a54cf2ae5ac83118555c837a7d51c321f63d7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastar-0.4.0-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 605b182f6ae00e9c1689a60291b6adf0e5b1f5e7ae1012e5bcc2223d46e00c5a
MD5 7e9c76462aa01aef8f6abc4a4f7374f0
BLAKE2b-256 664280dcb0aab4a9836cd4ab29fedefb8b8fc7d695deb3ba95a30d8628bc659b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastar-0.4.0-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 02041b241069f35e455d9dece6c1e0e129f0b81a23236d9156cc61f35234fbed
MD5 72c24417927bd09b1f6f97dfbbb24797
BLAKE2b-256 19945031025de998da1652a4a3d780f635cc72b458387b60ea7660ed09cc768e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastar-0.4.0-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 4d2be6c9ad691c47018ac0ce20e493975362afc82a295ce1effd8cf42559d8c2
MD5 386b82c3866bd2f7bc975f4154662faf
BLAKE2b-256 73bbe4ec2dfde94d1c042d3fdc8933be3d56d3c83d30d042fa1579e2ae251c96

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastar-0.4.0-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 0c1f9e051f629cf611e6cf3bc62bd1181da7088ab28f5edc4f7bff1a16f12f41
MD5 288b29544cea657318fa91119d9289fe
BLAKE2b-256 57f25f307f8fb97f62c7fafade9c668095e301be25715f3c94323e961cacdf51

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastar-0.4.0-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 aea81237c1d506c3bb36a6d4504f1628ff5594102017afa533f50a30ece0d918
MD5 5dc8ad45419adfe3612bdb4624a525b8
BLAKE2b-256 d3a32aa5c3111992ace60f2652244b4a926866b3c15a1da798dabb9d26e5ebcd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastar-0.4.0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 c4ab70306fa00b38e10d5f675e744e8c03ff94f5662cc0c4e713b27dc07ed6aa
MD5 a5a443db3ceda2b9aa4da1cd8a6e9dd1
BLAKE2b-256 fa756eeb042a07a082c71352dafe3f7c32afeecff0efd0e0f78eef1ccb67e9b9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastar-0.4.0-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 047acacb2919e60ad0dc873c08449f0b84730961dd5f8ecdb07620bcf0697331
MD5 127659d11b9f7af530a9f79aa486febd
BLAKE2b-256 e2bd93a6b9587d235a4394b6207d9ed4cb187d70935737c5e6a352a03385d84a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastar-0.4.0-pp39-pypy39_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 3f945fe08731f04efe9a1f0860e703da8ac9b12c31718f88ea4c0b32beff01f4
MD5 4330268316f712db0932a4f48864f6d7
BLAKE2b-256 eaccf555540a23079f598c84d41913c0090482d94e69de4387b956cbf5f8fdb6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastar-0.4.0-pp39-pypy39_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 eb08107a79163182959af0ea7fcc88ffe6b7eb0e1c27c322fb4f83623d137583
MD5 5cdf690e1e757fc5c839d17d56b378fb
BLAKE2b-256 19201ea59ad7ebefcc7a2374fd5901152cd72cdee35d0023d46efb637043767b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastar-0.4.0-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 3d5c454c769321ed98e9b762ba323682fbd1c4bceb73179d6b0c6b32770fc6b8
MD5 97cc212434947ada7d8b9119547fdd74
BLAKE2b-256 bb5e582651067bcf921ddbe463b03206136c6a36265335421170cb8f00941549

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastar-0.4.0-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 db60dfe8f04547cbd57e86cb2af3853a662b79d492d201adb91494d9bb0b860f
MD5 d8321f77d61d2dbb33cbdecbd221d240
BLAKE2b-256 fd7b134fa5af6c508afb4f9848ad6a9d4c919a1ed0714c8335fd7e1ca3bc676e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastar-0.4.0-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 9c9280348b6201fcb0c2422e5c807c2f49e9ae73ac7d68b6c4a3bdaafcd9ba97
MD5 8fef1878e372e56c0190bf26d002b3fd
BLAKE2b-256 e838ba54b2ce3c8bc22a622e2a6fe6c70f9d2eb1e0103f2b63423bde5a10cc02

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastar-0.4.0-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 7f1dc047c14ac643c97d5ad3730810dffc1ee9d57484fecf88fae31dcc4e38d4
MD5 7da9d72ea26e5c18b3891b1da119253b
BLAKE2b-256 bcaf89324bfd8d94e1a3c2f7b22cf3c77ef7433bb06a8da2a89596a855a1ce88

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastar-0.4.0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 42edfb88f986dae9afd87f586d79774f47f2c17f7a6746ebce5bbc9dbaceba34
MD5 86f525d083b49449d2a24d0df060c0b1
BLAKE2b-256 a7d91e48d482016c275d2f41c86db0802e95fe2b392a3b5e5b40abbc30cd6e3d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastar-0.4.0-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 8c14e46bb5360070feb8a392e297711ee284b8f8523e9739327216756277f32d
MD5 c8ff77f622e1accc0b821e757eb7e2a8
BLAKE2b-256 e2567654d007cbd86f54f549710ccbd2aef88029aadbb9967c16f491c8ec23c2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastar-0.4.0-cp314-cp314t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 38f101c1a64792f60cbe27928bff1de8f1160da673d4d78569c2b6bf55b9163c
MD5 5267663b393b462dc82657daf6c480b3
BLAKE2b-256 376b5e196e0785d74a1a1a7ed10cc93c79ae6ddb60b15dedd57d674a6214286a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastar-0.4.0-cp314-cp314t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 ae3079311f4e414c967c019c430d7fec8231e60b75831265560fb5185c1be41f
MD5 a8882d1bdc6e20aceadf89c1410a629e
BLAKE2b-256 6c8bfc38bed1ddf55de048ca0bde038c672f8e4f93abb66a7445b7c47bcd6a46

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastar-0.4.0-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 7c47e3d12a837c9f0d099182c638f1b2342ac0b971023f5e398a9f7c0924ec5c
MD5 ea8295025730cf210a064f29d514043c
BLAKE2b-256 d70f5acd1b04b4afd1807abb921cde88499bed7a1af9ef56b1de65f9dbffbd5b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastar-0.4.0-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 a6e4f9707007cd08be75f5b1b1d6d193d1ff2645c5d1f9e2fe4afc5f1ca86eba
MD5 2f391e21db06f4db79a9ebf2e714ea42
BLAKE2b-256 7edea354d3ac8b1aebbb30770dcf5be6882b11a275e1a2a1626dfc7c210c791a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastar-0.4.0-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 293dd2c206117815e7eb9234c211bf1490af8e11a6d301ed8b164f2de9ed1624
MD5 763232ac10284227097f6d37afbf00d7
BLAKE2b-256 8d8fa798cb701546438ed8ab7477d2c55cbeccdf56f8c11018e2087e4d90af5a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastar-0.4.0-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 96fa118572cb189dfc37913caa5c1c0b6c50d0b9939234f9cfab85e1196c1e61
MD5 3dfa2dbea4b8d081579ba33921f6b7f9
BLAKE2b-256 92a231e1676b110a6ae304df3eb61069fbb7f6cbf6a204ce60290fe024e95726

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastar-0.4.0-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 6ec1065b5875fb243dcb5c9a833484eef7a5b585249b3515382648e6c9700b4e
MD5 85d9e18e8073ab0dde5ae0f6f3c681c5
BLAKE2b-256 01dda24576734062dec67eca7018920ac7fca50e80450cee8c01e1db6c65f730

See more details on using hashes here.

File details

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

File metadata

  • Download URL: fastar-0.4.0-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 275.4 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.4.0-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 f95aef2f634ba3e9a94522bcf60ef8b08f1e3b76acec48a5c057969983728203
MD5 a56dcf8d9458bf91733fa4e7afc8bce1
BLAKE2b-256 a6f4f4c5139d87bf90dbedafc61d9a882f0354adee626f64feb1df8c6a8bda16

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for fastar-0.4.0-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 a9dce24fd6e97357a9a6a022c49c7e8241b708ca7359b8452e9e8ee36020f274
MD5 47dc308908f7e70da2d8072728b6ee89
BLAKE2b-256 d71dac2631d14c35d238e8a59063266abe22d7e02b9705a91cc435d6fb3413cf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastar-0.4.0-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 36d16a742da322486323cd9dbce8dd96925ee909570a95a22c06b53b990f4bc3
MD5 9fae9223e5d8f63319dd35dcca70e405
BLAKE2b-256 cf96b47cd55c1e3ce940cfa7eaeb42eadc7edfb732534cdad518ba699a2ed84e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastar-0.4.0-cp314-cp314-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 6871304a9494f594124b2a92db1678d2f0bfbf4773ecda585303fd154fb3dfff
MD5 73b818964fb0d854b87e98103805c05a
BLAKE2b-256 2b0ed9aefba0984cfd701f09cc00579bc934ffdf290faa0570d6c98956742290

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastar-0.4.0-cp314-cp314-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 2cb702bd891facfbc320fd2e7222e53829cddde2dd3fb392c65316727bb0af5a
MD5 9bb946c737551a88a631d7e57102f752
BLAKE2b-256 e1db5c6691fab123974aeaddb911404c76bf6c177eddf998051c19523e48275c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastar-0.4.0-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 7e60859071b4808c8bf452a6839b93cfd82262b92695f0f238a9598f02300d86
MD5 f6234f96ba35ed863704747475b11e41
BLAKE2b-256 6726be457271d7e62c3b8a80ab0e5cffeea946768c3c35c6c1915065a624f050

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastar-0.4.0-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 469cb75f86ef6b51e0470e83357756e13f7c8d1009721184fde9257782749cf4
MD5 49b10ae879fa11a2c8580124de9b4e49
BLAKE2b-256 e1505ebf6aecd5010173c20e6a293d4b9e120630f4738c94d47190b690df6ad1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastar-0.4.0-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 3773f0a2833b27de1b6412dc42920bde9d732e8f4361760a9372c0c8dc913219
MD5 1adb7d4f74640bad7997d6820a4f003e
BLAKE2b-256 8a9d7f161ccac984dbb948016053b5412016d3dcca7385aa9a5cfe5ab3a59dba

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastar-0.4.0-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 84caed68fe442deead4032f6a00990c7d7ecd6ae9c18a44e997c89b528727b60
MD5 2ca6a05e1ef03927f2f045ec5e4d2004
BLAKE2b-256 7894adca38399ed9c3eb112989c94a76eaff5756455958023f46e3f4daa2614d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastar-0.4.0-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 5a5d4c4aae262ac45db32386eb19f745191086ae9266f7112d65ec01a8e19781
MD5 67db7fb74b7ae0eefc6c62c7198b944b
BLAKE2b-256 60fef8a80810367dcd747269538ce81cb1f1693976cebf67690ba39df3505e98

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastar-0.4.0-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 c0b172707891acdf612e446d2ec819b719994874c46086885685f7718acca437
MD5 c85b6dba65f86702154f5f33772116d9
BLAKE2b-256 c0671754c943acb9adec2481e9dc121e892d0b2be6dec9ef49d9b5897754be13

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastar-0.4.0-cp314-cp314-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 896866478439b6663b792795726f140dc562a5a613f6878d961f2894246fa51e
MD5 938620480179ce5ca177ec178d1249cf
BLAKE2b-256 45e2cddef1e549af3654cfafd0342875350e2883044e13a55b294eb7ec6019e2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastar-0.4.0-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e5b1377556eaa7f452dd1a4ae50b2c276a8f8695b9eafe4ca63011037d93b94e
MD5 c60495990b123071ef6b1a6472639522
BLAKE2b-256 ec54a1573eac06d792079340e27f93f8700a21262f0e76530d7ef9e9f721dbce

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastar-0.4.0-cp314-cp314-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 0b39f6813c55ed95908d4853b032432943adf9b2832b241139a588cfcbda0198
MD5 427d9aa26a2e5f8d485beeef9465e373
BLAKE2b-256 20c099d4e0476df54302ca939ce641aeef7aa6e5a651426884d838672dcfc36e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastar-0.4.0-cp313-cp313t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 0cbabe5a4058e38a2a5ae0e73c5268ff02c11f611c916a66403363dfe811daa1
MD5 5c4c3d7d323e7d197732353063aa9bea
BLAKE2b-256 436e85ef4366df015e97d7de456db0cf873279ef6380c5d84e66c29c7f42db37

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastar-0.4.0-cp313-cp313t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 82f9617501f56e86af4b4fd8d4f38bb07b63771e3a6e6c7ce86fe48b82422efe
MD5 e2601541e12322db356527672f4f65f6
BLAKE2b-256 d2d443cd49a983dee0989635dccaed3f6bea96bac92039d366396cc1f75673a9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastar-0.4.0-cp313-cp313t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 7f692a4325860e954de0f43ff70bc7ebf7298d8d25031ace1a8ec548ce8b48c6
MD5 3e7cef207debd7f9ff0f213b2bd87896
BLAKE2b-256 53d8b4275feb2004a0ca650a62a064c9e593df954b79b23613049e19c48db225

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastar-0.4.0-cp313-cp313t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 56f851fe9dd7b6dc67dffb02ef7d86ac0d1cff04d6f6afc69dca9f25320a70be
MD5 69c50b2ea91c9d309178196c945981f7
BLAKE2b-256 2e40d74495ceb68ff04fbe530c4029a5cc67ff05c8810eaebead383f43ccb80b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastar-0.4.0-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 199c49916bcd146f2399f90655392e89e120270f6adb6ac3ff0d117c093be07c
MD5 7bdf661389b7e812ab57a597137caefa
BLAKE2b-256 b8371e9fcc7cb6b204cdc4f7f00391e8ec08bb4a609a86fe8d62cb22ee3c460d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastar-0.4.0-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 0ec753b335ef34d474287159be7c48bd9ee5f34326826ae0b37b31122b2d4311
MD5 40867a3deb613b654dacf938f75c3edb
BLAKE2b-256 9e291fc950548c9b810688f2725f12cf9beaab28c24ee3a7fb314db64c6b440a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastar-0.4.0-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 fa8ee4eebe0ccdd000b68dfeaa07c027a811ac6b13b8a2eecb2ed0921894c367
MD5 83d9c4901813acf12f0bb8f5191a1947
BLAKE2b-256 f6660e452e38ae91d0d343c7c3949d46d1aee8b2dd5ecd7653a2de094c91b146

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastar-0.4.0-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 5f27d5b01142f62eac99589daf0fbaf70ca9c5dff0f6613fc33f9dc2469db37e
MD5 d3d9bb453ec9a08adc1646a5b6d2b29c
BLAKE2b-256 35c527a64def0794559a63b0f7ce1b4bf06c1f27d5123f3744c447a5d60853e3

See more details on using hashes here.

File details

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

File metadata

  • Download URL: fastar-0.4.0-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 275.2 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.4.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 56185383c9993af529f20d48bc3e588db22b33d79929a4b264967d529369a5cf
MD5 c93c02a2253cc5bbdb148c5d6ea8ea7a
BLAKE2b-256 50dcdfd77de1c49b36faece2e470c6a4ced5fed355a52f6220876d7731b7da0a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastar-0.4.0-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 565d68e22d54996c97065cbd7219ac764f2a25baf4670a37da5aad3565d70f21
MD5 d5990aeced0d1840436f62fed2adfd11
BLAKE2b-256 6ac7bfc8d89dbb8912e36f9298196eecbcc112f24f4e25d30b7c8e2b7ccf2f0a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastar-0.4.0-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 1c7543e26e991f32348dd669a683835539aa9fc6f0e236c180215d25939b25bf
MD5 c46a08970a74b895a4f0b7928aefc0f9
BLAKE2b-256 41b500e15ef719126205d1dd50a77eb48e084bc528fdd1ca0278e382054cc321

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastar-0.4.0-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 dd3286e03503d0d4b064d46438c6984f85f7a820a727e7df7c609acccbf4a18b
MD5 df827e19131bed913f8ac04268d6cbee
BLAKE2b-256 f9b024fe7a4e608c5da32f79b42b8929c98a00c2585ddef28e86ed0a4cbbcd58

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastar-0.4.0-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 efda90c6cc2fdec29eb52637ce917ada85d5b1929e31f87326eb3bdd90d8faab
MD5 d4f9093f73a626b2b0e314797c47f578
BLAKE2b-256 1e3b58d055f179ec0ee02d5a514738b3d3ff1a9f5f7cbbbae5ab1062b800cff2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastar-0.4.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 114c7395299454e060c51a9108040f5fcc4a94cbbecee5644fec4ec1925833ca
MD5 8271038ee34631323ba0dbafc9d50b73
BLAKE2b-256 b8cba662292fcebb8d4ec67213ad577e43ac4ce00348b35103b81bab5990bfc5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastar-0.4.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 1d7b96579adfa783e9189cadb03878f497932c16dbc4b6c93622252d01f5e004
MD5 d2d7665687a18dfb55c83ecdb8ef0701
BLAKE2b-256 cea86b71b6c55c36357ac8dd026e98b621f84f90c5589c77abb2c064faa7d073

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastar-0.4.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 da9aa95fcccfd69bc74a935ca9acd7017761df68fc4186db084b4df45f660e67
MD5 5943945b05b9b82be14fa73d8c7aa15c
BLAKE2b-256 ef4018c17b2e59bb925d770195dce2ca511c98523471dcb06ea39cb7266e70ae

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastar-0.4.0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 38ae29f15160fb0b1ea143e04423fa44bc0719fda4868f9baf51f77ca010f024
MD5 b22d2c1e3e82baf591997344a6b289c9
BLAKE2b-256 57dfce7f3922b1a236dc7fc4a9b480787736baaecaa7b2b020460032bf1a765b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastar-0.4.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 bbf82d98aa3d62768e43a46a3c3a0ec30ed1398218c4e0d9727deb4a3ee18b9a
MD5 181fc1ee2dbf04fb9452cb924c766a0f
BLAKE2b-256 d2f713a51e22513af3abbfb7fabf22efc9dc5addf31f363d5c3abf74ba9410ff

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastar-0.4.0-cp313-cp313-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 5d56d87b9daaf62e74c42ed8fde0a66dfa76908560918e45173c8adb7ead14bb
MD5 f88f2d5b8e3ee2ba9cf893d8894e6dc4
BLAKE2b-256 218c7401f688f8c3e0aae571f8fe426aec2b832b32062640536e8062f7a70ef0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastar-0.4.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e20620d25a01e64bf4c26c92a02324f3706677081b82a88a79ccfcd77fbfe920
MD5 919d6d0f0c4400d382c2500a7d14677d
BLAKE2b-256 2c3b831d6493a42142239cf8b80e929239e73f58cd86e5b9030d5dcb6428064c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastar-0.4.0-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 901d973f25f0f2d82313489b3e15ce2a9b780c99427338f3e9a34c35518ba8e3
MD5 a0ac7cfda5b91b1402b9ea28cf9977e1
BLAKE2b-256 6d110e6292d3bdd2062e987bdc2a7a125182aa21707c7d67c392ab7fb1144f2a

See more details on using hashes here.

File details

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

File metadata

  • Download URL: fastar-0.4.0-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 275.4 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.4.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 1067814dabd3a3cc68a8108f2644eb0456e6f92f69cbf7144ce7603573844ada
MD5 18938593d60316bedda8b9db02344544
BLAKE2b-256 856cc1423b6e285e0a099436a9609ca3d32b6c94d7df87d175ecb6e8c3e5f816

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastar-0.4.0-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 bb1affbbf326a14bb1db3ba302d8f4be1ca0a59455f152465e976b73249dec8c
MD5 6349a617433a98071c9464fcb31eed72
BLAKE2b-256 2250f2052b2ba819b39e06a6d919bce6ea8ee6ee9662f0493d09ce9728b45696

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastar-0.4.0-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 6e4245a9f5423c25bc7a927d6f7021d05f61a7b35881ca3dc43a3323652a2ddc
MD5 00d62717a3a268de9ceda8877fb0a3ae
BLAKE2b-256 45b2121a2ce89e8cb518252ad190877725f4cf0e8100dfb356831db5e2b7df6d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastar-0.4.0-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 223342b30eff8c9605388bbdcd0b7e1792181a47ac0638bd5712b47a0bfa790a
MD5 c362695a51797a92d58b9c2aad8ebce4
BLAKE2b-256 e3ab0eb068fb044dd80509b65e06ce271915a417aafc88a1a1b703f640a47259

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastar-0.4.0-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 2a2696a3e56ee7eaaaa8611c10f574c5aceec6a23dd8b4fd0bf896da435741c1
MD5 2dd0a65cb7a7df5baed87372193f31bb
BLAKE2b-256 1e4a25e60885a3eefb336070459e5b37d7bd6ec612f8d9d8840ef5412ccfdc5d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastar-0.4.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 3d384f651695486c2d7770b7b5755eb23434e2a4f2c6e583c2bb68b238ff87fc
MD5 96847bb5f7ba725acd088e59990366e2
BLAKE2b-256 b3fb3aace2a9faed94b52ddcc4b8230943001091a889792716b7d263f5260a91

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastar-0.4.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 c8bb4040579c441e7fc3004337c8936fe7b8c8a2be451c3943a3337bfe9ec51c
MD5 6b86477a37bbc789727b8786793e883d
BLAKE2b-256 e480c36a0baa82ce8301fda23084215cc95a523145f1392289478c6c8771def9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastar-0.4.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 5f2afb728115aac9ddba795808d59baa88a093f5e17007230405d9ee96baaa3a
MD5 4bf947fc6565b109b42f41e1438a8318
BLAKE2b-256 d24aaf1054c47b06bfc215fa571ebb0d01c284cea17d5e6cd6c330ffe352138d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastar-0.4.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 68c0941bd36e1d93ad680f83f7eb60d4bbbf6d83ccceff0c0469b0a0972b5338
MD5 a85223076de5ac0ae4aa27b6171694d6
BLAKE2b-256 4404bbcd7354b99c9c794b6e9807ecc9c269dc5e686ce419825dd455b31e68c0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastar-0.4.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 8935d6a89a13a0332f991ded34a92cf20f03881ecc5f861e0dd5150b62808cff
MD5 cc9b08520e692a77f06f99e0db644a20
BLAKE2b-256 f19dac6968f38de3b6028b8dff40870e3ab284cb683f1f842ddaf1e507594e8d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastar-0.4.0-cp312-cp312-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 b13946c1a2868874daee33780e265db83272115b52929e3b6fb7f916d2a88d75
MD5 1f68df30b97889ed99f7260423cfd459
BLAKE2b-256 d73f87119274c47933edcd551ccbbb99d6f3b8cd12a59fdaf525aa504c7fff03

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastar-0.4.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f6a716ffecb1279033f14cb92a02e07fcee99b1edc6079d24533847e35fc9b65
MD5 ac91b6e6e604858b2c885e8458914d94
BLAKE2b-256 4fca22f0d17aed4cdfe85640288d83a8b3b10e63bd4518db22a77cffece69154

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastar-0.4.0-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 71962e47ba21f27ff2f67d4f30cf414de403bf7567a3f12e8622125fb999a09d
MD5 a3d60884a74fb356218e7161e3131305
BLAKE2b-256 5e6a46b648e5a7155f3c8d2b96689f1dc80032ef9fdc29ae99f5435c9a2ef8a5

See more details on using hashes here.

File details

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

File metadata

  • Download URL: fastar-0.4.0-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 275.8 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.4.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 bb2e73c4a827270ff5aa8c3832854a185fd4a63c4a14d87c7f45ea281e4c183e
MD5 9a757723983b64be22c499d019ef7f92
BLAKE2b-256 e26064ab98d9f0f7cddbbf67fe5aa6dd83436981fe4cb53e3d6d64ac3de0ef21

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastar-0.4.0-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 55cec6a970ab10f726dc4f834fa203e1567b58f9ad0328c8267c512532a78cd1
MD5 3940991184e5d0922f40368f52e36492
BLAKE2b-256 22892b884ba9787cf529f6e512151b8b4d257fe8649245f4a38422e4f61058c2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastar-0.4.0-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 60d469037c3dfc7fa870d7c9ba0bd582965aa09529f9caef53c9c14ab2949caa
MD5 7590bac38763b027d208ac8ac9677ee4
BLAKE2b-256 58fc384370127a2e39569ab3e76df04967399be42bd59adeb0267a0b2f665dd0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastar-0.4.0-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 9ce752491c7fe69a8d1e77b32ff36b48036c0d6ffa001df719256d6a74abf457
MD5 422b5d3f02d90e2f4c46b078d408bb52
BLAKE2b-256 1c620d91d004259ef44b2f18a959ef61f227a8c1a855e5b291d6b358ebb7f7e3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastar-0.4.0-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 56e41b22df1735fd060d12a9a6deded4ba4b1cbe2a3e41e9b78f15b40e4741e3
MD5 5327a21cbf5ca2f7333fc4c65ea55ee2
BLAKE2b-256 b7364deb917a8dd627146b550be855be271f3f609e8fa937ece0ce05ff76ddf1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastar-0.4.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ae1c67890ed9f41694dcb24c44f8ff60e230003fb4a46ac71d92b77444e20e9e
MD5 62aec85dcde795c7f914a49e7480182a
BLAKE2b-256 8dbbaffda0cc59da76f0d42469d8f017cb3d8f02b7c41f1ca2c179970c0e48e1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastar-0.4.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 9aea95e0db0bb88064d5480f62bcdc2e35f9989bf1fe13302a7433a8a07ad57b
MD5 10acd931f929d8896397735cbf79cde3
BLAKE2b-256 2d1781f0e782b0ffd3d5300ceb5f0f31e898576b81a80f0248fe7574c3e38001

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastar-0.4.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 3e4909516f36aa590f304fa54f50eec10f894bb86868362489dda1e4beb0d102
MD5 f16013155e6bb65c7f2c6d985b8c81cf
BLAKE2b-256 90eb90ed79e3ff211d6e8f179f555f5c25c8bad4f816a3b01d373e4a069dde10

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastar-0.4.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 65e27cb0014f7fe53b324f387d2cb0a9cc596c643db9cfc643fc884ea1d7a7b7
MD5 7b942519691a8c7aa7dba686f0e223f5
BLAKE2b-256 e897d76dc5dd4aeef8ee03286f39e178f1fd6c014daba3eca5a644440f10cf22

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastar-0.4.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 90fcee30d16770ad16332972bf08e11874fe77ba58479f160da19596c96a17ec
MD5 e8bf411a37e587cb29fafec06e50f7e1
BLAKE2b-256 2684688e80f97e7716bf84e84bae31c5e19d272ec24d11320de7fb14e9b54ec8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastar-0.4.0-cp311-cp311-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 567c6c2792f354d155be21af93748732577d81883801325e9961d98825e8ee21
MD5 f341af201308fb21aeb0a15a1cbc3774
BLAKE2b-256 a2e5374ec1ea95ce472cc32cfe71288a3c9b3b7432aeafad5380c2498c6571fe

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastar-0.4.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a1c14dbbf87962babb045964574b581d2fa39a703c6e0e10c96d3db1f6fd99f6
MD5 ae8910c078a5a1da0f89b139d62d8482
BLAKE2b-256 1680838a221a6b80529303abbf6825f13ea818da6ba3a8bd4e430054887773c8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastar-0.4.0-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 b861e68fbf6ec645c1b9f44f50fc949580f1573fd746b87d91958d82c5fa6b0b
MD5 cb6e111744fc469b2520a08b4db662c6
BLAKE2b-256 e644d54ce9bdbe4107cd4c244f72b8b08fc4678282e05e2f03665060e8d986fd

See more details on using hashes here.

File details

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

File metadata

  • Download URL: fastar-0.4.0-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 275.7 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.4.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 d344c4d754be005e18450f4a60df8cbe707f306355b015eebd4614d1aa8a7012
MD5 d0f6108e2d717a5a9dae1e5de6cf96a7
BLAKE2b-256 d9474ba55a14252cbe8941d9f9173940a27911c99c590b0e96c17678fba5e74f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastar-0.4.0-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 0f25eb0836d90d2c13cbd78522075a23d1cc64176b8163930d3c582d8b340b24
MD5 b34f40ba8d78f1a7d863902e1962398b
BLAKE2b-256 9784e7266371c8c0e985a65e25f6af0cabb0d10d3597f329cfeb9da09ec1509f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastar-0.4.0-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 2d39f8de9480f2eee664e39f6d6aafc48cd3faf75e678826f7b107c9afce1058
MD5 1b7c8734b74b5270ad3b869c1f6b2d16
BLAKE2b-256 90c423b63881023d49a9cc622a620dd114785573f2b3f83340d121640292c3ef

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastar-0.4.0-cp310-cp310-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 7040617eca7116c78ca999fae97be6021514b2c2493432bf849608b67cc9573b
MD5 c9b54f1c541d82f30f545d585f02ac41
BLAKE2b-256 d33958df19ac1c78ece3eae7510fc1e7140eedc3d2f20ffeef366b367379783f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastar-0.4.0-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 1cc4050316f33166ff9063da52a66922929ac0349f3751d125f0236bb7842112
MD5 acda199209367a568a3aabda7ad24625
BLAKE2b-256 e8b3525c12bafdf0a7ad7c6a3123f33d33f0e6f4e4a4349838c51fdb0a6794f0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastar-0.4.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 82194ee01f321f29851fb3e624f6cac0b7ddb2430b0d90c2d870e66800eeeb1f
MD5 2ee46950f2a4da0c0092edc8a7ef3cce
BLAKE2b-256 28a3d2a4b0e1cb59f11af873c5c9b0f3b805e29d711454b00d326f0503cf7df7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastar-0.4.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 f16c625a47a695616949cd7a107a025d5e4f5b50bef3d6e95d51abe9b99eb5d8
MD5 5f3b21f2c0f342bd088263df2a44de09
BLAKE2b-256 6812d412a363dbdeb3e1163917a31a61826f6fff23ca76733f80dca462bb5065

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastar-0.4.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 df45d40fc595bd30682d1970e6d6f5a0f038b58330212f235e2fb287194e5a46
MD5 f403329b8809c63bf6e7315ab8fb1616
BLAKE2b-256 6de114e49f03a79254e56428efafb8a9949b92f73b7370b95c2996535572682a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastar-0.4.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 23a5396a195e35a00cab1dd2ebf113313221001036a482aa50ae593d181cb32c
MD5 09fa3bf5f1686eedeba6df457fe212c6
BLAKE2b-256 49a1808099a42edba3c9ae0f3025c98d74a55b23288f1a3b252c295ec7c9dff3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastar-0.4.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 b063cbffcbc2fcb6b090a58abce6f7b5869c9401c863833b91318b3fbc79265c
MD5 9b18f18ee0182e1100c27a6c5dfa72c6
BLAKE2b-256 4be388a2d51c566b3f82ccd3bf177e1cb0925d67724488462cf6aa2f2a145ca2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastar-0.4.0-cp310-cp310-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 0f0713afdcf41702b80263d0de694e73b995b81f6247bc33b9b41f6ef05958ac
MD5 af97363caf8a43abefa97daed3e7db37
BLAKE2b-256 b53aceb23da7065ce4ddce4fe8e930e4918d04f5b8062b8fdffa9dc63581d097

See more details on using hashes here.

File details

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

File metadata

  • Download URL: fastar-0.4.0-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 275.5 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.4.0-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 15ed58c56d604ba6134ef45c6563927412e4a1456eff85f52d2f9bf3f6f0b94b
MD5 7e3de7b578f7d4192d5b0bf641095e45
BLAKE2b-256 f89db98c5cdab31055f79ac5b74419f2d5b0900e7495747ee880f4f84c3b3319

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastar-0.4.0-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 54a1e0bc1a0cda546d75b1a3e5dae9df2d9dddc10f1bdd595350af413248e103
MD5 788ee30bf0cabfe13f6640a6fa53abc6
BLAKE2b-256 eec3e739f2aa7858c01caf18efe48210f5bc4bf87211ca0ed8ba823318bdf3f6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastar-0.4.0-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 7dce95c2efebd68794f309bcb3bf5ce59315500aba094ce74665c6e89288542b
MD5 7227fd46ffb1041e3bffffcc95e36f5f
BLAKE2b-256 1150c93c6b52c2f836ed0cc2204c075f43807abec1087b6619e98804b7933f70

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastar-0.4.0-cp39-cp39-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 9f816a6665a3408d7a6a3cc1c8927c5aad1ece86c7cb1192b5e5a63a04358a77
MD5 fdb2ef7ef7b44f558dffd6cbc9f7ee62
BLAKE2b-256 6bc1b32a61be56837a3238a069d66d2eeaa482079a3d62f50c47270b6c6872b5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastar-0.4.0-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 6ab32d91eb2fb2788d84f8784f0cf114f615850ac4a61f10d59f67b808d339b7
MD5 14db681307814c0139d855649c073c48
BLAKE2b-256 c16e76fbcb8e940a7f0762a146e55d48743ce365b1fa154bce57005f6c465415

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastar-0.4.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 13345f69cb452ca85a339809f5571058a0e8a920e0ad6de239a118c1a68ec9fe
MD5 ca2bf0bbdf159642c891d264b96104e2
BLAKE2b-256 61c0e29dc923b8b5870ad5711ea44105f1f103911003f4b3928dcfd97dad9e0b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastar-0.4.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 94bfb5204029d39742a1cff03acba97e65021a44756e49adc8eb2a929e8126b6
MD5 0f7fe83e841949eba051d4cea0640dd1
BLAKE2b-256 ddfa250cc00c3964d42f7ddc1d2656483203693d46d5ac405a9f2613fdf4b895

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastar-0.4.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 d0dde29af15647369fc211e885bd6e8ab564774af526f1cd3c07ebbdd86a7af8
MD5 de3bfa7623ad4a66e23f937ba93a1e5e
BLAKE2b-256 e682aa1b67016bd4e6b869db40d38fa664803c6379d5e334ef8c99e5cf23d13f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastar-0.4.0-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 b3610d7e33917011d07c8d8098d0d366fd08d22cf4664b4bcdbfe19a69d4b827
MD5 87e23528243063b178ca262a1e292553
BLAKE2b-256 1f59b8075f804e4b8cb81566c17628d8e1e846b4bbfc0417e645015ef6b1b117

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastar-0.4.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 8a3b56b9474682b4149947f6e537f5c030cc6afbe39283b8d9cc3de4c7b781f0
MD5 38b77b6ba458960aeaf5a84f5d179191
BLAKE2b-256 609ba1c539db4a6f925cf0bc484331dcb3cc9ab967ec0960e1f40af1830c8a81

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastar-0.4.0-cp39-cp39-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 2b2909d858b554c06a1d6ecc893505acb89433260eaf98a0b70db7365b0dfe97
MD5 b54cac58c1e037062b6bf44bb913fb06
BLAKE2b-256 d836db2f1264b06f72c2f6dfc614045d5e76fa908b673c600781780ca63c0c21

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastar-0.4.0-cp38-cp38-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 6afb6e5e273706526eefa05f31e45dda9cd1f607e88df4ad1d123d6405285102
MD5 3cb8848d06ec6d1be62a388fc6028c7a
BLAKE2b-256 c0e03c4dc07b536ac1484b71ad589d2696bfbd52389125b2456da22e0af66802

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastar-0.4.0-cp38-cp38-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 f4ad7ce242d4c6d6717b28377201eae3647e17ff65701e6545f5280a35641e75
MD5 ae0e97282baf36e8b3ae36c3e5b468e1
BLAKE2b-256 5e0d5bc153b0ef049e0dd481a032daa4b2e5ee3da78cc9b030105911836d8f1a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastar-0.4.0-cp38-cp38-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 0adbe948b5c3deac85375b6d4a7346a8849f44d14f61491d03cff7586428a9c7
MD5 3ba1b06640e2778f5b7e180205f9e81a
BLAKE2b-256 ffabb370ca5deb504ad5000c41d5d2531ec3091c293d5152244a90ddf7ce02a2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastar-0.4.0-cp38-cp38-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 2cae5a0042238e9b31c480e5ee49448c7c2d4ec2d63ffe05e938ffde43ed8915
MD5 ac557e790b974ae0c42be4ce16c4cf6f
BLAKE2b-256 4d073144fca9975a87a2c2ece7738116be4bd0ebda4a540596c94e68118e0e4f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastar-0.4.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 80b90f9cb86c8c2de000508c2beedb14fdea40c3da185dba6ff4e0fe956660a3
MD5 e32f1ccd103be8e8e265719f630ef181
BLAKE2b-256 0e153739c764c679e6a4de59d893c19f765404c8a4607118471176c138ebd819

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastar-0.4.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 7960dc2d2b06e4b5ea88aa36d4c260ab925657dabd403bde64be4f528f58e52d
MD5 76a5d048ca66ed95ce7e41b48e810bdf
BLAKE2b-256 900e97638a47d12c1fe929899c3766220b9f9bdab9f58be9794ed3c26bffeb69

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastar-0.4.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 1c2017b092d8b27e9b088c9bd3d92ee2abead23e40502c1a241199ddccd2c0de
MD5 0c4d052267fdacfa9207703c3e3b2671
BLAKE2b-256 2df417f96e91800c7f46d7700f4cbc8349836d72c7ee470f413a1872953e8b2e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastar-0.4.0-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 346275c685019f3964c4644b8673686d14b27f4d8fce5d4e6d1e6007ae4ee315
MD5 5d9bab6bc399d43d05780e17a081a8bd
BLAKE2b-256 1d86a5ba7d3f8827e5995752a7904beb139c916b9bbac1e19682b489595af74b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastar-0.4.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 27c938b59937bb5e3848aa6885a14741f6bbc03b111e1a13e1f013ca3a2d9846
MD5 c838ebf441d8f3d3d6d29a41225e5ec3
BLAKE2b-256 fb751bb5b7303191c0e1da70e2d4a39d71fdb27835e5ad758cf623dd7af2e72e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastar-0.4.0-cp38-cp38-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 c9d35b1082acb3848332438c9f6c905419f20d2667d3e3030030daad71bfba2f
MD5 9fb349f1fc173c3d99785ed89ab3ad82
BLAKE2b-256 2444bb26cac19b899b629423e5370f542401fe2ec7cac6ca9ea41ab71499c1fc

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