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.2.tar.gz (92.2 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.2-pp311-pypy311_pp73-win_amd64.whl (185.9 kB view details)

Uploaded PyPyWindows x86-64

crc32c_rs-0.0.2-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl (489.1 kB view details)

Uploaded PyPymusllinux: musl 1.2+ x86-64

crc32c_rs-0.0.2-pp311-pypy311_pp73-musllinux_1_2_riscv64.whl (426.3 kB view details)

Uploaded PyPymusllinux: musl 1.2+ riscv64

crc32c_rs-0.0.2-pp311-pypy311_pp73-musllinux_1_2_ppc64le.whl (434.9 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ppc64le

crc32c_rs-0.0.2-pp311-pypy311_pp73-musllinux_1_2_i686.whl (527.0 kB view details)

Uploaded PyPymusllinux: musl 1.2+ i686

crc32c_rs-0.0.2-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl (535.2 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

crc32c_rs-0.0.2-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl (447.2 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARM64

crc32c_rs-0.0.2-pp311-pypy311_pp73-manylinux_2_31_riscv64.whl (248.9 kB view details)

Uploaded PyPymanylinux: glibc 2.31+ riscv64

crc32c_rs-0.0.2-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (276.7 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

crc32c_rs-0.0.2-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (238.0 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ s390x

crc32c_rs-0.0.2-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (226.1 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

crc32c_rs-0.0.2-pp311-pypy311_pp73-manylinux_2_17_ppc64.manylinux2014_ppc64.whl (226.8 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ppc64

crc32c_rs-0.0.2-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (209.2 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

crc32c_rs-0.0.2-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (267.9 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

crc32c_rs-0.0.2-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl (301.6 kB view details)

Uploaded PyPymanylinux: glibc 2.5+ i686

crc32c_rs-0.0.2-pp311-pypy311_pp73-macosx_11_0_arm64.whl (248.4 kB view details)

Uploaded PyPymacOS 11.0+ ARM64

crc32c_rs-0.0.2-pp311-pypy311_pp73-macosx_10_12_x86_64.whl (266.7 kB view details)

Uploaded PyPymacOS 10.12+ x86-64

crc32c_rs-0.0.2-pp311-pypy311_pp73-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl (497.5 kB view details)

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

crc32c_rs-0.0.2-cp315-cp315t-win_arm64.whl (174.1 kB view details)

Uploaded CPython 3.15tWindows ARM64

crc32c_rs-0.0.2-cp315-cp315t-win_amd64.whl (186.3 kB view details)

Uploaded CPython 3.15tWindows x86-64

crc32c_rs-0.0.2-cp315-cp315t-win32.whl (171.8 kB view details)

Uploaded CPython 3.15tWindows x86

crc32c_rs-0.0.2-cp315-cp315t-musllinux_1_2_x86_64.whl (489.9 kB view details)

Uploaded CPython 3.15tmusllinux: musl 1.2+ x86-64

crc32c_rs-0.0.2-cp315-cp315t-musllinux_1_2_riscv64.whl (426.1 kB view details)

Uploaded CPython 3.15tmusllinux: musl 1.2+ riscv64

crc32c_rs-0.0.2-cp315-cp315t-musllinux_1_2_ppc64le.whl (434.6 kB view details)

Uploaded CPython 3.15tmusllinux: musl 1.2+ ppc64le

crc32c_rs-0.0.2-cp315-cp315t-musllinux_1_2_i686.whl (523.9 kB view details)

Uploaded CPython 3.15tmusllinux: musl 1.2+ i686

crc32c_rs-0.0.2-cp315-cp315t-musllinux_1_2_armv7l.whl (533.3 kB view details)

Uploaded CPython 3.15tmusllinux: musl 1.2+ ARMv7l

crc32c_rs-0.0.2-cp315-cp315t-musllinux_1_2_aarch64.whl (447.7 kB view details)

Uploaded CPython 3.15tmusllinux: musl 1.2+ ARM64

crc32c_rs-0.0.2-cp315-cp315t-manylinux_2_31_riscv64.whl (248.6 kB view details)

Uploaded CPython 3.15tmanylinux: glibc 2.31+ riscv64

crc32c_rs-0.0.2-cp315-cp315t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (277.6 kB view details)

Uploaded CPython 3.15tmanylinux: glibc 2.17+ x86-64

crc32c_rs-0.0.2-cp315-cp315t-manylinux_2_17_s390x.manylinux2014_s390x.whl (238.9 kB view details)

Uploaded CPython 3.15tmanylinux: glibc 2.17+ s390x

crc32c_rs-0.0.2-cp315-cp315t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (225.8 kB view details)

Uploaded CPython 3.15tmanylinux: glibc 2.17+ ppc64le

crc32c_rs-0.0.2-cp315-cp315t-manylinux_2_17_ppc64.manylinux2014_ppc64.whl (226.3 kB view details)

Uploaded CPython 3.15tmanylinux: glibc 2.17+ ppc64

crc32c_rs-0.0.2-cp315-cp315t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (207.3 kB view details)

Uploaded CPython 3.15tmanylinux: glibc 2.17+ ARMv7l

crc32c_rs-0.0.2-cp315-cp315t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (268.2 kB view details)

Uploaded CPython 3.15tmanylinux: glibc 2.17+ ARM64

crc32c_rs-0.0.2-cp315-cp315t-manylinux_2_5_i686.manylinux1_i686.whl (298.1 kB view details)

Uploaded CPython 3.15tmanylinux: glibc 2.5+ i686

crc32c_rs-0.0.2-cp315-cp315t-macosx_11_0_arm64.whl (244.5 kB view details)

Uploaded CPython 3.15tmacOS 11.0+ ARM64

crc32c_rs-0.0.2-cp315-cp315t-macosx_10_12_x86_64.whl (264.4 kB view details)

Uploaded CPython 3.15tmacOS 10.12+ x86-64

crc32c_rs-0.0.2-cp315-cp315t-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl (492.2 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.2-cp315-cp315-win_arm64.whl (175.0 kB view details)

Uploaded CPython 3.15Windows ARM64

crc32c_rs-0.0.2-cp315-cp315-win_amd64.whl (187.0 kB view details)

Uploaded CPython 3.15Windows x86-64

crc32c_rs-0.0.2-cp315-cp315-win32.whl (172.6 kB view details)

Uploaded CPython 3.15Windows x86

crc32c_rs-0.0.2-cp315-cp315-musllinux_1_2_x86_64.whl (491.4 kB view details)

Uploaded CPython 3.15musllinux: musl 1.2+ x86-64

crc32c_rs-0.0.2-cp315-cp315-musllinux_1_2_riscv64.whl (427.1 kB view details)

Uploaded CPython 3.15musllinux: musl 1.2+ riscv64

crc32c_rs-0.0.2-cp315-cp315-musllinux_1_2_ppc64le.whl (435.6 kB view details)

Uploaded CPython 3.15musllinux: musl 1.2+ ppc64le

crc32c_rs-0.0.2-cp315-cp315-musllinux_1_2_i686.whl (524.8 kB view details)

Uploaded CPython 3.15musllinux: musl 1.2+ i686

crc32c_rs-0.0.2-cp315-cp315-musllinux_1_2_armv7l.whl (534.3 kB view details)

Uploaded CPython 3.15musllinux: musl 1.2+ ARMv7l

crc32c_rs-0.0.2-cp315-cp315-musllinux_1_2_aarch64.whl (448.3 kB view details)

Uploaded CPython 3.15musllinux: musl 1.2+ ARM64

crc32c_rs-0.0.2-cp315-cp315-manylinux_2_31_riscv64.whl (249.8 kB view details)

Uploaded CPython 3.15manylinux: glibc 2.31+ riscv64

crc32c_rs-0.0.2-cp315-cp315-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (278.8 kB view details)

Uploaded CPython 3.15manylinux: glibc 2.17+ x86-64

crc32c_rs-0.0.2-cp315-cp315-manylinux_2_17_s390x.manylinux2014_s390x.whl (239.7 kB view details)

Uploaded CPython 3.15manylinux: glibc 2.17+ s390x

crc32c_rs-0.0.2-cp315-cp315-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (227.0 kB view details)

Uploaded CPython 3.15manylinux: glibc 2.17+ ppc64le

crc32c_rs-0.0.2-cp315-cp315-manylinux_2_17_ppc64.manylinux2014_ppc64.whl (227.3 kB view details)

Uploaded CPython 3.15manylinux: glibc 2.17+ ppc64

crc32c_rs-0.0.2-cp315-cp315-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (208.4 kB view details)

Uploaded CPython 3.15manylinux: glibc 2.17+ ARMv7l

crc32c_rs-0.0.2-cp315-cp315-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (269.2 kB view details)

Uploaded CPython 3.15manylinux: glibc 2.17+ ARM64

crc32c_rs-0.0.2-cp315-cp315-manylinux_2_5_i686.manylinux1_i686.whl (299.2 kB view details)

Uploaded CPython 3.15manylinux: glibc 2.5+ i686

crc32c_rs-0.0.2-cp315-cp315-macosx_11_0_arm64.whl (245.4 kB view details)

Uploaded CPython 3.15macOS 11.0+ ARM64

crc32c_rs-0.0.2-cp315-cp315-macosx_10_12_x86_64.whl (265.0 kB view details)

Uploaded CPython 3.15macOS 10.12+ x86-64

crc32c_rs-0.0.2-cp315-cp315-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl (493.6 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.2-cp314-cp314t-win_arm64.whl (174.0 kB view details)

Uploaded CPython 3.14tWindows ARM64

crc32c_rs-0.0.2-cp314-cp314t-win_amd64.whl (186.2 kB view details)

Uploaded CPython 3.14tWindows x86-64

crc32c_rs-0.0.2-cp314-cp314t-win32.whl (171.7 kB view details)

Uploaded CPython 3.14tWindows x86

crc32c_rs-0.0.2-cp314-cp314t-musllinux_1_2_x86_64.whl (489.8 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

crc32c_rs-0.0.2-cp314-cp314t-musllinux_1_2_riscv64.whl (426.0 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ riscv64

crc32c_rs-0.0.2-cp314-cp314t-musllinux_1_2_ppc64le.whl (434.4 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ppc64le

crc32c_rs-0.0.2-cp314-cp314t-musllinux_1_2_i686.whl (523.8 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ i686

crc32c_rs-0.0.2-cp314-cp314t-musllinux_1_2_armv7l.whl (533.2 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARMv7l

crc32c_rs-0.0.2-cp314-cp314t-musllinux_1_2_aarch64.whl (447.5 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

crc32c_rs-0.0.2-cp314-cp314t-manylinux_2_31_riscv64.whl (248.5 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.31+ riscv64

crc32c_rs-0.0.2-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (277.6 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ x86-64

crc32c_rs-0.0.2-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl (238.8 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ s390x

crc32c_rs-0.0.2-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (225.7 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ppc64le

crc32c_rs-0.0.2-cp314-cp314t-manylinux_2_17_ppc64.manylinux2014_ppc64.whl (226.2 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ppc64

crc32c_rs-0.0.2-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (207.1 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARMv7l

crc32c_rs-0.0.2-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (268.2 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARM64

crc32c_rs-0.0.2-cp314-cp314t-manylinux_2_5_i686.manylinux1_i686.whl (298.0 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.5+ i686

crc32c_rs-0.0.2-cp314-cp314t-macosx_11_0_arm64.whl (244.5 kB view details)

Uploaded CPython 3.14tmacOS 11.0+ ARM64

crc32c_rs-0.0.2-cp314-cp314t-macosx_10_12_x86_64.whl (264.4 kB view details)

Uploaded CPython 3.14tmacOS 10.12+ x86-64

crc32c_rs-0.0.2-cp314-cp314t-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl (492.1 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.2-cp314-cp314-win_arm64.whl (174.9 kB view details)

Uploaded CPython 3.14Windows ARM64

crc32c_rs-0.0.2-cp314-cp314-win_amd64.whl (186.9 kB view details)

Uploaded CPython 3.14Windows x86-64

crc32c_rs-0.0.2-cp314-cp314-win32.whl (172.5 kB view details)

Uploaded CPython 3.14Windows x86

crc32c_rs-0.0.2-cp314-cp314-pyemscripten_2026_0_wasm32.whl (70.4 kB view details)

Uploaded CPython 3.14PyEmscripten 2026.0 wasm32

crc32c_rs-0.0.2-cp314-cp314-musllinux_1_2_x86_64.whl (491.2 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

crc32c_rs-0.0.2-cp314-cp314-musllinux_1_2_riscv64.whl (427.0 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ riscv64

crc32c_rs-0.0.2-cp314-cp314-musllinux_1_2_ppc64le.whl (435.4 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ppc64le

crc32c_rs-0.0.2-cp314-cp314-musllinux_1_2_i686.whl (524.7 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ i686

crc32c_rs-0.0.2-cp314-cp314-musllinux_1_2_armv7l.whl (534.2 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARMv7l

crc32c_rs-0.0.2-cp314-cp314-musllinux_1_2_aarch64.whl (448.2 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

crc32c_rs-0.0.2-cp314-cp314-manylinux_2_31_riscv64.whl (249.7 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.31+ riscv64

crc32c_rs-0.0.2-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (278.7 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ x86-64

crc32c_rs-0.0.2-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl (239.6 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ s390x

crc32c_rs-0.0.2-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (226.9 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ppc64le

crc32c_rs-0.0.2-cp314-cp314-manylinux_2_17_ppc64.manylinux2014_ppc64.whl (227.1 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ppc64

crc32c_rs-0.0.2-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (208.3 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARMv7l

crc32c_rs-0.0.2-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (269.0 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARM64

crc32c_rs-0.0.2-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl (299.0 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.5+ i686

crc32c_rs-0.0.2-cp314-cp314-macosx_11_0_arm64.whl (245.3 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

crc32c_rs-0.0.2-cp314-cp314-macosx_10_12_x86_64.whl (264.9 kB view details)

Uploaded CPython 3.14macOS 10.12+ x86-64

crc32c_rs-0.0.2-cp314-cp314-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl (493.5 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.2-cp313-cp313-win_arm64.whl (175.2 kB view details)

Uploaded CPython 3.13Windows ARM64

crc32c_rs-0.0.2-cp313-cp313-win_amd64.whl (187.3 kB view details)

Uploaded CPython 3.13Windows x86-64

crc32c_rs-0.0.2-cp313-cp313-win32.whl (173.1 kB view details)

Uploaded CPython 3.13Windows x86

crc32c_rs-0.0.2-cp313-cp313-pyemscripten_2025_0_wasm32.whl (69.9 kB view details)

Uploaded CPython 3.13PyEmscripten 2025.0 wasm32

crc32c_rs-0.0.2-cp313-cp313-musllinux_1_2_x86_64.whl (490.6 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

crc32c_rs-0.0.2-cp313-cp313-musllinux_1_2_riscv64.whl (426.5 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ riscv64

crc32c_rs-0.0.2-cp313-cp313-musllinux_1_2_ppc64le.whl (434.8 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ppc64le

crc32c_rs-0.0.2-cp313-cp313-musllinux_1_2_i686.whl (524.5 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ i686

crc32c_rs-0.0.2-cp313-cp313-musllinux_1_2_armv7l.whl (534.0 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARMv7l

crc32c_rs-0.0.2-cp313-cp313-musllinux_1_2_aarch64.whl (447.8 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

crc32c_rs-0.0.2-cp313-cp313-manylinux_2_31_riscv64.whl (249.0 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.31+ riscv64

crc32c_rs-0.0.2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (278.2 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

crc32c_rs-0.0.2-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl (239.0 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ s390x

crc32c_rs-0.0.2-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (226.4 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ppc64le

crc32c_rs-0.0.2-cp313-cp313-manylinux_2_17_ppc64.manylinux2014_ppc64.whl (226.6 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ppc64

crc32c_rs-0.0.2-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (208.1 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARMv7l

crc32c_rs-0.0.2-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (268.6 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

crc32c_rs-0.0.2-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl (298.6 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.5+ i686

crc32c_rs-0.0.2-cp313-cp313-macosx_11_0_arm64.whl (245.9 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

crc32c_rs-0.0.2-cp313-cp313-macosx_10_12_x86_64.whl (265.5 kB view details)

Uploaded CPython 3.13macOS 10.12+ x86-64

crc32c_rs-0.0.2-cp313-cp313-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl (494.2 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.2-cp312-cp312-win_arm64.whl (175.1 kB view details)

Uploaded CPython 3.12Windows ARM64

crc32c_rs-0.0.2-cp312-cp312-win_amd64.whl (187.1 kB view details)

Uploaded CPython 3.12Windows x86-64

crc32c_rs-0.0.2-cp312-cp312-win32.whl (173.0 kB view details)

Uploaded CPython 3.12Windows x86

crc32c_rs-0.0.2-cp312-cp312-musllinux_1_2_x86_64.whl (490.3 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

crc32c_rs-0.0.2-cp312-cp312-musllinux_1_2_riscv64.whl (426.3 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ riscv64

crc32c_rs-0.0.2-cp312-cp312-musllinux_1_2_ppc64le.whl (434.7 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ppc64le

crc32c_rs-0.0.2-cp312-cp312-musllinux_1_2_i686.whl (524.4 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ i686

crc32c_rs-0.0.2-cp312-cp312-musllinux_1_2_armv7l.whl (533.9 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

crc32c_rs-0.0.2-cp312-cp312-musllinux_1_2_aarch64.whl (447.7 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

crc32c_rs-0.0.2-cp312-cp312-manylinux_2_31_riscv64.whl (248.9 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.31+ riscv64

crc32c_rs-0.0.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (277.9 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

crc32c_rs-0.0.2-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl (238.8 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ s390x

crc32c_rs-0.0.2-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (226.1 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ppc64le

crc32c_rs-0.0.2-cp312-cp312-manylinux_2_17_ppc64.manylinux2014_ppc64.whl (226.3 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ppc64

crc32c_rs-0.0.2-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (208.0 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARMv7l

crc32c_rs-0.0.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (268.4 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

crc32c_rs-0.0.2-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl (298.6 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.5+ i686

crc32c_rs-0.0.2-cp312-cp312-macosx_11_0_arm64.whl (245.7 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

crc32c_rs-0.0.2-cp312-cp312-macosx_10_12_x86_64.whl (265.2 kB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

crc32c_rs-0.0.2-cp312-cp312-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl (493.8 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.2-cp311-cp311-win_arm64.whl (174.0 kB view details)

Uploaded CPython 3.11Windows ARM64

crc32c_rs-0.0.2-cp311-cp311-win_amd64.whl (185.2 kB view details)

Uploaded CPython 3.11Windows x86-64

crc32c_rs-0.0.2-cp311-cp311-win32.whl (173.2 kB view details)

Uploaded CPython 3.11Windows x86

crc32c_rs-0.0.2-cp311-cp311-musllinux_1_2_x86_64.whl (488.2 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

crc32c_rs-0.0.2-cp311-cp311-musllinux_1_2_riscv64.whl (425.4 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ riscv64

crc32c_rs-0.0.2-cp311-cp311-musllinux_1_2_ppc64le.whl (434.1 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ppc64le

crc32c_rs-0.0.2-cp311-cp311-musllinux_1_2_i686.whl (525.7 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ i686

crc32c_rs-0.0.2-cp311-cp311-musllinux_1_2_armv7l.whl (534.3 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARMv7l

crc32c_rs-0.0.2-cp311-cp311-musllinux_1_2_aarch64.whl (446.7 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

crc32c_rs-0.0.2-cp311-cp311-manylinux_2_31_riscv64.whl (248.0 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.31+ riscv64

crc32c_rs-0.0.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (275.7 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

crc32c_rs-0.0.2-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl (237.3 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ s390x

crc32c_rs-0.0.2-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (225.1 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ppc64le

crc32c_rs-0.0.2-cp311-cp311-manylinux_2_17_ppc64.manylinux2014_ppc64.whl (225.9 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ppc64

crc32c_rs-0.0.2-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (208.3 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARMv7l

crc32c_rs-0.0.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (267.4 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

crc32c_rs-0.0.2-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl (300.4 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.5+ i686

crc32c_rs-0.0.2-cp311-cp311-macosx_11_0_arm64.whl (247.5 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

crc32c_rs-0.0.2-cp311-cp311-macosx_10_12_x86_64.whl (265.3 kB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

crc32c_rs-0.0.2-cp311-cp311-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl (495.4 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.2.tar.gz.

File metadata

  • Download URL: crc32c_rs-0.0.2.tar.gz
  • Upload date:
  • Size: 92.2 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.2.tar.gz
Algorithm Hash digest
SHA256 3ae5cb562e4d0c75f5df4d64004fb30e06a4d2fe99f10f07c97c9d013e76973c
MD5 5f188849af252f3ec0afe9cd82b0b735
BLAKE2b-256 1c50266c5a32b007d1f6a71a77bb5765578b711935391b94201af7b5a069c76a

See more details on using hashes here.

Provenance

The following attestation bundles were made for crc32c_rs-0.0.2.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.2-pp311-pypy311_pp73-win_amd64.whl.

File metadata

  • Download URL: crc32c_rs-0.0.2-pp311-pypy311_pp73-win_amd64.whl
  • Upload date:
  • Size: 185.9 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.2-pp311-pypy311_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 a5df804d0892d48bf8e0d6d71c65b3aa44052193bec386be72fb232181eee579
MD5 67b36d6eda72c4cff4de96373577e4d5
BLAKE2b-256 1893693a0f1986257dcc1234ab49fd339303f32aca65b8ad86c7fb6f9b2404bf

See more details on using hashes here.

Provenance

The following attestation bundles were made for crc32c_rs-0.0.2-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.2-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl.

File metadata

  • Download URL: crc32c_rs-0.0.2-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl
  • Upload date:
  • Size: 489.1 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.2-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 14c49c0168346b3bc3e402e88250a14a835cddd188925700968916a5b7d32cd9
MD5 10971158a71cc6a059ecbeaaedbcf146
BLAKE2b-256 b11937d10e6b504f57d8f3d8a3adc5b61bdf58d8b25877021c03d4a6cfc2d6d1

See more details on using hashes here.

Provenance

The following attestation bundles were made for crc32c_rs-0.0.2-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.2-pp311-pypy311_pp73-musllinux_1_2_riscv64.whl.

File metadata

  • Download URL: crc32c_rs-0.0.2-pp311-pypy311_pp73-musllinux_1_2_riscv64.whl
  • Upload date:
  • Size: 426.3 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.2-pp311-pypy311_pp73-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 1a12359d0e3c35417c4f4a07fa3c3c49d4ea073d9a1d9635e94a260a536e36a1
MD5 e4c749539a1f61d8d3b660cc01bb0a99
BLAKE2b-256 449b5747e66d53917e14640d21e1919fa4677acd8c103f64f98cdfab3c978c4e

See more details on using hashes here.

Provenance

The following attestation bundles were made for crc32c_rs-0.0.2-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.2-pp311-pypy311_pp73-musllinux_1_2_ppc64le.whl.

File metadata

  • Download URL: crc32c_rs-0.0.2-pp311-pypy311_pp73-musllinux_1_2_ppc64le.whl
  • Upload date:
  • Size: 434.9 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.2-pp311-pypy311_pp73-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 a1d75b88d45293dbe20b47d6bfdbf524c442850a284e30e5a5a7d2e42f7de2f2
MD5 02559a69bd4a7851f3a294850215878a
BLAKE2b-256 cadb05618cb2bef6e4c5edf45fa0ee1c1aec325ffd31b8225ad989103536faba

See more details on using hashes here.

Provenance

The following attestation bundles were made for crc32c_rs-0.0.2-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.2-pp311-pypy311_pp73-musllinux_1_2_i686.whl.

File metadata

  • Download URL: crc32c_rs-0.0.2-pp311-pypy311_pp73-musllinux_1_2_i686.whl
  • Upload date:
  • Size: 527.0 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.2-pp311-pypy311_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 220ed6c49aa9a2014af4056a0fc2fdcf07f85be21947d4b644db1dea08aa60b6
MD5 ddde583f550f4a29f387ce22ea83c0b8
BLAKE2b-256 ca8f80f14c45de6441d431a008d52f33c15f99d0c2b85cc2fb6a1877a4010834

See more details on using hashes here.

Provenance

The following attestation bundles were made for crc32c_rs-0.0.2-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.2-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl.

File metadata

  • Download URL: crc32c_rs-0.0.2-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl
  • Upload date:
  • Size: 535.2 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.2-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 0bad66778c815caab933a000d3aac481460613512c78663aff11b84cfcccd811
MD5 c39b7172e3809d633348ff039a31df0a
BLAKE2b-256 7acc3e911e598dc7374a5ecd6dca2c061afb412c2b9cc44b5eed5d5ba7cd50ac

See more details on using hashes here.

Provenance

The following attestation bundles were made for crc32c_rs-0.0.2-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.2-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl.

File metadata

  • Download URL: crc32c_rs-0.0.2-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl
  • Upload date:
  • Size: 447.2 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.2-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 ac03e9bf9b226a8436de78b6a937288105595484634b58d626ad24782fb8d076
MD5 2ecdbdd89e515a380bfa8571075341f7
BLAKE2b-256 fe4649d1712075ff3aff2d6cb33379ac74dbc01c6e33a44bf456e12022052066

See more details on using hashes here.

Provenance

The following attestation bundles were made for crc32c_rs-0.0.2-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.2-pp311-pypy311_pp73-manylinux_2_31_riscv64.whl.

File metadata

  • Download URL: crc32c_rs-0.0.2-pp311-pypy311_pp73-manylinux_2_31_riscv64.whl
  • Upload date:
  • Size: 248.9 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.2-pp311-pypy311_pp73-manylinux_2_31_riscv64.whl
Algorithm Hash digest
SHA256 0eb6eb7c69b32613f61a93ddbf168f28f3c1077a8ddd0791b1f7fce336e14089
MD5 800f471ebee6e5cd92d3b182ac4e4d91
BLAKE2b-256 57f424d82dc765a7588f81addd3c8f347971d196b88c3f8ab43bb1e3f168c6ae

See more details on using hashes here.

Provenance

The following attestation bundles were made for crc32c_rs-0.0.2-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.2-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

  • Download URL: crc32c_rs-0.0.2-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
  • Upload date:
  • Size: 276.7 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.2-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 c4a716f29dc19becc96c0b98f69e5b6b36912575b760244aa678006794920991
MD5 19e8a379434ca5576e17a907440fda85
BLAKE2b-256 b2e653a290bea1e1f737003437225902ddfa1393e9b9adf292d091aef6a2d5d6

See more details on using hashes here.

Provenance

The following attestation bundles were made for crc32c_rs-0.0.2-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.2-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

  • Download URL: crc32c_rs-0.0.2-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
  • Upload date:
  • Size: 238.0 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.2-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 6e52d5d4dd6433e333d7728877b4f75fe5c37427e8bf543eb12511b8dff00a4b
MD5 1ad07e50fc9b429b4088454e883e5faf
BLAKE2b-256 026da736c8af4267d2e1a6d0335a5bf9877f84b1f52ae9636577c201eeda01a6

See more details on using hashes here.

Provenance

The following attestation bundles were made for crc32c_rs-0.0.2-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.2-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

  • Download URL: crc32c_rs-0.0.2-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
  • Upload date:
  • Size: 226.1 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.2-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 91241a6fbc3a7a91bc4213f4a03d04c208c9df21bde1d82ca7cb69c0fd61bcc1
MD5 4091949b6b8f3cec9b864b7757f39a06
BLAKE2b-256 4bcff78266c396f6ab30446f9cef13dfdc690001c46ac9c341b2323b113cf2d0

See more details on using hashes here.

Provenance

The following attestation bundles were made for crc32c_rs-0.0.2-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.2-pp311-pypy311_pp73-manylinux_2_17_ppc64.manylinux2014_ppc64.whl.

File metadata

  • Download URL: crc32c_rs-0.0.2-pp311-pypy311_pp73-manylinux_2_17_ppc64.manylinux2014_ppc64.whl
  • Upload date:
  • Size: 226.8 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.2-pp311-pypy311_pp73-manylinux_2_17_ppc64.manylinux2014_ppc64.whl
Algorithm Hash digest
SHA256 cadaffd68ee34e0db9befe0915c58d6d32701f4c44dbc9e26efb17bb3d2960cc
MD5 daca1e0da1b2a1552371f0c84e58e9c2
BLAKE2b-256 9179420c29f96bfc3910644fc943aaf2f40a2039575c60f7ef994be2d8ed9ba0

See more details on using hashes here.

Provenance

The following attestation bundles were made for crc32c_rs-0.0.2-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.2-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

  • Download URL: crc32c_rs-0.0.2-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
  • Upload date:
  • Size: 209.2 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.2-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 a2c6c78c9a8c0ca06096a40a243520545c4248f36712e20a79390f283e214272
MD5 f85a2148963df44360afd17a71e0974a
BLAKE2b-256 1b32de5204e5d1b9c3d2eadf3420df659cc3fd2e2609cf4fcdc2b52d4a6a5e33

See more details on using hashes here.

Provenance

The following attestation bundles were made for crc32c_rs-0.0.2-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.2-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

  • Download URL: crc32c_rs-0.0.2-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
  • Upload date:
  • Size: 267.9 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.2-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 074705d6a4e909702f19b37a61ff24e408de7a0b35ff0f08126579fd95965322
MD5 45b1fbab7ee752c2654940401532fca0
BLAKE2b-256 e38f8b456fc46716f8dc0aac63c9b101b03632ecc6e095917c7b34e2a391d8f3

See more details on using hashes here.

Provenance

The following attestation bundles were made for crc32c_rs-0.0.2-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.2-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

  • Download URL: crc32c_rs-0.0.2-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl
  • Upload date:
  • Size: 301.6 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.2-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 395012998a152826a3b924e0163b814d1db45ff942ac63a063394436e3e80af3
MD5 2245fb5878a0cd3287e8a5c3bda9ba42
BLAKE2b-256 eaa5cfd54a4eb6538f94a0abdd50143a449e707c1a5fad093c3e84033643f160

See more details on using hashes here.

Provenance

The following attestation bundles were made for crc32c_rs-0.0.2-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.2-pp311-pypy311_pp73-macosx_11_0_arm64.whl.

File metadata

  • Download URL: crc32c_rs-0.0.2-pp311-pypy311_pp73-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 248.4 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.2-pp311-pypy311_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 3ed95fa4e52b0ba2786e7a27189850b9a1712c19b6be7601cfd855a8fc973c18
MD5 423791561d6a75c19ce70dec4f17f71f
BLAKE2b-256 eec1440c855ff118b805b86bba05c55d8175975c95700794ed7bba53b71c0370

See more details on using hashes here.

Provenance

The following attestation bundles were made for crc32c_rs-0.0.2-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.2-pp311-pypy311_pp73-macosx_10_12_x86_64.whl.

File metadata

  • Download URL: crc32c_rs-0.0.2-pp311-pypy311_pp73-macosx_10_12_x86_64.whl
  • Upload date:
  • Size: 266.7 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.2-pp311-pypy311_pp73-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 426ca91dab7283cab9932ee44c302a856084854580d464465beaf32a11292fd3
MD5 50227328756bf262372da1805dec54bc
BLAKE2b-256 e37318c425515a09b6d4d34cb7ca36de26efbc3f276a36740b3b6f8f509685ca

See more details on using hashes here.

Provenance

The following attestation bundles were made for crc32c_rs-0.0.2-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.2-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.2-pp311-pypy311_pp73-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl
  • Upload date:
  • Size: 497.5 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.2-pp311-pypy311_pp73-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl
Algorithm Hash digest
SHA256 392739400222783ac1ba5873150765c83d02889a1179a07a7360f630a12a7239
MD5 090148db9cb145cc4c1ef10e2cf03d06
BLAKE2b-256 a9136168231f7cf9170a6d5b76f05d5f108ee8acf7f6f0543fd78cc8a50a17b1

See more details on using hashes here.

Provenance

The following attestation bundles were made for crc32c_rs-0.0.2-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.2-cp315-cp315t-win_arm64.whl.

File metadata

  • Download URL: crc32c_rs-0.0.2-cp315-cp315t-win_arm64.whl
  • Upload date:
  • Size: 174.1 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.2-cp315-cp315t-win_arm64.whl
Algorithm Hash digest
SHA256 b8ebe36a0b1811ab7593b95be7914f1c46dfc29f46fcd941c42a8b5ec3b69e3e
MD5 9415e6177207b719a9a60150ec68ebe4
BLAKE2b-256 02562478a8a53451f9a1ca5b3e1d17414ac6e6162205ec950307aab4760e001a

See more details on using hashes here.

Provenance

The following attestation bundles were made for crc32c_rs-0.0.2-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.2-cp315-cp315t-win_amd64.whl.

File metadata

  • Download URL: crc32c_rs-0.0.2-cp315-cp315t-win_amd64.whl
  • Upload date:
  • Size: 186.3 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.2-cp315-cp315t-win_amd64.whl
Algorithm Hash digest
SHA256 b41507680df6a5201c1592b41697c446ae49cb2048e4273972769a1dd9cd6c55
MD5 9a7546cc91142c56a62df83a933a4750
BLAKE2b-256 fa6957edbdf90a89ae6372580b9b54aee8833c1bd1b7d510c1d0e5503f0d68e6

See more details on using hashes here.

Provenance

The following attestation bundles were made for crc32c_rs-0.0.2-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.2-cp315-cp315t-win32.whl.

File metadata

  • Download URL: crc32c_rs-0.0.2-cp315-cp315t-win32.whl
  • Upload date:
  • Size: 171.8 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.2-cp315-cp315t-win32.whl
Algorithm Hash digest
SHA256 9d7761f24bad2c0d408ec4bc089cd004d065404bc65fa784ce1801eca449a707
MD5 16714672c4c78f1b7e3ec5812ebedb7f
BLAKE2b-256 1aa8c147175f838e95c92b115afa54071e8d37e2a368d9a3d4c5eae712eb899f

See more details on using hashes here.

Provenance

The following attestation bundles were made for crc32c_rs-0.0.2-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.2-cp315-cp315t-musllinux_1_2_x86_64.whl.

File metadata

  • Download URL: crc32c_rs-0.0.2-cp315-cp315t-musllinux_1_2_x86_64.whl
  • Upload date:
  • Size: 489.9 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.2-cp315-cp315t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 33267d75bc39cee74472315a23c0269838b1fb43b9de44944855dee14251c66f
MD5 df2b9515f06df6abc801ae369825648f
BLAKE2b-256 ae77bafaa2c4a90b38058b1317da4417129947f686c8b8eda43764682b2df9fd

See more details on using hashes here.

Provenance

The following attestation bundles were made for crc32c_rs-0.0.2-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.2-cp315-cp315t-musllinux_1_2_riscv64.whl.

File metadata

  • Download URL: crc32c_rs-0.0.2-cp315-cp315t-musllinux_1_2_riscv64.whl
  • Upload date:
  • Size: 426.1 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.2-cp315-cp315t-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 112836a22fd07636a14d26304d85cb18a6c4b9e44d31cf9d61ca4b7cd0d1fda0
MD5 0d3c69c195785292fb35fa5d55d5f7de
BLAKE2b-256 234c312ecd47e12d2345d2dc0efea2a20c92c8e44d00732a1a31e1f9df2722bd

See more details on using hashes here.

Provenance

The following attestation bundles were made for crc32c_rs-0.0.2-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.2-cp315-cp315t-musllinux_1_2_ppc64le.whl.

File metadata

  • Download URL: crc32c_rs-0.0.2-cp315-cp315t-musllinux_1_2_ppc64le.whl
  • Upload date:
  • Size: 434.6 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.2-cp315-cp315t-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 72032b959244e5e028213f0993224be4770479bfd97f7baf3447669090b2e511
MD5 1793f2662877b95b637f658517e21413
BLAKE2b-256 0301f77135661913d306a2c9f369ef9d8ff0ca91d49c98cf6dee5b818e0507c3

See more details on using hashes here.

Provenance

The following attestation bundles were made for crc32c_rs-0.0.2-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.2-cp315-cp315t-musllinux_1_2_i686.whl.

File metadata

  • Download URL: crc32c_rs-0.0.2-cp315-cp315t-musllinux_1_2_i686.whl
  • Upload date:
  • Size: 523.9 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.2-cp315-cp315t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 384bec3e078f47e0d273dcf5ca99cf77392049ac1320ef8c30486526f02b0674
MD5 cdfd417fd761d4fe076e9819bd582636
BLAKE2b-256 e964b9fe8b361dd919a012f3fe6a1b14b1bb0d54d87fc56eb4ec4deb5d405a85

See more details on using hashes here.

Provenance

The following attestation bundles were made for crc32c_rs-0.0.2-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.2-cp315-cp315t-musllinux_1_2_armv7l.whl.

File metadata

  • Download URL: crc32c_rs-0.0.2-cp315-cp315t-musllinux_1_2_armv7l.whl
  • Upload date:
  • Size: 533.3 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.2-cp315-cp315t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 2f0e8c6155cf491b47118d643131f16b41911ab8efeb94c84c625459d2e5e204
MD5 bc6c894c87a6c9ed5a9b0e94b72b19e4
BLAKE2b-256 b4c88f3a0aab1e6ee08d0eff2ee47ca9ea76a9616ac21698704cee077628318b

See more details on using hashes here.

Provenance

The following attestation bundles were made for crc32c_rs-0.0.2-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.2-cp315-cp315t-musllinux_1_2_aarch64.whl.

File metadata

  • Download URL: crc32c_rs-0.0.2-cp315-cp315t-musllinux_1_2_aarch64.whl
  • Upload date:
  • Size: 447.7 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.2-cp315-cp315t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 1629e5de829793b02790f7d59536c962949cc0411396b941895f11f94be33f69
MD5 47bf145741cab4d819a804891b037655
BLAKE2b-256 836940e807781c8e848ac6ef525dc05c91d5bbb839367f652b6cf1327ea1e897

See more details on using hashes here.

Provenance

The following attestation bundles were made for crc32c_rs-0.0.2-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.2-cp315-cp315t-manylinux_2_31_riscv64.whl.

File metadata

  • Download URL: crc32c_rs-0.0.2-cp315-cp315t-manylinux_2_31_riscv64.whl
  • Upload date:
  • Size: 248.6 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.2-cp315-cp315t-manylinux_2_31_riscv64.whl
Algorithm Hash digest
SHA256 e7e15b8a59980f2f4d87441da81ecb14d36608956b1dc901d6b1cd1fa7debc0f
MD5 8e71e5086207cf7845795d384425e663
BLAKE2b-256 5f54e218829ef38d3328a56501b4c8e0c19e233cdd06352c0bc30023397a53fb

See more details on using hashes here.

Provenance

The following attestation bundles were made for crc32c_rs-0.0.2-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.2-cp315-cp315t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

  • Download URL: crc32c_rs-0.0.2-cp315-cp315t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
  • Upload date:
  • Size: 277.6 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.2-cp315-cp315t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 7d8b75c33e7f45789252231cb87831f453f20af739e8846cf50739e382979111
MD5 8a3415a4b4751a3e9a4a8e2019cd58d4
BLAKE2b-256 bd6e99d1e4b17d0ac44bddc9c0ad103f2f4011748e088d6a49031a36fb96c81b

See more details on using hashes here.

Provenance

The following attestation bundles were made for crc32c_rs-0.0.2-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.2-cp315-cp315t-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

  • Download URL: crc32c_rs-0.0.2-cp315-cp315t-manylinux_2_17_s390x.manylinux2014_s390x.whl
  • Upload date:
  • Size: 238.9 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.2-cp315-cp315t-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 9ba3c638b936f65c5807766cfcf6031d4a5695170f270654c3a53720980e237a
MD5 1e140cd6d3725ac809b441fd568f0ffb
BLAKE2b-256 b3b93548520d0fc20f910256065ac8232e8e86b5d8af3f44468bde8d014656b0

See more details on using hashes here.

Provenance

The following attestation bundles were made for crc32c_rs-0.0.2-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.2-cp315-cp315t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

  • Download URL: crc32c_rs-0.0.2-cp315-cp315t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
  • Upload date:
  • Size: 225.8 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.2-cp315-cp315t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 540af8671a8f3a99372ffc6a38fb812c168b3f41d975ccbd571500f2e8b0ef03
MD5 ee440d864a68c137687464d48443ab5b
BLAKE2b-256 71a4f7e39dbe48a444cb10c0ca4cdb37a17991b9fd24db2ae3edc77631f548e1

See more details on using hashes here.

Provenance

The following attestation bundles were made for crc32c_rs-0.0.2-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.2-cp315-cp315t-manylinux_2_17_ppc64.manylinux2014_ppc64.whl.

File metadata

  • Download URL: crc32c_rs-0.0.2-cp315-cp315t-manylinux_2_17_ppc64.manylinux2014_ppc64.whl
  • Upload date:
  • Size: 226.3 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.2-cp315-cp315t-manylinux_2_17_ppc64.manylinux2014_ppc64.whl
Algorithm Hash digest
SHA256 923653e7477b01993e312d0a77d58c4e76d0ca48672e447dddab814dc9e3d5f6
MD5 0baba0b370108d079c2bd7d6ab03208c
BLAKE2b-256 9520151933288759aebad02a43b41260b6eb43998d6fd90473ef452ceb1f0568

See more details on using hashes here.

Provenance

The following attestation bundles were made for crc32c_rs-0.0.2-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.2-cp315-cp315t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

  • Download URL: crc32c_rs-0.0.2-cp315-cp315t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
  • Upload date:
  • Size: 207.3 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.2-cp315-cp315t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 7a0de6c9aa93dcddbedbfb92ad36d43052793c55e442540f2f993606dc018d5f
MD5 a2726d81216566719437bc9863029888
BLAKE2b-256 c99c222aef31353b12db6fa38a129fad72ff178d44dab63c11030a16eb39398b

See more details on using hashes here.

Provenance

The following attestation bundles were made for crc32c_rs-0.0.2-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.2-cp315-cp315t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

  • Download URL: crc32c_rs-0.0.2-cp315-cp315t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
  • Upload date:
  • Size: 268.2 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.2-cp315-cp315t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 85d9cc1e77883f0cbe37f722fd79e814015baaa5b26d8217d7d5148d4b58ab37
MD5 7e502110324b45bbb40c8dae1b0ab3ad
BLAKE2b-256 fa11ff56841029d96a13f81ad105ccb749f3232e972df99086c868eb3db3ddd3

See more details on using hashes here.

Provenance

The following attestation bundles were made for crc32c_rs-0.0.2-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.2-cp315-cp315t-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

  • Download URL: crc32c_rs-0.0.2-cp315-cp315t-manylinux_2_5_i686.manylinux1_i686.whl
  • Upload date:
  • Size: 298.1 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.2-cp315-cp315t-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 3a774a014bc3ecbc279c08f486c94ea807cac37b14c96398faa913a598104ac2
MD5 13d560250adbcf1a86734f86d5d3c329
BLAKE2b-256 f8f1c3060f07602e6f2f78130389a9b87987b5394c3b8707d35e87f649927e82

See more details on using hashes here.

Provenance

The following attestation bundles were made for crc32c_rs-0.0.2-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.2-cp315-cp315t-macosx_11_0_arm64.whl.

File metadata

  • Download URL: crc32c_rs-0.0.2-cp315-cp315t-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 244.5 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.2-cp315-cp315t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f53ee7051a3ea2d216d60425de4b60c72c170fc53d85bba1097c6c070f5516d9
MD5 3bcb5f6d631a0261a4c199981e3896fb
BLAKE2b-256 00fd53987ca012bd5d8e70c71c7a4a05c3c4b3d005157ab539709e909f43fec2

See more details on using hashes here.

Provenance

The following attestation bundles were made for crc32c_rs-0.0.2-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.2-cp315-cp315t-macosx_10_12_x86_64.whl.

File metadata

  • Download URL: crc32c_rs-0.0.2-cp315-cp315t-macosx_10_12_x86_64.whl
  • Upload date:
  • Size: 264.4 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.2-cp315-cp315t-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 336ef0412381f232d0e89174983e70a3c3022a32313ea808faac9eff96e2ebb2
MD5 63eb3fba5f69ce9f4f7a6ca18c2c75fa
BLAKE2b-256 5003b940c1a6e18d683a0229c319e86954e452cd69a5c14e04975e9b7b1e1f1b

See more details on using hashes here.

Provenance

The following attestation bundles were made for crc32c_rs-0.0.2-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.2-cp315-cp315t-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl.

File metadata

  • Download URL: crc32c_rs-0.0.2-cp315-cp315t-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl
  • Upload date:
  • Size: 492.2 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.2-cp315-cp315t-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl
Algorithm Hash digest
SHA256 a69c4b1893e6e78b485a8c2be519eda0a80949e09390cd53b3de6ce35f50f98f
MD5 93e51536df8d2c776b32fe982dc485a2
BLAKE2b-256 cabe8f726f43cbf99ab8579f5f45bd84ebdebd7a68af512c3ee4d6f1ab58b0f4

See more details on using hashes here.

Provenance

The following attestation bundles were made for crc32c_rs-0.0.2-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.2-cp315-cp315-win_arm64.whl.

File metadata

  • Download URL: crc32c_rs-0.0.2-cp315-cp315-win_arm64.whl
  • Upload date:
  • Size: 175.0 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.2-cp315-cp315-win_arm64.whl
Algorithm Hash digest
SHA256 561d976406c15ac29a8c892f2c96ecbf3a5960fe52ecd6ae5963199fc5301119
MD5 88c1100621c3f87da9018ab83623707d
BLAKE2b-256 3a45630604e1a92fe10bdbcb53a74472bf1e95a410598584bc5edc7e6cc27110

See more details on using hashes here.

Provenance

The following attestation bundles were made for crc32c_rs-0.0.2-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.2-cp315-cp315-win_amd64.whl.

File metadata

  • Download URL: crc32c_rs-0.0.2-cp315-cp315-win_amd64.whl
  • Upload date:
  • Size: 187.0 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.2-cp315-cp315-win_amd64.whl
Algorithm Hash digest
SHA256 56a3a220e7b363db2eb549f3fdb7401ef437011f0ab89575e36d4b9875be98d0
MD5 e515451137477b07b268ccc5f6f3fe0e
BLAKE2b-256 069132c0cf7d815e4e5546012ce48e2855ed68b4d7d9bc0b032125180d7b51fb

See more details on using hashes here.

Provenance

The following attestation bundles were made for crc32c_rs-0.0.2-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.2-cp315-cp315-win32.whl.

File metadata

  • Download URL: crc32c_rs-0.0.2-cp315-cp315-win32.whl
  • Upload date:
  • Size: 172.6 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.2-cp315-cp315-win32.whl
Algorithm Hash digest
SHA256 9e02551048133a215f2b2282cb15ff8c17d3ecb8f20c300dc104ea981569e243
MD5 3baa53a71a5b8d86b879afd406e19e52
BLAKE2b-256 44dd61efa7425f3b4c1a4af1205baf9fb46e9da0da97d0617f820358a95b8c0e

See more details on using hashes here.

Provenance

The following attestation bundles were made for crc32c_rs-0.0.2-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.2-cp315-cp315-musllinux_1_2_x86_64.whl.

File metadata

  • Download URL: crc32c_rs-0.0.2-cp315-cp315-musllinux_1_2_x86_64.whl
  • Upload date:
  • Size: 491.4 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.2-cp315-cp315-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 6f1008edcd9ff85b79c8956d6f2e917134aee39034e93d7dd8f5cb831b09bbad
MD5 f3193d34380d5c683bb87e3243b2bc07
BLAKE2b-256 15cf92c5f4def348dd9bb14eb1e0ed079053268df8d3c42ba2bb3b0e4348ab15

See more details on using hashes here.

Provenance

The following attestation bundles were made for crc32c_rs-0.0.2-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.2-cp315-cp315-musllinux_1_2_riscv64.whl.

File metadata

  • Download URL: crc32c_rs-0.0.2-cp315-cp315-musllinux_1_2_riscv64.whl
  • Upload date:
  • Size: 427.1 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.2-cp315-cp315-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 37b03a4843d22fda46f447e9bcda629d20ab65db81c3c919d6e9b4b9002b8bbd
MD5 83e78c6e181440edb55578d8dfe4d2cd
BLAKE2b-256 0af4f6ef0ab053178f74b35afc82c4225347b5836133eb19e8b8861e9131348b

See more details on using hashes here.

Provenance

The following attestation bundles were made for crc32c_rs-0.0.2-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.2-cp315-cp315-musllinux_1_2_ppc64le.whl.

File metadata

  • Download URL: crc32c_rs-0.0.2-cp315-cp315-musllinux_1_2_ppc64le.whl
  • Upload date:
  • Size: 435.6 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.2-cp315-cp315-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 0dd975cd7ba5a4cb08de89ed0d04b758c6cb30232511b798aa66862072c14afc
MD5 54240f86e254178980dacf4569516756
BLAKE2b-256 9d2427a269568fd2f9cf79a4b445ed3e74b2fae9b5482b331eda835532208173

See more details on using hashes here.

Provenance

The following attestation bundles were made for crc32c_rs-0.0.2-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.2-cp315-cp315-musllinux_1_2_i686.whl.

File metadata

  • Download URL: crc32c_rs-0.0.2-cp315-cp315-musllinux_1_2_i686.whl
  • Upload date:
  • Size: 524.8 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.2-cp315-cp315-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 fb8c63766b452ad5b1aadeaf8f35491d1cadf937fba3973bd65b74e6c9648e60
MD5 fa702af0f2d1cf85b813cc938d228af8
BLAKE2b-256 edc9d1d72279ba238d7448204acafd85bc17adc804080d67b0ff5369d1a8a781

See more details on using hashes here.

Provenance

The following attestation bundles were made for crc32c_rs-0.0.2-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.2-cp315-cp315-musllinux_1_2_armv7l.whl.

File metadata

  • Download URL: crc32c_rs-0.0.2-cp315-cp315-musllinux_1_2_armv7l.whl
  • Upload date:
  • Size: 534.3 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.2-cp315-cp315-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 16b65f89e65492e660885c80aa55bdc10fddad9ca131a245a4ed3a9a5cd0f8d2
MD5 f6b9c6c0e14761cbecedd88ab741aee8
BLAKE2b-256 d41c0fb8227207fe30adfb4bb4e58b30754277184ea1c7d417017427019ba011

See more details on using hashes here.

Provenance

The following attestation bundles were made for crc32c_rs-0.0.2-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.2-cp315-cp315-musllinux_1_2_aarch64.whl.

File metadata

  • Download URL: crc32c_rs-0.0.2-cp315-cp315-musllinux_1_2_aarch64.whl
  • Upload date:
  • Size: 448.3 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.2-cp315-cp315-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 59acb7c321267f588a6ab31a0b98e296132fbc4b4775c2033a5006f9a628a285
MD5 a4118dfecf93f4b93a348205ead1efe3
BLAKE2b-256 f2ebb14fd2f11d56516e6b354ae99a6ad677eed6d334ac8ed923f898ca77ad05

See more details on using hashes here.

Provenance

The following attestation bundles were made for crc32c_rs-0.0.2-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.2-cp315-cp315-manylinux_2_31_riscv64.whl.

File metadata

  • Download URL: crc32c_rs-0.0.2-cp315-cp315-manylinux_2_31_riscv64.whl
  • Upload date:
  • Size: 249.8 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.2-cp315-cp315-manylinux_2_31_riscv64.whl
Algorithm Hash digest
SHA256 ffb612474ba4fea31a62ac6a9b914d29c6a6ee441a9e62f33f0adab7be5bd5f7
MD5 bc0e8362b62ac67e1d5e404f5e5eefbf
BLAKE2b-256 cf5df8a3b44b5dec9423d44c74b04cbe915a3134dd41c2294bbd92cc63f8d57b

See more details on using hashes here.

Provenance

The following attestation bundles were made for crc32c_rs-0.0.2-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.2-cp315-cp315-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

  • Download URL: crc32c_rs-0.0.2-cp315-cp315-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
  • Upload date:
  • Size: 278.8 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.2-cp315-cp315-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 dcf47258771020c16dfbfdabebb2f1c4a21b581ae92105fc4e96728c4ce287af
MD5 b8454b8afbef3eaa6c99db03f3fae68e
BLAKE2b-256 9271695d1b2afa50dba7e310fd604bb6a3a0e6ad2854a916aac0031deb63f339

See more details on using hashes here.

Provenance

The following attestation bundles were made for crc32c_rs-0.0.2-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.2-cp315-cp315-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

  • Download URL: crc32c_rs-0.0.2-cp315-cp315-manylinux_2_17_s390x.manylinux2014_s390x.whl
  • Upload date:
  • Size: 239.7 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.2-cp315-cp315-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 c4b26cbb58f7886b06588c6a5c50288e36aaded72a734ca8015e5f9e69925e6c
MD5 3483c317f9d44299558c8e535e8a465f
BLAKE2b-256 50f45ad61cb53f7c688650435d1be83f55997cbce9d8003bacc7eb246801127d

See more details on using hashes here.

Provenance

The following attestation bundles were made for crc32c_rs-0.0.2-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.2-cp315-cp315-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

  • Download URL: crc32c_rs-0.0.2-cp315-cp315-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
  • Upload date:
  • Size: 227.0 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.2-cp315-cp315-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 157dda3e99e3eb37db21f1380d542d6acd9ab96e3c4e6f05b9dbf65af3f785a0
MD5 6bc32cf1829f3a4d219a3e0ec582211f
BLAKE2b-256 5986b3aae45deb78de057e61be6b26e5c416c30388ed2a2e3601816eeb6f4f26

See more details on using hashes here.

Provenance

The following attestation bundles were made for crc32c_rs-0.0.2-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.2-cp315-cp315-manylinux_2_17_ppc64.manylinux2014_ppc64.whl.

File metadata

  • Download URL: crc32c_rs-0.0.2-cp315-cp315-manylinux_2_17_ppc64.manylinux2014_ppc64.whl
  • Upload date:
  • Size: 227.3 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.2-cp315-cp315-manylinux_2_17_ppc64.manylinux2014_ppc64.whl
Algorithm Hash digest
SHA256 031d86bc06a1253c292c20eb186d2cd90ec0839ca1664a46babc4cc84b4de203
MD5 0942ac612f0962f79f17d17884b21025
BLAKE2b-256 909dfcab5c3639ab61afdba39b5a9ae9553f80021f680ccb89cac4ba1de1c0d7

See more details on using hashes here.

Provenance

The following attestation bundles were made for crc32c_rs-0.0.2-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.2-cp315-cp315-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

  • Download URL: crc32c_rs-0.0.2-cp315-cp315-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
  • Upload date:
  • Size: 208.4 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.2-cp315-cp315-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 945b66946e0d0f114acb08f533f81343b5e7c1e89fddd99332470e9118dc859a
MD5 686f33f1272cb94556419f25717362e0
BLAKE2b-256 dbcdac4bd410137ae6104ca261b80bcc1f4558a0bd40b33c1af2655c0e027e8c

See more details on using hashes here.

Provenance

The following attestation bundles were made for crc32c_rs-0.0.2-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.2-cp315-cp315-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

  • Download URL: crc32c_rs-0.0.2-cp315-cp315-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
  • Upload date:
  • Size: 269.2 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.2-cp315-cp315-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 8f0c32934dd0f6df7c4cd88fd24701ccec281022414ae15e22f92c7c930c4481
MD5 6e81e18d072ccd95e53e4102e06db698
BLAKE2b-256 1c3ca20d9bb3f6b860f6d57ed63e0ca433f24c13e91a78eb8f7af530fc3b1f50

See more details on using hashes here.

Provenance

The following attestation bundles were made for crc32c_rs-0.0.2-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.2-cp315-cp315-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

  • Download URL: crc32c_rs-0.0.2-cp315-cp315-manylinux_2_5_i686.manylinux1_i686.whl
  • Upload date:
  • Size: 299.2 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.2-cp315-cp315-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 2be039befa316f787a8df0538b6636aa46c371647003839f375ddff88949a30e
MD5 cf933e4c0c54401adb62c9536795b53e
BLAKE2b-256 872ca51568a5f4322c2ba776a78b8d66e2e7fcc0db0f511f5b2b5655f29c5082

See more details on using hashes here.

Provenance

The following attestation bundles were made for crc32c_rs-0.0.2-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.2-cp315-cp315-macosx_11_0_arm64.whl.

File metadata

  • Download URL: crc32c_rs-0.0.2-cp315-cp315-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 245.4 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.2-cp315-cp315-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 905df520c160fb7fd7d485643d13c55546ea8d1e6f976463417c2fcfdabee2b1
MD5 f24f9d9db969e63faf352e6295f57999
BLAKE2b-256 ac2f2756aad2577056d9c4f75eba46f0db52d5ce457f0138dd0537708a91b6e2

See more details on using hashes here.

Provenance

The following attestation bundles were made for crc32c_rs-0.0.2-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.2-cp315-cp315-macosx_10_12_x86_64.whl.

File metadata

  • Download URL: crc32c_rs-0.0.2-cp315-cp315-macosx_10_12_x86_64.whl
  • Upload date:
  • Size: 265.0 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.2-cp315-cp315-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 b576a3abfec47b22a49ba13e38d7ccf7dccb54c15f5c7a33340d060328651a78
MD5 30fb997241e236f175ab334119baea4a
BLAKE2b-256 83c695ba987082884dc658c588031f258e335728c44e238dac2f519b24318621

See more details on using hashes here.

Provenance

The following attestation bundles were made for crc32c_rs-0.0.2-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.2-cp315-cp315-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl.

File metadata

  • Download URL: crc32c_rs-0.0.2-cp315-cp315-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl
  • Upload date:
  • Size: 493.6 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.2-cp315-cp315-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl
Algorithm Hash digest
SHA256 f8e2e78367d6da449c8128b2ec5ab0689d74fab3e1cbf7dd86209d3f1406c127
MD5 baa2356a0a6e2a0eb040ff57c62b0bd1
BLAKE2b-256 804205bd8d4fad2fbd8674e371d0a475613246135a0e6dfb28ca50de624d62d2

See more details on using hashes here.

Provenance

The following attestation bundles were made for crc32c_rs-0.0.2-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.2-cp314-cp314t-win_arm64.whl.

File metadata

  • Download URL: crc32c_rs-0.0.2-cp314-cp314t-win_arm64.whl
  • Upload date:
  • Size: 174.0 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.2-cp314-cp314t-win_arm64.whl
Algorithm Hash digest
SHA256 7b822e690562d57f42f341e8fe0f5e8871918c36cd0d743092e21aa0d6608345
MD5 65bc2e5603c83fdd67e611d9e8a8d846
BLAKE2b-256 455c44741ef50fd90e4b32e05f7b08a1afc8c685f1982cfdf9c7989a6ffe8b2a

See more details on using hashes here.

Provenance

The following attestation bundles were made for crc32c_rs-0.0.2-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.2-cp314-cp314t-win_amd64.whl.

File metadata

  • Download URL: crc32c_rs-0.0.2-cp314-cp314t-win_amd64.whl
  • Upload date:
  • Size: 186.2 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.2-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 660acc3383497901831a61f83224fc4da678e2fd49223f0e0e7825040535d01c
MD5 8b95684f47869265dc8eacf2c5e0f23f
BLAKE2b-256 957009a0c32158a81984933b31dc928b16436cd15a341b7b093e3a34c160bf34

See more details on using hashes here.

Provenance

The following attestation bundles were made for crc32c_rs-0.0.2-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.2-cp314-cp314t-win32.whl.

File metadata

  • Download URL: crc32c_rs-0.0.2-cp314-cp314t-win32.whl
  • Upload date:
  • Size: 171.7 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.2-cp314-cp314t-win32.whl
Algorithm Hash digest
SHA256 92d3ade6f7f9a4cf58725ca73820c5a8f2cc00ad1695f86ac8e715aa5968efb9
MD5 28c0aec23aa6b38efcbc87e989a77de8
BLAKE2b-256 0af79d19d5b2066d42d54b3461479980933d83a0b368c9e87b9a24863ba948a5

See more details on using hashes here.

Provenance

The following attestation bundles were made for crc32c_rs-0.0.2-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.2-cp314-cp314t-musllinux_1_2_x86_64.whl.

File metadata

  • Download URL: crc32c_rs-0.0.2-cp314-cp314t-musllinux_1_2_x86_64.whl
  • Upload date:
  • Size: 489.8 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.2-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 56935c77593882baba4257026c54da07fd63ed2faa27125335966e27068dca5f
MD5 5ece47b8bc09398601139a29f191fe7b
BLAKE2b-256 954cea9328e6446998382394953b0cf936cd6e3f78c4df6931a563740c34aeda

See more details on using hashes here.

Provenance

The following attestation bundles were made for crc32c_rs-0.0.2-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.2-cp314-cp314t-musllinux_1_2_riscv64.whl.

File metadata

  • Download URL: crc32c_rs-0.0.2-cp314-cp314t-musllinux_1_2_riscv64.whl
  • Upload date:
  • Size: 426.0 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.2-cp314-cp314t-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 c16f82549ba2f5f8cb1ca206c7079d4db0280cbda188dfdad28fe2bb2802734b
MD5 94e5949aa265695f40208bc8a107a5c3
BLAKE2b-256 4b8eafffeed282ccc70724c4b7e06d2138f7f9ce34dad0184a8b2515c506ab08

See more details on using hashes here.

Provenance

The following attestation bundles were made for crc32c_rs-0.0.2-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.2-cp314-cp314t-musllinux_1_2_ppc64le.whl.

File metadata

  • Download URL: crc32c_rs-0.0.2-cp314-cp314t-musllinux_1_2_ppc64le.whl
  • Upload date:
  • Size: 434.4 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.2-cp314-cp314t-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 c78471e10b35f565f1cefc5697c1bbbf2cfd9942eea49837d45ef4164d5e210d
MD5 2839aaf01de1942afc355245fc1d4de1
BLAKE2b-256 e747531ac03ee15c51077a219646548e050c680882494443c8fb21636cf78e05

See more details on using hashes here.

Provenance

The following attestation bundles were made for crc32c_rs-0.0.2-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.2-cp314-cp314t-musllinux_1_2_i686.whl.

File metadata

  • Download URL: crc32c_rs-0.0.2-cp314-cp314t-musllinux_1_2_i686.whl
  • Upload date:
  • Size: 523.8 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.2-cp314-cp314t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 b511081969602cbbab0710676bf5d639c2cfa79b0c6d06940967b3faa92efa8d
MD5 22e94edf335d628ce7995b4057347553
BLAKE2b-256 a583766680d0518bf46f021c557ff9e90b85ff7d0c22713097a5946168e1c648

See more details on using hashes here.

Provenance

The following attestation bundles were made for crc32c_rs-0.0.2-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.2-cp314-cp314t-musllinux_1_2_armv7l.whl.

File metadata

  • Download URL: crc32c_rs-0.0.2-cp314-cp314t-musllinux_1_2_armv7l.whl
  • Upload date:
  • Size: 533.2 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.2-cp314-cp314t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 8f837efe87fc9bc0775b325e9c9ff230a0f71cf1bfad4f5d558ca386664ebd80
MD5 1922afe8d30aec8c93369c292fe22193
BLAKE2b-256 79ffc207c94f328036ce699958bee00f02d26120ed00036120dc6645e129789c

See more details on using hashes here.

Provenance

The following attestation bundles were made for crc32c_rs-0.0.2-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.2-cp314-cp314t-musllinux_1_2_aarch64.whl.

File metadata

  • Download URL: crc32c_rs-0.0.2-cp314-cp314t-musllinux_1_2_aarch64.whl
  • Upload date:
  • Size: 447.5 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.2-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 f3c4b582b140457bd76944b79ae606c179736cc8be533072600a279df1ef53fb
MD5 768ee8ebe952db9e2f38ba51ada8a99e
BLAKE2b-256 029c317d4e543b26945fea8d5aba5b71028b998aa4b515145dfb7c5b36d8f847

See more details on using hashes here.

Provenance

The following attestation bundles were made for crc32c_rs-0.0.2-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.2-cp314-cp314t-manylinux_2_31_riscv64.whl.

File metadata

  • Download URL: crc32c_rs-0.0.2-cp314-cp314t-manylinux_2_31_riscv64.whl
  • Upload date:
  • Size: 248.5 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.2-cp314-cp314t-manylinux_2_31_riscv64.whl
Algorithm Hash digest
SHA256 28ec731c062d93aab7396daff3c947a08b6a50c4e3bee1004cb2e5d3d3ec1077
MD5 6182fc6eb98e398ae29cd80f2a9c6909
BLAKE2b-256 e013d38ae4079a6e023b74be6e18ef8ff34a6864b7b28f4d34f694fbc18a2ffa

See more details on using hashes here.

Provenance

The following attestation bundles were made for crc32c_rs-0.0.2-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.2-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

  • Download URL: crc32c_rs-0.0.2-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
  • Upload date:
  • Size: 277.6 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.2-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 4e4dbff0d2c737588f1113c67ca607527f7d32a012de9f31ec981c782df08ac4
MD5 8de3d174a4b5ade0392b51918ec7ee5e
BLAKE2b-256 7bedb47f8b1d81e4cd53846112ce09019b8c0cb6c3871919cc0c6eba3bb66981

See more details on using hashes here.

Provenance

The following attestation bundles were made for crc32c_rs-0.0.2-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.2-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

  • Download URL: crc32c_rs-0.0.2-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl
  • Upload date:
  • Size: 238.8 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.2-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 9a2d281e27d9fa6f0ab3542b9555df8eff47d9a5e7b839c88fb5db758c26c989
MD5 94203441e03ba8187e4ff03cb6333d40
BLAKE2b-256 acdb5c6b77c09a7261bd39570261a6745b99ef04edce3ad973ef0ea455fd69d3

See more details on using hashes here.

Provenance

The following attestation bundles were made for crc32c_rs-0.0.2-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.2-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

  • Download URL: crc32c_rs-0.0.2-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
  • Upload date:
  • Size: 225.7 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.2-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 8ddbf134030cc3b31bcafc7f17a618bfa03a338f27b48cf6812ea89899f5911f
MD5 1521ae749a00465d340e8420d4ec6144
BLAKE2b-256 83157d669970c54d87ab714f48741830791aa169fcaa5ff0cecf39aab303306d

See more details on using hashes here.

Provenance

The following attestation bundles were made for crc32c_rs-0.0.2-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.2-cp314-cp314t-manylinux_2_17_ppc64.manylinux2014_ppc64.whl.

File metadata

  • Download URL: crc32c_rs-0.0.2-cp314-cp314t-manylinux_2_17_ppc64.manylinux2014_ppc64.whl
  • Upload date:
  • Size: 226.2 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.2-cp314-cp314t-manylinux_2_17_ppc64.manylinux2014_ppc64.whl
Algorithm Hash digest
SHA256 63a152cb2b6bf6c5757f297be6bbe52f71f0c7ef324110fc1119049064d3277c
MD5 b22789d79bf1780969f52094c9665856
BLAKE2b-256 a911c66e9e98b514b737d54d81c8eb71d82e11c37a57b2b50fe8fe10a5b4813e

See more details on using hashes here.

Provenance

The following attestation bundles were made for crc32c_rs-0.0.2-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.2-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

  • Download URL: crc32c_rs-0.0.2-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
  • Upload date:
  • Size: 207.1 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.2-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 6378883db89c3107f221b4159dae37e73bee56e52c1d62822f035eff69e0f00f
MD5 9e680a629c03cf8597a3c61e310ad01e
BLAKE2b-256 568206a9a92d216392690f58601a9e6183c5dbd482c6edb87e632f4eaf7936b6

See more details on using hashes here.

Provenance

The following attestation bundles were made for crc32c_rs-0.0.2-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.2-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

  • Download URL: crc32c_rs-0.0.2-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
  • Upload date:
  • Size: 268.2 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.2-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 8ff3dd57e806b14371595742efc3ffb22ddfc1eb55e88b2856be7d8def8e70f5
MD5 28f46c382dd7af717bc58f70c306eacf
BLAKE2b-256 e12f1f716661cde14f5cccaba62a266e5547d2d05175cfb64140340c6a8f6be3

See more details on using hashes here.

Provenance

The following attestation bundles were made for crc32c_rs-0.0.2-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.2-cp314-cp314t-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

  • Download URL: crc32c_rs-0.0.2-cp314-cp314t-manylinux_2_5_i686.manylinux1_i686.whl
  • Upload date:
  • Size: 298.0 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.2-cp314-cp314t-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 19b5747d3a40891a51cd55a9b7855000ff3429172ce4cef5ebd5d4aee23e7dd6
MD5 82aa1ad0aaaa5048c391a1e0a1cb1bfd
BLAKE2b-256 8fad83b99c95272452f37e7b9e30a757018185996830f0b9b2512513f97579f4

See more details on using hashes here.

Provenance

The following attestation bundles were made for crc32c_rs-0.0.2-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.2-cp314-cp314t-macosx_11_0_arm64.whl.

File metadata

  • Download URL: crc32c_rs-0.0.2-cp314-cp314t-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 244.5 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.2-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 43131ebe8491525e9263b9d6e3e9d66a001abb3f3de126956d66d8c0e973acf3
MD5 3874b468eaa9e064e8df6451264cae14
BLAKE2b-256 9838c972dacf5965611eba0deffdc89b07808ba447652d1722d622d5ec31b749

See more details on using hashes here.

Provenance

The following attestation bundles were made for crc32c_rs-0.0.2-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.2-cp314-cp314t-macosx_10_12_x86_64.whl.

File metadata

  • Download URL: crc32c_rs-0.0.2-cp314-cp314t-macosx_10_12_x86_64.whl
  • Upload date:
  • Size: 264.4 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.2-cp314-cp314t-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 bbf87268ee8cb923fed6bb13e6d679108ce216a691c56302a0ddac7069b7a7a3
MD5 ca84473208c4280a456e0cce83b474f1
BLAKE2b-256 a9da9a6b37bdab3475d0244b319933c35df0f35c390c4837d7492f0973cbb423

See more details on using hashes here.

Provenance

The following attestation bundles were made for crc32c_rs-0.0.2-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.2-cp314-cp314t-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl.

File metadata

  • Download URL: crc32c_rs-0.0.2-cp314-cp314t-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl
  • Upload date:
  • Size: 492.1 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.2-cp314-cp314t-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl
Algorithm Hash digest
SHA256 9d938f17e62c33694e8142a2a8224d4f8e09abb22a43e9842a68560e6aef660a
MD5 41ab7c3c3cedd3397b150c11fbd00978
BLAKE2b-256 b95a556a4432f28cd1f8bd5484ef0e92937ec57d5dbe7212659938bd97e53f95

See more details on using hashes here.

Provenance

The following attestation bundles were made for crc32c_rs-0.0.2-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.2-cp314-cp314-win_arm64.whl.

File metadata

  • Download URL: crc32c_rs-0.0.2-cp314-cp314-win_arm64.whl
  • Upload date:
  • Size: 174.9 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.2-cp314-cp314-win_arm64.whl
Algorithm Hash digest
SHA256 e9f593420c1d65408b2cf0f25917bd941c1efa9c85a399aade8cfbf88438ed71
MD5 5d377f16846482f72ded97c5f6a3da64
BLAKE2b-256 d5cc6fcf2013f2309c5b22671394dc334ac2d8f26742face071071bf1cd20903

See more details on using hashes here.

Provenance

The following attestation bundles were made for crc32c_rs-0.0.2-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.2-cp314-cp314-win_amd64.whl.

File metadata

  • Download URL: crc32c_rs-0.0.2-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 186.9 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.2-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 76c4c4a9c5ab5f992e4fbfb733e1bac85f8f92e4889ad073526f1f8e3d334017
MD5 0f25aa4a2ac51cfc11ecbf70c426bdb0
BLAKE2b-256 e8bf58a392df91a8ff7c50393b4f7c6dfb0896f1285cc7de3683b8e426b2d721

See more details on using hashes here.

Provenance

The following attestation bundles were made for crc32c_rs-0.0.2-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.2-cp314-cp314-win32.whl.

File metadata

  • Download URL: crc32c_rs-0.0.2-cp314-cp314-win32.whl
  • Upload date:
  • Size: 172.5 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.2-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 37f6bf79483d14675b9dfe75c51155d151d0b913e909f24c67d753123c70ef7a
MD5 20d51d7529952825b43b8ec1b1ad79ee
BLAKE2b-256 4f79869f19472d01deb594c1cd0b584c965ea59e976704ae395da6df05905b49

See more details on using hashes here.

Provenance

The following attestation bundles were made for crc32c_rs-0.0.2-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.2-cp314-cp314-pyemscripten_2026_0_wasm32.whl.

File metadata

  • Download URL: crc32c_rs-0.0.2-cp314-cp314-pyemscripten_2026_0_wasm32.whl
  • Upload date:
  • Size: 70.4 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.2-cp314-cp314-pyemscripten_2026_0_wasm32.whl
Algorithm Hash digest
SHA256 2a58e625754a7cc2ead15dfbc00e944f727c4dc6b85600a6c30dc4631807d675
MD5 c029f1a3c20af15b2f1b6d97e389cdfa
BLAKE2b-256 0e71ead18f7c54d420feda79ad7782eaa73e82ab533cc637714cb31d02788f07

See more details on using hashes here.

Provenance

The following attestation bundles were made for crc32c_rs-0.0.2-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.2-cp314-cp314-musllinux_1_2_x86_64.whl.

File metadata

  • Download URL: crc32c_rs-0.0.2-cp314-cp314-musllinux_1_2_x86_64.whl
  • Upload date:
  • Size: 491.2 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.2-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 d1dae3200f12412c5c5134f50e2306cf80edc291f7395af9f4395256714b3abd
MD5 d834701c95fec24128cfb4c671c29331
BLAKE2b-256 8c7c9773e112ff1b3d55f63864da1f25fc8e2f0934f9e90ebda4cf8cb1226c14

See more details on using hashes here.

Provenance

The following attestation bundles were made for crc32c_rs-0.0.2-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.2-cp314-cp314-musllinux_1_2_riscv64.whl.

File metadata

  • Download URL: crc32c_rs-0.0.2-cp314-cp314-musllinux_1_2_riscv64.whl
  • Upload date:
  • Size: 427.0 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.2-cp314-cp314-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 4affcd8041ab7980dafc421f88f2014566892bd41f3b38799dc930f72843ae83
MD5 01cfff96d6ebb5afb26840a46752701a
BLAKE2b-256 ea960113a736c298823fe7787c571ce66a35c45c860deed177e511e165009e3f

See more details on using hashes here.

Provenance

The following attestation bundles were made for crc32c_rs-0.0.2-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.2-cp314-cp314-musllinux_1_2_ppc64le.whl.

File metadata

  • Download URL: crc32c_rs-0.0.2-cp314-cp314-musllinux_1_2_ppc64le.whl
  • Upload date:
  • Size: 435.4 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.2-cp314-cp314-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 a73a152933a6a1764ba8165632be6d12a0371eed9b0aff3cfe534ba8f3692ace
MD5 3b528930f25027215fe24f65058594f6
BLAKE2b-256 30ca5ac7c70dcb73e99e35cfa1380d29ae9893f88022d626e8c3919a662c819f

See more details on using hashes here.

Provenance

The following attestation bundles were made for crc32c_rs-0.0.2-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.2-cp314-cp314-musllinux_1_2_i686.whl.

File metadata

  • Download URL: crc32c_rs-0.0.2-cp314-cp314-musllinux_1_2_i686.whl
  • Upload date:
  • Size: 524.7 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.2-cp314-cp314-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 bdbdf33d6ac306854228dc07a000cb6b76690f9fa44a33891ce482c267148293
MD5 3ed0ce16ae1ac8e4ea4030e73a3318fd
BLAKE2b-256 011eb62a24c6e405c64c52fd45d141ebead4ad688d59e5a5023cf9623c38e07f

See more details on using hashes here.

Provenance

The following attestation bundles were made for crc32c_rs-0.0.2-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.2-cp314-cp314-musllinux_1_2_armv7l.whl.

File metadata

  • Download URL: crc32c_rs-0.0.2-cp314-cp314-musllinux_1_2_armv7l.whl
  • Upload date:
  • Size: 534.2 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.2-cp314-cp314-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 989736a8a8ae5398830204136f5dd400fa472b03a2f92b84124b260928fb2128
MD5 0d2e84d340a37e6d9e383b7d7e8e67d0
BLAKE2b-256 a7f826e4d7e3430737006113f3b52baf0240399fad0f86685b02237854ab3d8d

See more details on using hashes here.

Provenance

The following attestation bundles were made for crc32c_rs-0.0.2-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.2-cp314-cp314-musllinux_1_2_aarch64.whl.

File metadata

  • Download URL: crc32c_rs-0.0.2-cp314-cp314-musllinux_1_2_aarch64.whl
  • Upload date:
  • Size: 448.2 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.2-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 4a1ab22787ee3191b8cece99eaec5f6ca71b339fb57289018d7b6cfb0920d824
MD5 acca7be4fbc64a29a59232daef6edb12
BLAKE2b-256 e2b39e192700c24cb1a7b19f53afd4fa4e179f256393e13e5dba0a24ff0196c0

See more details on using hashes here.

Provenance

The following attestation bundles were made for crc32c_rs-0.0.2-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.2-cp314-cp314-manylinux_2_31_riscv64.whl.

File metadata

  • Download URL: crc32c_rs-0.0.2-cp314-cp314-manylinux_2_31_riscv64.whl
  • Upload date:
  • Size: 249.7 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.2-cp314-cp314-manylinux_2_31_riscv64.whl
Algorithm Hash digest
SHA256 653406ffd4f3ca44e1e114a62b6a8d7c61372b32aa02d0da61b560099481326e
MD5 154e7a59b3acfcc41285c740bab7f192
BLAKE2b-256 190ebd6e4a86f6c0eb635338ee229e32cdedf3900b8df4b9514e7f6d90c365fa

See more details on using hashes here.

Provenance

The following attestation bundles were made for crc32c_rs-0.0.2-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.2-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

  • Download URL: crc32c_rs-0.0.2-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
  • Upload date:
  • Size: 278.7 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.2-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 8c32372449a7502cc91ba7500a969d1e0bc5c1feac8f38b71090a2a3be80b117
MD5 e2d1649fc589b210329bb9ba18434727
BLAKE2b-256 e458a65b8ef42b9366d096272b80733d3c24d7e082d9a135616864b443860581

See more details on using hashes here.

Provenance

The following attestation bundles were made for crc32c_rs-0.0.2-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.2-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

  • Download URL: crc32c_rs-0.0.2-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl
  • Upload date:
  • Size: 239.6 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.2-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 e41a985c68014e613b6f991ec75c03cb8463ee09feaa724c7af19fec84ae1980
MD5 fb1b53a1c838e1122f1c616941cfcf1e
BLAKE2b-256 0abee4549ab95ca42b3e1d87afd007527e4193671d5f0ace69eb6129448a950e

See more details on using hashes here.

Provenance

The following attestation bundles were made for crc32c_rs-0.0.2-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.2-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

  • Download URL: crc32c_rs-0.0.2-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
  • Upload date:
  • Size: 226.9 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.2-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 34d2984e26e734416b2f6e958155cd3414942088a3cbf77ec9010a476f9662d7
MD5 ed05e6de80d048f247ea72be140ac141
BLAKE2b-256 71ba3d134c3649ed4d784cdf27530a9bd457e08b9d7b5dba6695cf1d9ea26185

See more details on using hashes here.

Provenance

The following attestation bundles were made for crc32c_rs-0.0.2-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.2-cp314-cp314-manylinux_2_17_ppc64.manylinux2014_ppc64.whl.

File metadata

  • Download URL: crc32c_rs-0.0.2-cp314-cp314-manylinux_2_17_ppc64.manylinux2014_ppc64.whl
  • Upload date:
  • Size: 227.1 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.2-cp314-cp314-manylinux_2_17_ppc64.manylinux2014_ppc64.whl
Algorithm Hash digest
SHA256 e6ac4fd11edfe7373bc5e69010e7e6b8c39ea4f49d5ec42a056af61de28302d7
MD5 7ab4f3188f59e0ea4f078cdee23bab4f
BLAKE2b-256 1b1c9397e4ba9c2f36cb201753468ce65788f8e0c9a4d120bb579bda9e3e45e7

See more details on using hashes here.

Provenance

The following attestation bundles were made for crc32c_rs-0.0.2-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.2-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

  • Download URL: crc32c_rs-0.0.2-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
  • Upload date:
  • Size: 208.3 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.2-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 30616fb0d9fa13808933128790dcc5f729e533748a478ffa2c670746bd59fd09
MD5 7ed6493e404feab02432e27ef15d4696
BLAKE2b-256 14f39183ebd6294b24c85f27ce76be66cc7c7bda4998196843977af9d7900cb6

See more details on using hashes here.

Provenance

The following attestation bundles were made for crc32c_rs-0.0.2-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.2-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

  • Download URL: crc32c_rs-0.0.2-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
  • Upload date:
  • Size: 269.0 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.2-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 1a6b368718e8d98086eb09f5460130328836741610af1db6cde9efe3bc25d174
MD5 a8a12eebcbb200d499172b5782370829
BLAKE2b-256 5e12a022d4d25221dfaedbaad1b12c19258c0d90029b44e056840f3ce7399a65

See more details on using hashes here.

Provenance

The following attestation bundles were made for crc32c_rs-0.0.2-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.2-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

  • Download URL: crc32c_rs-0.0.2-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl
  • Upload date:
  • Size: 299.0 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.2-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 894573dfeda7a1e4622aba7de73fbfa6d0cf28f5d4cdb9a4446ba0309f6a2503
MD5 8af13f90b824c1235681a931bc3752c3
BLAKE2b-256 e8dffd4edfa0771b589568bf01795983a4deec809686e6de7f92a42c36b80143

See more details on using hashes here.

Provenance

The following attestation bundles were made for crc32c_rs-0.0.2-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.2-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

  • Download URL: crc32c_rs-0.0.2-cp314-cp314-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 245.3 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.2-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 dfabaebff156cf29397ba81fb31986f9d51f5d02764c66d5a5ef168009b53c87
MD5 599f5d3fb0462a7a5519f58695bcfe9a
BLAKE2b-256 3b427e3965ab8114f84546b1c27226dcf40392a4d1949d8af8af717763eb299d

See more details on using hashes here.

Provenance

The following attestation bundles were made for crc32c_rs-0.0.2-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.2-cp314-cp314-macosx_10_12_x86_64.whl.

File metadata

  • Download URL: crc32c_rs-0.0.2-cp314-cp314-macosx_10_12_x86_64.whl
  • Upload date:
  • Size: 264.9 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.2-cp314-cp314-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 e9d04d8988355b19071cf5767a9b7cddf505c713ad45abec89f0b6915ef2476a
MD5 4a8b6db05b6f364a7099143febc89def
BLAKE2b-256 bd20ecf3f6d5b5ab5b9577e1c4188f94b8b3899a4cc727f9860221d37d755468

See more details on using hashes here.

Provenance

The following attestation bundles were made for crc32c_rs-0.0.2-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.2-cp314-cp314-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl.

File metadata

  • Download URL: crc32c_rs-0.0.2-cp314-cp314-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl
  • Upload date:
  • Size: 493.5 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.2-cp314-cp314-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl
Algorithm Hash digest
SHA256 54a0cbef6a40c1bb16921cf96a9d7fa253d3bbddbf0f768f18cd68ecb357259f
MD5 fad12d7a292449e3cebe3b7e0c8fae2d
BLAKE2b-256 c47230ed52c85804da0f847756758e2a26bbc49d65cd584bcc79ba332fe04c0b

See more details on using hashes here.

Provenance

The following attestation bundles were made for crc32c_rs-0.0.2-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.2-cp313-cp313-win_arm64.whl.

File metadata

  • Download URL: crc32c_rs-0.0.2-cp313-cp313-win_arm64.whl
  • Upload date:
  • Size: 175.2 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.2-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 061485cc38d75555acb0288d6bbee5d30f3812e72144e914abe78f60077ce97d
MD5 2e629e6abc69b677480ca76913cdba29
BLAKE2b-256 ebf38c138d201c5f0332c34f4a846d8df9f95df1babe3360ff27c7b75fa5c1ed

See more details on using hashes here.

Provenance

The following attestation bundles were made for crc32c_rs-0.0.2-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.2-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: crc32c_rs-0.0.2-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 187.3 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.2-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 545bc5715e066d4178e8e20baa03ccbf922ba9aa3229f511f6bc35bda733a7d3
MD5 56b71ec6f405c739eb3985c690f798c5
BLAKE2b-256 128c6c5ac6521fdb702bf1f0c97fc9afc7a6bb710e5c6de8227d954b3814f3bd

See more details on using hashes here.

Provenance

The following attestation bundles were made for crc32c_rs-0.0.2-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.2-cp313-cp313-win32.whl.

File metadata

  • Download URL: crc32c_rs-0.0.2-cp313-cp313-win32.whl
  • Upload date:
  • Size: 173.1 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.2-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 a0733b99dbb8276253192179a31d1024d3a499fa2e5e0f2078bcebe1e189f8e4
MD5 ccbf4b864ab79d310a7c33865bf1ba84
BLAKE2b-256 2cf580082da1dc8251f754c1728102bbe88b5341a9934e41dcef6d794a48d325

See more details on using hashes here.

Provenance

The following attestation bundles were made for crc32c_rs-0.0.2-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.2-cp313-cp313-pyemscripten_2025_0_wasm32.whl.

File metadata

  • Download URL: crc32c_rs-0.0.2-cp313-cp313-pyemscripten_2025_0_wasm32.whl
  • Upload date:
  • Size: 69.9 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.2-cp313-cp313-pyemscripten_2025_0_wasm32.whl
Algorithm Hash digest
SHA256 1c996a90897ee9c9d7f6ab7716dbd023b83f62092ae4cc4f4807c32efdc055cf
MD5 52a9993ee7bcf3dfc6ae155def79ce08
BLAKE2b-256 f52d2c9cc9b87340eba137cef2542513f36f4b586da7861533b4dbf455b292cc

See more details on using hashes here.

Provenance

The following attestation bundles were made for crc32c_rs-0.0.2-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.2-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

  • Download URL: crc32c_rs-0.0.2-cp313-cp313-musllinux_1_2_x86_64.whl
  • Upload date:
  • Size: 490.6 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.2-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 2f2adf9439390d26ac5e761cad57ac71db90fa9bf94e6609171c0aabc2b3425a
MD5 912ed872eb95edfaca3508a851afce5c
BLAKE2b-256 fe8f573ebc5adbe8693f6940528c3ff3d4d14686302d2973d1d74c199675006c

See more details on using hashes here.

Provenance

The following attestation bundles were made for crc32c_rs-0.0.2-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.2-cp313-cp313-musllinux_1_2_riscv64.whl.

File metadata

  • Download URL: crc32c_rs-0.0.2-cp313-cp313-musllinux_1_2_riscv64.whl
  • Upload date:
  • Size: 426.5 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.2-cp313-cp313-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 d4a4463dba315ec82e1218ff75b7023d53f7bf85d03bc6597d23e4b64f8ff101
MD5 1e8c50f6d45b8d1324d415d81bcce8d8
BLAKE2b-256 31849617f3db78e8868168e6f5d6d7eb74ea7a4e7e867698676eca9cd76a870e

See more details on using hashes here.

Provenance

The following attestation bundles were made for crc32c_rs-0.0.2-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.2-cp313-cp313-musllinux_1_2_ppc64le.whl.

File metadata

  • Download URL: crc32c_rs-0.0.2-cp313-cp313-musllinux_1_2_ppc64le.whl
  • Upload date:
  • Size: 434.8 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.2-cp313-cp313-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 1a3ce0ba9b27fa3597d6f76350f0ccaf937a29d2227063d69fd203416866434a
MD5 1e67961f9f2b09fbeb94771ea36e0206
BLAKE2b-256 79e7560715a7fc708941417fc4fae982a40d7c15f14d40747b843f890833d426

See more details on using hashes here.

Provenance

The following attestation bundles were made for crc32c_rs-0.0.2-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.2-cp313-cp313-musllinux_1_2_i686.whl.

File metadata

  • Download URL: crc32c_rs-0.0.2-cp313-cp313-musllinux_1_2_i686.whl
  • Upload date:
  • Size: 524.5 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.2-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 3d0a963a58b98f1dabc856d77935494cb6a0c834928e44c54d4ae0622a29a4d2
MD5 4ab1f76e6ae5e001562e06dc06ed2063
BLAKE2b-256 082e76db6bd8337a79d86741bb64b0612b8a61a2422d2faa8608e16aed916a7f

See more details on using hashes here.

Provenance

The following attestation bundles were made for crc32c_rs-0.0.2-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.2-cp313-cp313-musllinux_1_2_armv7l.whl.

File metadata

  • Download URL: crc32c_rs-0.0.2-cp313-cp313-musllinux_1_2_armv7l.whl
  • Upload date:
  • Size: 534.0 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.2-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 87e5b347d476f37e3e3155ffc5965e0a0fb35ac657a319f2da49fd6e1386f90c
MD5 ab27cf2f65e020d5fa1fddf31b502b48
BLAKE2b-256 8352c2ee11dfcd8a32f98d0469991c96e15202459b6b0224cee180b3a3886346

See more details on using hashes here.

Provenance

The following attestation bundles were made for crc32c_rs-0.0.2-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.2-cp313-cp313-musllinux_1_2_aarch64.whl.

File metadata

  • Download URL: crc32c_rs-0.0.2-cp313-cp313-musllinux_1_2_aarch64.whl
  • Upload date:
  • Size: 447.8 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.2-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 ddfe5cff0bb8b128b7854593c33e76307812e673e43df0d1e81d71f9750fd7a3
MD5 b46c88ee26e8bb02c6d7d265ad8bca90
BLAKE2b-256 372af18888364d8447b343c673d0f910dab32d8762b1a8f9c08672da6bba73de

See more details on using hashes here.

Provenance

The following attestation bundles were made for crc32c_rs-0.0.2-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.2-cp313-cp313-manylinux_2_31_riscv64.whl.

File metadata

  • Download URL: crc32c_rs-0.0.2-cp313-cp313-manylinux_2_31_riscv64.whl
  • Upload date:
  • Size: 249.0 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.2-cp313-cp313-manylinux_2_31_riscv64.whl
Algorithm Hash digest
SHA256 684c9e8cecba5e3d67ac0eb8760b4a71e8719a66621acdaa77855b811e65536e
MD5 3598eba55a57bc3b5546128dbc1e1de8
BLAKE2b-256 001ff1955b84d5c15add511638d753aab1a218feecdec0706a2028409018eb04

See more details on using hashes here.

Provenance

The following attestation bundles were made for crc32c_rs-0.0.2-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.2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

  • Download URL: crc32c_rs-0.0.2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
  • Upload date:
  • Size: 278.2 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.2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f160779cfd437e60a18e87456cc27825ac9e56e36c1f24c495311d6838ddeb27
MD5 11ec4f3243ce6a3955cef58c41c53227
BLAKE2b-256 87afc6ecc7a892acd4abd6dcf8cb81cc03595821e34394173c122c0dbb8787fd

See more details on using hashes here.

Provenance

The following attestation bundles were made for crc32c_rs-0.0.2-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.2-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

  • Download URL: crc32c_rs-0.0.2-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
  • Upload date:
  • Size: 239.0 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.2-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 500790754d153a9608e4549be0906f4801c8adba1bd10c1b7806028fbb572c92
MD5 150b5af55d05c5a61fa46d3e32307e61
BLAKE2b-256 775d993686031f36c2e0198aef423753476f8dd75df486d2adc7b9d5c7e4f734

See more details on using hashes here.

Provenance

The following attestation bundles were made for crc32c_rs-0.0.2-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.2-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

  • Download URL: crc32c_rs-0.0.2-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
  • Upload date:
  • Size: 226.4 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.2-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 73af8ee0f71b5142a24659e4d2786e325eb111c17fed317b3b069639f58ca7cf
MD5 bd88ba86671b056eaf7f6527ba7265b6
BLAKE2b-256 920a399352c45aa74b81bc3f5aed5ce41bdd225add1818a1a22010fae36817d3

See more details on using hashes here.

Provenance

The following attestation bundles were made for crc32c_rs-0.0.2-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.2-cp313-cp313-manylinux_2_17_ppc64.manylinux2014_ppc64.whl.

File metadata

  • Download URL: crc32c_rs-0.0.2-cp313-cp313-manylinux_2_17_ppc64.manylinux2014_ppc64.whl
  • Upload date:
  • Size: 226.6 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.2-cp313-cp313-manylinux_2_17_ppc64.manylinux2014_ppc64.whl
Algorithm Hash digest
SHA256 8b7e7fd5cc5c98eff0b9baa3fcf628ead8f275159463bdfedd3ad6cf4e19c510
MD5 f933769d098f04617abb612b65f8cff7
BLAKE2b-256 90a54affafc0bbca21029e254f63bd3a9c1a9478981a46ae02b5babce3cb1e6b

See more details on using hashes here.

Provenance

The following attestation bundles were made for crc32c_rs-0.0.2-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.2-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

  • Download URL: crc32c_rs-0.0.2-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
  • Upload date:
  • Size: 208.1 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.2-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 724f81376f2f24bbfdc8ecb82371a56fe00d536ad02310160b2bb7f910fb77e8
MD5 e21847bb94aba887b33a8bfaf35add83
BLAKE2b-256 740e51cbd31e7297a1dfb3e682ce2a3d55b662ab09c3ae03f0a158799b07b131

See more details on using hashes here.

Provenance

The following attestation bundles were made for crc32c_rs-0.0.2-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.2-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

  • Download URL: crc32c_rs-0.0.2-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
  • Upload date:
  • Size: 268.6 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.2-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 9e9ed08228a11874879a7c4d3bfa055d5a27aa1cd56dcc80b7bcf3325b364555
MD5 e54c86a509370ec759fa3654b8aff195
BLAKE2b-256 2425072fcf12c527c442c008d681a5ec77df777693992aceb72ae8ea6ea22052

See more details on using hashes here.

Provenance

The following attestation bundles were made for crc32c_rs-0.0.2-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.2-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

  • Download URL: crc32c_rs-0.0.2-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl
  • Upload date:
  • Size: 298.6 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.2-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 a8ae65d5bdeacac272cfcc01e843f2885dd6bee915ac0fb2d785fc0440737c15
MD5 3775fc11b92070eacdf5cc497ef08154
BLAKE2b-256 c85870d6fd7db6f1e3276e683e2c326e5a4ad8ff826c2f8dc56032052fe4967d

See more details on using hashes here.

Provenance

The following attestation bundles were made for crc32c_rs-0.0.2-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.2-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

  • Download URL: crc32c_rs-0.0.2-cp313-cp313-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 245.9 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.2-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 787d464e8e75e834def0b55c773173b2e73e981e1f5aa892483e6831c250aef7
MD5 99a1754435a03ee396bb031d81c4308f
BLAKE2b-256 4b9dc36ecb2cb8cb4800b6de8fdfb6abff7d0185b8aa20fe466c6250d8c8ba85

See more details on using hashes here.

Provenance

The following attestation bundles were made for crc32c_rs-0.0.2-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.2-cp313-cp313-macosx_10_12_x86_64.whl.

File metadata

  • Download URL: crc32c_rs-0.0.2-cp313-cp313-macosx_10_12_x86_64.whl
  • Upload date:
  • Size: 265.5 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.2-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 e657e3d143e39f81f2e5807de8714b41cd7642d9c783998ee9962eb0a73b9a47
MD5 3d7e98ebf3703a4a546681ec3a0e5251
BLAKE2b-256 b88a2426adf6317678fc88841ff3c30934a89e735a760f8d242303a1e8bf9109

See more details on using hashes here.

Provenance

The following attestation bundles were made for crc32c_rs-0.0.2-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.2-cp313-cp313-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl.

File metadata

  • Download URL: crc32c_rs-0.0.2-cp313-cp313-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl
  • Upload date:
  • Size: 494.2 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.2-cp313-cp313-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl
Algorithm Hash digest
SHA256 4c8475651981cce7609d9b2eb05c0189327673a206e589ca9e0d08a8902536e9
MD5 110b4d1d1447b4710f1ddc74d636a646
BLAKE2b-256 4062c7f7328588699781897eee09cadba7e7b829bcef1b76368c684f2fe8010e

See more details on using hashes here.

Provenance

The following attestation bundles were made for crc32c_rs-0.0.2-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.2-cp312-cp312-win_arm64.whl.

File metadata

  • Download URL: crc32c_rs-0.0.2-cp312-cp312-win_arm64.whl
  • Upload date:
  • Size: 175.1 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.2-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 8387aec0141012946b7cac00be2509bb6b570dd0960cd968e5ce99b407ae85aa
MD5 5ad07f1616a74a2ec7df2dd8341c0683
BLAKE2b-256 fcd6d3d2a8272d116ae4755fed192a0d121bd7f8946104054ffda6b0ae9b3fa6

See more details on using hashes here.

Provenance

The following attestation bundles were made for crc32c_rs-0.0.2-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.2-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: crc32c_rs-0.0.2-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 187.1 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.2-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 146dd889e1ec4a5999345785539febefc3b72375cb0f8884fe8c963d4bafd3fe
MD5 83ed58a8dd223381a02df3cbd0bee8ad
BLAKE2b-256 e6aa60ffd53a9f444d7b0547985ba7f426c918bf651e7186290637d03b3f07dc

See more details on using hashes here.

Provenance

The following attestation bundles were made for crc32c_rs-0.0.2-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.2-cp312-cp312-win32.whl.

File metadata

  • Download URL: crc32c_rs-0.0.2-cp312-cp312-win32.whl
  • Upload date:
  • Size: 173.0 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.2-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 34861e868feb6cca7268906746a4427aab14786c7f72a5f69fb9fedc22af2b0c
MD5 7430ac647c877d04ae85f4d014dd7cd9
BLAKE2b-256 b3e1f68ec84eb8765e08c789056fdf23876f3b6c084d31c7c301feb15d606846

See more details on using hashes here.

Provenance

The following attestation bundles were made for crc32c_rs-0.0.2-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.2-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

  • Download URL: crc32c_rs-0.0.2-cp312-cp312-musllinux_1_2_x86_64.whl
  • Upload date:
  • Size: 490.3 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.2-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 361a2a74d77d2514846bfa88eda6488db57ab7e4e245d20619ac27c26f118f40
MD5 7a72764e8e046ba4d9ede6c81832f807
BLAKE2b-256 64f777620be7d567e6ed62107a09c8a8f6b996a1bf8b6a38b00764a0552cad92

See more details on using hashes here.

Provenance

The following attestation bundles were made for crc32c_rs-0.0.2-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.2-cp312-cp312-musllinux_1_2_riscv64.whl.

File metadata

  • Download URL: crc32c_rs-0.0.2-cp312-cp312-musllinux_1_2_riscv64.whl
  • Upload date:
  • Size: 426.3 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.2-cp312-cp312-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 9428bbd9a5d2cb81d57e81226c07865e10c101a3950194c15f9d9c8fb3c55c84
MD5 2cd9499a3d1243b68d59ebfd886629a4
BLAKE2b-256 c95d157204a567ec841b19672e3fde5c5497bfdc133a21c90858030308787bad

See more details on using hashes here.

Provenance

The following attestation bundles were made for crc32c_rs-0.0.2-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.2-cp312-cp312-musllinux_1_2_ppc64le.whl.

File metadata

  • Download URL: crc32c_rs-0.0.2-cp312-cp312-musllinux_1_2_ppc64le.whl
  • Upload date:
  • Size: 434.7 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.2-cp312-cp312-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 89f0109908fa8108f8c6e10dddb4d5a5f350f91583bbb7d3a6ef57e0a9e64a2d
MD5 a2331141d909d9a789111224e7c2c526
BLAKE2b-256 c5bb1104bd747de5e0a663283bcde95d669bf9b6f5351592fce2ea724360971b

See more details on using hashes here.

Provenance

The following attestation bundles were made for crc32c_rs-0.0.2-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.2-cp312-cp312-musllinux_1_2_i686.whl.

File metadata

  • Download URL: crc32c_rs-0.0.2-cp312-cp312-musllinux_1_2_i686.whl
  • Upload date:
  • Size: 524.4 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.2-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 6f4e03dc73528ef349692ac220db644b6646c6d328ac96a64dabdf28831f0816
MD5 a894f5ea860daccd2769c79e21179637
BLAKE2b-256 534e5f17c3b33b5c5baf186c2bce14bc7427d3e53e16c9fb991b55fa84e5f3fb

See more details on using hashes here.

Provenance

The following attestation bundles were made for crc32c_rs-0.0.2-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.2-cp312-cp312-musllinux_1_2_armv7l.whl.

File metadata

  • Download URL: crc32c_rs-0.0.2-cp312-cp312-musllinux_1_2_armv7l.whl
  • Upload date:
  • Size: 533.9 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.2-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 f906ff655b6f1065c25eab123e0000f6a202d0c78ace7e7417e57b06ca39ba6a
MD5 e2e6bd95086300fbfa156fea31afe09e
BLAKE2b-256 49b46d66c347c2c62f3532c36a3f5cfd0fa15b41e14840b14a23268da58c750f

See more details on using hashes here.

Provenance

The following attestation bundles were made for crc32c_rs-0.0.2-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.2-cp312-cp312-musllinux_1_2_aarch64.whl.

File metadata

  • Download URL: crc32c_rs-0.0.2-cp312-cp312-musllinux_1_2_aarch64.whl
  • Upload date:
  • Size: 447.7 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.2-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 9ac94c95c4100dcd984ef7f2f387c45d57e3e6c40ed0e49dc4f1f758dd7456b7
MD5 ee5ab0a2e85ffba662cba6d3ed3bd107
BLAKE2b-256 0b2650bb605e00dc9148cccb8df14362737fb69abb6d7711307102886bf0dc2e

See more details on using hashes here.

Provenance

The following attestation bundles were made for crc32c_rs-0.0.2-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.2-cp312-cp312-manylinux_2_31_riscv64.whl.

File metadata

  • Download URL: crc32c_rs-0.0.2-cp312-cp312-manylinux_2_31_riscv64.whl
  • Upload date:
  • Size: 248.9 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.2-cp312-cp312-manylinux_2_31_riscv64.whl
Algorithm Hash digest
SHA256 9a10531d25dfe4c7fbe05ce5c563b49062829db00f6f3ed5b8967f2c497069c7
MD5 1f17ae4b87e1f42a36b3cf60879c4326
BLAKE2b-256 0811e9ae5e7b992b77b51511dca9ed71fcca3a3db46565f8f8aa45ea2e6898df

See more details on using hashes here.

Provenance

The following attestation bundles were made for crc32c_rs-0.0.2-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.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

  • Download URL: crc32c_rs-0.0.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
  • Upload date:
  • Size: 277.9 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.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 73e68c1bac749055077ebac873556eb33509364155f148a63c010188a04fa725
MD5 cadbdd38dedf1a6b8802817fab5a773f
BLAKE2b-256 ae9438f96eec8ee542b35f845b7198a28f7d20efd52455eb645d246429df838b

See more details on using hashes here.

Provenance

The following attestation bundles were made for crc32c_rs-0.0.2-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.2-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

  • Download URL: crc32c_rs-0.0.2-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
  • Upload date:
  • Size: 238.8 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.2-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 4f34cf6833d99bca6ef8e9baf6e592398e7adc7d9b7693069e0580d21a949d9b
MD5 ac104947b9a35a9b64dbd63a533ebc1e
BLAKE2b-256 d03f1b941f12d40554d9c578b385615d38127533cc667d97eb9ebb67b981a7ca

See more details on using hashes here.

Provenance

The following attestation bundles were made for crc32c_rs-0.0.2-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.2-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

  • Download URL: crc32c_rs-0.0.2-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
  • Upload date:
  • Size: 226.1 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.2-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 cfceed643a45fb9fdfda94ba5c7c837711e07bcffd8435237494ba0825a8bdbc
MD5 4836419c7415fe30e3f2d625fd01fe33
BLAKE2b-256 0c4234c36dcb749372394d598d4a54e35ec8668050fb49f6dd5f6a85d84b6581

See more details on using hashes here.

Provenance

The following attestation bundles were made for crc32c_rs-0.0.2-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.2-cp312-cp312-manylinux_2_17_ppc64.manylinux2014_ppc64.whl.

File metadata

  • Download URL: crc32c_rs-0.0.2-cp312-cp312-manylinux_2_17_ppc64.manylinux2014_ppc64.whl
  • Upload date:
  • Size: 226.3 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.2-cp312-cp312-manylinux_2_17_ppc64.manylinux2014_ppc64.whl
Algorithm Hash digest
SHA256 5a8ac5b2f3cbb800323a7436415eab629a42133d67024d69c15e1567e2dc503d
MD5 f975bc0c4f7cbc81b954da1f7227fcd1
BLAKE2b-256 0e9b5961431ba084e15039de279bda854aced1982f13dab6c9a310642eb30c66

See more details on using hashes here.

Provenance

The following attestation bundles were made for crc32c_rs-0.0.2-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.2-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

  • Download URL: crc32c_rs-0.0.2-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
  • Upload date:
  • Size: 208.0 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.2-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 ce60f09d03a0a43a1869c180342fa832d5c724d33b184828bf60f161f1b72e75
MD5 6b95caa60d67cce87c01f2cd9f19eeb9
BLAKE2b-256 59b5a6261d10145dc74454bf13a5c4798efb4265436e2970de77952c4615392a

See more details on using hashes here.

Provenance

The following attestation bundles were made for crc32c_rs-0.0.2-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.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

  • Download URL: crc32c_rs-0.0.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
  • Upload date:
  • Size: 268.4 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.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 7999651dd6882e22095c292daaf3bf1a8e09c93ac3f75e97b6a519ec58b17482
MD5 804a786abcbdc8442e310038cbf53ce5
BLAKE2b-256 b177273040f42eaf21c0dd4378c69f8b7bc3e2f59e1e3c345e939c13fa3f9269

See more details on using hashes here.

Provenance

The following attestation bundles were made for crc32c_rs-0.0.2-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.2-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

  • Download URL: crc32c_rs-0.0.2-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl
  • Upload date:
  • Size: 298.6 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.2-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 65bee45cdac151181e3580b34afe6aef68ffe5a3f3f53c3d27af8e04c003c5f2
MD5 8d077b34ed6339f949878a5a37cce25b
BLAKE2b-256 a3eb23f642633938d886ab80b2fa7aa475a99cce5e18d4230cc0ad2a13d5ac71

See more details on using hashes here.

Provenance

The following attestation bundles were made for crc32c_rs-0.0.2-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.2-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

  • Download URL: crc32c_rs-0.0.2-cp312-cp312-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 245.7 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.2-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 554ec947e440bdd1435ebcd607991bcf1a8d0042daa23418f7a81d7a0a6d0b09
MD5 7d76b7617005d7fcdd17ba3eb97de162
BLAKE2b-256 226fe84d1521bcdfd60041c17ae43956c1b6d2e82f214f53b6c8852ca7e3bfa1

See more details on using hashes here.

Provenance

The following attestation bundles were made for crc32c_rs-0.0.2-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.2-cp312-cp312-macosx_10_12_x86_64.whl.

File metadata

  • Download URL: crc32c_rs-0.0.2-cp312-cp312-macosx_10_12_x86_64.whl
  • Upload date:
  • Size: 265.2 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.2-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 02c7c4a3457f03630c482556bd98d5385bb852a0009f99197ee42a873d395b33
MD5 6c6a49780b06e036a2884331ff6d99a9
BLAKE2b-256 9cb34a4b154b7b5fb82413f712888f4baf8dcf6587a41503520d7c8a40f7444a

See more details on using hashes here.

Provenance

The following attestation bundles were made for crc32c_rs-0.0.2-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.2-cp312-cp312-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl.

File metadata

  • Download URL: crc32c_rs-0.0.2-cp312-cp312-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl
  • Upload date:
  • Size: 493.8 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.2-cp312-cp312-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl
Algorithm Hash digest
SHA256 9a73282b1aeeb7b0b727f031e81b87a9324759bfbd0d1fea0ff245e6274c9ece
MD5 3d525325a0d1a0743144fb919960b35b
BLAKE2b-256 bc2fb77edaf8ecc426c881a8f26e555e8f9ba3edabca923ea447489dc99dff66

See more details on using hashes here.

Provenance

The following attestation bundles were made for crc32c_rs-0.0.2-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.2-cp311-cp311-win_arm64.whl.

File metadata

  • Download URL: crc32c_rs-0.0.2-cp311-cp311-win_arm64.whl
  • Upload date:
  • Size: 174.0 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.2-cp311-cp311-win_arm64.whl
Algorithm Hash digest
SHA256 1ca637d33911a0ee8fe4c3285228f4525c351ebb7880fcd860f8e50cb123a0ca
MD5 ed9d00506b84e777f6e66c1b43b5cdf1
BLAKE2b-256 5599f92c768fe6b9d2bfbb154e65aad66bda126a4de3db698be8f37c7a757879

See more details on using hashes here.

Provenance

The following attestation bundles were made for crc32c_rs-0.0.2-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.2-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: crc32c_rs-0.0.2-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 185.2 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.2-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 0ae7a94b510ce764fe8707942009b77c2c5bc17b5544c16d2641f3002c260792
MD5 76ac91831423c916528dd7147d793e9f
BLAKE2b-256 dc3dadf02c21d1db26ad6576f393635a637280e767db57f2c44782be9e082ba9

See more details on using hashes here.

Provenance

The following attestation bundles were made for crc32c_rs-0.0.2-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.2-cp311-cp311-win32.whl.

File metadata

  • Download URL: crc32c_rs-0.0.2-cp311-cp311-win32.whl
  • Upload date:
  • Size: 173.2 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.2-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 fdda76d682b5d417d5aa0f6b24122bafdee3a0ca4551a6d3b613a6025488dbe9
MD5 9e925ebff05ed83580b530f5dec3617e
BLAKE2b-256 331b9cc007ac35795789cd2614c448bfe42db118f9192c8575a26d27779487a6

See more details on using hashes here.

Provenance

The following attestation bundles were made for crc32c_rs-0.0.2-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.2-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

  • Download URL: crc32c_rs-0.0.2-cp311-cp311-musllinux_1_2_x86_64.whl
  • Upload date:
  • Size: 488.2 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.2-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 caafd6dcc86ce42b049cd8a316082cd69dea3c7e2b96b728b699c2b49ea59585
MD5 0e3be45b55cbdd2dd04a52b5d4e87d49
BLAKE2b-256 16f94080d9f3f54363c691a7e7a93ea0dae5a0ea91c9c3b8f27d7b19917c156f

See more details on using hashes here.

Provenance

The following attestation bundles were made for crc32c_rs-0.0.2-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.2-cp311-cp311-musllinux_1_2_riscv64.whl.

File metadata

  • Download URL: crc32c_rs-0.0.2-cp311-cp311-musllinux_1_2_riscv64.whl
  • Upload date:
  • Size: 425.4 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.2-cp311-cp311-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 1ca3bf1803ed31aa506c747934b05cb9939cda7c296e97ad95a8e5121ccd502c
MD5 d5eab5ff8c06a4714eef630e74a534ae
BLAKE2b-256 4864bb5b96cc7c7963791481df3cad4bc49fc0f920dc67f34609890be99af35f

See more details on using hashes here.

Provenance

The following attestation bundles were made for crc32c_rs-0.0.2-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.2-cp311-cp311-musllinux_1_2_ppc64le.whl.

File metadata

  • Download URL: crc32c_rs-0.0.2-cp311-cp311-musllinux_1_2_ppc64le.whl
  • Upload date:
  • Size: 434.1 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.2-cp311-cp311-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 a7d4f92ec2e3097a7ad86e4c3caff608ba2888a189aee5df8101e24659778161
MD5 23dbe81ac478d94fb41f7f8fddbc2c1c
BLAKE2b-256 42a04cb34eec692f88788a91bf67169e42cba05f625f2dc0f931b3e3c5ca862c

See more details on using hashes here.

Provenance

The following attestation bundles were made for crc32c_rs-0.0.2-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.2-cp311-cp311-musllinux_1_2_i686.whl.

File metadata

  • Download URL: crc32c_rs-0.0.2-cp311-cp311-musllinux_1_2_i686.whl
  • Upload date:
  • Size: 525.7 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.2-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 618b4e26fa2ec26f51765ddc581b86c4a28ba82423fa5ec8f51f48a039661950
MD5 44f16dfc50015a763e45c5dc1ec05d5b
BLAKE2b-256 a8529650d421ce8bc62f8a48a47de008c682df35170455dda4789bc73f4fb47e

See more details on using hashes here.

Provenance

The following attestation bundles were made for crc32c_rs-0.0.2-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.2-cp311-cp311-musllinux_1_2_armv7l.whl.

File metadata

  • Download URL: crc32c_rs-0.0.2-cp311-cp311-musllinux_1_2_armv7l.whl
  • Upload date:
  • Size: 534.3 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.2-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 b1da426e8a0f3e8ca72931a3fa5ca6e4d2c99c8ce55c8e04c176c45580cb9ccb
MD5 c59e60d327b54f080b31e7b091ef8ad7
BLAKE2b-256 c411e4ada7764e10025a97b0cd8574d852e6370c708783fa085de7a30270592c

See more details on using hashes here.

Provenance

The following attestation bundles were made for crc32c_rs-0.0.2-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.2-cp311-cp311-musllinux_1_2_aarch64.whl.

File metadata

  • Download URL: crc32c_rs-0.0.2-cp311-cp311-musllinux_1_2_aarch64.whl
  • Upload date:
  • Size: 446.7 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.2-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 4a164e293fa4d37a40aecd5cfadca5cc26fd9b904742970e787bff6a69fa7f1f
MD5 d717610428c0c947729533d71f76ae38
BLAKE2b-256 52cb19e411a5904e4011226085587f769e00741542b5d2ce4904468229739a58

See more details on using hashes here.

Provenance

The following attestation bundles were made for crc32c_rs-0.0.2-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.2-cp311-cp311-manylinux_2_31_riscv64.whl.

File metadata

  • Download URL: crc32c_rs-0.0.2-cp311-cp311-manylinux_2_31_riscv64.whl
  • Upload date:
  • Size: 248.0 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.2-cp311-cp311-manylinux_2_31_riscv64.whl
Algorithm Hash digest
SHA256 1645b862d7c6f6ca361d31b12f486b3bd113b54ef703dd445d444c9ae7e43945
MD5 c7a874ca1468ddf8e0d6af683ee3f282
BLAKE2b-256 6668e712c33bab00648c1cf5357a1f648ae7b3ca073cf210350505bfafae61d0

See more details on using hashes here.

Provenance

The following attestation bundles were made for crc32c_rs-0.0.2-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.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

  • Download URL: crc32c_rs-0.0.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
  • Upload date:
  • Size: 275.7 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.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 520a7a3187b351a16f340492e20143cdc5770456db5dbc1c6995e56fd214c74a
MD5 b2f7f0cec4d66f18804cd22a91c5e3a8
BLAKE2b-256 7d5fccbb57921bb77183ed10019c4d2f8bd208d34ea90e51e456fbdb5dbd3840

See more details on using hashes here.

Provenance

The following attestation bundles were made for crc32c_rs-0.0.2-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.2-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

  • Download URL: crc32c_rs-0.0.2-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
  • Upload date:
  • Size: 237.3 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.2-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 759d61c6dd04769a0ec93dc6609a79bb1428c6c1a3404a5d418523b85d440d21
MD5 439469e9fd0171bc8ef658c7ef9b62ab
BLAKE2b-256 65efeb4ac9531f98efdcc73d4aee42d62787b78c4bba0fea6ae1a8007e9e5175

See more details on using hashes here.

Provenance

The following attestation bundles were made for crc32c_rs-0.0.2-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.2-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

  • Download URL: crc32c_rs-0.0.2-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
  • Upload date:
  • Size: 225.1 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.2-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 f2634c6a21b2fee9c74184b7f2fbeb54bd6a28b8a03a61314291114b5be3690b
MD5 5c928e179a7c4e37be51ab41e68c974b
BLAKE2b-256 ee15e02cda686681c8b9310932fdc0845e6494da45b304bccaca9cbe2b9b7b70

See more details on using hashes here.

Provenance

The following attestation bundles were made for crc32c_rs-0.0.2-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.2-cp311-cp311-manylinux_2_17_ppc64.manylinux2014_ppc64.whl.

File metadata

  • Download URL: crc32c_rs-0.0.2-cp311-cp311-manylinux_2_17_ppc64.manylinux2014_ppc64.whl
  • Upload date:
  • Size: 225.9 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.2-cp311-cp311-manylinux_2_17_ppc64.manylinux2014_ppc64.whl
Algorithm Hash digest
SHA256 1d500c264059fd02f714fc29b6e6521997578ff204aaeb25d7ebaec54f814137
MD5 5c2e637e427bde4d67edbd956f50bfd0
BLAKE2b-256 be3cd1e48bf28e9cd699ffccc5e5e03b4efe4387b249552839e1e5b9749baa25

See more details on using hashes here.

Provenance

The following attestation bundles were made for crc32c_rs-0.0.2-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.2-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

  • Download URL: crc32c_rs-0.0.2-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
  • Upload date:
  • Size: 208.3 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.2-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 1997af3075c0064a8a10e0117491a1c13e8b7f21ecb0b0cc095ec06c49e0315a
MD5 4ad7ca81c9cf6da4ffeba2ca84ebd3a1
BLAKE2b-256 af517e2469bd1fffd1176b07e5913de5a37968b5ae76c11dc53b09a2a0663db4

See more details on using hashes here.

Provenance

The following attestation bundles were made for crc32c_rs-0.0.2-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.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

  • Download URL: crc32c_rs-0.0.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
  • Upload date:
  • Size: 267.4 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.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 cca1625523f896397d0ddc9556e662d603bbb0efd29062d868be5ef16c30507a
MD5 747a9230fa85c9efde42e87a169ab1a2
BLAKE2b-256 7538a436ba272f6947dbd7fe7cdd7eb82af3aa2398efedb3e1ec5b9f853c3d3f

See more details on using hashes here.

Provenance

The following attestation bundles were made for crc32c_rs-0.0.2-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.2-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

  • Download URL: crc32c_rs-0.0.2-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl
  • Upload date:
  • Size: 300.4 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.2-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 bbf968d63f23b6198fb33a4af13f59365848c2fedf82090f70bef40ea180ae7f
MD5 b7bb9ab7ec3e2ea2f6f940f12365ebf1
BLAKE2b-256 0b35ab760c3880415e05bf79c3dfed9a9875f382a43d7e1f9844e0acddc7961b

See more details on using hashes here.

Provenance

The following attestation bundles were made for crc32c_rs-0.0.2-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.2-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

  • Download URL: crc32c_rs-0.0.2-cp311-cp311-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 247.5 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.2-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 41c495819e2d3351bec290682f276bc0264bc56d079f8efd7fe5b943ee1d7fdb
MD5 d14203b8a1b2c9b7d2d0692ebc7f4040
BLAKE2b-256 e959fd9a016297a30bd2aedd930c6fd163b5129ac1e18fc43cbc7c7165f7bf8e

See more details on using hashes here.

Provenance

The following attestation bundles were made for crc32c_rs-0.0.2-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.2-cp311-cp311-macosx_10_12_x86_64.whl.

File metadata

  • Download URL: crc32c_rs-0.0.2-cp311-cp311-macosx_10_12_x86_64.whl
  • Upload date:
  • Size: 265.3 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.2-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 87115bbb1f4063fffa03f7329b65f88902f780d33bc9c55b7d836837e12039d1
MD5 51f8897245c44c3477f22de13db2f289
BLAKE2b-256 0bd23b3997de5c612814a5846c7c0565ccfe2db68563c5966c9c1974fe1f34f4

See more details on using hashes here.

Provenance

The following attestation bundles were made for crc32c_rs-0.0.2-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.2-cp311-cp311-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl.

File metadata

  • Download URL: crc32c_rs-0.0.2-cp311-cp311-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl
  • Upload date:
  • Size: 495.4 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.2-cp311-cp311-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl
Algorithm Hash digest
SHA256 0a08ccca600aa7e3de07f4ba86dc80a050e1f4f3eeffed9ac8eba582307b0483
MD5 1b078c1550076a78c1ac16fcd04a145c
BLAKE2b-256 966a539a19d7e5aa1ebbdcf8475314a69f9b1c2e60faf6200deed0f42db9672e

See more details on using hashes here.

Provenance

The following attestation bundles were made for crc32c_rs-0.0.2-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

This release

0.0.2 This release

161 files

0.0.1

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