Skip to main content

crc32c-rs

High-performance CRC32C implementation compliant with RFC 3720 (iSCSI)

PyPI version PyPI downloads PyPI requires Python PyPI license

CI Last Commit Commits Stars Telegram members

Features

  • High-performance CRC32C implementation written in Rust

  • Runtime dispatch keyed by CPU model: the vendor and CPUID model select a microarchitecture-tuned implementation (loop blocking, unroll factor and register allocation differ between Ice Lake, Sapphire Rapids, Cascade Lake, Milan, Rome and Genoa); unknown CPUs fall back to a generic feature-based choice

    • x86/x86_64: SSE4.2 + PCLMULQDQ, AVX-512VL + PCLMULQDQ, or AVX-512F + AVX-512VL + VPCLMULQDQ
    • AArch64/ARM64EC: CRC + AES, with an optimized SHA3 variant when available
    • Other platforms: a portable fallback implementation

Installation

Python Using pip:

pip install crc32c-rs

uv Using uv:

uv pip install crc32c-rs

Poetry Using poetry:

poetry add crc32c-rs

Examples

Basic usage

from crc32c_rs import crc32c

print(crc32c(b"Hello world!"))  # 2073618257

crc = crc32c(b"Hello")
print(crc32c(b" world!", crc))  # 2073618257

By default, crc32c_rs.crc32c selects an implementation at runtime. Dispatch is keyed by CPU model first: the vendor and CPUID model (family/model) are looked up, and if the CPU is a known one, its microarchitecture-tuned implementation is used whenever the required instruction sets are present. Only for unknown CPUs does dispatch fall back to a generic feature-based choice.

x86/x86_64

Model-tuned selection (checked in this order):

CPU model With AVX-512VL + VPCLMULQDQ With AVX-512VL + PCLMULQDQ With SSE4.2 + PCLMULQDQ
Sapphire Rapids v3s1_s3 × v8s3x3
Genoa v3s2x4 × v1s3x2
Ice Lake v4s5x3 × v7s3x3
Cascade Lake × v9s3x4e v8s3x3
Milan × × v1s4x2
Rome × × v1s3x3

Unknown model: AVX-512VL + VPCLMULQDQ -> v4s5x3, else AVX-512VL + PCLMULQDQ -> v9s3x4e, else SSE4.2 + PCLMULQDQ -> v8s3x3, else fallback.

AArch64/ARM64EC

  1. CRC + AES + SHA3 -> v9s3x2e_s3
  2. CRC + AES -> v12e_v1 on Apple, v3s4x2e_v2 elsewhere
  3. fallback

Other platforms

Portable fallback.

Direct implementation selection

The default crc32c_rs.crc32c function selects an implementation at runtime, but you can also call a specific implementation directly:

Function Required CPU features
crc32c Runtime CPU dispatch
crc32c_fallback No special CPU features
crc32c_avx512vl_vpclmulqdq_v3s1_s3 AVX-512F + AVX-512VL + VPCLMULQDQ
crc32c_avx512vl_vpclmulqdq_v3s2x4 AVX-512F + AVX-512VL + VPCLMULQDQ
crc32c_avx512vl_vpclmulqdq_v4s5x3 AVX-512F + AVX-512VL + VPCLMULQDQ
crc32c_avx512vl_pclmulqdq_v9s3x4e AVX-512VL + PCLMULQDQ
crc32c_sse42_pclmulqdq_v1s3x2 SSE4.2 + PCLMULQDQ
crc32c_sse42_pclmulqdq_v1s3x3 SSE4.2 + PCLMULQDQ
crc32c_sse42_pclmulqdq_v1s4x2 SSE4.2 + PCLMULQDQ
crc32c_sse42_pclmulqdq_v7s3x3 SSE4.2 + PCLMULQDQ
crc32c_sse42_pclmulqdq_v8s3x3 SSE4.2 + PCLMULQDQ
crc32c_aes_crc_v12e_v1 CRC + AES
crc32c_aes_v3s4x2e_v2 CRC + AES
crc32c_aes_sha3_v9s3x2e_s3 CRC + AES + SHA3

Architecture-specific implementations are available only on compatible builds. If the current processor does not support the required features, calling one of these functions raises crc32c_rs.UnsupportedCPUFeatureError.

from crc32c_rs import crc32c_avx512vl_vpclmulqdq_v3s1_s3

checksum = crc32c_avx512vl_vpclmulqdq_v3s1_s3(b"Hello world!")
print(checksum)  # 2073618257

Contributors

lava-sh/crc32c-rs contributors

Download files

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

Source Distribution

crc32c_rs-0.0.1.tar.gz (91.8 kB view details)

Uploaded Source

Built Distributions

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

crc32c_rs-0.0.1-pp311-pypy311_pp73-win_amd64.whl (186.1 kB view details)

Uploaded PyPyWindows x86-64

crc32c_rs-0.0.1-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl (489.3 kB view details)

Uploaded PyPymusllinux: musl 1.2+ x86-64

crc32c_rs-0.0.1-pp311-pypy311_pp73-musllinux_1_2_riscv64.whl (426.5 kB view details)

Uploaded PyPymusllinux: musl 1.2+ riscv64

crc32c_rs-0.0.1-pp311-pypy311_pp73-musllinux_1_2_ppc64le.whl (435.1 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ppc64le

crc32c_rs-0.0.1-pp311-pypy311_pp73-musllinux_1_2_i686.whl (527.1 kB view details)

Uploaded PyPymusllinux: musl 1.2+ i686

crc32c_rs-0.0.1-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl (535.3 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

crc32c_rs-0.0.1-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl (447.4 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARM64

crc32c_rs-0.0.1-pp311-pypy311_pp73-manylinux_2_31_riscv64.whl (249.0 kB view details)

Uploaded PyPymanylinux: glibc 2.31+ riscv64

crc32c_rs-0.0.1-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (276.9 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

crc32c_rs-0.0.1-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (238.2 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ s390x

crc32c_rs-0.0.1-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (226.3 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

crc32c_rs-0.0.1-pp311-pypy311_pp73-manylinux_2_17_ppc64.manylinux2014_ppc64.whl (227.0 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ppc64

crc32c_rs-0.0.1-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (209.4 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

crc32c_rs-0.0.1-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (268.1 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

crc32c_rs-0.0.1-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl (301.8 kB view details)

Uploaded PyPymanylinux: glibc 2.5+ i686

crc32c_rs-0.0.1-pp311-pypy311_pp73-macosx_11_0_arm64.whl (248.6 kB view details)

Uploaded PyPymacOS 11.0+ ARM64

crc32c_rs-0.0.1-pp311-pypy311_pp73-macosx_10_12_x86_64.whl (266.9 kB view details)

Uploaded PyPymacOS 10.12+ x86-64

crc32c_rs-0.0.1-pp311-pypy311_pp73-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl (497.7 kB view details)

Uploaded PyPymacOS 10.12+ universal2 (ARM64, x86-64)macOS 10.12+ x86-64macOS 11.0+ ARM64

crc32c_rs-0.0.1-cp315-cp315t-win_arm64.whl (174.2 kB view details)

Uploaded CPython 3.15tWindows ARM64

crc32c_rs-0.0.1-cp315-cp315t-win_amd64.whl (186.4 kB view details)

Uploaded CPython 3.15tWindows x86-64

crc32c_rs-0.0.1-cp315-cp315t-win32.whl (171.9 kB view details)

Uploaded CPython 3.15tWindows x86

crc32c_rs-0.0.1-cp315-cp315t-musllinux_1_2_x86_64.whl (490.1 kB view details)

Uploaded CPython 3.15tmusllinux: musl 1.2+ x86-64

crc32c_rs-0.0.1-cp315-cp315t-musllinux_1_2_riscv64.whl (426.3 kB view details)

Uploaded CPython 3.15tmusllinux: musl 1.2+ riscv64

crc32c_rs-0.0.1-cp315-cp315t-musllinux_1_2_ppc64le.whl (434.8 kB view details)

Uploaded CPython 3.15tmusllinux: musl 1.2+ ppc64le

crc32c_rs-0.0.1-cp315-cp315t-musllinux_1_2_i686.whl (524.0 kB view details)

Uploaded CPython 3.15tmusllinux: musl 1.2+ i686

crc32c_rs-0.0.1-cp315-cp315t-musllinux_1_2_armv7l.whl (533.4 kB view details)

Uploaded CPython 3.15tmusllinux: musl 1.2+ ARMv7l

crc32c_rs-0.0.1-cp315-cp315t-musllinux_1_2_aarch64.whl (447.9 kB view details)

Uploaded CPython 3.15tmusllinux: musl 1.2+ ARM64

crc32c_rs-0.0.1-cp315-cp315t-manylinux_2_31_riscv64.whl (248.8 kB view details)

Uploaded CPython 3.15tmanylinux: glibc 2.31+ riscv64

crc32c_rs-0.0.1-cp315-cp315t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (277.8 kB view details)

Uploaded CPython 3.15tmanylinux: glibc 2.17+ x86-64

crc32c_rs-0.0.1-cp315-cp315t-manylinux_2_17_s390x.manylinux2014_s390x.whl (239.1 kB view details)

Uploaded CPython 3.15tmanylinux: glibc 2.17+ s390x

crc32c_rs-0.0.1-cp315-cp315t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (226.0 kB view details)

Uploaded CPython 3.15tmanylinux: glibc 2.17+ ppc64le

crc32c_rs-0.0.1-cp315-cp315t-manylinux_2_17_ppc64.manylinux2014_ppc64.whl (226.5 kB view details)

Uploaded CPython 3.15tmanylinux: glibc 2.17+ ppc64

crc32c_rs-0.0.1-cp315-cp315t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (207.4 kB view details)

Uploaded CPython 3.15tmanylinux: glibc 2.17+ ARMv7l

crc32c_rs-0.0.1-cp315-cp315t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (268.3 kB view details)

Uploaded CPython 3.15tmanylinux: glibc 2.17+ ARM64

crc32c_rs-0.0.1-cp315-cp315t-manylinux_2_5_i686.manylinux1_i686.whl (298.3 kB view details)

Uploaded CPython 3.15tmanylinux: glibc 2.5+ i686

crc32c_rs-0.0.1-cp315-cp315t-macosx_11_0_arm64.whl (244.7 kB view details)

Uploaded CPython 3.15tmacOS 11.0+ ARM64

crc32c_rs-0.0.1-cp315-cp315t-macosx_10_12_x86_64.whl (264.6 kB view details)

Uploaded CPython 3.15tmacOS 10.12+ x86-64

crc32c_rs-0.0.1-cp315-cp315t-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl (492.4 kB view details)

Uploaded CPython 3.15tmacOS 10.12+ universal2 (ARM64, x86-64)macOS 10.12+ x86-64macOS 11.0+ ARM64

crc32c_rs-0.0.1-cp315-cp315-win_arm64.whl (175.2 kB view details)

Uploaded CPython 3.15Windows ARM64

crc32c_rs-0.0.1-cp315-cp315-win_amd64.whl (187.2 kB view details)

Uploaded CPython 3.15Windows x86-64

crc32c_rs-0.0.1-cp315-cp315-win32.whl (172.7 kB view details)

Uploaded CPython 3.15Windows x86

crc32c_rs-0.0.1-cp315-cp315-musllinux_1_2_x86_64.whl (491.6 kB view details)

Uploaded CPython 3.15musllinux: musl 1.2+ x86-64

crc32c_rs-0.0.1-cp315-cp315-musllinux_1_2_riscv64.whl (427.3 kB view details)

Uploaded CPython 3.15musllinux: musl 1.2+ riscv64

crc32c_rs-0.0.1-cp315-cp315-musllinux_1_2_ppc64le.whl (435.7 kB view details)

Uploaded CPython 3.15musllinux: musl 1.2+ ppc64le

crc32c_rs-0.0.1-cp315-cp315-musllinux_1_2_i686.whl (525.0 kB view details)

Uploaded CPython 3.15musllinux: musl 1.2+ i686

crc32c_rs-0.0.1-cp315-cp315-musllinux_1_2_armv7l.whl (534.5 kB view details)

Uploaded CPython 3.15musllinux: musl 1.2+ ARMv7l

crc32c_rs-0.0.1-cp315-cp315-musllinux_1_2_aarch64.whl (448.5 kB view details)

Uploaded CPython 3.15musllinux: musl 1.2+ ARM64

crc32c_rs-0.0.1-cp315-cp315-manylinux_2_31_riscv64.whl (249.9 kB view details)

Uploaded CPython 3.15manylinux: glibc 2.31+ riscv64

crc32c_rs-0.0.1-cp315-cp315-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (279.0 kB view details)

Uploaded CPython 3.15manylinux: glibc 2.17+ x86-64

crc32c_rs-0.0.1-cp315-cp315-manylinux_2_17_s390x.manylinux2014_s390x.whl (239.9 kB view details)

Uploaded CPython 3.15manylinux: glibc 2.17+ s390x

crc32c_rs-0.0.1-cp315-cp315-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (227.2 kB view details)

Uploaded CPython 3.15manylinux: glibc 2.17+ ppc64le

crc32c_rs-0.0.1-cp315-cp315-manylinux_2_17_ppc64.manylinux2014_ppc64.whl (227.4 kB view details)

Uploaded CPython 3.15manylinux: glibc 2.17+ ppc64

crc32c_rs-0.0.1-cp315-cp315-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (208.5 kB view details)

Uploaded CPython 3.15manylinux: glibc 2.17+ ARMv7l

crc32c_rs-0.0.1-cp315-cp315-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (269.3 kB view details)

Uploaded CPython 3.15manylinux: glibc 2.17+ ARM64

crc32c_rs-0.0.1-cp315-cp315-manylinux_2_5_i686.manylinux1_i686.whl (299.3 kB view details)

Uploaded CPython 3.15manylinux: glibc 2.5+ i686

crc32c_rs-0.0.1-cp315-cp315-macosx_11_0_arm64.whl (245.6 kB view details)

Uploaded CPython 3.15macOS 11.0+ ARM64

crc32c_rs-0.0.1-cp315-cp315-macosx_10_12_x86_64.whl (265.1 kB view details)

Uploaded CPython 3.15macOS 10.12+ x86-64

crc32c_rs-0.0.1-cp315-cp315-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl (493.8 kB view details)

Uploaded CPython 3.15macOS 10.12+ universal2 (ARM64, x86-64)macOS 10.12+ x86-64macOS 11.0+ ARM64

crc32c_rs-0.0.1-cp314-cp314t-win_arm64.whl (174.1 kB view details)

Uploaded CPython 3.14tWindows ARM64

crc32c_rs-0.0.1-cp314-cp314t-win_amd64.whl (186.4 kB view details)

Uploaded CPython 3.14tWindows x86-64

crc32c_rs-0.0.1-cp314-cp314t-win32.whl (171.8 kB view details)

Uploaded CPython 3.14tWindows x86

crc32c_rs-0.0.1-cp314-cp314t-musllinux_1_2_x86_64.whl (490.0 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

crc32c_rs-0.0.1-cp314-cp314t-musllinux_1_2_riscv64.whl (426.2 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ riscv64

crc32c_rs-0.0.1-cp314-cp314t-musllinux_1_2_ppc64le.whl (434.6 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ppc64le

crc32c_rs-0.0.1-cp314-cp314t-musllinux_1_2_i686.whl (523.9 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ i686

crc32c_rs-0.0.1-cp314-cp314t-musllinux_1_2_armv7l.whl (533.3 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARMv7l

crc32c_rs-0.0.1-cp314-cp314t-musllinux_1_2_aarch64.whl (447.6 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

crc32c_rs-0.0.1-cp314-cp314t-manylinux_2_31_riscv64.whl (248.7 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.31+ riscv64

crc32c_rs-0.0.1-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (277.8 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ x86-64

crc32c_rs-0.0.1-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl (239.0 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ s390x

crc32c_rs-0.0.1-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (225.9 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ppc64le

crc32c_rs-0.0.1-cp314-cp314t-manylinux_2_17_ppc64.manylinux2014_ppc64.whl (226.3 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ppc64

crc32c_rs-0.0.1-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (207.3 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARMv7l

crc32c_rs-0.0.1-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (268.3 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARM64

crc32c_rs-0.0.1-cp314-cp314t-manylinux_2_5_i686.manylinux1_i686.whl (298.2 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.5+ i686

crc32c_rs-0.0.1-cp314-cp314t-macosx_11_0_arm64.whl (244.6 kB view details)

Uploaded CPython 3.14tmacOS 11.0+ ARM64

crc32c_rs-0.0.1-cp314-cp314t-macosx_10_12_x86_64.whl (264.6 kB view details)

Uploaded CPython 3.14tmacOS 10.12+ x86-64

crc32c_rs-0.0.1-cp314-cp314t-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl (492.3 kB view details)

Uploaded CPython 3.14tmacOS 10.12+ universal2 (ARM64, x86-64)macOS 10.12+ x86-64macOS 11.0+ ARM64

crc32c_rs-0.0.1-cp314-cp314-win_arm64.whl (175.1 kB view details)

Uploaded CPython 3.14Windows ARM64

crc32c_rs-0.0.1-cp314-cp314-win_amd64.whl (187.1 kB view details)

Uploaded CPython 3.14Windows x86-64

crc32c_rs-0.0.1-cp314-cp314-win32.whl (172.7 kB view details)

Uploaded CPython 3.14Windows x86

crc32c_rs-0.0.1-cp314-cp314-pyemscripten_2026_0_wasm32.whl (70.5 kB view details)

Uploaded CPython 3.14PyEmscripten 2026.0 wasm32

crc32c_rs-0.0.1-cp314-cp314-musllinux_1_2_x86_64.whl (491.4 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

crc32c_rs-0.0.1-cp314-cp314-musllinux_1_2_riscv64.whl (427.1 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ riscv64

crc32c_rs-0.0.1-cp314-cp314-musllinux_1_2_ppc64le.whl (435.5 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ppc64le

crc32c_rs-0.0.1-cp314-cp314-musllinux_1_2_i686.whl (524.9 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ i686

crc32c_rs-0.0.1-cp314-cp314-musllinux_1_2_armv7l.whl (534.4 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARMv7l

crc32c_rs-0.0.1-cp314-cp314-musllinux_1_2_aarch64.whl (448.4 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

crc32c_rs-0.0.1-cp314-cp314-manylinux_2_31_riscv64.whl (249.8 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.31+ riscv64

crc32c_rs-0.0.1-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (278.9 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ x86-64

crc32c_rs-0.0.1-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl (239.8 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ s390x

crc32c_rs-0.0.1-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (227.0 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ppc64le

crc32c_rs-0.0.1-cp314-cp314-manylinux_2_17_ppc64.manylinux2014_ppc64.whl (227.3 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ppc64

crc32c_rs-0.0.1-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (208.5 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARMv7l

crc32c_rs-0.0.1-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (269.2 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARM64

crc32c_rs-0.0.1-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl (299.2 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.5+ i686

crc32c_rs-0.0.1-cp314-cp314-macosx_11_0_arm64.whl (245.5 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

crc32c_rs-0.0.1-cp314-cp314-macosx_10_12_x86_64.whl (265.0 kB view details)

Uploaded CPython 3.14macOS 10.12+ x86-64

crc32c_rs-0.0.1-cp314-cp314-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl (493.6 kB view details)

Uploaded CPython 3.14macOS 10.12+ universal2 (ARM64, x86-64)macOS 10.12+ x86-64macOS 11.0+ ARM64

crc32c_rs-0.0.1-cp313-cp313-win_arm64.whl (175.4 kB view details)

Uploaded CPython 3.13Windows ARM64

crc32c_rs-0.0.1-cp313-cp313-win_amd64.whl (187.5 kB view details)

Uploaded CPython 3.13Windows x86-64

crc32c_rs-0.0.1-cp313-cp313-win32.whl (173.2 kB view details)

Uploaded CPython 3.13Windows x86

crc32c_rs-0.0.1-cp313-cp313-pyemscripten_2025_0_wasm32.whl (70.0 kB view details)

Uploaded CPython 3.13PyEmscripten 2025.0 wasm32

crc32c_rs-0.0.1-cp313-cp313-musllinux_1_2_x86_64.whl (490.8 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

crc32c_rs-0.0.1-cp313-cp313-musllinux_1_2_riscv64.whl (426.6 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ riscv64

crc32c_rs-0.0.1-cp313-cp313-musllinux_1_2_ppc64le.whl (435.0 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ppc64le

crc32c_rs-0.0.1-cp313-cp313-musllinux_1_2_i686.whl (524.6 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ i686

crc32c_rs-0.0.1-cp313-cp313-musllinux_1_2_armv7l.whl (534.2 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARMv7l

crc32c_rs-0.0.1-cp313-cp313-musllinux_1_2_aarch64.whl (448.0 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

crc32c_rs-0.0.1-cp313-cp313-manylinux_2_31_riscv64.whl (249.2 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.31+ riscv64

crc32c_rs-0.0.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (278.4 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

crc32c_rs-0.0.1-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl (239.2 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ s390x

crc32c_rs-0.0.1-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (226.5 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ppc64le

crc32c_rs-0.0.1-cp313-cp313-manylinux_2_17_ppc64.manylinux2014_ppc64.whl (226.7 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ppc64

crc32c_rs-0.0.1-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (208.3 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARMv7l

crc32c_rs-0.0.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (268.7 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

crc32c_rs-0.0.1-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl (298.8 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.5+ i686

crc32c_rs-0.0.1-cp313-cp313-macosx_11_0_arm64.whl (246.0 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

crc32c_rs-0.0.1-cp313-cp313-macosx_10_12_x86_64.whl (265.7 kB view details)

Uploaded CPython 3.13macOS 10.12+ x86-64

crc32c_rs-0.0.1-cp313-cp313-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl (494.6 kB view details)

Uploaded CPython 3.13macOS 10.12+ universal2 (ARM64, x86-64)macOS 10.12+ x86-64macOS 11.0+ ARM64

crc32c_rs-0.0.1-cp312-cp312-win_arm64.whl (175.3 kB view details)

Uploaded CPython 3.12Windows ARM64

crc32c_rs-0.0.1-cp312-cp312-win_amd64.whl (187.3 kB view details)

Uploaded CPython 3.12Windows x86-64

crc32c_rs-0.0.1-cp312-cp312-win32.whl (173.1 kB view details)

Uploaded CPython 3.12Windows x86

crc32c_rs-0.0.1-cp312-cp312-musllinux_1_2_x86_64.whl (490.5 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

crc32c_rs-0.0.1-cp312-cp312-musllinux_1_2_riscv64.whl (426.5 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ riscv64

crc32c_rs-0.0.1-cp312-cp312-musllinux_1_2_ppc64le.whl (434.9 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ppc64le

crc32c_rs-0.0.1-cp312-cp312-musllinux_1_2_i686.whl (524.5 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ i686

crc32c_rs-0.0.1-cp312-cp312-musllinux_1_2_armv7l.whl (534.1 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

crc32c_rs-0.0.1-cp312-cp312-musllinux_1_2_aarch64.whl (447.8 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

crc32c_rs-0.0.1-cp312-cp312-manylinux_2_31_riscv64.whl (249.0 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.31+ riscv64

crc32c_rs-0.0.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (278.1 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

crc32c_rs-0.0.1-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl (239.0 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ s390x

crc32c_rs-0.0.1-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (226.3 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ppc64le

crc32c_rs-0.0.1-cp312-cp312-manylinux_2_17_ppc64.manylinux2014_ppc64.whl (226.4 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ppc64

crc32c_rs-0.0.1-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (208.2 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARMv7l

crc32c_rs-0.0.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (268.5 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

crc32c_rs-0.0.1-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl (298.8 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.5+ i686

crc32c_rs-0.0.1-cp312-cp312-macosx_11_0_arm64.whl (245.8 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

crc32c_rs-0.0.1-cp312-cp312-macosx_10_12_x86_64.whl (265.4 kB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

crc32c_rs-0.0.1-cp312-cp312-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl (494.0 kB view details)

Uploaded CPython 3.12macOS 10.12+ universal2 (ARM64, x86-64)macOS 10.12+ x86-64macOS 11.0+ ARM64

crc32c_rs-0.0.1-cp311-cp311-win_arm64.whl (174.2 kB view details)

Uploaded CPython 3.11Windows ARM64

crc32c_rs-0.0.1-cp311-cp311-win_amd64.whl (185.4 kB view details)

Uploaded CPython 3.11Windows x86-64

crc32c_rs-0.0.1-cp311-cp311-win32.whl (173.4 kB view details)

Uploaded CPython 3.11Windows x86

crc32c_rs-0.0.1-cp311-cp311-musllinux_1_2_x86_64.whl (488.4 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

crc32c_rs-0.0.1-cp311-cp311-musllinux_1_2_riscv64.whl (425.6 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ riscv64

crc32c_rs-0.0.1-cp311-cp311-musllinux_1_2_ppc64le.whl (434.2 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ppc64le

crc32c_rs-0.0.1-cp311-cp311-musllinux_1_2_i686.whl (525.9 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ i686

crc32c_rs-0.0.1-cp311-cp311-musllinux_1_2_armv7l.whl (534.4 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARMv7l

crc32c_rs-0.0.1-cp311-cp311-musllinux_1_2_aarch64.whl (446.9 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

crc32c_rs-0.0.1-cp311-cp311-manylinux_2_31_riscv64.whl (248.2 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.31+ riscv64

crc32c_rs-0.0.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (275.9 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

crc32c_rs-0.0.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl (237.4 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ s390x

crc32c_rs-0.0.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (225.3 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ppc64le

crc32c_rs-0.0.1-cp311-cp311-manylinux_2_17_ppc64.manylinux2014_ppc64.whl (226.1 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ppc64

crc32c_rs-0.0.1-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (208.5 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARMv7l

crc32c_rs-0.0.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (267.6 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

crc32c_rs-0.0.1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl (300.6 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.5+ i686

crc32c_rs-0.0.1-cp311-cp311-macosx_11_0_arm64.whl (247.7 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

crc32c_rs-0.0.1-cp311-cp311-macosx_10_12_x86_64.whl (265.5 kB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

crc32c_rs-0.0.1-cp311-cp311-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl (495.6 kB view details)

Uploaded CPython 3.11macOS 10.12+ universal2 (ARM64, x86-64)macOS 10.12+ x86-64macOS 11.0+ ARM64

File details

Details for the file crc32c_rs-0.0.1.tar.gz.

File metadata

  • Download URL: crc32c_rs-0.0.1.tar.gz
  • Upload date:
  • Size: 91.8 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.11 {"installer":{"name":"uv","version":"0.12.11","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for crc32c_rs-0.0.1.tar.gz
Algorithm Hash digest
SHA256 3b68a270a8cbe27f71811cfde5e8c30669a58b6efd3460f9695355848645a443
MD5 a76aee3c3173cc3ae726e379e981801d
BLAKE2b-256 3e503079b816d731a11dcf2134cb20ae43a5d21cf076a266a3bae869dab2b3b1

See more details on using hashes here.

Provenance

The following attestation bundles were made for crc32c_rs-0.0.1.tar.gz:

Publisher: ci.yaml on lava-sh/crc32c-rs

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file crc32c_rs-0.0.1-pp311-pypy311_pp73-win_amd64.whl.

File metadata

  • Download URL: crc32c_rs-0.0.1-pp311-pypy311_pp73-win_amd64.whl
  • Upload date:
  • Size: 186.1 kB
  • Tags: PyPy, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.11 {"installer":{"name":"uv","version":"0.12.11","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for crc32c_rs-0.0.1-pp311-pypy311_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 b405dd5696d8fa2e1837a8d397319b18174946664a2855f148107b867df3fe2a
MD5 1e461bc864e26301b5613f335acac051
BLAKE2b-256 6d3500e2d17ac65e5144fc616217c6a031c270939eea493e0ee2dfd92c11b6d7

See more details on using hashes here.

Provenance

The following attestation bundles were made for crc32c_rs-0.0.1-pp311-pypy311_pp73-win_amd64.whl:

Publisher: ci.yaml on lava-sh/crc32c-rs

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file crc32c_rs-0.0.1-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl.

File metadata

  • Download URL: crc32c_rs-0.0.1-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl
  • Upload date:
  • Size: 489.3 kB
  • Tags: PyPy, musllinux: musl 1.2+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.11 {"installer":{"name":"uv","version":"0.12.11","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for crc32c_rs-0.0.1-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 ea2c6849f7c41b98ed377e3b57f158a1968bddcb1bc5f190956e4fb913b59282
MD5 bf45a7c9e11f57279e77a45f69552a68
BLAKE2b-256 bb23fd80c73f2b017094f380db1076a5bf7fdf4e37118bfaaab96bfb7a7cc5c5

See more details on using hashes here.

Provenance

The following attestation bundles were made for crc32c_rs-0.0.1-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl:

Publisher: ci.yaml on lava-sh/crc32c-rs

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file crc32c_rs-0.0.1-pp311-pypy311_pp73-musllinux_1_2_riscv64.whl.

File metadata

  • Download URL: crc32c_rs-0.0.1-pp311-pypy311_pp73-musllinux_1_2_riscv64.whl
  • Upload date:
  • Size: 426.5 kB
  • Tags: PyPy, musllinux: musl 1.2+ riscv64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.11 {"installer":{"name":"uv","version":"0.12.11","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for crc32c_rs-0.0.1-pp311-pypy311_pp73-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 3251c9a72423f12a4fc86f3806ccdb035c69a173f338f8041d13b82f4c3c2142
MD5 9bb61b991fa51cf667f162da12166704
BLAKE2b-256 b78f2e8de2d7688883ed8813c6d8a7ea7ffdb7edbb673ec15a41622d294a7c2a

See more details on using hashes here.

Provenance

The following attestation bundles were made for crc32c_rs-0.0.1-pp311-pypy311_pp73-musllinux_1_2_riscv64.whl:

Publisher: ci.yaml on lava-sh/crc32c-rs

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file crc32c_rs-0.0.1-pp311-pypy311_pp73-musllinux_1_2_ppc64le.whl.

File metadata

  • Download URL: crc32c_rs-0.0.1-pp311-pypy311_pp73-musllinux_1_2_ppc64le.whl
  • Upload date:
  • Size: 435.1 kB
  • Tags: PyPy, musllinux: musl 1.2+ ppc64le
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.11 {"installer":{"name":"uv","version":"0.12.11","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for crc32c_rs-0.0.1-pp311-pypy311_pp73-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 9eff2c66a1173111f48e09611ed5ec82043e8533be33b97e39d520a6d7bec249
MD5 cdaeb28c90e03c3921b6a412a229cebb
BLAKE2b-256 80316b792c0a1bb5ca562fb154497773146f1bd8ee05ddfa6f1803fcf99baab3

See more details on using hashes here.

Provenance

The following attestation bundles were made for crc32c_rs-0.0.1-pp311-pypy311_pp73-musllinux_1_2_ppc64le.whl:

Publisher: ci.yaml on lava-sh/crc32c-rs

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file crc32c_rs-0.0.1-pp311-pypy311_pp73-musllinux_1_2_i686.whl.

File metadata

  • Download URL: crc32c_rs-0.0.1-pp311-pypy311_pp73-musllinux_1_2_i686.whl
  • Upload date:
  • Size: 527.1 kB
  • Tags: PyPy, musllinux: musl 1.2+ i686
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.11 {"installer":{"name":"uv","version":"0.12.11","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for crc32c_rs-0.0.1-pp311-pypy311_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 b6cfecbe07798a241636d9e905942b944eeacc0dca3795626ea9b91e9091d9b4
MD5 52ea5225e64c3e1c234974cdbcf363c0
BLAKE2b-256 c21eadc08dfd553a3285c07e323f13469dfc5495cae5ced2ee283fcdef01ac0a

See more details on using hashes here.

Provenance

The following attestation bundles were made for crc32c_rs-0.0.1-pp311-pypy311_pp73-musllinux_1_2_i686.whl:

Publisher: ci.yaml on lava-sh/crc32c-rs

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file crc32c_rs-0.0.1-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl.

File metadata

  • Download URL: crc32c_rs-0.0.1-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl
  • Upload date:
  • Size: 535.3 kB
  • Tags: PyPy, musllinux: musl 1.2+ ARMv7l
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.11 {"installer":{"name":"uv","version":"0.12.11","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for crc32c_rs-0.0.1-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 21115e398d547d8d59082ac8328af41dea8e3bcf3a471495eb479f2cc7ddc3b5
MD5 376e93d014242f14e8cb2d67f313344b
BLAKE2b-256 794272384e997445e4aa27e740e317944800dcc3ccb094934a3cb848422fcbf1

See more details on using hashes here.

Provenance

The following attestation bundles were made for crc32c_rs-0.0.1-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl:

Publisher: ci.yaml on lava-sh/crc32c-rs

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file crc32c_rs-0.0.1-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl.

File metadata

  • Download URL: crc32c_rs-0.0.1-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl
  • Upload date:
  • Size: 447.4 kB
  • Tags: PyPy, musllinux: musl 1.2+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.11 {"installer":{"name":"uv","version":"0.12.11","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for crc32c_rs-0.0.1-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 15ade5487260aa00dbc122d700cc5abc22bf708885125afab2a65b90c1cc5cce
MD5 69da601909efb481b016c92a700fd71e
BLAKE2b-256 9af4357b74d7a5bb6f5cc2fa30e23e5d9e7cbf3f91e3e9217c036b9aa0a2cf6f

See more details on using hashes here.

Provenance

The following attestation bundles were made for crc32c_rs-0.0.1-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl:

Publisher: ci.yaml on lava-sh/crc32c-rs

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file crc32c_rs-0.0.1-pp311-pypy311_pp73-manylinux_2_31_riscv64.whl.

File metadata

  • Download URL: crc32c_rs-0.0.1-pp311-pypy311_pp73-manylinux_2_31_riscv64.whl
  • Upload date:
  • Size: 249.0 kB
  • Tags: PyPy, manylinux: glibc 2.31+ riscv64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.11 {"installer":{"name":"uv","version":"0.12.11","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for crc32c_rs-0.0.1-pp311-pypy311_pp73-manylinux_2_31_riscv64.whl
Algorithm Hash digest
SHA256 50d6c8d0d7c6dade9b0e8c4396b23dd6e4bf77908ab3481123d9833ca3417899
MD5 4e60ab45dc52633a35331e565df78308
BLAKE2b-256 10b7f9bde3e453fde3eff8fe7ed022432691baa166488c40d757e66d50cd6601

See more details on using hashes here.

Provenance

The following attestation bundles were made for crc32c_rs-0.0.1-pp311-pypy311_pp73-manylinux_2_31_riscv64.whl:

Publisher: ci.yaml on lava-sh/crc32c-rs

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file crc32c_rs-0.0.1-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

  • Download URL: crc32c_rs-0.0.1-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
  • Upload date:
  • Size: 276.9 kB
  • Tags: PyPy, manylinux: glibc 2.17+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.11 {"installer":{"name":"uv","version":"0.12.11","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for crc32c_rs-0.0.1-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 0e5b1566905270f2efff9bb56f489c8309c7f96ce351dad546079111a0c89c21
MD5 e300302de8c614d4681b5068aeec15b5
BLAKE2b-256 b577437de6e38616b23cf40a3fd8e39716468257f674b8533838f589a0cc5a09

See more details on using hashes here.

Provenance

The following attestation bundles were made for crc32c_rs-0.0.1-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: ci.yaml on lava-sh/crc32c-rs

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file crc32c_rs-0.0.1-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

  • Download URL: crc32c_rs-0.0.1-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
  • Upload date:
  • Size: 238.2 kB
  • Tags: PyPy, manylinux: glibc 2.17+ s390x
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.11 {"installer":{"name":"uv","version":"0.12.11","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for crc32c_rs-0.0.1-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 4fb9107aa221e8352e42d9a9375d9e9b10a985c20721aae7d184a1f28c848a5c
MD5 56c0fad5c75c179d8d098706cf9a2fd0
BLAKE2b-256 b5d69bf6abb652e77105af29fbe2b3bd9a324674d7e878af676b40b490f6b654

See more details on using hashes here.

Provenance

The following attestation bundles were made for crc32c_rs-0.0.1-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl:

Publisher: ci.yaml on lava-sh/crc32c-rs

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file crc32c_rs-0.0.1-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

  • Download URL: crc32c_rs-0.0.1-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
  • Upload date:
  • Size: 226.3 kB
  • Tags: PyPy, manylinux: glibc 2.17+ ppc64le
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.11 {"installer":{"name":"uv","version":"0.12.11","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for crc32c_rs-0.0.1-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 c447bb8864d050902cafdfe0ae6b4475a0eebc8124d8433e96e66306bd000703
MD5 199ce125ef0bebfdbaee32877c1d15f4
BLAKE2b-256 62dd3494bf87cf5e6346894741a56b066521514020e76e068d5944229276b401

See more details on using hashes here.

Provenance

The following attestation bundles were made for crc32c_rs-0.0.1-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl:

Publisher: ci.yaml on lava-sh/crc32c-rs

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file crc32c_rs-0.0.1-pp311-pypy311_pp73-manylinux_2_17_ppc64.manylinux2014_ppc64.whl.

File metadata

  • Download URL: crc32c_rs-0.0.1-pp311-pypy311_pp73-manylinux_2_17_ppc64.manylinux2014_ppc64.whl
  • Upload date:
  • Size: 227.0 kB
  • Tags: PyPy, manylinux: glibc 2.17+ ppc64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.11 {"installer":{"name":"uv","version":"0.12.11","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for crc32c_rs-0.0.1-pp311-pypy311_pp73-manylinux_2_17_ppc64.manylinux2014_ppc64.whl
Algorithm Hash digest
SHA256 333e0702b6ef8212b657b0fdb4a827823ed55aac789512ed08ac5c3bcc5c1814
MD5 38fac74adb00d5ceb10b01d18f8d47a8
BLAKE2b-256 74886e50ff8c7a58a054a3c4868b7cf4c278cb97c87213e9f2e7d9eadf3f3b67

See more details on using hashes here.

Provenance

The following attestation bundles were made for crc32c_rs-0.0.1-pp311-pypy311_pp73-manylinux_2_17_ppc64.manylinux2014_ppc64.whl:

Publisher: ci.yaml on lava-sh/crc32c-rs

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file crc32c_rs-0.0.1-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

  • Download URL: crc32c_rs-0.0.1-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
  • Upload date:
  • Size: 209.4 kB
  • Tags: PyPy, manylinux: glibc 2.17+ ARMv7l
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.11 {"installer":{"name":"uv","version":"0.12.11","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for crc32c_rs-0.0.1-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 18d148037f3ba471526bee54c74b47c92b840c764faffd4bd3908bc54d6f71e2
MD5 6bcc11398b48846a4a7cbf76ad27f8bf
BLAKE2b-256 aa111bbf2c683b0957724c0b9844c673a767ea769dcc299dc37bb9be020a92a7

See more details on using hashes here.

Provenance

The following attestation bundles were made for crc32c_rs-0.0.1-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl:

Publisher: ci.yaml on lava-sh/crc32c-rs

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file crc32c_rs-0.0.1-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

  • Download URL: crc32c_rs-0.0.1-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
  • Upload date:
  • Size: 268.1 kB
  • Tags: PyPy, manylinux: glibc 2.17+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.11 {"installer":{"name":"uv","version":"0.12.11","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for crc32c_rs-0.0.1-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 f4da645bf5400f7936c316a5c8d6f775ac1c3756774330ae0db81acdf53e3cd6
MD5 0703bed4bfc70ed3a3158b536b42def0
BLAKE2b-256 18874e3db6b6abfa994b7c11fa673d7de0d1faf92f2f8a86e04fc34cb3325d26

See more details on using hashes here.

Provenance

The following attestation bundles were made for crc32c_rs-0.0.1-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: ci.yaml on lava-sh/crc32c-rs

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file crc32c_rs-0.0.1-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

  • Download URL: crc32c_rs-0.0.1-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl
  • Upload date:
  • Size: 301.8 kB
  • Tags: PyPy, manylinux: glibc 2.5+ i686
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.11 {"installer":{"name":"uv","version":"0.12.11","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for crc32c_rs-0.0.1-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 f68f434683b1930162c9837c0038eadfbc23dc62e1372dbf82838608a2b6b85c
MD5 bc024a629c2a5a18d0a6c38ff24659f9
BLAKE2b-256 2adedbcb9e1ad1dc43970e6b9fb28c3558471b705b64e38aaf4d157a103b782b

See more details on using hashes here.

Provenance

The following attestation bundles were made for crc32c_rs-0.0.1-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl:

Publisher: ci.yaml on lava-sh/crc32c-rs

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file crc32c_rs-0.0.1-pp311-pypy311_pp73-macosx_11_0_arm64.whl.

File metadata

  • Download URL: crc32c_rs-0.0.1-pp311-pypy311_pp73-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 248.6 kB
  • Tags: PyPy, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.11 {"installer":{"name":"uv","version":"0.12.11","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for crc32c_rs-0.0.1-pp311-pypy311_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 235208e677165ecf08964f887265cf4c9b19b9ae20be79c716f909b584bcd508
MD5 3bcb73a059e2ca8cf6153cbc775693f0
BLAKE2b-256 a4ed7c9e3b3c5b1ab7f4cd9e37707c7be74ec223c6824d56c2e54e0501daaa68

See more details on using hashes here.

Provenance

The following attestation bundles were made for crc32c_rs-0.0.1-pp311-pypy311_pp73-macosx_11_0_arm64.whl:

Publisher: ci.yaml on lava-sh/crc32c-rs

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file crc32c_rs-0.0.1-pp311-pypy311_pp73-macosx_10_12_x86_64.whl.

File metadata

  • Download URL: crc32c_rs-0.0.1-pp311-pypy311_pp73-macosx_10_12_x86_64.whl
  • Upload date:
  • Size: 266.9 kB
  • Tags: PyPy, macOS 10.12+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.11 {"installer":{"name":"uv","version":"0.12.11","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for crc32c_rs-0.0.1-pp311-pypy311_pp73-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 2b59d2f5021d86b5fbf7c086e1fced1e6dca3252b66a625463d1dc304110c6f8
MD5 72fbe1d84933030bdf44faae1f4c65a9
BLAKE2b-256 e16b2621268a6eb6e38b352121801e50e37a334abf69e321e029880d5117025f

See more details on using hashes here.

Provenance

The following attestation bundles were made for crc32c_rs-0.0.1-pp311-pypy311_pp73-macosx_10_12_x86_64.whl:

Publisher: ci.yaml on lava-sh/crc32c-rs

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file crc32c_rs-0.0.1-pp311-pypy311_pp73-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl.

File metadata

  • Download URL: crc32c_rs-0.0.1-pp311-pypy311_pp73-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl
  • Upload date:
  • Size: 497.7 kB
  • Tags: PyPy, macOS 10.12+ universal2 (ARM64, x86-64), macOS 10.12+ x86-64, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.11 {"installer":{"name":"uv","version":"0.12.11","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for crc32c_rs-0.0.1-pp311-pypy311_pp73-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl
Algorithm Hash digest
SHA256 bcc98b8306ef0bfb6729b7621b70d0eb065f48d58da1ee544faf1cf93f40b00e
MD5 1cb7655caac52b9ca8cad699a3f577d3
BLAKE2b-256 79db40ebe0987f14f8fa6ecf8af0d8ef66b35233cc7d035d5599ccaa27ae5911

See more details on using hashes here.

Provenance

The following attestation bundles were made for crc32c_rs-0.0.1-pp311-pypy311_pp73-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl:

Publisher: ci.yaml on lava-sh/crc32c-rs

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file crc32c_rs-0.0.1-cp315-cp315t-win_arm64.whl.

File metadata

  • Download URL: crc32c_rs-0.0.1-cp315-cp315t-win_arm64.whl
  • Upload date:
  • Size: 174.2 kB
  • Tags: CPython 3.15t, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.11 {"installer":{"name":"uv","version":"0.12.11","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for crc32c_rs-0.0.1-cp315-cp315t-win_arm64.whl
Algorithm Hash digest
SHA256 f074fe2cde4fe7b8b9c9938870581d728e6586867fcdb985e7d768e72ec27652
MD5 20bc2070014e806e80cf714a2cdb8fc5
BLAKE2b-256 2dc87609e6e682a5f1d4b5f40b6deb275b0e202875c941d53edaadf7f0092b33

See more details on using hashes here.

Provenance

The following attestation bundles were made for crc32c_rs-0.0.1-cp315-cp315t-win_arm64.whl:

Publisher: ci.yaml on lava-sh/crc32c-rs

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file crc32c_rs-0.0.1-cp315-cp315t-win_amd64.whl.

File metadata

  • Download URL: crc32c_rs-0.0.1-cp315-cp315t-win_amd64.whl
  • Upload date:
  • Size: 186.4 kB
  • Tags: CPython 3.15t, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.11 {"installer":{"name":"uv","version":"0.12.11","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for crc32c_rs-0.0.1-cp315-cp315t-win_amd64.whl
Algorithm Hash digest
SHA256 53d539d4ae303313d08b5012afed61a88307cf794dca551f4a4938e0277c39d6
MD5 5045b9e556624b7e36dad0f55ed178a1
BLAKE2b-256 c968c8795a9a87f9bd56f18d74701e82f615840f4a75d7db2fa67b5393db55bd

See more details on using hashes here.

Provenance

The following attestation bundles were made for crc32c_rs-0.0.1-cp315-cp315t-win_amd64.whl:

Publisher: ci.yaml on lava-sh/crc32c-rs

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file crc32c_rs-0.0.1-cp315-cp315t-win32.whl.

File metadata

  • Download URL: crc32c_rs-0.0.1-cp315-cp315t-win32.whl
  • Upload date:
  • Size: 171.9 kB
  • Tags: CPython 3.15t, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.11 {"installer":{"name":"uv","version":"0.12.11","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for crc32c_rs-0.0.1-cp315-cp315t-win32.whl
Algorithm Hash digest
SHA256 1df7488284ab387535758c35bbba9aaebbd092217c1ba698f30038766d51bc94
MD5 c39ae9baac246f0e13bf1544a44dbd7c
BLAKE2b-256 e7c02646cc03d38eb51abfde867a5146d05f5467f015081ec0cb17000404fcdb

See more details on using hashes here.

Provenance

The following attestation bundles were made for crc32c_rs-0.0.1-cp315-cp315t-win32.whl:

Publisher: ci.yaml on lava-sh/crc32c-rs

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file crc32c_rs-0.0.1-cp315-cp315t-musllinux_1_2_x86_64.whl.

File metadata

  • Download URL: crc32c_rs-0.0.1-cp315-cp315t-musllinux_1_2_x86_64.whl
  • Upload date:
  • Size: 490.1 kB
  • Tags: CPython 3.15t, musllinux: musl 1.2+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.11 {"installer":{"name":"uv","version":"0.12.11","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for crc32c_rs-0.0.1-cp315-cp315t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 16946de59bbb8ee3ab339d9faf0d76d422dc415c8681694ba2325ab14b2501c1
MD5 5d12d696a815da1f3df45133b0a70028
BLAKE2b-256 cc67b0072c7f2deff0e05e76cec2dd5bbbf6aac8e825e6e3c4e388e7e1aa5767

See more details on using hashes here.

Provenance

The following attestation bundles were made for crc32c_rs-0.0.1-cp315-cp315t-musllinux_1_2_x86_64.whl:

Publisher: ci.yaml on lava-sh/crc32c-rs

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file crc32c_rs-0.0.1-cp315-cp315t-musllinux_1_2_riscv64.whl.

File metadata

  • Download URL: crc32c_rs-0.0.1-cp315-cp315t-musllinux_1_2_riscv64.whl
  • Upload date:
  • Size: 426.3 kB
  • Tags: CPython 3.15t, musllinux: musl 1.2+ riscv64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.11 {"installer":{"name":"uv","version":"0.12.11","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for crc32c_rs-0.0.1-cp315-cp315t-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 991fcb8766fa2b0706e6f7be4e4250e944dd8317250fcdc7a17a7024656e9304
MD5 842dbca036f34e3bc1cf04fcff979f61
BLAKE2b-256 4a87a6dec956298cc78071e86073396df00289c44c6cd50e15e3813a8780c0df

See more details on using hashes here.

Provenance

The following attestation bundles were made for crc32c_rs-0.0.1-cp315-cp315t-musllinux_1_2_riscv64.whl:

Publisher: ci.yaml on lava-sh/crc32c-rs

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file crc32c_rs-0.0.1-cp315-cp315t-musllinux_1_2_ppc64le.whl.

File metadata

  • Download URL: crc32c_rs-0.0.1-cp315-cp315t-musllinux_1_2_ppc64le.whl
  • Upload date:
  • Size: 434.8 kB
  • Tags: CPython 3.15t, musllinux: musl 1.2+ ppc64le
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.11 {"installer":{"name":"uv","version":"0.12.11","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for crc32c_rs-0.0.1-cp315-cp315t-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 0f4bfe4ab75c9a2d88899e3cb879feb2e30df02305b2b19c1310ecf3b31aff4b
MD5 4e677d301bf0d43d9e840052a9bd9622
BLAKE2b-256 ba1794f5c3a57d35b5247708cf9a55fb1f814acafa69d80f7f3662fdd47eaffc

See more details on using hashes here.

Provenance

The following attestation bundles were made for crc32c_rs-0.0.1-cp315-cp315t-musllinux_1_2_ppc64le.whl:

Publisher: ci.yaml on lava-sh/crc32c-rs

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file crc32c_rs-0.0.1-cp315-cp315t-musllinux_1_2_i686.whl.

File metadata

  • Download URL: crc32c_rs-0.0.1-cp315-cp315t-musllinux_1_2_i686.whl
  • Upload date:
  • Size: 524.0 kB
  • Tags: CPython 3.15t, musllinux: musl 1.2+ i686
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.11 {"installer":{"name":"uv","version":"0.12.11","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for crc32c_rs-0.0.1-cp315-cp315t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 1c107d8bc0faabf194baa0c797608724c688796c871970e5fecb5c82bef07015
MD5 f3c21d3c64a79ea6bd838882166338b1
BLAKE2b-256 89e48fa6a252acbd2ce2604fd430f20277ee87fbfe7b6d0b21e611a4f6325d84

See more details on using hashes here.

Provenance

The following attestation bundles were made for crc32c_rs-0.0.1-cp315-cp315t-musllinux_1_2_i686.whl:

Publisher: ci.yaml on lava-sh/crc32c-rs

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file crc32c_rs-0.0.1-cp315-cp315t-musllinux_1_2_armv7l.whl.

File metadata

  • Download URL: crc32c_rs-0.0.1-cp315-cp315t-musllinux_1_2_armv7l.whl
  • Upload date:
  • Size: 533.4 kB
  • Tags: CPython 3.15t, musllinux: musl 1.2+ ARMv7l
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.11 {"installer":{"name":"uv","version":"0.12.11","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for crc32c_rs-0.0.1-cp315-cp315t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 a8c55bbc614ce1df743b41bc87a030966e7392df807e6283d11c1db836699c85
MD5 e1451b3751954225f47a5ac3b0f9caff
BLAKE2b-256 a3b90e7d71531b9d32195b4eeeec2fca1b2cef72fe6baa61b1194255ffcbc8ae

See more details on using hashes here.

Provenance

The following attestation bundles were made for crc32c_rs-0.0.1-cp315-cp315t-musllinux_1_2_armv7l.whl:

Publisher: ci.yaml on lava-sh/crc32c-rs

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file crc32c_rs-0.0.1-cp315-cp315t-musllinux_1_2_aarch64.whl.

File metadata

  • Download URL: crc32c_rs-0.0.1-cp315-cp315t-musllinux_1_2_aarch64.whl
  • Upload date:
  • Size: 447.9 kB
  • Tags: CPython 3.15t, musllinux: musl 1.2+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.11 {"installer":{"name":"uv","version":"0.12.11","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for crc32c_rs-0.0.1-cp315-cp315t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 bbde24cd1d601b09f02381c83c8932106d3dfc849d81e2490a699c0098b9a4e9
MD5 fc082485afdbce5408d3f143016d627b
BLAKE2b-256 547982ae51bf5e3bb94a3d096c09111561d9ae90f595511f3cdf69944a914d47

See more details on using hashes here.

Provenance

The following attestation bundles were made for crc32c_rs-0.0.1-cp315-cp315t-musllinux_1_2_aarch64.whl:

Publisher: ci.yaml on lava-sh/crc32c-rs

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file crc32c_rs-0.0.1-cp315-cp315t-manylinux_2_31_riscv64.whl.

File metadata

  • Download URL: crc32c_rs-0.0.1-cp315-cp315t-manylinux_2_31_riscv64.whl
  • Upload date:
  • Size: 248.8 kB
  • Tags: CPython 3.15t, manylinux: glibc 2.31+ riscv64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.11 {"installer":{"name":"uv","version":"0.12.11","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for crc32c_rs-0.0.1-cp315-cp315t-manylinux_2_31_riscv64.whl
Algorithm Hash digest
SHA256 cfe4cdca68e11aa76c7e2be70b8fad8151de77fa49fb3b109e9784ccdd7d6a73
MD5 342ad7e41ed60078574c665815081506
BLAKE2b-256 a7c14fc7df8ff39f216fd0dc61ea83c0fb9f08f9c8476d5dbbac7a75c04029b3

See more details on using hashes here.

Provenance

The following attestation bundles were made for crc32c_rs-0.0.1-cp315-cp315t-manylinux_2_31_riscv64.whl:

Publisher: ci.yaml on lava-sh/crc32c-rs

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file crc32c_rs-0.0.1-cp315-cp315t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

  • Download URL: crc32c_rs-0.0.1-cp315-cp315t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
  • Upload date:
  • Size: 277.8 kB
  • Tags: CPython 3.15t, manylinux: glibc 2.17+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.11 {"installer":{"name":"uv","version":"0.12.11","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for crc32c_rs-0.0.1-cp315-cp315t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 e5ee4c7bb72f58be089971eb9cab92c837d961f1dca9a479dc95120fd95fa6b5
MD5 19b004f985d73e74b65b2583d0abf3f1
BLAKE2b-256 c059b6d87dbb8bf307b033e39165528b0e1b0a4b0e1a6657397bd101520f657d

See more details on using hashes here.

Provenance

The following attestation bundles were made for crc32c_rs-0.0.1-cp315-cp315t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: ci.yaml on lava-sh/crc32c-rs

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file crc32c_rs-0.0.1-cp315-cp315t-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

  • Download URL: crc32c_rs-0.0.1-cp315-cp315t-manylinux_2_17_s390x.manylinux2014_s390x.whl
  • Upload date:
  • Size: 239.1 kB
  • Tags: CPython 3.15t, manylinux: glibc 2.17+ s390x
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.11 {"installer":{"name":"uv","version":"0.12.11","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for crc32c_rs-0.0.1-cp315-cp315t-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 5e3d0f6a13d041d5718747b9af34664830705a1335beac1eb35ab57da01dd84a
MD5 2a46b40dd397796296e0198095b68568
BLAKE2b-256 d4d8e013be8eba6c0807cf17e56e080512e44e10d487d5d168c82d57ff6fac61

See more details on using hashes here.

Provenance

The following attestation bundles were made for crc32c_rs-0.0.1-cp315-cp315t-manylinux_2_17_s390x.manylinux2014_s390x.whl:

Publisher: ci.yaml on lava-sh/crc32c-rs

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file crc32c_rs-0.0.1-cp315-cp315t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

  • Download URL: crc32c_rs-0.0.1-cp315-cp315t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
  • Upload date:
  • Size: 226.0 kB
  • Tags: CPython 3.15t, manylinux: glibc 2.17+ ppc64le
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.11 {"installer":{"name":"uv","version":"0.12.11","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for crc32c_rs-0.0.1-cp315-cp315t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 ee53079788cd4ca861a98d490ae48690e66f07e9f4af2e02818dc9e2fc9e3575
MD5 bef1093aff99b48d28093c1e7c6477b7
BLAKE2b-256 96565461f331a03766e8edc6d738ad1a322f2c4d351fa82d8d5249c225117610

See more details on using hashes here.

Provenance

The following attestation bundles were made for crc32c_rs-0.0.1-cp315-cp315t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl:

Publisher: ci.yaml on lava-sh/crc32c-rs

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file crc32c_rs-0.0.1-cp315-cp315t-manylinux_2_17_ppc64.manylinux2014_ppc64.whl.

File metadata

  • Download URL: crc32c_rs-0.0.1-cp315-cp315t-manylinux_2_17_ppc64.manylinux2014_ppc64.whl
  • Upload date:
  • Size: 226.5 kB
  • Tags: CPython 3.15t, manylinux: glibc 2.17+ ppc64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.11 {"installer":{"name":"uv","version":"0.12.11","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for crc32c_rs-0.0.1-cp315-cp315t-manylinux_2_17_ppc64.manylinux2014_ppc64.whl
Algorithm Hash digest
SHA256 bcd954df0ff4454c10d5b79b08a9fafe591de8f111a8e0bb77fb856fccec8f9f
MD5 e34689bb066efae6752e7e51be421d1d
BLAKE2b-256 b165f5d84aae6100f726ef4cb4e62af2065ef1f13639c09002be5fd2deef8251

See more details on using hashes here.

Provenance

The following attestation bundles were made for crc32c_rs-0.0.1-cp315-cp315t-manylinux_2_17_ppc64.manylinux2014_ppc64.whl:

Publisher: ci.yaml on lava-sh/crc32c-rs

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file crc32c_rs-0.0.1-cp315-cp315t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

  • Download URL: crc32c_rs-0.0.1-cp315-cp315t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
  • Upload date:
  • Size: 207.4 kB
  • Tags: CPython 3.15t, manylinux: glibc 2.17+ ARMv7l
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.11 {"installer":{"name":"uv","version":"0.12.11","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for crc32c_rs-0.0.1-cp315-cp315t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 f2e3e8b291a4574aa64fb3f53a6ce278a78f180dc4c6ae72e5c04fa2227a5e30
MD5 9412ade5c12aa01c2dd9f000a6b10107
BLAKE2b-256 fe7577f7d50a48e4d46c4f2abe671ff325fa9fc00cbc27e05208247aec0bb9f4

See more details on using hashes here.

Provenance

The following attestation bundles were made for crc32c_rs-0.0.1-cp315-cp315t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl:

Publisher: ci.yaml on lava-sh/crc32c-rs

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file crc32c_rs-0.0.1-cp315-cp315t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

  • Download URL: crc32c_rs-0.0.1-cp315-cp315t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
  • Upload date:
  • Size: 268.3 kB
  • Tags: CPython 3.15t, manylinux: glibc 2.17+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.11 {"installer":{"name":"uv","version":"0.12.11","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for crc32c_rs-0.0.1-cp315-cp315t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 90b9bdc14a68e95afeb2463778393be05fd1c0f37505e4946e0783ddbbc7d1d5
MD5 87832b32d95ca3f986ee5f3ee29ed0c0
BLAKE2b-256 6e170acda489aea7639c84959c4d60bc2de4ef6b88af4cccd49349f47fb22957

See more details on using hashes here.

Provenance

The following attestation bundles were made for crc32c_rs-0.0.1-cp315-cp315t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: ci.yaml on lava-sh/crc32c-rs

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file crc32c_rs-0.0.1-cp315-cp315t-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

  • Download URL: crc32c_rs-0.0.1-cp315-cp315t-manylinux_2_5_i686.manylinux1_i686.whl
  • Upload date:
  • Size: 298.3 kB
  • Tags: CPython 3.15t, manylinux: glibc 2.5+ i686
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.11 {"installer":{"name":"uv","version":"0.12.11","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for crc32c_rs-0.0.1-cp315-cp315t-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 459df68623bda85f80abc8b3c5dec1dc6cc41f144c2bda73e8e6616fbba6dfd7
MD5 856fb1860c6152d3e06b695f93547141
BLAKE2b-256 c7ba0339f23e6c82c6ab0a6b482bb3e71b897e856320279225d9640b1eb0754b

See more details on using hashes here.

Provenance

The following attestation bundles were made for crc32c_rs-0.0.1-cp315-cp315t-manylinux_2_5_i686.manylinux1_i686.whl:

Publisher: ci.yaml on lava-sh/crc32c-rs

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file crc32c_rs-0.0.1-cp315-cp315t-macosx_11_0_arm64.whl.

File metadata

  • Download URL: crc32c_rs-0.0.1-cp315-cp315t-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 244.7 kB
  • Tags: CPython 3.15t, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.11 {"installer":{"name":"uv","version":"0.12.11","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for crc32c_rs-0.0.1-cp315-cp315t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ce8cc62bf454e4a1340cc5544c1f60222784e31eada6606372de5618bc09a1b1
MD5 98935e8144b343d5f51a86f5bbb0ba5a
BLAKE2b-256 abe931aacfe8784923e39166200636eecfa48460adf975c088284c9d48854ea4

See more details on using hashes here.

Provenance

The following attestation bundles were made for crc32c_rs-0.0.1-cp315-cp315t-macosx_11_0_arm64.whl:

Publisher: ci.yaml on lava-sh/crc32c-rs

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file crc32c_rs-0.0.1-cp315-cp315t-macosx_10_12_x86_64.whl.

File metadata

  • Download URL: crc32c_rs-0.0.1-cp315-cp315t-macosx_10_12_x86_64.whl
  • Upload date:
  • Size: 264.6 kB
  • Tags: CPython 3.15t, macOS 10.12+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.11 {"installer":{"name":"uv","version":"0.12.11","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for crc32c_rs-0.0.1-cp315-cp315t-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 8fa7475ee3d52f37aa51b231c280b324685954855ceb56e0567e8d8f0ceb64ce
MD5 41fee953c12879f7a3e4eca4fd577818
BLAKE2b-256 670039a66a8707350985c2aa5a8b251e7524c5029a97c4d16f85a6d51f753578

See more details on using hashes here.

Provenance

The following attestation bundles were made for crc32c_rs-0.0.1-cp315-cp315t-macosx_10_12_x86_64.whl:

Publisher: ci.yaml on lava-sh/crc32c-rs

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file crc32c_rs-0.0.1-cp315-cp315t-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl.

File metadata

  • Download URL: crc32c_rs-0.0.1-cp315-cp315t-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl
  • Upload date:
  • Size: 492.4 kB
  • Tags: CPython 3.15t, macOS 10.12+ universal2 (ARM64, x86-64), macOS 10.12+ x86-64, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.11 {"installer":{"name":"uv","version":"0.12.11","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for crc32c_rs-0.0.1-cp315-cp315t-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl
Algorithm Hash digest
SHA256 990db095777fededf5a78cdd133656d1a5753775f8d3fadf955fa47a1cb70770
MD5 f02bbb1d7bee88c9022d3ae263f0111b
BLAKE2b-256 64503855098ce8bd2ba1f5bce5426611b8695d7941c0755e909a25785e0a6517

See more details on using hashes here.

Provenance

The following attestation bundles were made for crc32c_rs-0.0.1-cp315-cp315t-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl:

Publisher: ci.yaml on lava-sh/crc32c-rs

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file crc32c_rs-0.0.1-cp315-cp315-win_arm64.whl.

File metadata

  • Download URL: crc32c_rs-0.0.1-cp315-cp315-win_arm64.whl
  • Upload date:
  • Size: 175.2 kB
  • Tags: CPython 3.15, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.11 {"installer":{"name":"uv","version":"0.12.11","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for crc32c_rs-0.0.1-cp315-cp315-win_arm64.whl
Algorithm Hash digest
SHA256 fa61807b04753bf4bea3dce69d3942e426299dd0f353cb99f39cb875333f203b
MD5 5903490160d1383a42b9e374ed93256c
BLAKE2b-256 2a9f5392d4beda9e50a2d34a1b938b5667aca40e7064132991060432521f9d3b

See more details on using hashes here.

Provenance

The following attestation bundles were made for crc32c_rs-0.0.1-cp315-cp315-win_arm64.whl:

Publisher: ci.yaml on lava-sh/crc32c-rs

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file crc32c_rs-0.0.1-cp315-cp315-win_amd64.whl.

File metadata

  • Download URL: crc32c_rs-0.0.1-cp315-cp315-win_amd64.whl
  • Upload date:
  • Size: 187.2 kB
  • Tags: CPython 3.15, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.11 {"installer":{"name":"uv","version":"0.12.11","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for crc32c_rs-0.0.1-cp315-cp315-win_amd64.whl
Algorithm Hash digest
SHA256 bb6114ef1b6dce83d0610f334100f001b7ae5365bab76165abba34163b1c9abc
MD5 104b7af243f40d4ae9192dac3439ccfc
BLAKE2b-256 662c47e42749abcc068c2d2de0346f4eb98854ba3e69215c1bd95cd890db92c9

See more details on using hashes here.

Provenance

The following attestation bundles were made for crc32c_rs-0.0.1-cp315-cp315-win_amd64.whl:

Publisher: ci.yaml on lava-sh/crc32c-rs

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file crc32c_rs-0.0.1-cp315-cp315-win32.whl.

File metadata

  • Download URL: crc32c_rs-0.0.1-cp315-cp315-win32.whl
  • Upload date:
  • Size: 172.7 kB
  • Tags: CPython 3.15, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.11 {"installer":{"name":"uv","version":"0.12.11","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for crc32c_rs-0.0.1-cp315-cp315-win32.whl
Algorithm Hash digest
SHA256 1bd766ce5c44db14df740caa89e6120413eae504b8dab400c207418298e91f8d
MD5 b3313960aea623014692969d2090995f
BLAKE2b-256 5c26ead4783d31e99bffb06c04a3e13a9f32bd9867f7329294985b3f3725d26c

See more details on using hashes here.

Provenance

The following attestation bundles were made for crc32c_rs-0.0.1-cp315-cp315-win32.whl:

Publisher: ci.yaml on lava-sh/crc32c-rs

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file crc32c_rs-0.0.1-cp315-cp315-musllinux_1_2_x86_64.whl.

File metadata

  • Download URL: crc32c_rs-0.0.1-cp315-cp315-musllinux_1_2_x86_64.whl
  • Upload date:
  • Size: 491.6 kB
  • Tags: CPython 3.15, musllinux: musl 1.2+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.11 {"installer":{"name":"uv","version":"0.12.11","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for crc32c_rs-0.0.1-cp315-cp315-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 6f8acd3207b82cd4997a5db6aa1aebc642a4ecc59b12860af6599627ff0b86c0
MD5 fca8a83ef7aadf202c844199eb95034f
BLAKE2b-256 f96a2f3efae7f5c76f9997aab999779e81742d2c4eb17b0b84e15d0e64629a73

See more details on using hashes here.

Provenance

The following attestation bundles were made for crc32c_rs-0.0.1-cp315-cp315-musllinux_1_2_x86_64.whl:

Publisher: ci.yaml on lava-sh/crc32c-rs

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file crc32c_rs-0.0.1-cp315-cp315-musllinux_1_2_riscv64.whl.

File metadata

  • Download URL: crc32c_rs-0.0.1-cp315-cp315-musllinux_1_2_riscv64.whl
  • Upload date:
  • Size: 427.3 kB
  • Tags: CPython 3.15, musllinux: musl 1.2+ riscv64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.11 {"installer":{"name":"uv","version":"0.12.11","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for crc32c_rs-0.0.1-cp315-cp315-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 874a29766529136e795b21ad394f7d2d065a242c26e83509cf7f761a90674e52
MD5 bee3d1743872ad00e480503760bb30e5
BLAKE2b-256 f856eae1499341bbd206c6ff369fdc40a6d0bbca40b34dcab37776e7a211f515

See more details on using hashes here.

Provenance

The following attestation bundles were made for crc32c_rs-0.0.1-cp315-cp315-musllinux_1_2_riscv64.whl:

Publisher: ci.yaml on lava-sh/crc32c-rs

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file crc32c_rs-0.0.1-cp315-cp315-musllinux_1_2_ppc64le.whl.

File metadata

  • Download URL: crc32c_rs-0.0.1-cp315-cp315-musllinux_1_2_ppc64le.whl
  • Upload date:
  • Size: 435.7 kB
  • Tags: CPython 3.15, musllinux: musl 1.2+ ppc64le
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.11 {"installer":{"name":"uv","version":"0.12.11","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for crc32c_rs-0.0.1-cp315-cp315-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 9ddf0d056784e91e47b794c47f49c5ea4d1102b7072c50cd69690b5cdbf101b0
MD5 ed7573019908f845201163fa926e3dfd
BLAKE2b-256 815462cf29c5f1c415732b0d8736ba5175537f8a7cf25af534871f9a5d91adc3

See more details on using hashes here.

Provenance

The following attestation bundles were made for crc32c_rs-0.0.1-cp315-cp315-musllinux_1_2_ppc64le.whl:

Publisher: ci.yaml on lava-sh/crc32c-rs

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file crc32c_rs-0.0.1-cp315-cp315-musllinux_1_2_i686.whl.

File metadata

  • Download URL: crc32c_rs-0.0.1-cp315-cp315-musllinux_1_2_i686.whl
  • Upload date:
  • Size: 525.0 kB
  • Tags: CPython 3.15, musllinux: musl 1.2+ i686
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.11 {"installer":{"name":"uv","version":"0.12.11","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for crc32c_rs-0.0.1-cp315-cp315-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 204c84b79b651ae527813375e967c7e2b629ccae52547f305548dd970e63d3d6
MD5 9b6698f8b3748359784650bddde10d24
BLAKE2b-256 bf82708cc798755734f8a22e00cbae7aefcdfb715cd96a091419294cb65ba5b4

See more details on using hashes here.

Provenance

The following attestation bundles were made for crc32c_rs-0.0.1-cp315-cp315-musllinux_1_2_i686.whl:

Publisher: ci.yaml on lava-sh/crc32c-rs

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file crc32c_rs-0.0.1-cp315-cp315-musllinux_1_2_armv7l.whl.

File metadata

  • Download URL: crc32c_rs-0.0.1-cp315-cp315-musllinux_1_2_armv7l.whl
  • Upload date:
  • Size: 534.5 kB
  • Tags: CPython 3.15, musllinux: musl 1.2+ ARMv7l
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.11 {"installer":{"name":"uv","version":"0.12.11","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for crc32c_rs-0.0.1-cp315-cp315-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 d6ff3aadfca130d76872df9722db183301011ff28a33ffcc7be5789509874549
MD5 ef16000b90b2b098c540ce7f2830069f
BLAKE2b-256 fb23e339a218e8294872657e463988f946f2edc518476125b396eef2a513004a

See more details on using hashes here.

Provenance

The following attestation bundles were made for crc32c_rs-0.0.1-cp315-cp315-musllinux_1_2_armv7l.whl:

Publisher: ci.yaml on lava-sh/crc32c-rs

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file crc32c_rs-0.0.1-cp315-cp315-musllinux_1_2_aarch64.whl.

File metadata

  • Download URL: crc32c_rs-0.0.1-cp315-cp315-musllinux_1_2_aarch64.whl
  • Upload date:
  • Size: 448.5 kB
  • Tags: CPython 3.15, musllinux: musl 1.2+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.11 {"installer":{"name":"uv","version":"0.12.11","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for crc32c_rs-0.0.1-cp315-cp315-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 6a99c1c11cd8b6571e252f463f5372d60616a54aee3942d693aca8120326ddcc
MD5 8feada5caead1358d7f09fab9cb96a90
BLAKE2b-256 6ca8ee1762305e0783fa0e50a0ec51b66b5906f2cdcad4d4e2190795ca7b15cd

See more details on using hashes here.

Provenance

The following attestation bundles were made for crc32c_rs-0.0.1-cp315-cp315-musllinux_1_2_aarch64.whl:

Publisher: ci.yaml on lava-sh/crc32c-rs

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file crc32c_rs-0.0.1-cp315-cp315-manylinux_2_31_riscv64.whl.

File metadata

  • Download URL: crc32c_rs-0.0.1-cp315-cp315-manylinux_2_31_riscv64.whl
  • Upload date:
  • Size: 249.9 kB
  • Tags: CPython 3.15, manylinux: glibc 2.31+ riscv64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.11 {"installer":{"name":"uv","version":"0.12.11","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for crc32c_rs-0.0.1-cp315-cp315-manylinux_2_31_riscv64.whl
Algorithm Hash digest
SHA256 eba88c6b64ad0550f4fc09833d1a7987c64a0ac546c42c29ea914ea892a30c59
MD5 d8094aeb96d7a9a6aa5807edb72896e9
BLAKE2b-256 401afa11d517ebce0a404116a19afc55f3173628f47abbcc901838ba2b27694a

See more details on using hashes here.

Provenance

The following attestation bundles were made for crc32c_rs-0.0.1-cp315-cp315-manylinux_2_31_riscv64.whl:

Publisher: ci.yaml on lava-sh/crc32c-rs

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file crc32c_rs-0.0.1-cp315-cp315-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

  • Download URL: crc32c_rs-0.0.1-cp315-cp315-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
  • Upload date:
  • Size: 279.0 kB
  • Tags: CPython 3.15, manylinux: glibc 2.17+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.11 {"installer":{"name":"uv","version":"0.12.11","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for crc32c_rs-0.0.1-cp315-cp315-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 08f426b42cb935bf009db845c623ae7f978b32a520415723e85332fd07663681
MD5 039ca4399e9e046aee586b684e2a819a
BLAKE2b-256 3e210ed0504e32e8d9b1c64f03194893d396553e8805fb084436303b6a75702d

See more details on using hashes here.

Provenance

The following attestation bundles were made for crc32c_rs-0.0.1-cp315-cp315-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: ci.yaml on lava-sh/crc32c-rs

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file crc32c_rs-0.0.1-cp315-cp315-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

  • Download URL: crc32c_rs-0.0.1-cp315-cp315-manylinux_2_17_s390x.manylinux2014_s390x.whl
  • Upload date:
  • Size: 239.9 kB
  • Tags: CPython 3.15, manylinux: glibc 2.17+ s390x
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.11 {"installer":{"name":"uv","version":"0.12.11","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for crc32c_rs-0.0.1-cp315-cp315-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 b4bfbce7908a8f76389afbe5de3a0e92dd542fc5b9aea787fe2e4ede963c7723
MD5 133eaf7522144ea2b4fd3cc6ab3b5a69
BLAKE2b-256 edf12f8368c7cc5f5c7b2a60470f3a4a44c810a39c6b6f1e1b37303bef20330c

See more details on using hashes here.

Provenance

The following attestation bundles were made for crc32c_rs-0.0.1-cp315-cp315-manylinux_2_17_s390x.manylinux2014_s390x.whl:

Publisher: ci.yaml on lava-sh/crc32c-rs

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file crc32c_rs-0.0.1-cp315-cp315-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

  • Download URL: crc32c_rs-0.0.1-cp315-cp315-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
  • Upload date:
  • Size: 227.2 kB
  • Tags: CPython 3.15, manylinux: glibc 2.17+ ppc64le
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.11 {"installer":{"name":"uv","version":"0.12.11","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for crc32c_rs-0.0.1-cp315-cp315-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 bc4927e06cf5f515ea3b07cbf172d86c4a98c9f89edebb84e9f30347ef3731fb
MD5 d267c4003a5a9677e79c62e3aafde8b9
BLAKE2b-256 5b6f4167bf8eae569e08ba1fff08b141447a8ca2c104d86f411ef71a23bc922e

See more details on using hashes here.

Provenance

The following attestation bundles were made for crc32c_rs-0.0.1-cp315-cp315-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl:

Publisher: ci.yaml on lava-sh/crc32c-rs

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file crc32c_rs-0.0.1-cp315-cp315-manylinux_2_17_ppc64.manylinux2014_ppc64.whl.

File metadata

  • Download URL: crc32c_rs-0.0.1-cp315-cp315-manylinux_2_17_ppc64.manylinux2014_ppc64.whl
  • Upload date:
  • Size: 227.4 kB
  • Tags: CPython 3.15, manylinux: glibc 2.17+ ppc64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.11 {"installer":{"name":"uv","version":"0.12.11","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for crc32c_rs-0.0.1-cp315-cp315-manylinux_2_17_ppc64.manylinux2014_ppc64.whl
Algorithm Hash digest
SHA256 d2f7283d213447ff7d18186e6aaa84152eb80eee0d3e697674b7cb6d3672e8c2
MD5 9089c24f446dcf7891ce0201b835f4cb
BLAKE2b-256 458db0e991513abac1aa40f93afa3b3e9e8b326f1d9b0eee11fb50ffd63bf30b

See more details on using hashes here.

Provenance

The following attestation bundles were made for crc32c_rs-0.0.1-cp315-cp315-manylinux_2_17_ppc64.manylinux2014_ppc64.whl:

Publisher: ci.yaml on lava-sh/crc32c-rs

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file crc32c_rs-0.0.1-cp315-cp315-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

  • Download URL: crc32c_rs-0.0.1-cp315-cp315-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
  • Upload date:
  • Size: 208.5 kB
  • Tags: CPython 3.15, manylinux: glibc 2.17+ ARMv7l
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.11 {"installer":{"name":"uv","version":"0.12.11","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for crc32c_rs-0.0.1-cp315-cp315-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 30e6dd89a407edbf3127d5b576ce748f85796f0e1439fff05cf18824a284f05c
MD5 6f6c6de3531b7307076c18ecd68eb09d
BLAKE2b-256 7c2ff19eb027ff45fab426cc2d53176ac7d26d127b7828c4281b834d0f68c685

See more details on using hashes here.

Provenance

The following attestation bundles were made for crc32c_rs-0.0.1-cp315-cp315-manylinux_2_17_armv7l.manylinux2014_armv7l.whl:

Publisher: ci.yaml on lava-sh/crc32c-rs

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file crc32c_rs-0.0.1-cp315-cp315-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

  • Download URL: crc32c_rs-0.0.1-cp315-cp315-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
  • Upload date:
  • Size: 269.3 kB
  • Tags: CPython 3.15, manylinux: glibc 2.17+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.11 {"installer":{"name":"uv","version":"0.12.11","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for crc32c_rs-0.0.1-cp315-cp315-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 2a868e3d5645c1347d58391625c0a24d963fc338a6ecb79795bc3ac0cf6fd5e4
MD5 67c9396741dd299857b7dab471be8ab5
BLAKE2b-256 1fb161445f00b5fb4a395f28df0f6d3e0ff2b0b83e1a3dfe375b639df8795a90

See more details on using hashes here.

Provenance

The following attestation bundles were made for crc32c_rs-0.0.1-cp315-cp315-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: ci.yaml on lava-sh/crc32c-rs

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file crc32c_rs-0.0.1-cp315-cp315-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

  • Download URL: crc32c_rs-0.0.1-cp315-cp315-manylinux_2_5_i686.manylinux1_i686.whl
  • Upload date:
  • Size: 299.3 kB
  • Tags: CPython 3.15, manylinux: glibc 2.5+ i686
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.11 {"installer":{"name":"uv","version":"0.12.11","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for crc32c_rs-0.0.1-cp315-cp315-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 fd8c442f0f88d21c86b1ad0d2db65517469af6440fbf2b456a7b303e7c7dbedb
MD5 439c55cac569703f2d9ae728fcf4805c
BLAKE2b-256 fb373466a2461a339ee8ac17ee67d054d61b7beec48299176f755e6fd57b20db

See more details on using hashes here.

Provenance

The following attestation bundles were made for crc32c_rs-0.0.1-cp315-cp315-manylinux_2_5_i686.manylinux1_i686.whl:

Publisher: ci.yaml on lava-sh/crc32c-rs

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file crc32c_rs-0.0.1-cp315-cp315-macosx_11_0_arm64.whl.

File metadata

  • Download URL: crc32c_rs-0.0.1-cp315-cp315-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 245.6 kB
  • Tags: CPython 3.15, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.11 {"installer":{"name":"uv","version":"0.12.11","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for crc32c_rs-0.0.1-cp315-cp315-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 680db933b1faca7c20cd1317f544cc5d14618d75938b229daa513b63c4c3b277
MD5 11e513edec35421f8668d3b6b69df094
BLAKE2b-256 32b6b1ae62b9192765d4249d6f81f532c523c457595e692523ddcf4f20f3e4f6

See more details on using hashes here.

Provenance

The following attestation bundles were made for crc32c_rs-0.0.1-cp315-cp315-macosx_11_0_arm64.whl:

Publisher: ci.yaml on lava-sh/crc32c-rs

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file crc32c_rs-0.0.1-cp315-cp315-macosx_10_12_x86_64.whl.

File metadata

  • Download URL: crc32c_rs-0.0.1-cp315-cp315-macosx_10_12_x86_64.whl
  • Upload date:
  • Size: 265.1 kB
  • Tags: CPython 3.15, macOS 10.12+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.11 {"installer":{"name":"uv","version":"0.12.11","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for crc32c_rs-0.0.1-cp315-cp315-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 ffa22169f00c862f40f597342077afac80b3a18cf6ec3680bae94eee81afc7a2
MD5 bb230d8c13b058787400b9a3c8150d9c
BLAKE2b-256 ff81fb3db406a2eed12dde8f2161ebdf76de010d7811243dba2c205779a839a5

See more details on using hashes here.

Provenance

The following attestation bundles were made for crc32c_rs-0.0.1-cp315-cp315-macosx_10_12_x86_64.whl:

Publisher: ci.yaml on lava-sh/crc32c-rs

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file crc32c_rs-0.0.1-cp315-cp315-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl.

File metadata

  • Download URL: crc32c_rs-0.0.1-cp315-cp315-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl
  • Upload date:
  • Size: 493.8 kB
  • Tags: CPython 3.15, macOS 10.12+ universal2 (ARM64, x86-64), macOS 10.12+ x86-64, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.11 {"installer":{"name":"uv","version":"0.12.11","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for crc32c_rs-0.0.1-cp315-cp315-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl
Algorithm Hash digest
SHA256 c261da332e4dcccb945ece9646bf0e15b845eac6b2263fa6608e751dac315356
MD5 f58f495e4ed829f6d93ac514a52cc885
BLAKE2b-256 567373187c7f6e7cc26b3e8197c7340caaa39e038b02c3a993e30f308669ac0d

See more details on using hashes here.

Provenance

The following attestation bundles were made for crc32c_rs-0.0.1-cp315-cp315-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl:

Publisher: ci.yaml on lava-sh/crc32c-rs

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file crc32c_rs-0.0.1-cp314-cp314t-win_arm64.whl.

File metadata

  • Download URL: crc32c_rs-0.0.1-cp314-cp314t-win_arm64.whl
  • Upload date:
  • Size: 174.1 kB
  • Tags: CPython 3.14t, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.11 {"installer":{"name":"uv","version":"0.12.11","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for crc32c_rs-0.0.1-cp314-cp314t-win_arm64.whl
Algorithm Hash digest
SHA256 d9e41e68dbec582d5190064fea5af3d22068337178b07a876555395f36340d38
MD5 83f8df633aaa68e8b4836b15a6e684e1
BLAKE2b-256 4c1d23b981be2d52d57224917722595ea08433d3b27f459e97980813dabc04aa

See more details on using hashes here.

Provenance

The following attestation bundles were made for crc32c_rs-0.0.1-cp314-cp314t-win_arm64.whl:

Publisher: ci.yaml on lava-sh/crc32c-rs

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file crc32c_rs-0.0.1-cp314-cp314t-win_amd64.whl.

File metadata

  • Download URL: crc32c_rs-0.0.1-cp314-cp314t-win_amd64.whl
  • Upload date:
  • Size: 186.4 kB
  • Tags: CPython 3.14t, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.11 {"installer":{"name":"uv","version":"0.12.11","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for crc32c_rs-0.0.1-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 554379b8d2fa8f9117137cfea5b27784ab099afaf00df7296f05d06d5e84afb8
MD5 2089a1fd77c8dfeb22183c040ce5f1b3
BLAKE2b-256 771c9f2dfc13de7926c44909bae7878e26400721136983148c1a13009d4e3d5d

See more details on using hashes here.

Provenance

The following attestation bundles were made for crc32c_rs-0.0.1-cp314-cp314t-win_amd64.whl:

Publisher: ci.yaml on lava-sh/crc32c-rs

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file crc32c_rs-0.0.1-cp314-cp314t-win32.whl.

File metadata

  • Download URL: crc32c_rs-0.0.1-cp314-cp314t-win32.whl
  • Upload date:
  • Size: 171.8 kB
  • Tags: CPython 3.14t, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.11 {"installer":{"name":"uv","version":"0.12.11","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for crc32c_rs-0.0.1-cp314-cp314t-win32.whl
Algorithm Hash digest
SHA256 7a8860aa2edd89b2bef9adde6d709f14d22136c691527988a084a9a2bdc5472b
MD5 8b3ca609fc519b5e93e589c83340f97f
BLAKE2b-256 c64f7e611128cb78775ff5acdc71eaa86df305855142116b69e1f306de84c870

See more details on using hashes here.

Provenance

The following attestation bundles were made for crc32c_rs-0.0.1-cp314-cp314t-win32.whl:

Publisher: ci.yaml on lava-sh/crc32c-rs

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file crc32c_rs-0.0.1-cp314-cp314t-musllinux_1_2_x86_64.whl.

File metadata

  • Download URL: crc32c_rs-0.0.1-cp314-cp314t-musllinux_1_2_x86_64.whl
  • Upload date:
  • Size: 490.0 kB
  • Tags: CPython 3.14t, musllinux: musl 1.2+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.11 {"installer":{"name":"uv","version":"0.12.11","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for crc32c_rs-0.0.1-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 066c4eeb4f087bc0d3f111fc4a5cdc76375803abeed406c855aef0fa4a029fea
MD5 282cb3335ffd8e85e8820aed9f03018b
BLAKE2b-256 51c04425ce29ad0aa40fdafad19d81367d9da80d6545938cff6c65106c2a4bcb

See more details on using hashes here.

Provenance

The following attestation bundles were made for crc32c_rs-0.0.1-cp314-cp314t-musllinux_1_2_x86_64.whl:

Publisher: ci.yaml on lava-sh/crc32c-rs

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file crc32c_rs-0.0.1-cp314-cp314t-musllinux_1_2_riscv64.whl.

File metadata

  • Download URL: crc32c_rs-0.0.1-cp314-cp314t-musllinux_1_2_riscv64.whl
  • Upload date:
  • Size: 426.2 kB
  • Tags: CPython 3.14t, musllinux: musl 1.2+ riscv64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.11 {"installer":{"name":"uv","version":"0.12.11","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for crc32c_rs-0.0.1-cp314-cp314t-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 5fb9ef8fc244ac929c1ef97d3aae8913d556b718b221d872e3aa0e6acd11bc74
MD5 46386aca9c5f51974c2cbaa016e0939c
BLAKE2b-256 52a62bc75106082043fec190f12433e122ba45f385d251a1fa85af8c1159d132

See more details on using hashes here.

Provenance

The following attestation bundles were made for crc32c_rs-0.0.1-cp314-cp314t-musllinux_1_2_riscv64.whl:

Publisher: ci.yaml on lava-sh/crc32c-rs

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file crc32c_rs-0.0.1-cp314-cp314t-musllinux_1_2_ppc64le.whl.

File metadata

  • Download URL: crc32c_rs-0.0.1-cp314-cp314t-musllinux_1_2_ppc64le.whl
  • Upload date:
  • Size: 434.6 kB
  • Tags: CPython 3.14t, musllinux: musl 1.2+ ppc64le
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.11 {"installer":{"name":"uv","version":"0.12.11","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for crc32c_rs-0.0.1-cp314-cp314t-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 bcb206f28af556019c6b84cdac87177f8fb7c78ccde8671c6afe9166b1fbad8f
MD5 72698e92293d7a32cc3df2fb43b51a5a
BLAKE2b-256 e15be45df0c1db4d03224c992a8d1580e687b18009c516f88f3866236c7912a6

See more details on using hashes here.

Provenance

The following attestation bundles were made for crc32c_rs-0.0.1-cp314-cp314t-musllinux_1_2_ppc64le.whl:

Publisher: ci.yaml on lava-sh/crc32c-rs

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file crc32c_rs-0.0.1-cp314-cp314t-musllinux_1_2_i686.whl.

File metadata

  • Download URL: crc32c_rs-0.0.1-cp314-cp314t-musllinux_1_2_i686.whl
  • Upload date:
  • Size: 523.9 kB
  • Tags: CPython 3.14t, musllinux: musl 1.2+ i686
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.11 {"installer":{"name":"uv","version":"0.12.11","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for crc32c_rs-0.0.1-cp314-cp314t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 43545d302da750c39431557cf597022e9c74bac69cb5c07b4ea3a76417c54aed
MD5 956bac4df143f4d8909f73213761f212
BLAKE2b-256 1b3ebc64e8a7ba93c94e1e03faac8bffad39fab1ef8fb303c5807bf10cfd478d

See more details on using hashes here.

Provenance

The following attestation bundles were made for crc32c_rs-0.0.1-cp314-cp314t-musllinux_1_2_i686.whl:

Publisher: ci.yaml on lava-sh/crc32c-rs

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file crc32c_rs-0.0.1-cp314-cp314t-musllinux_1_2_armv7l.whl.

File metadata

  • Download URL: crc32c_rs-0.0.1-cp314-cp314t-musllinux_1_2_armv7l.whl
  • Upload date:
  • Size: 533.3 kB
  • Tags: CPython 3.14t, musllinux: musl 1.2+ ARMv7l
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.11 {"installer":{"name":"uv","version":"0.12.11","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for crc32c_rs-0.0.1-cp314-cp314t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 063c101f77437154c42f5dd259c737a395d0bf5d48e322ba84b334211835784f
MD5 7b30c04b6bf128799e6f40807436d675
BLAKE2b-256 0504657d75e0f344dfc440939fe913bda2f2ad881c4710211d92cec3d95902c8

See more details on using hashes here.

Provenance

The following attestation bundles were made for crc32c_rs-0.0.1-cp314-cp314t-musllinux_1_2_armv7l.whl:

Publisher: ci.yaml on lava-sh/crc32c-rs

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file crc32c_rs-0.0.1-cp314-cp314t-musllinux_1_2_aarch64.whl.

File metadata

  • Download URL: crc32c_rs-0.0.1-cp314-cp314t-musllinux_1_2_aarch64.whl
  • Upload date:
  • Size: 447.6 kB
  • Tags: CPython 3.14t, musllinux: musl 1.2+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.11 {"installer":{"name":"uv","version":"0.12.11","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for crc32c_rs-0.0.1-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 0399e991cf15ccc3182e9b0562a24ee0be8572fa9f583185e35ff2f786647aad
MD5 4c91447393b53084ee797805a955d0ef
BLAKE2b-256 6c6c9d9bc70380089911660a1b1692696772b68dd7a1f9a6566fe66bb381e8ec

See more details on using hashes here.

Provenance

The following attestation bundles were made for crc32c_rs-0.0.1-cp314-cp314t-musllinux_1_2_aarch64.whl:

Publisher: ci.yaml on lava-sh/crc32c-rs

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file crc32c_rs-0.0.1-cp314-cp314t-manylinux_2_31_riscv64.whl.

File metadata

  • Download URL: crc32c_rs-0.0.1-cp314-cp314t-manylinux_2_31_riscv64.whl
  • Upload date:
  • Size: 248.7 kB
  • Tags: CPython 3.14t, manylinux: glibc 2.31+ riscv64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.11 {"installer":{"name":"uv","version":"0.12.11","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for crc32c_rs-0.0.1-cp314-cp314t-manylinux_2_31_riscv64.whl
Algorithm Hash digest
SHA256 56f5089522718be670829a58d774372ee518d7226772647fb14568821f7aa8f1
MD5 4b67271da6168a882e57b878cf41927e
BLAKE2b-256 d2f8f6b2599bf6ad1258a2b6cc3a13e85891ade63d57a5cefbe294b655573378

See more details on using hashes here.

Provenance

The following attestation bundles were made for crc32c_rs-0.0.1-cp314-cp314t-manylinux_2_31_riscv64.whl:

Publisher: ci.yaml on lava-sh/crc32c-rs

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file crc32c_rs-0.0.1-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

  • Download URL: crc32c_rs-0.0.1-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
  • Upload date:
  • Size: 277.8 kB
  • Tags: CPython 3.14t, manylinux: glibc 2.17+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.11 {"installer":{"name":"uv","version":"0.12.11","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for crc32c_rs-0.0.1-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 e56cad663b53eecb06b1fc76b0b91b71b128aba4d3df5bdaa341542b972ee67e
MD5 78b19ed661cca6f21afd1f4cebd2a666
BLAKE2b-256 d7387a84cdd9988a958c65894de49e9a6e29f0bcd0d74a4e65c59cfc33ba7aac

See more details on using hashes here.

Provenance

The following attestation bundles were made for crc32c_rs-0.0.1-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: ci.yaml on lava-sh/crc32c-rs

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file crc32c_rs-0.0.1-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

  • Download URL: crc32c_rs-0.0.1-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl
  • Upload date:
  • Size: 239.0 kB
  • Tags: CPython 3.14t, manylinux: glibc 2.17+ s390x
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.11 {"installer":{"name":"uv","version":"0.12.11","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for crc32c_rs-0.0.1-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 7cf0ddb68752388592c2b0d4fb581c08db6e5144aa3c76ba1261df5af13f733c
MD5 a4208e359147bdfb97f89b46a36ae210
BLAKE2b-256 5a9a8eaccd3cfb893d78d61bdb12035808dd0e9b27c46d6c047460d9dc7c6e6f

See more details on using hashes here.

Provenance

The following attestation bundles were made for crc32c_rs-0.0.1-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl:

Publisher: ci.yaml on lava-sh/crc32c-rs

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file crc32c_rs-0.0.1-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

  • Download URL: crc32c_rs-0.0.1-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
  • Upload date:
  • Size: 225.9 kB
  • Tags: CPython 3.14t, manylinux: glibc 2.17+ ppc64le
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.11 {"installer":{"name":"uv","version":"0.12.11","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for crc32c_rs-0.0.1-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 cb5a3622834498da4ef466e5511a7ae5e717f4ab7302c832104c3939134f99ee
MD5 1da372cb1e99142a8ee9d1af1b4f7234
BLAKE2b-256 65b67cfcdfb30ff536dba5314f8013632d455dda94a86621ac0323aab5516200

See more details on using hashes here.

Provenance

The following attestation bundles were made for crc32c_rs-0.0.1-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl:

Publisher: ci.yaml on lava-sh/crc32c-rs

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file crc32c_rs-0.0.1-cp314-cp314t-manylinux_2_17_ppc64.manylinux2014_ppc64.whl.

File metadata

  • Download URL: crc32c_rs-0.0.1-cp314-cp314t-manylinux_2_17_ppc64.manylinux2014_ppc64.whl
  • Upload date:
  • Size: 226.3 kB
  • Tags: CPython 3.14t, manylinux: glibc 2.17+ ppc64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.11 {"installer":{"name":"uv","version":"0.12.11","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for crc32c_rs-0.0.1-cp314-cp314t-manylinux_2_17_ppc64.manylinux2014_ppc64.whl
Algorithm Hash digest
SHA256 d6e647d1a66cc981454354e92b5c6f22aee2937961c5605b0ab69ace2b65a8d8
MD5 c88a42c48b0956cec4eb4ac554b85601
BLAKE2b-256 ce4c0e62687f55e6067f8300ff0cd90a7f402b1f100b84588da9f010d6afeca4

See more details on using hashes here.

Provenance

The following attestation bundles were made for crc32c_rs-0.0.1-cp314-cp314t-manylinux_2_17_ppc64.manylinux2014_ppc64.whl:

Publisher: ci.yaml on lava-sh/crc32c-rs

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file crc32c_rs-0.0.1-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

  • Download URL: crc32c_rs-0.0.1-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
  • Upload date:
  • Size: 207.3 kB
  • Tags: CPython 3.14t, manylinux: glibc 2.17+ ARMv7l
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.11 {"installer":{"name":"uv","version":"0.12.11","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for crc32c_rs-0.0.1-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 cf7486ae41e03c5be3a233b3182a1d9e776ae44be4598426caf05b0cc8a936dd
MD5 eeca13c31982694262daf1665ac300dd
BLAKE2b-256 53d43b3d0a5261d9367660fd0a042a10d071e7391e0252980c0bf2e1c988d7ad

See more details on using hashes here.

Provenance

The following attestation bundles were made for crc32c_rs-0.0.1-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl:

Publisher: ci.yaml on lava-sh/crc32c-rs

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file crc32c_rs-0.0.1-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

  • Download URL: crc32c_rs-0.0.1-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
  • Upload date:
  • Size: 268.3 kB
  • Tags: CPython 3.14t, manylinux: glibc 2.17+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.11 {"installer":{"name":"uv","version":"0.12.11","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for crc32c_rs-0.0.1-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 ffc3b9d0eea1cdcd83b1e90f1c487fd528f7bffec0164ac19aa06c6ff7430064
MD5 c8d6ede69ea217d5a055d294c635b642
BLAKE2b-256 b92c4bceb4bab0b365f9c6b81761393477c3fbf95a42f41873af10f0124775dd

See more details on using hashes here.

Provenance

The following attestation bundles were made for crc32c_rs-0.0.1-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: ci.yaml on lava-sh/crc32c-rs

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file crc32c_rs-0.0.1-cp314-cp314t-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

  • Download URL: crc32c_rs-0.0.1-cp314-cp314t-manylinux_2_5_i686.manylinux1_i686.whl
  • Upload date:
  • Size: 298.2 kB
  • Tags: CPython 3.14t, manylinux: glibc 2.5+ i686
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.11 {"installer":{"name":"uv","version":"0.12.11","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for crc32c_rs-0.0.1-cp314-cp314t-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 017f3b7e9fbf32f79eaa392660bf5c230a0e6d5f74506ddf38c8745f256571a1
MD5 a5f221a8088d4144d8a5159db3ee9581
BLAKE2b-256 a5d688f882af9b5fef307fccb0d8144cdb784d3a3e4a20d609cb56bad5e8b50b

See more details on using hashes here.

Provenance

The following attestation bundles were made for crc32c_rs-0.0.1-cp314-cp314t-manylinux_2_5_i686.manylinux1_i686.whl:

Publisher: ci.yaml on lava-sh/crc32c-rs

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file crc32c_rs-0.0.1-cp314-cp314t-macosx_11_0_arm64.whl.

File metadata

  • Download URL: crc32c_rs-0.0.1-cp314-cp314t-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 244.6 kB
  • Tags: CPython 3.14t, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.11 {"installer":{"name":"uv","version":"0.12.11","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for crc32c_rs-0.0.1-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c78008b6100b8a045c876485c7ab1b00c90b7a45b672a06e46d24ac3bf99fd20
MD5 f8a9ca1eedbae11b8de7f9241737f190
BLAKE2b-256 1a2e60b1e0d3104c1b1c9ac21abe128a3f7c1b1e54f20a8dd12438880abfbcf4

See more details on using hashes here.

Provenance

The following attestation bundles were made for crc32c_rs-0.0.1-cp314-cp314t-macosx_11_0_arm64.whl:

Publisher: ci.yaml on lava-sh/crc32c-rs

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file crc32c_rs-0.0.1-cp314-cp314t-macosx_10_12_x86_64.whl.

File metadata

  • Download URL: crc32c_rs-0.0.1-cp314-cp314t-macosx_10_12_x86_64.whl
  • Upload date:
  • Size: 264.6 kB
  • Tags: CPython 3.14t, macOS 10.12+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.11 {"installer":{"name":"uv","version":"0.12.11","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for crc32c_rs-0.0.1-cp314-cp314t-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 15fa3be7bd49f5784c34437753d6207cb1650603a74310120c9bf5b91ea6b7e5
MD5 5b239a50825f99e7e04f3f02fb42461a
BLAKE2b-256 9057171a078a1475848355d95cb718d4be11ad45ebd042d2eb99004ffcc4e615

See more details on using hashes here.

Provenance

The following attestation bundles were made for crc32c_rs-0.0.1-cp314-cp314t-macosx_10_12_x86_64.whl:

Publisher: ci.yaml on lava-sh/crc32c-rs

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file crc32c_rs-0.0.1-cp314-cp314t-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl.

File metadata

  • Download URL: crc32c_rs-0.0.1-cp314-cp314t-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl
  • Upload date:
  • Size: 492.3 kB
  • Tags: CPython 3.14t, macOS 10.12+ universal2 (ARM64, x86-64), macOS 10.12+ x86-64, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.11 {"installer":{"name":"uv","version":"0.12.11","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for crc32c_rs-0.0.1-cp314-cp314t-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl
Algorithm Hash digest
SHA256 c61b7e989414dc579e3b39306e9ae7ad8dd2972cafa521f309360835f794a0f8
MD5 2e0682609ff367230d6d108ad4cc87c1
BLAKE2b-256 b85f2bc37eab50dd7ccda6eae70c555654342d050884160c9b3d059f4a10ef56

See more details on using hashes here.

Provenance

The following attestation bundles were made for crc32c_rs-0.0.1-cp314-cp314t-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl:

Publisher: ci.yaml on lava-sh/crc32c-rs

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file crc32c_rs-0.0.1-cp314-cp314-win_arm64.whl.

File metadata

  • Download URL: crc32c_rs-0.0.1-cp314-cp314-win_arm64.whl
  • Upload date:
  • Size: 175.1 kB
  • Tags: CPython 3.14, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.11 {"installer":{"name":"uv","version":"0.12.11","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for crc32c_rs-0.0.1-cp314-cp314-win_arm64.whl
Algorithm Hash digest
SHA256 9face19f338e1116cd57b35b93e7fc7770aedb13d713764e6521a1a47f642597
MD5 a070b2f3f11062892125778a17e849e9
BLAKE2b-256 b315a5c308f2290d0914023f57371788867df8a72132e67da62409d641063ead

See more details on using hashes here.

Provenance

The following attestation bundles were made for crc32c_rs-0.0.1-cp314-cp314-win_arm64.whl:

Publisher: ci.yaml on lava-sh/crc32c-rs

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file crc32c_rs-0.0.1-cp314-cp314-win_amd64.whl.

File metadata

  • Download URL: crc32c_rs-0.0.1-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 187.1 kB
  • Tags: CPython 3.14, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.11 {"installer":{"name":"uv","version":"0.12.11","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for crc32c_rs-0.0.1-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 05018a02de7c1197fb9e4d0556177f244bb169991503568d50d442588d1439bb
MD5 a3d77ac45c07dcb86aa1fe0de2cf35bb
BLAKE2b-256 346f06dda43f209e3cddddb9530e2469bbdcbafe33e33e66454567a4993e5c26

See more details on using hashes here.

Provenance

The following attestation bundles were made for crc32c_rs-0.0.1-cp314-cp314-win_amd64.whl:

Publisher: ci.yaml on lava-sh/crc32c-rs

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file crc32c_rs-0.0.1-cp314-cp314-win32.whl.

File metadata

  • Download URL: crc32c_rs-0.0.1-cp314-cp314-win32.whl
  • Upload date:
  • Size: 172.7 kB
  • Tags: CPython 3.14, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.11 {"installer":{"name":"uv","version":"0.12.11","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for crc32c_rs-0.0.1-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 1b9018ca5c86ad9f9fd1e28991e8ed851b79beb0b21dc3177b03a53f7579d72d
MD5 d943c9519dc0c2f7680782f4ae7e5656
BLAKE2b-256 ae01829858dd6a0d1bacbafd2b96fd4c5bc6b1cabf35c49fceb0028f21027b3f

See more details on using hashes here.

Provenance

The following attestation bundles were made for crc32c_rs-0.0.1-cp314-cp314-win32.whl:

Publisher: ci.yaml on lava-sh/crc32c-rs

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file crc32c_rs-0.0.1-cp314-cp314-pyemscripten_2026_0_wasm32.whl.

File metadata

  • Download URL: crc32c_rs-0.0.1-cp314-cp314-pyemscripten_2026_0_wasm32.whl
  • Upload date:
  • Size: 70.5 kB
  • Tags: CPython 3.14, PyEmscripten 2026.0 wasm32
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.11 {"installer":{"name":"uv","version":"0.12.11","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for crc32c_rs-0.0.1-cp314-cp314-pyemscripten_2026_0_wasm32.whl
Algorithm Hash digest
SHA256 2001ad8d12ec04ba736f3f0271a6699a8ec0750da2e3a487ab22410446b829bf
MD5 991e0b2dcb618f00e3df5e01c2ef0f97
BLAKE2b-256 77171cada8d552d52e69439042ab3a0acf9f7c420c105f167b6d9dca28de2e1f

See more details on using hashes here.

Provenance

The following attestation bundles were made for crc32c_rs-0.0.1-cp314-cp314-pyemscripten_2026_0_wasm32.whl:

Publisher: ci.yaml on lava-sh/crc32c-rs

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file crc32c_rs-0.0.1-cp314-cp314-musllinux_1_2_x86_64.whl.

File metadata

  • Download URL: crc32c_rs-0.0.1-cp314-cp314-musllinux_1_2_x86_64.whl
  • Upload date:
  • Size: 491.4 kB
  • Tags: CPython 3.14, musllinux: musl 1.2+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.11 {"installer":{"name":"uv","version":"0.12.11","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for crc32c_rs-0.0.1-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 1c43eecbf8a136648f12fcb05159ab01e7d0508600468f4598bb80c8850f2061
MD5 427699faf73d372aa5c62aac5367c498
BLAKE2b-256 9d69e14afab4502a424635a0e55869c0c2ebcd28fdfb4ba44f0b9efeaec3a881

See more details on using hashes here.

Provenance

The following attestation bundles were made for crc32c_rs-0.0.1-cp314-cp314-musllinux_1_2_x86_64.whl:

Publisher: ci.yaml on lava-sh/crc32c-rs

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file crc32c_rs-0.0.1-cp314-cp314-musllinux_1_2_riscv64.whl.

File metadata

  • Download URL: crc32c_rs-0.0.1-cp314-cp314-musllinux_1_2_riscv64.whl
  • Upload date:
  • Size: 427.1 kB
  • Tags: CPython 3.14, musllinux: musl 1.2+ riscv64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.11 {"installer":{"name":"uv","version":"0.12.11","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for crc32c_rs-0.0.1-cp314-cp314-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 15c193caf0d848ed55506b6afb463446ba361cd42138f57c0cdf07a9686725fd
MD5 ba47733031f1d91ebc1faced0ba8e6fe
BLAKE2b-256 7a7ececbdb5e73d9e19df97b5c1048e7fd57921d9867774f672cff682287dc31

See more details on using hashes here.

Provenance

The following attestation bundles were made for crc32c_rs-0.0.1-cp314-cp314-musllinux_1_2_riscv64.whl:

Publisher: ci.yaml on lava-sh/crc32c-rs

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file crc32c_rs-0.0.1-cp314-cp314-musllinux_1_2_ppc64le.whl.

File metadata

  • Download URL: crc32c_rs-0.0.1-cp314-cp314-musllinux_1_2_ppc64le.whl
  • Upload date:
  • Size: 435.5 kB
  • Tags: CPython 3.14, musllinux: musl 1.2+ ppc64le
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.11 {"installer":{"name":"uv","version":"0.12.11","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for crc32c_rs-0.0.1-cp314-cp314-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 d2bd8dd1b48c0952263c01bcdbd1484c49daf212383dd2281e0eaff0f16391b0
MD5 89956836d9a6addd7a09f3dd96241f8b
BLAKE2b-256 ed2fadc9fd83f86d19527be9b13049c143e5aba7578318b343dc45f85d4cee9f

See more details on using hashes here.

Provenance

The following attestation bundles were made for crc32c_rs-0.0.1-cp314-cp314-musllinux_1_2_ppc64le.whl:

Publisher: ci.yaml on lava-sh/crc32c-rs

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file crc32c_rs-0.0.1-cp314-cp314-musllinux_1_2_i686.whl.

File metadata

  • Download URL: crc32c_rs-0.0.1-cp314-cp314-musllinux_1_2_i686.whl
  • Upload date:
  • Size: 524.9 kB
  • Tags: CPython 3.14, musllinux: musl 1.2+ i686
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.11 {"installer":{"name":"uv","version":"0.12.11","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for crc32c_rs-0.0.1-cp314-cp314-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 8d1ca5238ff886fe09753e4c161cebbbf97b804362debc069c8000b4d91d8cd3
MD5 4875da9af4eef18b227963d48afd2b28
BLAKE2b-256 23a24606b8271b9fb85fdca03704f1414c92621b0f6e03771e62118d3569f180

See more details on using hashes here.

Provenance

The following attestation bundles were made for crc32c_rs-0.0.1-cp314-cp314-musllinux_1_2_i686.whl:

Publisher: ci.yaml on lava-sh/crc32c-rs

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file crc32c_rs-0.0.1-cp314-cp314-musllinux_1_2_armv7l.whl.

File metadata

  • Download URL: crc32c_rs-0.0.1-cp314-cp314-musllinux_1_2_armv7l.whl
  • Upload date:
  • Size: 534.4 kB
  • Tags: CPython 3.14, musllinux: musl 1.2+ ARMv7l
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.11 {"installer":{"name":"uv","version":"0.12.11","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for crc32c_rs-0.0.1-cp314-cp314-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 d3d8918fb19c5afde164bf0c44994f81c82ff6a346510e796418ed2ac273989c
MD5 53fb2daa445058c11ba84b643dd6e887
BLAKE2b-256 c0a4111900ac1f7daaf0cc750703135c2c5e95c3dfb9e66fb6b3b6a04d0a1223

See more details on using hashes here.

Provenance

The following attestation bundles were made for crc32c_rs-0.0.1-cp314-cp314-musllinux_1_2_armv7l.whl:

Publisher: ci.yaml on lava-sh/crc32c-rs

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file crc32c_rs-0.0.1-cp314-cp314-musllinux_1_2_aarch64.whl.

File metadata

  • Download URL: crc32c_rs-0.0.1-cp314-cp314-musllinux_1_2_aarch64.whl
  • Upload date:
  • Size: 448.4 kB
  • Tags: CPython 3.14, musllinux: musl 1.2+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.11 {"installer":{"name":"uv","version":"0.12.11","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for crc32c_rs-0.0.1-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 61d054a5c733bcedd982609de31883d8b6fa5f0524a7cf851dc5c3c407e78605
MD5 2cf4626d71f0ca244ddf0af39bbe6e40
BLAKE2b-256 ad398a75df51cf2cea1f2987601455274d2e6cc999d332c2d09a629b9712ff32

See more details on using hashes here.

Provenance

The following attestation bundles were made for crc32c_rs-0.0.1-cp314-cp314-musllinux_1_2_aarch64.whl:

Publisher: ci.yaml on lava-sh/crc32c-rs

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file crc32c_rs-0.0.1-cp314-cp314-manylinux_2_31_riscv64.whl.

File metadata

  • Download URL: crc32c_rs-0.0.1-cp314-cp314-manylinux_2_31_riscv64.whl
  • Upload date:
  • Size: 249.8 kB
  • Tags: CPython 3.14, manylinux: glibc 2.31+ riscv64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.11 {"installer":{"name":"uv","version":"0.12.11","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for crc32c_rs-0.0.1-cp314-cp314-manylinux_2_31_riscv64.whl
Algorithm Hash digest
SHA256 8aef4780527f5d53c4538db00f4fc64a8e79088d698f636ddc8238a93e924791
MD5 f26e90b962ad0e65dd90579fcbcfdab0
BLAKE2b-256 466e9f4239862276de1ee17d02aaa107cbd216986ad07aafd2c9ff866eecbbb4

See more details on using hashes here.

Provenance

The following attestation bundles were made for crc32c_rs-0.0.1-cp314-cp314-manylinux_2_31_riscv64.whl:

Publisher: ci.yaml on lava-sh/crc32c-rs

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file crc32c_rs-0.0.1-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

  • Download URL: crc32c_rs-0.0.1-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
  • Upload date:
  • Size: 278.9 kB
  • Tags: CPython 3.14, manylinux: glibc 2.17+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.11 {"installer":{"name":"uv","version":"0.12.11","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for crc32c_rs-0.0.1-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 0be0178abc5b3dd48c7eed68d6e92dab3eb766798cc57351cbdcb8a75bdfe768
MD5 91fdf23d9bb9103326d710c1abc24c89
BLAKE2b-256 c2032802341c909197352fc9fa6f513f4ffc8ae044e444bde9e7faf2ff29fa06

See more details on using hashes here.

Provenance

The following attestation bundles were made for crc32c_rs-0.0.1-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: ci.yaml on lava-sh/crc32c-rs

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file crc32c_rs-0.0.1-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

  • Download URL: crc32c_rs-0.0.1-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl
  • Upload date:
  • Size: 239.8 kB
  • Tags: CPython 3.14, manylinux: glibc 2.17+ s390x
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.11 {"installer":{"name":"uv","version":"0.12.11","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for crc32c_rs-0.0.1-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 424abd5e73486fac06748421a3b9063f787b8900f5d0422de108b586f1175814
MD5 658f111c016437ecfb4b70c599d5f182
BLAKE2b-256 29ce993d598c1d0f4fc90af778600208e27d330be44e8535334b67c9e79fe8d1

See more details on using hashes here.

Provenance

The following attestation bundles were made for crc32c_rs-0.0.1-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl:

Publisher: ci.yaml on lava-sh/crc32c-rs

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file crc32c_rs-0.0.1-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

  • Download URL: crc32c_rs-0.0.1-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
  • Upload date:
  • Size: 227.0 kB
  • Tags: CPython 3.14, manylinux: glibc 2.17+ ppc64le
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.11 {"installer":{"name":"uv","version":"0.12.11","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for crc32c_rs-0.0.1-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 76a197667acd0b14c926b7f8b0ed68e89cf885b1e1b972ef99e6fb3ad4a1b2e4
MD5 5bba72669fa246f1a917a841b43bf299
BLAKE2b-256 788473167e8325ff11e65fb9172d75e92a483431e20543015e1d0e4918d267af

See more details on using hashes here.

Provenance

The following attestation bundles were made for crc32c_rs-0.0.1-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl:

Publisher: ci.yaml on lava-sh/crc32c-rs

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file crc32c_rs-0.0.1-cp314-cp314-manylinux_2_17_ppc64.manylinux2014_ppc64.whl.

File metadata

  • Download URL: crc32c_rs-0.0.1-cp314-cp314-manylinux_2_17_ppc64.manylinux2014_ppc64.whl
  • Upload date:
  • Size: 227.3 kB
  • Tags: CPython 3.14, manylinux: glibc 2.17+ ppc64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.11 {"installer":{"name":"uv","version":"0.12.11","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for crc32c_rs-0.0.1-cp314-cp314-manylinux_2_17_ppc64.manylinux2014_ppc64.whl
Algorithm Hash digest
SHA256 cfd318592ca0e8e0bbaa1e26614ad5088bf54c7f7f4dfb4454037967808deed5
MD5 a38b7d41fc25de97490a7fb4f9150414
BLAKE2b-256 e27aaf807b0d63099f819e6c6e64910e159d85e9fa7074a1e9a97876f639dabe

See more details on using hashes here.

Provenance

The following attestation bundles were made for crc32c_rs-0.0.1-cp314-cp314-manylinux_2_17_ppc64.manylinux2014_ppc64.whl:

Publisher: ci.yaml on lava-sh/crc32c-rs

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file crc32c_rs-0.0.1-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

  • Download URL: crc32c_rs-0.0.1-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
  • Upload date:
  • Size: 208.5 kB
  • Tags: CPython 3.14, manylinux: glibc 2.17+ ARMv7l
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.11 {"installer":{"name":"uv","version":"0.12.11","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for crc32c_rs-0.0.1-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 e552d3ef2fc6e0c370aede310094c0f0595e0db97b8eccb1da3c6a2c4859db24
MD5 253d0cc6444c7a5e71f2b24d3b231978
BLAKE2b-256 73b1217a30b5e7afa1bb1c8e0f9d4b77f9d9e271bee369cc7e27fdc49345f70a

See more details on using hashes here.

Provenance

The following attestation bundles were made for crc32c_rs-0.0.1-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl:

Publisher: ci.yaml on lava-sh/crc32c-rs

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file crc32c_rs-0.0.1-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

  • Download URL: crc32c_rs-0.0.1-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
  • Upload date:
  • Size: 269.2 kB
  • Tags: CPython 3.14, manylinux: glibc 2.17+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.11 {"installer":{"name":"uv","version":"0.12.11","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for crc32c_rs-0.0.1-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 a4c615123efc0eeb9768819a871916c74db3613aad86163e51d46808edc0cb6d
MD5 a5d67a4f5b95fd6075529346bafcfffe
BLAKE2b-256 a45a841224dba0d7ddbe4ee040b3243a0422594fb566e910d7d304cb5191dfc6

See more details on using hashes here.

Provenance

The following attestation bundles were made for crc32c_rs-0.0.1-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: ci.yaml on lava-sh/crc32c-rs

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file crc32c_rs-0.0.1-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

  • Download URL: crc32c_rs-0.0.1-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl
  • Upload date:
  • Size: 299.2 kB
  • Tags: CPython 3.14, manylinux: glibc 2.5+ i686
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.11 {"installer":{"name":"uv","version":"0.12.11","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for crc32c_rs-0.0.1-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 f32045162fc79560322740fda95b12fb503a06d810be2b098a518f1730ac4a1c
MD5 19cecb54fd30423da094f0544f6b57ed
BLAKE2b-256 4606764fba515e4b5ae39885542139967fdfc4271576c190440b3d57459743da

See more details on using hashes here.

Provenance

The following attestation bundles were made for crc32c_rs-0.0.1-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl:

Publisher: ci.yaml on lava-sh/crc32c-rs

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file crc32c_rs-0.0.1-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

  • Download URL: crc32c_rs-0.0.1-cp314-cp314-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 245.5 kB
  • Tags: CPython 3.14, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.11 {"installer":{"name":"uv","version":"0.12.11","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for crc32c_rs-0.0.1-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c157f2817e7c34bd4a0d88a5491d8be843b98c63840dc9f28e56d28158dabaae
MD5 83c08a25655c751351d8ebee9faaf88f
BLAKE2b-256 04fb6f1c92557a7021447b3c22e4a3f9745876bff1b18698331fc2e38b2b4485

See more details on using hashes here.

Provenance

The following attestation bundles were made for crc32c_rs-0.0.1-cp314-cp314-macosx_11_0_arm64.whl:

Publisher: ci.yaml on lava-sh/crc32c-rs

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file crc32c_rs-0.0.1-cp314-cp314-macosx_10_12_x86_64.whl.

File metadata

  • Download URL: crc32c_rs-0.0.1-cp314-cp314-macosx_10_12_x86_64.whl
  • Upload date:
  • Size: 265.0 kB
  • Tags: CPython 3.14, macOS 10.12+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.11 {"installer":{"name":"uv","version":"0.12.11","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for crc32c_rs-0.0.1-cp314-cp314-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 3c62281e12e32185d95f15d1f750ad69a86ebe97197695c4d75700d3d4711507
MD5 d40d5604717d9b2871dea1a68dade00c
BLAKE2b-256 591a6b781908fcccf1aa759fea481b4a8a569891e20b586b02f132fe83422d20

See more details on using hashes here.

Provenance

The following attestation bundles were made for crc32c_rs-0.0.1-cp314-cp314-macosx_10_12_x86_64.whl:

Publisher: ci.yaml on lava-sh/crc32c-rs

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file crc32c_rs-0.0.1-cp314-cp314-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl.

File metadata

  • Download URL: crc32c_rs-0.0.1-cp314-cp314-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl
  • Upload date:
  • Size: 493.6 kB
  • Tags: CPython 3.14, macOS 10.12+ universal2 (ARM64, x86-64), macOS 10.12+ x86-64, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.11 {"installer":{"name":"uv","version":"0.12.11","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for crc32c_rs-0.0.1-cp314-cp314-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl
Algorithm Hash digest
SHA256 f55052c7b26003f468465a94e328b9bbc6f8fbeb24985abdb6adc2d2f65cb28f
MD5 4585a918e7cf6936affa683d3a051f35
BLAKE2b-256 246913d1d6f2218aa0b7d0062d7cb23c7f2a0b04a77123daa2fdf9f23bcf1144

See more details on using hashes here.

Provenance

The following attestation bundles were made for crc32c_rs-0.0.1-cp314-cp314-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl:

Publisher: ci.yaml on lava-sh/crc32c-rs

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file crc32c_rs-0.0.1-cp313-cp313-win_arm64.whl.

File metadata

  • Download URL: crc32c_rs-0.0.1-cp313-cp313-win_arm64.whl
  • Upload date:
  • Size: 175.4 kB
  • Tags: CPython 3.13, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.11 {"installer":{"name":"uv","version":"0.12.11","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for crc32c_rs-0.0.1-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 b125835a1bec21b419f064a33f55c4bc40f00492c2b7658b52996f4321b23c24
MD5 6c1112e4c2b5ffc0b191c97285b02362
BLAKE2b-256 bbc2b69f303538736a2f10ea936a97578ca09b3ddaef739cb5aec5225580e24d

See more details on using hashes here.

Provenance

The following attestation bundles were made for crc32c_rs-0.0.1-cp313-cp313-win_arm64.whl:

Publisher: ci.yaml on lava-sh/crc32c-rs

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file crc32c_rs-0.0.1-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: crc32c_rs-0.0.1-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 187.5 kB
  • Tags: CPython 3.13, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.11 {"installer":{"name":"uv","version":"0.12.11","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for crc32c_rs-0.0.1-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 9f658bc0035a9cade0ac81d4d1ee91a36d3333f0b2a1753824288f1314b9cce7
MD5 8d631568ea63cce29475efe28076c645
BLAKE2b-256 e52a7f6d50898aada28c66a362722b313d6b66a9dc7500e30a7ad6a339ffbf4c

See more details on using hashes here.

Provenance

The following attestation bundles were made for crc32c_rs-0.0.1-cp313-cp313-win_amd64.whl:

Publisher: ci.yaml on lava-sh/crc32c-rs

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file crc32c_rs-0.0.1-cp313-cp313-win32.whl.

File metadata

  • Download URL: crc32c_rs-0.0.1-cp313-cp313-win32.whl
  • Upload date:
  • Size: 173.2 kB
  • Tags: CPython 3.13, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.11 {"installer":{"name":"uv","version":"0.12.11","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for crc32c_rs-0.0.1-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 ea036ad1a2541a8566e9f21db25e1e126d8e59a6a12f656699ff4bb5cf757b14
MD5 1f5a40edd0ff8a00800fd9f308159814
BLAKE2b-256 9c5fcfa0072874d605ac405eecc16e733c36d70cecfe1c53fc947a5eb74b8455

See more details on using hashes here.

Provenance

The following attestation bundles were made for crc32c_rs-0.0.1-cp313-cp313-win32.whl:

Publisher: ci.yaml on lava-sh/crc32c-rs

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file crc32c_rs-0.0.1-cp313-cp313-pyemscripten_2025_0_wasm32.whl.

File metadata

  • Download URL: crc32c_rs-0.0.1-cp313-cp313-pyemscripten_2025_0_wasm32.whl
  • Upload date:
  • Size: 70.0 kB
  • Tags: CPython 3.13, PyEmscripten 2025.0 wasm32
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.11 {"installer":{"name":"uv","version":"0.12.11","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for crc32c_rs-0.0.1-cp313-cp313-pyemscripten_2025_0_wasm32.whl
Algorithm Hash digest
SHA256 4bc6a22c8da515599117cb101a058b3675430ff1c771e0987e2069b3d8592caf
MD5 22d2e581e73857b204cc7b888e236109
BLAKE2b-256 0a2186273d8d9155c63c9f110404ccb202ae00ce8f5cba9a3e7c7eca81d6ddf9

See more details on using hashes here.

Provenance

The following attestation bundles were made for crc32c_rs-0.0.1-cp313-cp313-pyemscripten_2025_0_wasm32.whl:

Publisher: ci.yaml on lava-sh/crc32c-rs

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file crc32c_rs-0.0.1-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

  • Download URL: crc32c_rs-0.0.1-cp313-cp313-musllinux_1_2_x86_64.whl
  • Upload date:
  • Size: 490.8 kB
  • Tags: CPython 3.13, musllinux: musl 1.2+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.11 {"installer":{"name":"uv","version":"0.12.11","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for crc32c_rs-0.0.1-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 6140dcfd6b8d5d799d429eb23507b6d4446479c1099e6e284b86b47a2daef3d1
MD5 cdcacb35ab6b9d83e816eee286dce191
BLAKE2b-256 e7a3bb580cc7ad8b3a31b7e1dad1de130e9a7482d104fe6690baef79ecefd5e8

See more details on using hashes here.

Provenance

The following attestation bundles were made for crc32c_rs-0.0.1-cp313-cp313-musllinux_1_2_x86_64.whl:

Publisher: ci.yaml on lava-sh/crc32c-rs

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file crc32c_rs-0.0.1-cp313-cp313-musllinux_1_2_riscv64.whl.

File metadata

  • Download URL: crc32c_rs-0.0.1-cp313-cp313-musllinux_1_2_riscv64.whl
  • Upload date:
  • Size: 426.6 kB
  • Tags: CPython 3.13, musllinux: musl 1.2+ riscv64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.11 {"installer":{"name":"uv","version":"0.12.11","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for crc32c_rs-0.0.1-cp313-cp313-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 5219031d9f3f34a751230c08a78e4d57a879b6c2c9231cce2379913c72622655
MD5 6b6f1fc42127a5cffde5824bb9aba011
BLAKE2b-256 d7bbfa8a92ba03c718068ce05069db9e26afef693558efb937f3d654a268ab29

See more details on using hashes here.

Provenance

The following attestation bundles were made for crc32c_rs-0.0.1-cp313-cp313-musllinux_1_2_riscv64.whl:

Publisher: ci.yaml on lava-sh/crc32c-rs

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file crc32c_rs-0.0.1-cp313-cp313-musllinux_1_2_ppc64le.whl.

File metadata

  • Download URL: crc32c_rs-0.0.1-cp313-cp313-musllinux_1_2_ppc64le.whl
  • Upload date:
  • Size: 435.0 kB
  • Tags: CPython 3.13, musllinux: musl 1.2+ ppc64le
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.11 {"installer":{"name":"uv","version":"0.12.11","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for crc32c_rs-0.0.1-cp313-cp313-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 fb2172a8360eccd3d4488953525e988ffb8b77d413c24202138b1de4564d13c1
MD5 0a9eb53048ae7a070617ebd82876cb70
BLAKE2b-256 ecd044f79435cc31fcd3192502a89688088a8521b569b49c9870a093a52f2ef7

See more details on using hashes here.

Provenance

The following attestation bundles were made for crc32c_rs-0.0.1-cp313-cp313-musllinux_1_2_ppc64le.whl:

Publisher: ci.yaml on lava-sh/crc32c-rs

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file crc32c_rs-0.0.1-cp313-cp313-musllinux_1_2_i686.whl.

File metadata

  • Download URL: crc32c_rs-0.0.1-cp313-cp313-musllinux_1_2_i686.whl
  • Upload date:
  • Size: 524.6 kB
  • Tags: CPython 3.13, musllinux: musl 1.2+ i686
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.11 {"installer":{"name":"uv","version":"0.12.11","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for crc32c_rs-0.0.1-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 829e91f0568ad5aa4193b5340a0a9001b5b92f71d5661f97c107affc4cab5250
MD5 4e73f2a1d76bdcee2bc6663666ef6de4
BLAKE2b-256 48b22a371a531d403627b15f1bdd093235b5604f8a43813b89cabf063c011873

See more details on using hashes here.

Provenance

The following attestation bundles were made for crc32c_rs-0.0.1-cp313-cp313-musllinux_1_2_i686.whl:

Publisher: ci.yaml on lava-sh/crc32c-rs

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file crc32c_rs-0.0.1-cp313-cp313-musllinux_1_2_armv7l.whl.

File metadata

  • Download URL: crc32c_rs-0.0.1-cp313-cp313-musllinux_1_2_armv7l.whl
  • Upload date:
  • Size: 534.2 kB
  • Tags: CPython 3.13, musllinux: musl 1.2+ ARMv7l
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.11 {"installer":{"name":"uv","version":"0.12.11","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for crc32c_rs-0.0.1-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 6fa87daae6219a33a5f498a4cdab37177f9d39fc593c72b64a0c6ac3e7d6d0f9
MD5 6622138cc4134fc427560972e3679dcf
BLAKE2b-256 535b099176b70b7f9c61cdc9352c185cf9257476307e686b318e73fdecedb856

See more details on using hashes here.

Provenance

The following attestation bundles were made for crc32c_rs-0.0.1-cp313-cp313-musllinux_1_2_armv7l.whl:

Publisher: ci.yaml on lava-sh/crc32c-rs

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file crc32c_rs-0.0.1-cp313-cp313-musllinux_1_2_aarch64.whl.

File metadata

  • Download URL: crc32c_rs-0.0.1-cp313-cp313-musllinux_1_2_aarch64.whl
  • Upload date:
  • Size: 448.0 kB
  • Tags: CPython 3.13, musllinux: musl 1.2+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.11 {"installer":{"name":"uv","version":"0.12.11","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for crc32c_rs-0.0.1-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 e1846e94261da753bce7faab9665a414f706d01080c6ae76864efb7b93a1a2f9
MD5 e41943b8c28d9777e086de532604d573
BLAKE2b-256 53acfe2bc827d1ea473450ee6c279e8403c3fab75b902e4d303c93576bada5c7

See more details on using hashes here.

Provenance

The following attestation bundles were made for crc32c_rs-0.0.1-cp313-cp313-musllinux_1_2_aarch64.whl:

Publisher: ci.yaml on lava-sh/crc32c-rs

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file crc32c_rs-0.0.1-cp313-cp313-manylinux_2_31_riscv64.whl.

File metadata

  • Download URL: crc32c_rs-0.0.1-cp313-cp313-manylinux_2_31_riscv64.whl
  • Upload date:
  • Size: 249.2 kB
  • Tags: CPython 3.13, manylinux: glibc 2.31+ riscv64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.11 {"installer":{"name":"uv","version":"0.12.11","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for crc32c_rs-0.0.1-cp313-cp313-manylinux_2_31_riscv64.whl
Algorithm Hash digest
SHA256 33c933cfa0b72d416abb3c3ebda92f6b8a9cb204ac4b30f30e7460de3170a235
MD5 0fe05b45eed23526f77cd77e54b81fb0
BLAKE2b-256 08f1346102037db889af324ad6774a41f7b70006bf41a160b1c9ec704b92689f

See more details on using hashes here.

Provenance

The following attestation bundles were made for crc32c_rs-0.0.1-cp313-cp313-manylinux_2_31_riscv64.whl:

Publisher: ci.yaml on lava-sh/crc32c-rs

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file crc32c_rs-0.0.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

  • Download URL: crc32c_rs-0.0.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
  • Upload date:
  • Size: 278.4 kB
  • Tags: CPython 3.13, manylinux: glibc 2.17+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.11 {"installer":{"name":"uv","version":"0.12.11","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for crc32c_rs-0.0.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 83c5e86105a60e836e2ae9f4a633832a6e236fa615ad22ef724819b6c7a75a49
MD5 5187fe97d3f8050833f16290fac7f1c9
BLAKE2b-256 e84b3a6d4144bef1604d0cef6c59a67692fc498114022ce98aecf1443493d994

See more details on using hashes here.

Provenance

The following attestation bundles were made for crc32c_rs-0.0.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: ci.yaml on lava-sh/crc32c-rs

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file crc32c_rs-0.0.1-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

  • Download URL: crc32c_rs-0.0.1-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
  • Upload date:
  • Size: 239.2 kB
  • Tags: CPython 3.13, manylinux: glibc 2.17+ s390x
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.11 {"installer":{"name":"uv","version":"0.12.11","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for crc32c_rs-0.0.1-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 cf6a2fc26570d6e9f5a5dd501c89ec159d82a757d4652db5e8bb1ba01be6609c
MD5 c877cd6d60a468984737de769d35a71d
BLAKE2b-256 b066bf5338db27766d244588f1342261a57492799f59ad1da95407f1efec4e67

See more details on using hashes here.

Provenance

The following attestation bundles were made for crc32c_rs-0.0.1-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl:

Publisher: ci.yaml on lava-sh/crc32c-rs

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file crc32c_rs-0.0.1-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

  • Download URL: crc32c_rs-0.0.1-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
  • Upload date:
  • Size: 226.5 kB
  • Tags: CPython 3.13, manylinux: glibc 2.17+ ppc64le
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.11 {"installer":{"name":"uv","version":"0.12.11","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for crc32c_rs-0.0.1-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 fec6eee8b17dcf5ae64eea8a18609bc7627f8175f3ef02f52b33a853dd87d7f2
MD5 8ecd33d0b9d4fdf9398d037283bc3323
BLAKE2b-256 e4a9ba23f10046e78d4dfd5a3eddd987114d8be21d20239d4aa76957478118c8

See more details on using hashes here.

Provenance

The following attestation bundles were made for crc32c_rs-0.0.1-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl:

Publisher: ci.yaml on lava-sh/crc32c-rs

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file crc32c_rs-0.0.1-cp313-cp313-manylinux_2_17_ppc64.manylinux2014_ppc64.whl.

File metadata

  • Download URL: crc32c_rs-0.0.1-cp313-cp313-manylinux_2_17_ppc64.manylinux2014_ppc64.whl
  • Upload date:
  • Size: 226.7 kB
  • Tags: CPython 3.13, manylinux: glibc 2.17+ ppc64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.11 {"installer":{"name":"uv","version":"0.12.11","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for crc32c_rs-0.0.1-cp313-cp313-manylinux_2_17_ppc64.manylinux2014_ppc64.whl
Algorithm Hash digest
SHA256 38e52377c15eaee85bdc6f7fc01502332955b372b4ba5a1ab8123898d1f74040
MD5 693c90aef6ed0b8b19d25ff429a40868
BLAKE2b-256 6b4d3c3bde8b38d5f20a129f34d88b5e430e14b4eaa1e8c559e91e643aa57491

See more details on using hashes here.

Provenance

The following attestation bundles were made for crc32c_rs-0.0.1-cp313-cp313-manylinux_2_17_ppc64.manylinux2014_ppc64.whl:

Publisher: ci.yaml on lava-sh/crc32c-rs

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file crc32c_rs-0.0.1-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

  • Download URL: crc32c_rs-0.0.1-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
  • Upload date:
  • Size: 208.3 kB
  • Tags: CPython 3.13, manylinux: glibc 2.17+ ARMv7l
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.11 {"installer":{"name":"uv","version":"0.12.11","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for crc32c_rs-0.0.1-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 19562e47416f68df236dad8279f9420122d4c599a090ce139b033eb19a667f28
MD5 dec637e07cb15dab741223d3358e0713
BLAKE2b-256 23c6652824e82516c20191e31abd9104d8485d526c6ed63d0c519ffe9d1c122c

See more details on using hashes here.

Provenance

The following attestation bundles were made for crc32c_rs-0.0.1-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl:

Publisher: ci.yaml on lava-sh/crc32c-rs

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file crc32c_rs-0.0.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

  • Download URL: crc32c_rs-0.0.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
  • Upload date:
  • Size: 268.7 kB
  • Tags: CPython 3.13, manylinux: glibc 2.17+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.11 {"installer":{"name":"uv","version":"0.12.11","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for crc32c_rs-0.0.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 2280d3dc6a6ed9a82e6707dfcce9ae58a9ac613904d72dc0e5bf077417947722
MD5 15d2d97f1cee3c7822852b16fe734941
BLAKE2b-256 d2e656f66e553d96db29b4f43b62580134de8dd4dc8bd11f77113e0e68fa5861

See more details on using hashes here.

Provenance

The following attestation bundles were made for crc32c_rs-0.0.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: ci.yaml on lava-sh/crc32c-rs

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file crc32c_rs-0.0.1-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

  • Download URL: crc32c_rs-0.0.1-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl
  • Upload date:
  • Size: 298.8 kB
  • Tags: CPython 3.13, manylinux: glibc 2.5+ i686
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.11 {"installer":{"name":"uv","version":"0.12.11","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for crc32c_rs-0.0.1-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 2e75f0e7ec8e220712963ddcf23093fc2b5081d6a9381998ef3b060b9d0d2e10
MD5 20c2d08c24fcaf61060e0d86b9c598b8
BLAKE2b-256 108c4b263b51a00c45d5e46217245a8479e67ffe0a104f9e5f1c23caa0244362

See more details on using hashes here.

Provenance

The following attestation bundles were made for crc32c_rs-0.0.1-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl:

Publisher: ci.yaml on lava-sh/crc32c-rs

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file crc32c_rs-0.0.1-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

  • Download URL: crc32c_rs-0.0.1-cp313-cp313-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 246.0 kB
  • Tags: CPython 3.13, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.11 {"installer":{"name":"uv","version":"0.12.11","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for crc32c_rs-0.0.1-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 2b7f8538d0a63f5506637323c46f414a8efa4dc3da87ce285cf9d2165dab2312
MD5 dce48aba3c6c2217ee5aacad4b004a61
BLAKE2b-256 19ef484160c20804254409cb2826138a0ad202df468e0b921c022a4799c25783

See more details on using hashes here.

Provenance

The following attestation bundles were made for crc32c_rs-0.0.1-cp313-cp313-macosx_11_0_arm64.whl:

Publisher: ci.yaml on lava-sh/crc32c-rs

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file crc32c_rs-0.0.1-cp313-cp313-macosx_10_12_x86_64.whl.

File metadata

  • Download URL: crc32c_rs-0.0.1-cp313-cp313-macosx_10_12_x86_64.whl
  • Upload date:
  • Size: 265.7 kB
  • Tags: CPython 3.13, macOS 10.12+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.11 {"installer":{"name":"uv","version":"0.12.11","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for crc32c_rs-0.0.1-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 80a22849993ebfdfb1d570665c2328d7402ec490924468b32a0eaedd2697326c
MD5 b4b9ec867c30fd8ad6ee2e3814cbacf8
BLAKE2b-256 fd4c35407dedff5914b3a52f0f251af54f81ea33209336888122750e1acf7247

See more details on using hashes here.

Provenance

The following attestation bundles were made for crc32c_rs-0.0.1-cp313-cp313-macosx_10_12_x86_64.whl:

Publisher: ci.yaml on lava-sh/crc32c-rs

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file crc32c_rs-0.0.1-cp313-cp313-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl.

File metadata

  • Download URL: crc32c_rs-0.0.1-cp313-cp313-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl
  • Upload date:
  • Size: 494.6 kB
  • Tags: CPython 3.13, macOS 10.12+ universal2 (ARM64, x86-64), macOS 10.12+ x86-64, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.11 {"installer":{"name":"uv","version":"0.12.11","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for crc32c_rs-0.0.1-cp313-cp313-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl
Algorithm Hash digest
SHA256 eb4ddfa54f609b92e6343262b439373ae5c935c9b71ecdcca21eb1ba3739956a
MD5 42c0d7189352f7484299f2423ef1fbba
BLAKE2b-256 66de3720ff84c801e8b8f9e6e7f673dcc709123716c9fcf60176c5197cddb63f

See more details on using hashes here.

Provenance

The following attestation bundles were made for crc32c_rs-0.0.1-cp313-cp313-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl:

Publisher: ci.yaml on lava-sh/crc32c-rs

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file crc32c_rs-0.0.1-cp312-cp312-win_arm64.whl.

File metadata

  • Download URL: crc32c_rs-0.0.1-cp312-cp312-win_arm64.whl
  • Upload date:
  • Size: 175.3 kB
  • Tags: CPython 3.12, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.11 {"installer":{"name":"uv","version":"0.12.11","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for crc32c_rs-0.0.1-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 20272adba8bb7da44053de375795bcfc9542292b15648712669c549526430652
MD5 4c30436726ef7f5086784fe2ed363448
BLAKE2b-256 a06ff56bc463944d3c022aa5df71f046f4d715de3ac508557be11b748d5db2a3

See more details on using hashes here.

Provenance

The following attestation bundles were made for crc32c_rs-0.0.1-cp312-cp312-win_arm64.whl:

Publisher: ci.yaml on lava-sh/crc32c-rs

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file crc32c_rs-0.0.1-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: crc32c_rs-0.0.1-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 187.3 kB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.11 {"installer":{"name":"uv","version":"0.12.11","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for crc32c_rs-0.0.1-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 989a88d69406b5c67ab1c692a84e2f7b87c0732b38714abd8347285b959e76b7
MD5 7e700f3a0db4867c46db83b8822bcf79
BLAKE2b-256 d0cfb52befbf7848aac8604372d331c60b1a51a51f5385c5ce98ba2247460afe

See more details on using hashes here.

Provenance

The following attestation bundles were made for crc32c_rs-0.0.1-cp312-cp312-win_amd64.whl:

Publisher: ci.yaml on lava-sh/crc32c-rs

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file crc32c_rs-0.0.1-cp312-cp312-win32.whl.

File metadata

  • Download URL: crc32c_rs-0.0.1-cp312-cp312-win32.whl
  • Upload date:
  • Size: 173.1 kB
  • Tags: CPython 3.12, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.11 {"installer":{"name":"uv","version":"0.12.11","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for crc32c_rs-0.0.1-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 cc064e44aac558cf68cc7c3b1a85bd491e7af836ce4f52d2de697e0558f93705
MD5 e6c22cc283a5bbc80718ae87eb2ff380
BLAKE2b-256 01e0363d0e311723e71dd7d6b7a3b49185128502cc247eaf9b1d833302285eb3

See more details on using hashes here.

Provenance

The following attestation bundles were made for crc32c_rs-0.0.1-cp312-cp312-win32.whl:

Publisher: ci.yaml on lava-sh/crc32c-rs

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file crc32c_rs-0.0.1-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

  • Download URL: crc32c_rs-0.0.1-cp312-cp312-musllinux_1_2_x86_64.whl
  • Upload date:
  • Size: 490.5 kB
  • Tags: CPython 3.12, musllinux: musl 1.2+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.11 {"installer":{"name":"uv","version":"0.12.11","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for crc32c_rs-0.0.1-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 4ffe3ee9e148dc2b96e6f535eb9eb78ecd1d7b9613d1220e2919463a2ef12484
MD5 f27e9e8f6728d8642da4b7a99281d4c8
BLAKE2b-256 9f2a7d77aa6277645dbb2583fe174134ef4f3d09c67e9f862d44df4a7ea98cec

See more details on using hashes here.

Provenance

The following attestation bundles were made for crc32c_rs-0.0.1-cp312-cp312-musllinux_1_2_x86_64.whl:

Publisher: ci.yaml on lava-sh/crc32c-rs

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file crc32c_rs-0.0.1-cp312-cp312-musllinux_1_2_riscv64.whl.

File metadata

  • Download URL: crc32c_rs-0.0.1-cp312-cp312-musllinux_1_2_riscv64.whl
  • Upload date:
  • Size: 426.5 kB
  • Tags: CPython 3.12, musllinux: musl 1.2+ riscv64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.11 {"installer":{"name":"uv","version":"0.12.11","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for crc32c_rs-0.0.1-cp312-cp312-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 3f69664082d1773dafe4ea8648e4f5f04ad8ce33c7143e8746a33eb7d84dc5f5
MD5 e1bd6d3e04857ecdaa78abb7f6cc2ed4
BLAKE2b-256 89bde6ad928ead20d48f3f6439b51632f7608e1daa32c6ba6566a6263c20a0f8

See more details on using hashes here.

Provenance

The following attestation bundles were made for crc32c_rs-0.0.1-cp312-cp312-musllinux_1_2_riscv64.whl:

Publisher: ci.yaml on lava-sh/crc32c-rs

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file crc32c_rs-0.0.1-cp312-cp312-musllinux_1_2_ppc64le.whl.

File metadata

  • Download URL: crc32c_rs-0.0.1-cp312-cp312-musllinux_1_2_ppc64le.whl
  • Upload date:
  • Size: 434.9 kB
  • Tags: CPython 3.12, musllinux: musl 1.2+ ppc64le
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.11 {"installer":{"name":"uv","version":"0.12.11","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for crc32c_rs-0.0.1-cp312-cp312-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 06053f34cf2e96bdfee3077c4bc2dead6bf1c1320a65ac674de0098d10fad9dd
MD5 0fae4d916a838708c702658694d392d0
BLAKE2b-256 dd77f0a134e0703a0db67471c98db497b078bcdbdfcdc673a25cadad5d8960cc

See more details on using hashes here.

Provenance

The following attestation bundles were made for crc32c_rs-0.0.1-cp312-cp312-musllinux_1_2_ppc64le.whl:

Publisher: ci.yaml on lava-sh/crc32c-rs

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file crc32c_rs-0.0.1-cp312-cp312-musllinux_1_2_i686.whl.

File metadata

  • Download URL: crc32c_rs-0.0.1-cp312-cp312-musllinux_1_2_i686.whl
  • Upload date:
  • Size: 524.5 kB
  • Tags: CPython 3.12, musllinux: musl 1.2+ i686
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.11 {"installer":{"name":"uv","version":"0.12.11","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for crc32c_rs-0.0.1-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 b40c976bbd63247d927728b1d16195c13da9ea8fdef0e28826817987514c9e95
MD5 30c7dd2c7dd96a343c12b523b468c19c
BLAKE2b-256 941379dd0ac5cd1054f8f989ba3bd1fa2756458d1f034d11a695178a5d48b69c

See more details on using hashes here.

Provenance

The following attestation bundles were made for crc32c_rs-0.0.1-cp312-cp312-musllinux_1_2_i686.whl:

Publisher: ci.yaml on lava-sh/crc32c-rs

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file crc32c_rs-0.0.1-cp312-cp312-musllinux_1_2_armv7l.whl.

File metadata

  • Download URL: crc32c_rs-0.0.1-cp312-cp312-musllinux_1_2_armv7l.whl
  • Upload date:
  • Size: 534.1 kB
  • Tags: CPython 3.12, musllinux: musl 1.2+ ARMv7l
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.11 {"installer":{"name":"uv","version":"0.12.11","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for crc32c_rs-0.0.1-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 4df528444c52c2b44eb37486dfb0d9a421dd85f613634bac7e937a60940c2de4
MD5 76084ba31dfddee0794af6283ab1bcd8
BLAKE2b-256 9f9a9cea48dddf016bfbf0daaf8ba56bfb0ee7e5fc9a4efd9b64627178929e5e

See more details on using hashes here.

Provenance

The following attestation bundles were made for crc32c_rs-0.0.1-cp312-cp312-musllinux_1_2_armv7l.whl:

Publisher: ci.yaml on lava-sh/crc32c-rs

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file crc32c_rs-0.0.1-cp312-cp312-musllinux_1_2_aarch64.whl.

File metadata

  • Download URL: crc32c_rs-0.0.1-cp312-cp312-musllinux_1_2_aarch64.whl
  • Upload date:
  • Size: 447.8 kB
  • Tags: CPython 3.12, musllinux: musl 1.2+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.11 {"installer":{"name":"uv","version":"0.12.11","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for crc32c_rs-0.0.1-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 34027c754e4b961dfd72fddcbc262acf319f2281cdf07f7658b40dfd5cba8c42
MD5 e2344b23222b23e0cddd207d25ee96e0
BLAKE2b-256 9795ecc1130529befe9b6c45a4488e09db3660a45d058fa6a0897b2731996893

See more details on using hashes here.

Provenance

The following attestation bundles were made for crc32c_rs-0.0.1-cp312-cp312-musllinux_1_2_aarch64.whl:

Publisher: ci.yaml on lava-sh/crc32c-rs

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file crc32c_rs-0.0.1-cp312-cp312-manylinux_2_31_riscv64.whl.

File metadata

  • Download URL: crc32c_rs-0.0.1-cp312-cp312-manylinux_2_31_riscv64.whl
  • Upload date:
  • Size: 249.0 kB
  • Tags: CPython 3.12, manylinux: glibc 2.31+ riscv64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.11 {"installer":{"name":"uv","version":"0.12.11","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for crc32c_rs-0.0.1-cp312-cp312-manylinux_2_31_riscv64.whl
Algorithm Hash digest
SHA256 8ce5cfc61e84a0a30c2d3aebf5ecd206a485ffa6ff8fd3d99c3ef93eee866f0b
MD5 7b7fc1a6e83071b6eb35ad63317bdd47
BLAKE2b-256 584c9be351589baee6eb4cf37847600e3af69ee9492f417a7da7466aa7760b9e

See more details on using hashes here.

Provenance

The following attestation bundles were made for crc32c_rs-0.0.1-cp312-cp312-manylinux_2_31_riscv64.whl:

Publisher: ci.yaml on lava-sh/crc32c-rs

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file crc32c_rs-0.0.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

  • Download URL: crc32c_rs-0.0.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
  • Upload date:
  • Size: 278.1 kB
  • Tags: CPython 3.12, manylinux: glibc 2.17+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.11 {"installer":{"name":"uv","version":"0.12.11","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for crc32c_rs-0.0.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 7a7d83ca879cc79b3cbf04ca1749e309d1b719c2623432ae4499de8851b766de
MD5 8b5caded956f738394c6a7ec4b8b72c6
BLAKE2b-256 c8beb0eff60f50d8571f80671cba9c2c945dd903ff1902225899b4501386078f

See more details on using hashes here.

Provenance

The following attestation bundles were made for crc32c_rs-0.0.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: ci.yaml on lava-sh/crc32c-rs

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file crc32c_rs-0.0.1-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

  • Download URL: crc32c_rs-0.0.1-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
  • Upload date:
  • Size: 239.0 kB
  • Tags: CPython 3.12, manylinux: glibc 2.17+ s390x
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.11 {"installer":{"name":"uv","version":"0.12.11","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for crc32c_rs-0.0.1-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 993a22db6434fa4d1b34963b8f0308bfcb3892c782c5014b2e130e2a46c16e6b
MD5 82e775838756d9f74310f2dfad696464
BLAKE2b-256 2093feda13a1622e3513a741c1d0cc1fc0072b97ff2fcb7ea5f2d87191f81e3c

See more details on using hashes here.

Provenance

The following attestation bundles were made for crc32c_rs-0.0.1-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl:

Publisher: ci.yaml on lava-sh/crc32c-rs

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file crc32c_rs-0.0.1-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

  • Download URL: crc32c_rs-0.0.1-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
  • Upload date:
  • Size: 226.3 kB
  • Tags: CPython 3.12, manylinux: glibc 2.17+ ppc64le
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.11 {"installer":{"name":"uv","version":"0.12.11","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for crc32c_rs-0.0.1-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 0d953af590e0e8f9507b2c1d09a2019a988e56c2160d46113da96afbd8c1af55
MD5 b6d8edc7592e5a74512fc96e1bde0a03
BLAKE2b-256 5010750b3f2f8eb88447b3d53b25cac3f1264d3f1f5e21be3274b6a1788318c7

See more details on using hashes here.

Provenance

The following attestation bundles were made for crc32c_rs-0.0.1-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl:

Publisher: ci.yaml on lava-sh/crc32c-rs

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file crc32c_rs-0.0.1-cp312-cp312-manylinux_2_17_ppc64.manylinux2014_ppc64.whl.

File metadata

  • Download URL: crc32c_rs-0.0.1-cp312-cp312-manylinux_2_17_ppc64.manylinux2014_ppc64.whl
  • Upload date:
  • Size: 226.4 kB
  • Tags: CPython 3.12, manylinux: glibc 2.17+ ppc64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.11 {"installer":{"name":"uv","version":"0.12.11","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for crc32c_rs-0.0.1-cp312-cp312-manylinux_2_17_ppc64.manylinux2014_ppc64.whl
Algorithm Hash digest
SHA256 18b4bb07cff13572084f7582380d80b45140eaf07375ee25c898fe981de7ee7d
MD5 fc5638ad1f0876d5cc64a668aaa97a12
BLAKE2b-256 a7568c607ce8b5cf77b1ed687590d00a8b3eb1e00f951bdb97d1b3562bff3542

See more details on using hashes here.

Provenance

The following attestation bundles were made for crc32c_rs-0.0.1-cp312-cp312-manylinux_2_17_ppc64.manylinux2014_ppc64.whl:

Publisher: ci.yaml on lava-sh/crc32c-rs

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file crc32c_rs-0.0.1-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

  • Download URL: crc32c_rs-0.0.1-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
  • Upload date:
  • Size: 208.2 kB
  • Tags: CPython 3.12, manylinux: glibc 2.17+ ARMv7l
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.11 {"installer":{"name":"uv","version":"0.12.11","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for crc32c_rs-0.0.1-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 c5e8f685ae1433c925010155e1b795c94efaf78dc6e01c12af1d943c9285ec62
MD5 5250deb8750bde6a47e6626ae2d880b2
BLAKE2b-256 f488fb8e27fb897aaa789f3dd5b294c6730befe1b15e641010225f75a051db18

See more details on using hashes here.

Provenance

The following attestation bundles were made for crc32c_rs-0.0.1-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl:

Publisher: ci.yaml on lava-sh/crc32c-rs

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file crc32c_rs-0.0.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

  • Download URL: crc32c_rs-0.0.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
  • Upload date:
  • Size: 268.5 kB
  • Tags: CPython 3.12, manylinux: glibc 2.17+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.11 {"installer":{"name":"uv","version":"0.12.11","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for crc32c_rs-0.0.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 88c953a101277a069160566bb7328fc271e78eb369a0f1335e1d57ee594f856f
MD5 5e94a69537aaf2c17ec27a11e9b47263
BLAKE2b-256 5aca557247f82238f4efc3281856980953c2861b5b16b8457a3140728518b2a6

See more details on using hashes here.

Provenance

The following attestation bundles were made for crc32c_rs-0.0.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: ci.yaml on lava-sh/crc32c-rs

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file crc32c_rs-0.0.1-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

  • Download URL: crc32c_rs-0.0.1-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl
  • Upload date:
  • Size: 298.8 kB
  • Tags: CPython 3.12, manylinux: glibc 2.5+ i686
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.11 {"installer":{"name":"uv","version":"0.12.11","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for crc32c_rs-0.0.1-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 46d7cbb91b1c7e9efbdb722e8677821bfb4c944945ca8d35297188d9662c7d14
MD5 2d960f7ebf7ce0a85afaab5ae3d71223
BLAKE2b-256 7d380397f0ec054509cf0b8eecdeaccace3264ecc7036dd32e87c12f04486ff8

See more details on using hashes here.

Provenance

The following attestation bundles were made for crc32c_rs-0.0.1-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl:

Publisher: ci.yaml on lava-sh/crc32c-rs

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file crc32c_rs-0.0.1-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

  • Download URL: crc32c_rs-0.0.1-cp312-cp312-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 245.8 kB
  • Tags: CPython 3.12, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.11 {"installer":{"name":"uv","version":"0.12.11","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for crc32c_rs-0.0.1-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 8124e03e25693805c4f2cb259681573bee87c7891012b166a2f5d119b57a6283
MD5 7ab16b285933c00082d8a47528523ebb
BLAKE2b-256 9ac4c23c76882038f7422478c86238be27d510d7c6ad542191e38d4c058623a3

See more details on using hashes here.

Provenance

The following attestation bundles were made for crc32c_rs-0.0.1-cp312-cp312-macosx_11_0_arm64.whl:

Publisher: ci.yaml on lava-sh/crc32c-rs

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file crc32c_rs-0.0.1-cp312-cp312-macosx_10_12_x86_64.whl.

File metadata

  • Download URL: crc32c_rs-0.0.1-cp312-cp312-macosx_10_12_x86_64.whl
  • Upload date:
  • Size: 265.4 kB
  • Tags: CPython 3.12, macOS 10.12+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.11 {"installer":{"name":"uv","version":"0.12.11","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for crc32c_rs-0.0.1-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 98e69efd982f23b0bf59abc93d569809f0188d82289d400bf39ea071eb18a6ca
MD5 e4cd69125774aade4448e7c8403e5c82
BLAKE2b-256 7114e07c322d56b540cc8b9930471be8d12c35cbd21f56f7fa1110911383ca07

See more details on using hashes here.

Provenance

The following attestation bundles were made for crc32c_rs-0.0.1-cp312-cp312-macosx_10_12_x86_64.whl:

Publisher: ci.yaml on lava-sh/crc32c-rs

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file crc32c_rs-0.0.1-cp312-cp312-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl.

File metadata

  • Download URL: crc32c_rs-0.0.1-cp312-cp312-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl
  • Upload date:
  • Size: 494.0 kB
  • Tags: CPython 3.12, macOS 10.12+ universal2 (ARM64, x86-64), macOS 10.12+ x86-64, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.11 {"installer":{"name":"uv","version":"0.12.11","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for crc32c_rs-0.0.1-cp312-cp312-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl
Algorithm Hash digest
SHA256 353a505585fce7324514d33da2c8299c474cc5278b24dbe745bf3aacdde50d7b
MD5 ddfcb8293057d715fb40c465ca4973da
BLAKE2b-256 7f43d4c8d821370ba4f277c7c6b1dab416c94a85809b3ce24548aacdc77b5b31

See more details on using hashes here.

Provenance

The following attestation bundles were made for crc32c_rs-0.0.1-cp312-cp312-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl:

Publisher: ci.yaml on lava-sh/crc32c-rs

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file crc32c_rs-0.0.1-cp311-cp311-win_arm64.whl.

File metadata

  • Download URL: crc32c_rs-0.0.1-cp311-cp311-win_arm64.whl
  • Upload date:
  • Size: 174.2 kB
  • Tags: CPython 3.11, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.11 {"installer":{"name":"uv","version":"0.12.11","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for crc32c_rs-0.0.1-cp311-cp311-win_arm64.whl
Algorithm Hash digest
SHA256 0ac0416fe46b77cbd7b84464aafc652eeb1a5bb52c5af9c28a919fdffd5e1303
MD5 442d2af31da4f4a261edabbd74b304bf
BLAKE2b-256 90579e23f833f1d725ab5022743660fad0c64499d70b43161edb76f866abd781

See more details on using hashes here.

Provenance

The following attestation bundles were made for crc32c_rs-0.0.1-cp311-cp311-win_arm64.whl:

Publisher: ci.yaml on lava-sh/crc32c-rs

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file crc32c_rs-0.0.1-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: crc32c_rs-0.0.1-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 185.4 kB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.11 {"installer":{"name":"uv","version":"0.12.11","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for crc32c_rs-0.0.1-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 7a1e327fd6489e0caedf1bcded4a2685802d25629d677a92f0f0013aa1bc6235
MD5 007aa30cfa96cd05d4672cde5386b89f
BLAKE2b-256 9ded8723314ba75ca735fdf3bf573fead124bba96be61af8934bb24bb204d863

See more details on using hashes here.

Provenance

The following attestation bundles were made for crc32c_rs-0.0.1-cp311-cp311-win_amd64.whl:

Publisher: ci.yaml on lava-sh/crc32c-rs

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file crc32c_rs-0.0.1-cp311-cp311-win32.whl.

File metadata

  • Download URL: crc32c_rs-0.0.1-cp311-cp311-win32.whl
  • Upload date:
  • Size: 173.4 kB
  • Tags: CPython 3.11, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.11 {"installer":{"name":"uv","version":"0.12.11","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for crc32c_rs-0.0.1-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 a8e2748ea4fb99f16703a5b3b74cea944821b8083d4b4a5e46cd04435718896e
MD5 ad1db5717aefb5690f83d0b5f36cddd8
BLAKE2b-256 1bd2ec9b4083a2c31fe57ae427467468b8b51c7cee00bfdc6a686bf7a848b22d

See more details on using hashes here.

Provenance

The following attestation bundles were made for crc32c_rs-0.0.1-cp311-cp311-win32.whl:

Publisher: ci.yaml on lava-sh/crc32c-rs

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file crc32c_rs-0.0.1-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

  • Download URL: crc32c_rs-0.0.1-cp311-cp311-musllinux_1_2_x86_64.whl
  • Upload date:
  • Size: 488.4 kB
  • Tags: CPython 3.11, musllinux: musl 1.2+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.11 {"installer":{"name":"uv","version":"0.12.11","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for crc32c_rs-0.0.1-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 553ed893aee107714ec06b0ebff4ca791809c71c4445c0450512978c8ba4ec2a
MD5 1942728d4aced05de4666ca36f21a5fa
BLAKE2b-256 cf19ff5cc1a38cbcc249f9a7270a97e5f355f6224ea422a135e9ee44fe65ef61

See more details on using hashes here.

Provenance

The following attestation bundles were made for crc32c_rs-0.0.1-cp311-cp311-musllinux_1_2_x86_64.whl:

Publisher: ci.yaml on lava-sh/crc32c-rs

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file crc32c_rs-0.0.1-cp311-cp311-musllinux_1_2_riscv64.whl.

File metadata

  • Download URL: crc32c_rs-0.0.1-cp311-cp311-musllinux_1_2_riscv64.whl
  • Upload date:
  • Size: 425.6 kB
  • Tags: CPython 3.11, musllinux: musl 1.2+ riscv64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.11 {"installer":{"name":"uv","version":"0.12.11","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for crc32c_rs-0.0.1-cp311-cp311-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 c2ee7d1b537715c7ce192b83c1e05bf296089e3a7b2b35f6b144c45b672b642f
MD5 585f879786fe34cbd754c5f500015034
BLAKE2b-256 b987e39ff885b73507b20eaf7b4b2f7cae473fde2e3aeaa60a8d41c743694cbd

See more details on using hashes here.

Provenance

The following attestation bundles were made for crc32c_rs-0.0.1-cp311-cp311-musllinux_1_2_riscv64.whl:

Publisher: ci.yaml on lava-sh/crc32c-rs

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file crc32c_rs-0.0.1-cp311-cp311-musllinux_1_2_ppc64le.whl.

File metadata

  • Download URL: crc32c_rs-0.0.1-cp311-cp311-musllinux_1_2_ppc64le.whl
  • Upload date:
  • Size: 434.2 kB
  • Tags: CPython 3.11, musllinux: musl 1.2+ ppc64le
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.11 {"installer":{"name":"uv","version":"0.12.11","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for crc32c_rs-0.0.1-cp311-cp311-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 a9cc6cd7c05b69f6f4b5d4607c739cc774124fcead390cc6dab9b7bcb98f3218
MD5 1fb86f5c54ffadfee65006e63cf7498b
BLAKE2b-256 66c5122b72dd5c8cfea8da0f5c8b8f8985fddafa8e687fbe6e33cfba9d49a02f

See more details on using hashes here.

Provenance

The following attestation bundles were made for crc32c_rs-0.0.1-cp311-cp311-musllinux_1_2_ppc64le.whl:

Publisher: ci.yaml on lava-sh/crc32c-rs

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file crc32c_rs-0.0.1-cp311-cp311-musllinux_1_2_i686.whl.

File metadata

  • Download URL: crc32c_rs-0.0.1-cp311-cp311-musllinux_1_2_i686.whl
  • Upload date:
  • Size: 525.9 kB
  • Tags: CPython 3.11, musllinux: musl 1.2+ i686
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.11 {"installer":{"name":"uv","version":"0.12.11","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for crc32c_rs-0.0.1-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 2fd061cb26868bd8834bd04d45c8d91611d76ab9396fac471715098126726dbc
MD5 7eb97160a334299a32b599d03a4ec419
BLAKE2b-256 1fc03edc2c5b89ec531604b41b75a619112594bcda0af595b844f12644fc4df9

See more details on using hashes here.

Provenance

The following attestation bundles were made for crc32c_rs-0.0.1-cp311-cp311-musllinux_1_2_i686.whl:

Publisher: ci.yaml on lava-sh/crc32c-rs

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file crc32c_rs-0.0.1-cp311-cp311-musllinux_1_2_armv7l.whl.

File metadata

  • Download URL: crc32c_rs-0.0.1-cp311-cp311-musllinux_1_2_armv7l.whl
  • Upload date:
  • Size: 534.4 kB
  • Tags: CPython 3.11, musllinux: musl 1.2+ ARMv7l
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.11 {"installer":{"name":"uv","version":"0.12.11","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for crc32c_rs-0.0.1-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 0568be0a7ca9a2ebe0468f3257a2eb41a99bd3099349fe4a835b86a8bfaf69a1
MD5 77fb732aff9baf02eca1549b4c297027
BLAKE2b-256 fa20ad39833b2d151bb074e2d6329ef360ea12d2ee36a597415fabb489417b10

See more details on using hashes here.

Provenance

The following attestation bundles were made for crc32c_rs-0.0.1-cp311-cp311-musllinux_1_2_armv7l.whl:

Publisher: ci.yaml on lava-sh/crc32c-rs

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file crc32c_rs-0.0.1-cp311-cp311-musllinux_1_2_aarch64.whl.

File metadata

  • Download URL: crc32c_rs-0.0.1-cp311-cp311-musllinux_1_2_aarch64.whl
  • Upload date:
  • Size: 446.9 kB
  • Tags: CPython 3.11, musllinux: musl 1.2+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.11 {"installer":{"name":"uv","version":"0.12.11","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for crc32c_rs-0.0.1-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 715d15ae4a1270ad805d5ac75649516da6fb01efb658854577efda9a6865a104
MD5 02ebcc6b05fd2c072a59ebafe93ce115
BLAKE2b-256 0780a88fd1bca0ef2f24205a73481c564087daecd1b0f8a3b00853dbcd14137f

See more details on using hashes here.

Provenance

The following attestation bundles were made for crc32c_rs-0.0.1-cp311-cp311-musllinux_1_2_aarch64.whl:

Publisher: ci.yaml on lava-sh/crc32c-rs

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file crc32c_rs-0.0.1-cp311-cp311-manylinux_2_31_riscv64.whl.

File metadata

  • Download URL: crc32c_rs-0.0.1-cp311-cp311-manylinux_2_31_riscv64.whl
  • Upload date:
  • Size: 248.2 kB
  • Tags: CPython 3.11, manylinux: glibc 2.31+ riscv64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.11 {"installer":{"name":"uv","version":"0.12.11","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for crc32c_rs-0.0.1-cp311-cp311-manylinux_2_31_riscv64.whl
Algorithm Hash digest
SHA256 fc5b7af9fbaa40095d3aa8b2350efe3c06b1fdc9ab60b6f255d5c488428a03e8
MD5 dcc44dd1ca2b0f196fab715a52953227
BLAKE2b-256 752e95fabc056ce7b2c3c84e69d23ea8196b40777aaef492c62b5adb3309b1f2

See more details on using hashes here.

Provenance

The following attestation bundles were made for crc32c_rs-0.0.1-cp311-cp311-manylinux_2_31_riscv64.whl:

Publisher: ci.yaml on lava-sh/crc32c-rs

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file crc32c_rs-0.0.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

  • Download URL: crc32c_rs-0.0.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
  • Upload date:
  • Size: 275.9 kB
  • Tags: CPython 3.11, manylinux: glibc 2.17+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.11 {"installer":{"name":"uv","version":"0.12.11","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for crc32c_rs-0.0.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 1308ab813dca4355fd326ffff0e09b1f9ddebb81e5bf51dbc3791f14f99b1621
MD5 6ed50d4af44173af57847b2b1d410713
BLAKE2b-256 81a1873aac039f0e1a6375ddd51e703dd3d95c107b0574abb8b3bb4c462a2c89

See more details on using hashes here.

Provenance

The following attestation bundles were made for crc32c_rs-0.0.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: ci.yaml on lava-sh/crc32c-rs

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file crc32c_rs-0.0.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

  • Download URL: crc32c_rs-0.0.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
  • Upload date:
  • Size: 237.4 kB
  • Tags: CPython 3.11, manylinux: glibc 2.17+ s390x
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.11 {"installer":{"name":"uv","version":"0.12.11","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for crc32c_rs-0.0.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 33f3ccfa1719d1d62d111ce0bd9b89e1353ca4661630ec21f23b7b6a930f0842
MD5 ea647648d54360d80393bb4777226205
BLAKE2b-256 e37b8151c8463a96d7f9db54ab18c603dd6136a174dbf58896c72ebc2a388611

See more details on using hashes here.

Provenance

The following attestation bundles were made for crc32c_rs-0.0.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl:

Publisher: ci.yaml on lava-sh/crc32c-rs

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file crc32c_rs-0.0.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

  • Download URL: crc32c_rs-0.0.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
  • Upload date:
  • Size: 225.3 kB
  • Tags: CPython 3.11, manylinux: glibc 2.17+ ppc64le
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.11 {"installer":{"name":"uv","version":"0.12.11","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for crc32c_rs-0.0.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 9af15c259be28668f0b9171f8bf541443f41cb7ea9a614de0236b7c0fa0bcd73
MD5 7c7e3f89700222744ac1841374dc346b
BLAKE2b-256 e91d378336f43cdbff7d68a7ba3bc056b884ca142ab6b039785881fe4206f3f3

See more details on using hashes here.

Provenance

The following attestation bundles were made for crc32c_rs-0.0.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl:

Publisher: ci.yaml on lava-sh/crc32c-rs

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file crc32c_rs-0.0.1-cp311-cp311-manylinux_2_17_ppc64.manylinux2014_ppc64.whl.

File metadata

  • Download URL: crc32c_rs-0.0.1-cp311-cp311-manylinux_2_17_ppc64.manylinux2014_ppc64.whl
  • Upload date:
  • Size: 226.1 kB
  • Tags: CPython 3.11, manylinux: glibc 2.17+ ppc64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.11 {"installer":{"name":"uv","version":"0.12.11","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for crc32c_rs-0.0.1-cp311-cp311-manylinux_2_17_ppc64.manylinux2014_ppc64.whl
Algorithm Hash digest
SHA256 e4c3d752e737c008b9c9e5bb6d2d8944b976cfc1cbecb81f6b8f843e0ad259f3
MD5 a7a9b332206b5c1d765c364f79727c36
BLAKE2b-256 cc20621d4e5bc86f7ef61bc39a39fa22bca635abba7ed866aef4326c139df0dd

See more details on using hashes here.

Provenance

The following attestation bundles were made for crc32c_rs-0.0.1-cp311-cp311-manylinux_2_17_ppc64.manylinux2014_ppc64.whl:

Publisher: ci.yaml on lava-sh/crc32c-rs

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file crc32c_rs-0.0.1-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

  • Download URL: crc32c_rs-0.0.1-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
  • Upload date:
  • Size: 208.5 kB
  • Tags: CPython 3.11, manylinux: glibc 2.17+ ARMv7l
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.11 {"installer":{"name":"uv","version":"0.12.11","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for crc32c_rs-0.0.1-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 5d100d9f9d1c7040da7991cd4979ce71be6a07c478aaafe5323593738403d514
MD5 0bd756fbf3275adf11888664ac8f9c5f
BLAKE2b-256 3e87c5f764e24b91f1cf2f5175c588306369db53fad7cf895c7366d4f1b80217

See more details on using hashes here.

Provenance

The following attestation bundles were made for crc32c_rs-0.0.1-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl:

Publisher: ci.yaml on lava-sh/crc32c-rs

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file crc32c_rs-0.0.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

  • Download URL: crc32c_rs-0.0.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
  • Upload date:
  • Size: 267.6 kB
  • Tags: CPython 3.11, manylinux: glibc 2.17+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.11 {"installer":{"name":"uv","version":"0.12.11","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for crc32c_rs-0.0.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 a295322067ce6800570a87b17cfb4a29109a64093c875148956abded572a20c0
MD5 f83c54a1ee173a7c797f4582e895e9aa
BLAKE2b-256 1e85c0a6a55d33140a6512fd6fb6c5afb631cd1aacddcbb6a2f13e34a4a48873

See more details on using hashes here.

Provenance

The following attestation bundles were made for crc32c_rs-0.0.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: ci.yaml on lava-sh/crc32c-rs

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file crc32c_rs-0.0.1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

  • Download URL: crc32c_rs-0.0.1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl
  • Upload date:
  • Size: 300.6 kB
  • Tags: CPython 3.11, manylinux: glibc 2.5+ i686
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.11 {"installer":{"name":"uv","version":"0.12.11","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for crc32c_rs-0.0.1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 08bd4d357721d638a5da704a376736e32f5149ae2fb91c325d7930eed727ba0d
MD5 ee71b62dc51cd306fe04258fc833c611
BLAKE2b-256 1e44986727929a98b3eb112c4c1f815f6b384cca5cc2827613f4d28620bb289f

See more details on using hashes here.

Provenance

The following attestation bundles were made for crc32c_rs-0.0.1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl:

Publisher: ci.yaml on lava-sh/crc32c-rs

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file crc32c_rs-0.0.1-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

  • Download URL: crc32c_rs-0.0.1-cp311-cp311-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 247.7 kB
  • Tags: CPython 3.11, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.11 {"installer":{"name":"uv","version":"0.12.11","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for crc32c_rs-0.0.1-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 4c8880954155620f91e0a7a487e8c7500319a49289d641c44adfb4e724f8ec0e
MD5 6e47a79323816b0a0165a0ccd71cfd85
BLAKE2b-256 bff412064bd57d929aaa104c0035c9821a6799e87da19311b13ccced77f30431

See more details on using hashes here.

Provenance

The following attestation bundles were made for crc32c_rs-0.0.1-cp311-cp311-macosx_11_0_arm64.whl:

Publisher: ci.yaml on lava-sh/crc32c-rs

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file crc32c_rs-0.0.1-cp311-cp311-macosx_10_12_x86_64.whl.

File metadata

  • Download URL: crc32c_rs-0.0.1-cp311-cp311-macosx_10_12_x86_64.whl
  • Upload date:
  • Size: 265.5 kB
  • Tags: CPython 3.11, macOS 10.12+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.11 {"installer":{"name":"uv","version":"0.12.11","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for crc32c_rs-0.0.1-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 44c2f38297df79dc13c33128899995ae71a61417a9d994e7af1bdba2c8325d55
MD5 2af56ea0984512acddb877a522bf6d12
BLAKE2b-256 52eac9a448b771cdf14ee5cb82ef0ef1461b13480271c6e800d118bb976d5239

See more details on using hashes here.

Provenance

The following attestation bundles were made for crc32c_rs-0.0.1-cp311-cp311-macosx_10_12_x86_64.whl:

Publisher: ci.yaml on lava-sh/crc32c-rs

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file crc32c_rs-0.0.1-cp311-cp311-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl.

File metadata

  • Download URL: crc32c_rs-0.0.1-cp311-cp311-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl
  • Upload date:
  • Size: 495.6 kB
  • Tags: CPython 3.11, macOS 10.12+ universal2 (ARM64, x86-64), macOS 10.12+ x86-64, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.11 {"installer":{"name":"uv","version":"0.12.11","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for crc32c_rs-0.0.1-cp311-cp311-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl
Algorithm Hash digest
SHA256 4f8d3673edee0ad02632a359fb097d7bf288685ae08731a63cee30000a56b554
MD5 9db92b2a0a360338662cbe69760a003b
BLAKE2b-256 fe47d1cf8a28034801f87c7da870bef064999ecb0ea56a3fe8535b61c4a7c8f0

See more details on using hashes here.

Provenance

The following attestation bundles were made for crc32c_rs-0.0.1-cp311-cp311-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl:

Publisher: ci.yaml on lava-sh/crc32c-rs

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Release history Release notifications | RSS feed

0.0.2

161 files

This release

0.0.1 This release

161 files

Anthropic, PBC Visionary sponsor Bloomberg Visionary sponsor Hudson River Trading Visionary sponsor Meta Visionary sponsor NVIDIA Visionary sponsor Microsoft Sustainability sponsor Depot Continuous Integration AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page