Skip to main content

hashcodecs

CI Docs PyPI crates.io Python Codecov License Total Downloads Monthly Downloads

CPython 3.12 URL-safe Base64 encoding and decoding benchmark

SIMD-accelerated Base64, MurmurHash3, and XXH3 for Python and Rust.

Move byte-heavy work into Rust without changing your Python inputs. hashcodecs accepts bytes, bytearray, and memoryview, selects the best available SIMD backend, and exposes batch and reusable-buffer APIs.

Features

  • Base64 encode and decode with standard, URL-safe, padded, unpadded, wrapped, and canonical modes.
  • MurmurHash3 x86-32, x86-128, and x64-128 with one-shot and incremental APIs.
  • Bit-for-bit compatible XXH3-64 and XXH3-128 with one-shot and native batch APIs.
  • Caller-managed *_into outputs for allocation-sensitive workloads.
  • Runtime dispatch across AVX-512, AVX2, SSE4.1, SSSE3, NEON, and scalar implementations where applicable.
  • Direct CPython buffer handling for bytes, bytearray, and memoryview inputs.
  • Install wheels for CPython 3.10 through 3.15 and free-threaded CPython 3.14t and 3.15t on Linux, macOS, and Windows.

Installation

pip3 install hashcodecs

Python

The Base64 module follows familiar Python conventions while adding explicit padding, canonical validation, batch, and reusable-buffer operations.

import hashcodecs.base64 as base64
from hashcodecs import murmur3_32, xxh3_64, xxh3_128_batch

assert base64.b64encode(b'hello') == b'aGVsbG8='
assert base64.b64decode(b'aGVsbG8=') == b'hello'
assert base64.urlsafe_b64encode(b'hello', padded=False) == b'aGVsbG8'

assert murmur3_32(b'hello') == 0x248BFA47
assert xxh3_64(b'') == 0x2D06800538D394C2
assert xxh3_128_batch([b'hello', b'world']) == [
    0xB5E9C1AD071B3E7FC779CFAA5E523818,
    0xFA0D38A9B38280D0891E4985BDB2583E,
]

Reusable outputs

*_into functions write into caller-managed bytearray storage and return the number of bytes written. XXH3 batch outputs are packed little-endian digests.

import hashcodecs.base64 as base64
from hashcodecs import xxh3_64_batch_into

payload = b'hello'
encoded = bytearray(4 * ((len(payload) + 2) // 3))
encoded_len = base64.b64encode_into(payload, encoded)
assert encoded[:encoded_len] == b'aGVsbG8='

hashes = bytearray(2 * 8)
written = xxh3_64_batch_into([b'hello', b'world'], hashes, seed=42)
assert written == 16

Incremental hashing

from hashcodecs import murmur3_x64_128

hasher = murmur3_x64_128(seed=42)
hasher.update(b'hello')
snapshot = hasher.copy()
hasher.update(b' world')

assert snapshot.hexdigest() == snapshot.digest().hex()
assert hasher.digest() != snapshot.digest()

Rust

The Rust API exposes the same core algorithms without the Python binding layer.

cargo add hashcodecs
let encoded = hashcodecs::base64::b64encode(b"hello");
assert_eq!(encoded, "aGVsbG8=");

let mut output = [0_u8; 8];
let written = hashcodecs::base64::b64encode_into(b"hello", &mut output).unwrap();
assert_eq!(&output[..written], b"aGVsbG8=");

assert_eq!(
    hashcodecs::murmur3::murmur3_x86_32(b"hello", 0),
    0x248b_fa47
);
assert_eq!(
    hashcodecs::xxhash::xxh3_64(b"", 0),
    0x2d06_8005_38d3_94c2
);

Architecture

The Rust core owns algorithm behavior and SIMD dispatch. A substantial CPython layer handles argument parsing, buffer ownership, reusable outputs, and GIL decisions; root-level Python modules provide typed public exports without adding per-call wrappers.

Each Rust algorithm exposes a small public façade. Base64 groups internals by encode and decode operation and places ISA kernels such as encode/avx2.rs and decode/ssse3.rs under their operation. MurmurHash3 groups code by canonical variant. XXH3 uses processing-stage modules, with long-input ISA kernels under xxhash/long/.

See docs/ARCHITECTURE.md for the module layout, dispatch model, algorithm data flows, CPython boundary, and safety invariants.

Benchmarks

Run the suite on Windows 10 x64 with an Intel Core Ultra 7 265K. Pin one logical CPU and run each case in one thread. Collect 50 Rust samples and 15 Python samples. Higher throughput wins.

Base64: Rust

Rust Base64 throughput

MurmurHash3: Rust

Rust MurmurHash3 throughput

XXH3: Rust

Link hashcodecs with xxHash 0.8.3 through xxhash-c-sys. Build the C baseline with AVX2. Batch cases pass 32 equal-size inputs and include result-vector allocation.

Rust XXH3 throughput

Base64: Python

Pass bytes to Rust without an input copy. Python decoding uses validate=True.

Python Base64 throughput

MurmurHash3: Python

Python MurmurHash3 throughput

XXH3: Python

Pass 32 equal-size inputs to each batch case. Compare one native hashcodecs call with a loop over the upstream xxhash extension.

Python XXH3 throughput

Read the focused cases, commands, and values in BENCHMARK.md. Read raw chart values in docs/benchmarks/results.csv.

Reproduce

Comparison crates and Python packages are development-only dependencies and are not included in consumer builds.

cargo bench --bench base64
cargo bench --bench murmur3
cargo bench --bench xxhash

uv sync --group benchmark --no-install-project
uv run --no-project --with . python benchmarks/python_base64.py
uv run --no-project --with . python benchmarks/python_base64_batch.py
uv run --no-project --with . python benchmarks/python_calls.py
uv run --no-project --with . python benchmarks/python_murmur3.py
uv run --no-project --with . python benchmarks/python_xxhash.py

The Python benchmarks expose focused modes such as --into, --lenient, --bytearray-input, --memoryview-input, --sliced-memoryview-input, --incremental, --large, and --hashcodecs-only. All scripts also accept --samples and --minimum-sample-seconds; use --help on a benchmark script for its supported modes and defaults.

For the same-ISA Windows XXH3 comparison shown above, rebuild the C baseline with:

$env:CFLAGS='/O2 /arch:AVX2'
cargo clean -p xxhash-c-sys
cargo bench --bench xxhash

Performance snapshot

In the full 2026-08-23 hashcodecs-only run on the benchmark host, hashcodecs.xxh3_64 processes a 1 MiB input at 79.20 GiB/s. With 256 B items in batches of 64, the Base64 batch API reaches 8.80 GiB/s for encode and 7.58 GiB/s for decode. The run pins one logical CPU and uses 15 samples with a 0.2-second minimum per sample. Read the benchmark details and raw comparison results.

Development

Build the Python wheel and source distribution:

uv build

Run the primary local checks:

cargo fmt --check
cargo clippy --all-targets --features python -- -D warnings
cargo test --features python
uv run --frozen --no-sync ruff check . --no-cache
uv run --frozen --no-sync ruff format --check .
uv run --frozen --no-sync pytest tests --cov=hashcodecs --cov-branch --cov-fail-under=100

Optimized paths are also checked with differential fuzzing, Kani, strict-provenance Miri, AddressSanitizer, and MemorySanitizer in CI.

Compatibility

Version 1.x keeps the documented Python API stable under the compatibility policy. Release wheels target CPython 3.10 through 3.15 on manylinux x86-64, macOS 11+ ARM64, and Windows x86-64. CPython 3.14t and 3.15t receive free-threaded wheels on the same platforms.

The Rust crate and Python package share one release version. The documented Python API follows the compatibility policy below. See Security Policy for vulnerability reporting.

References

The Base64 SIMD implementation follows the approach described in Faster Base64 Encoding and Decoding using AVX2 Instructions, extended with runtime-selected AVX-512 VBMI and AArch64 NEON backends.

Citation

If you use hashcodecs, cite CITATION.cff.

Download files

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

Source Distribution

hashcodecs-1.2.0.tar.gz (147.0 kB view details)

Uploaded Source

Built Distributions

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

hashcodecs-1.2.0-cp315-cp315t-win_amd64.whl (338.3 kB view details)

Uploaded CPython 3.15tWindows x86-64

hashcodecs-1.2.0-cp315-cp315t-manylinux_2_28_x86_64.whl (470.9 kB view details)

Uploaded CPython 3.15tmanylinux: glibc 2.28+ x86-64

hashcodecs-1.2.0-cp315-cp315t-macosx_11_0_arm64.whl (383.6 kB view details)

Uploaded CPython 3.15tmacOS 11.0+ ARM64

hashcodecs-1.2.0-cp315-cp315-win_amd64.whl (331.7 kB view details)

Uploaded CPython 3.15Windows x86-64

hashcodecs-1.2.0-cp315-cp315-manylinux_2_28_x86_64.whl (461.8 kB view details)

Uploaded CPython 3.15manylinux: glibc 2.28+ x86-64

hashcodecs-1.2.0-cp315-cp315-macosx_11_0_arm64.whl (380.3 kB view details)

Uploaded CPython 3.15macOS 11.0+ ARM64

hashcodecs-1.2.0-cp314-cp314t-win_amd64.whl (338.2 kB view details)

Uploaded CPython 3.14tWindows x86-64

hashcodecs-1.2.0-cp314-cp314t-manylinux_2_28_x86_64.whl (470.8 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.28+ x86-64

hashcodecs-1.2.0-cp314-cp314t-macosx_11_0_arm64.whl (383.6 kB view details)

Uploaded CPython 3.14tmacOS 11.0+ ARM64

hashcodecs-1.2.0-cp314-cp314-win_amd64.whl (331.8 kB view details)

Uploaded CPython 3.14Windows x86-64

hashcodecs-1.2.0-cp314-cp314-manylinux_2_28_x86_64.whl (461.4 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.28+ x86-64

hashcodecs-1.2.0-cp314-cp314-macosx_11_0_arm64.whl (380.5 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

hashcodecs-1.2.0-cp313-cp313-win_amd64.whl (318.4 kB view details)

Uploaded CPython 3.13Windows x86-64

hashcodecs-1.2.0-cp313-cp313-manylinux_2_28_x86_64.whl (459.5 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.28+ x86-64

hashcodecs-1.2.0-cp313-cp313-macosx_11_0_arm64.whl (378.9 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

hashcodecs-1.2.0-cp312-cp312-win_amd64.whl (318.0 kB view details)

Uploaded CPython 3.12Windows x86-64

hashcodecs-1.2.0-cp312-cp312-manylinux_2_28_x86_64.whl (459.2 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.28+ x86-64

hashcodecs-1.2.0-cp312-cp312-macosx_11_0_arm64.whl (378.5 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

hashcodecs-1.2.0-cp311-cp311-win_amd64.whl (323.1 kB view details)

Uploaded CPython 3.11Windows x86-64

hashcodecs-1.2.0-cp311-cp311-manylinux_2_28_x86_64.whl (465.1 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.28+ x86-64

hashcodecs-1.2.0-cp311-cp311-macosx_11_0_arm64.whl (382.7 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

hashcodecs-1.2.0-cp310-cp310-win_amd64.whl (323.4 kB view details)

Uploaded CPython 3.10Windows x86-64

hashcodecs-1.2.0-cp310-cp310-manylinux_2_28_x86_64.whl (465.4 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.28+ x86-64

hashcodecs-1.2.0-cp310-cp310-macosx_11_0_arm64.whl (383.0 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

File details

Details for the file hashcodecs-1.2.0.tar.gz.

File metadata

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

File hashes

Hashes for hashcodecs-1.2.0.tar.gz
Algorithm Hash digest
SHA256 ec80b206c89028a5729389cfe20c8af0862951be4ec7966983a7201561d2ff37
MD5 00f4e714f9a70b3ad57ef0bb8bd7bb98
BLAKE2b-256 4356a221eeb961c22956ca8a99a455662a48f9c5ab7e770592d5bcc50fcfb351

See more details on using hashes here.

Provenance

The following attestation bundles were made for hashcodecs-1.2.0.tar.gz:

Publisher: release.yml on kozistr/hashcodecs-rs

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

File details

Details for the file hashcodecs-1.2.0-cp315-cp315t-win_amd64.whl.

File metadata

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

File hashes

Hashes for hashcodecs-1.2.0-cp315-cp315t-win_amd64.whl
Algorithm Hash digest
SHA256 de8b44ae2ce03a421e2158d4f5bfbb481138ad75a345a82d09d8e32a7edbc9a1
MD5 43fabe360ea56d9b66b2bb7a20702452
BLAKE2b-256 630589cf5b710b7cdbb497e422e865e951e2bbc101244bb7da8674936f319da9

See more details on using hashes here.

Provenance

The following attestation bundles were made for hashcodecs-1.2.0-cp315-cp315t-win_amd64.whl:

Publisher: release.yml on kozistr/hashcodecs-rs

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

File details

Details for the file hashcodecs-1.2.0-cp315-cp315t-manylinux_2_28_x86_64.whl.

File metadata

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

File hashes

Hashes for hashcodecs-1.2.0-cp315-cp315t-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 bd1637dbe6403e74052b6300395ff4a83846df012b78075ee3981cd0a4e8207d
MD5 5e2c40810063924c1a07740740afa507
BLAKE2b-256 8f26e549deea9464999018857bebb77ba5958f19bde5b59f6517b9db09f08e05

See more details on using hashes here.

Provenance

The following attestation bundles were made for hashcodecs-1.2.0-cp315-cp315t-manylinux_2_28_x86_64.whl:

Publisher: release.yml on kozistr/hashcodecs-rs

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

File details

Details for the file hashcodecs-1.2.0-cp315-cp315t-macosx_11_0_arm64.whl.

File metadata

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

File hashes

Hashes for hashcodecs-1.2.0-cp315-cp315t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d2964f2d1788b63708b0a97db211ca59ce2a8013e1f04d6d8f1989b1f60f688a
MD5 95e675f747c10c4ca8b1452103ec3a4e
BLAKE2b-256 627aa465a3671292d04b1967b96413a669220a30f5f0a4326bb39eb285e0151a

See more details on using hashes here.

Provenance

The following attestation bundles were made for hashcodecs-1.2.0-cp315-cp315t-macosx_11_0_arm64.whl:

Publisher: release.yml on kozistr/hashcodecs-rs

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

File details

Details for the file hashcodecs-1.2.0-cp315-cp315-win_amd64.whl.

File metadata

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

File hashes

Hashes for hashcodecs-1.2.0-cp315-cp315-win_amd64.whl
Algorithm Hash digest
SHA256 daabcea19f75ed880e90a3652424de20581f27e36583a84d0ad73ce20af345af
MD5 0257a65e037ad59cb2b1da96af54ba96
BLAKE2b-256 e1524db211be28198e87a6845462a460cba09d39bb2eab253fdef69d378729d9

See more details on using hashes here.

Provenance

The following attestation bundles were made for hashcodecs-1.2.0-cp315-cp315-win_amd64.whl:

Publisher: release.yml on kozistr/hashcodecs-rs

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

File details

Details for the file hashcodecs-1.2.0-cp315-cp315-manylinux_2_28_x86_64.whl.

File metadata

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

File hashes

Hashes for hashcodecs-1.2.0-cp315-cp315-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 ca16a197d8e6fff29449c84ff1ba4fcef3eea457bc3d93192641cdb6a3cd7426
MD5 8ad54e1f47b0f14686cce3d8ba541a80
BLAKE2b-256 6404bd82a0315e703634d5e8d1b818eecc2b6945c7f5ad23a9aefa8239ffddf1

See more details on using hashes here.

Provenance

The following attestation bundles were made for hashcodecs-1.2.0-cp315-cp315-manylinux_2_28_x86_64.whl:

Publisher: release.yml on kozistr/hashcodecs-rs

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

File details

Details for the file hashcodecs-1.2.0-cp315-cp315-macosx_11_0_arm64.whl.

File metadata

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

File hashes

Hashes for hashcodecs-1.2.0-cp315-cp315-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 3876a4f13bffafc5c8df9ff6332381d51870be6e323da5acae0dcca003bf9430
MD5 dad2be69c2f6ce944e75cd4380176166
BLAKE2b-256 996f94b9396a46fd5694e4322adaaf2f4bf39ccf756e1723d5f1ec62db0ad6e5

See more details on using hashes here.

Provenance

The following attestation bundles were made for hashcodecs-1.2.0-cp315-cp315-macosx_11_0_arm64.whl:

Publisher: release.yml on kozistr/hashcodecs-rs

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

File details

Details for the file hashcodecs-1.2.0-cp314-cp314t-win_amd64.whl.

File metadata

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

File hashes

Hashes for hashcodecs-1.2.0-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 fc028b23843304c328423c3beaecdfe2a6bc5176a5ee3461c66fd9a212329aba
MD5 5388d20c9fc820b58a94d3e0fe036516
BLAKE2b-256 3a15cc1a6585ab8bded0d7bb7010efdd4cfe9a0a9e4248926ca8324cbb0966fd

See more details on using hashes here.

Provenance

The following attestation bundles were made for hashcodecs-1.2.0-cp314-cp314t-win_amd64.whl:

Publisher: release.yml on kozistr/hashcodecs-rs

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

File details

Details for the file hashcodecs-1.2.0-cp314-cp314t-manylinux_2_28_x86_64.whl.

File metadata

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

File hashes

Hashes for hashcodecs-1.2.0-cp314-cp314t-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 cb3d70af184afbe5f0370cc65adc0873af023a5bab79435bc169d81dfa1cf122
MD5 4e2b01fff8c1b651854e6ad322070dd7
BLAKE2b-256 f6245db0b2a2ac141f92fb5dbe975f6ad4921ad84440b07d41437b608e478476

See more details on using hashes here.

Provenance

The following attestation bundles were made for hashcodecs-1.2.0-cp314-cp314t-manylinux_2_28_x86_64.whl:

Publisher: release.yml on kozistr/hashcodecs-rs

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

File details

Details for the file hashcodecs-1.2.0-cp314-cp314t-macosx_11_0_arm64.whl.

File metadata

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

File hashes

Hashes for hashcodecs-1.2.0-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 6de2efa1752fe7b04c2ac7c3ecd1b2aff8d3bc1885021167275ba03d3aa7ecf9
MD5 78b1ea6b98cc99728cc2e38fd7490a8b
BLAKE2b-256 b5abfa323b4f387e062f13bc0e0778444b5dd08fda510a94b8c5670c3f42a4c0

See more details on using hashes here.

Provenance

The following attestation bundles were made for hashcodecs-1.2.0-cp314-cp314t-macosx_11_0_arm64.whl:

Publisher: release.yml on kozistr/hashcodecs-rs

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

File details

Details for the file hashcodecs-1.2.0-cp314-cp314-win_amd64.whl.

File metadata

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

File hashes

Hashes for hashcodecs-1.2.0-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 1e720b984e07038e54ef0602388fd8c54dee9145cb724d705ac938c966841ce3
MD5 c7f28bd756f76cac333c0de11bbff5e6
BLAKE2b-256 a04ddda93490b9c4df4a7a29f6e032a0fbcfcb1be04683b3575341545494787c

See more details on using hashes here.

Provenance

The following attestation bundles were made for hashcodecs-1.2.0-cp314-cp314-win_amd64.whl:

Publisher: release.yml on kozistr/hashcodecs-rs

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

File details

Details for the file hashcodecs-1.2.0-cp314-cp314-manylinux_2_28_x86_64.whl.

File metadata

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

File hashes

Hashes for hashcodecs-1.2.0-cp314-cp314-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 13b2730639c715efbab718c6948fb6fcc10f3403e809081f49b50fb7cc555cf9
MD5 00b4e2d4eeb3fb4591549e3e70c09007
BLAKE2b-256 1da5eea33448ddea8c9862585fe4cba092c1d51a9bf266841a6abf2e1a8e0148

See more details on using hashes here.

Provenance

The following attestation bundles were made for hashcodecs-1.2.0-cp314-cp314-manylinux_2_28_x86_64.whl:

Publisher: release.yml on kozistr/hashcodecs-rs

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

File details

Details for the file hashcodecs-1.2.0-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

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

File hashes

Hashes for hashcodecs-1.2.0-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 60af91f528684db8f9f4b028385b8cfa194882495c4e80befcfc44fded03d8c8
MD5 e025625ce590d64c8f0b48d5ef042aab
BLAKE2b-256 d50dc47131d396c4d9e17ed24c1ada4f4bffc598369feb1a35f8badb11a38fce

See more details on using hashes here.

Provenance

The following attestation bundles were made for hashcodecs-1.2.0-cp314-cp314-macosx_11_0_arm64.whl:

Publisher: release.yml on kozistr/hashcodecs-rs

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

File details

Details for the file hashcodecs-1.2.0-cp313-cp313-win_amd64.whl.

File metadata

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

File hashes

Hashes for hashcodecs-1.2.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 c7bd41bcdaedb5ae8b2a161116fa2ea525f9398ef62a147a7af9dedf599627fb
MD5 04c38faed1bd551150333b2f65cb66c6
BLAKE2b-256 a8df9fe59bca30666b537f6089fd0d3bc6b8c7685479ea09c2faa68249374fb1

See more details on using hashes here.

Provenance

The following attestation bundles were made for hashcodecs-1.2.0-cp313-cp313-win_amd64.whl:

Publisher: release.yml on kozistr/hashcodecs-rs

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

File details

Details for the file hashcodecs-1.2.0-cp313-cp313-manylinux_2_28_x86_64.whl.

File metadata

  • Download URL: hashcodecs-1.2.0-cp313-cp313-manylinux_2_28_x86_64.whl
  • Upload date:
  • Size: 459.5 kB
  • Tags: CPython 3.13, manylinux: glibc 2.28+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.5 {"installer":{"name":"uv","version":"0.12.5","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for hashcodecs-1.2.0-cp313-cp313-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 7541654a7d7b0f70940b80090e0d5f12e5a3058ec9837accedc1d13aa3fa15e7
MD5 98c131e380bb581246356a989dc0664e
BLAKE2b-256 521f409e54d13d4ee0ccea459cdda9a0d586ae8caf04ea0d165c92d33401bce0

See more details on using hashes here.

Provenance

The following attestation bundles were made for hashcodecs-1.2.0-cp313-cp313-manylinux_2_28_x86_64.whl:

Publisher: release.yml on kozistr/hashcodecs-rs

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

File details

Details for the file hashcodecs-1.2.0-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

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

File hashes

Hashes for hashcodecs-1.2.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a2ee90d1c6708b1fcf17bfecf6ac9c44b380f662e4dca648dea08d7e105a8d7c
MD5 5027ad50c4c4442722a8bc91f3f0f364
BLAKE2b-256 01b974df8ed5a067a5d5e220ca12edf4fdfaeb9309ab1b73ff5ea1bf2b8be1a4

See more details on using hashes here.

Provenance

The following attestation bundles were made for hashcodecs-1.2.0-cp313-cp313-macosx_11_0_arm64.whl:

Publisher: release.yml on kozistr/hashcodecs-rs

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

File details

Details for the file hashcodecs-1.2.0-cp312-cp312-win_amd64.whl.

File metadata

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

File hashes

Hashes for hashcodecs-1.2.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 82c32692e5de5331d9271dc283ece6a7c204bf86bde666aaf5d335085df57889
MD5 f321073826d0a51117eac508395364a2
BLAKE2b-256 76e079e3960a3c1cdf02cb42fa9637d85adb70926a08fca0fe2dc3cf10a4e674

See more details on using hashes here.

Provenance

The following attestation bundles were made for hashcodecs-1.2.0-cp312-cp312-win_amd64.whl:

Publisher: release.yml on kozistr/hashcodecs-rs

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

File details

Details for the file hashcodecs-1.2.0-cp312-cp312-manylinux_2_28_x86_64.whl.

File metadata

  • Download URL: hashcodecs-1.2.0-cp312-cp312-manylinux_2_28_x86_64.whl
  • Upload date:
  • Size: 459.2 kB
  • Tags: CPython 3.12, manylinux: glibc 2.28+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.5 {"installer":{"name":"uv","version":"0.12.5","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for hashcodecs-1.2.0-cp312-cp312-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 8d1236d0a73709577de014cb0b0409fa156aa4347ca58f82049c106066f1fb02
MD5 2b1fd87d6ec3606eda45240de5c74770
BLAKE2b-256 021082c1d0e282e22160f70e0a983ff9a3287def9ff5ab7151680f7b5f535283

See more details on using hashes here.

Provenance

The following attestation bundles were made for hashcodecs-1.2.0-cp312-cp312-manylinux_2_28_x86_64.whl:

Publisher: release.yml on kozistr/hashcodecs-rs

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

File details

Details for the file hashcodecs-1.2.0-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

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

File hashes

Hashes for hashcodecs-1.2.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 61503fe6d3dd5962dd3fc10a3dbeb784c1e57e7d66baac84fb7ed677d5b6d14d
MD5 39508bcaa97cfbfee8534e5ff51fdd5e
BLAKE2b-256 5fa78929a7c03e77297b8acf7bd3332f46299873b0841558b711946892948e19

See more details on using hashes here.

Provenance

The following attestation bundles were made for hashcodecs-1.2.0-cp312-cp312-macosx_11_0_arm64.whl:

Publisher: release.yml on kozistr/hashcodecs-rs

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

File details

Details for the file hashcodecs-1.2.0-cp311-cp311-win_amd64.whl.

File metadata

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

File hashes

Hashes for hashcodecs-1.2.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 966435acf9f511acca4141d1c72f2cd15fec0aad9ff34a2e4c0e598b5781050d
MD5 dfc3d34377a1487609e7eef66e82fe23
BLAKE2b-256 e6e76e02dee7e37aecc3a9157e5e21ff12aa1842bb7c399e291fe2b67be5c3c2

See more details on using hashes here.

Provenance

The following attestation bundles were made for hashcodecs-1.2.0-cp311-cp311-win_amd64.whl:

Publisher: release.yml on kozistr/hashcodecs-rs

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

File details

Details for the file hashcodecs-1.2.0-cp311-cp311-manylinux_2_28_x86_64.whl.

File metadata

  • Download URL: hashcodecs-1.2.0-cp311-cp311-manylinux_2_28_x86_64.whl
  • Upload date:
  • Size: 465.1 kB
  • Tags: CPython 3.11, manylinux: glibc 2.28+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.5 {"installer":{"name":"uv","version":"0.12.5","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for hashcodecs-1.2.0-cp311-cp311-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 21d1541791622a3b634873703a9935c65cc2b41e695379122c19561df60e2762
MD5 a9817131015f2cea2f22202385ea2422
BLAKE2b-256 dffdc89e04c5301d64f86dabb883b835747bc0fd0be4a6980f5b9c795a16d050

See more details on using hashes here.

Provenance

The following attestation bundles were made for hashcodecs-1.2.0-cp311-cp311-manylinux_2_28_x86_64.whl:

Publisher: release.yml on kozistr/hashcodecs-rs

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

File details

Details for the file hashcodecs-1.2.0-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

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

File hashes

Hashes for hashcodecs-1.2.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 6374034c048f33bf717c765eef8810ba17410e59e75dc5b4c6cf8975de6f215e
MD5 f57d70b97ff3e9feb0263ade554a43f0
BLAKE2b-256 d93fbf83394d48766c2d25631f905f649558d5dfabf083c64d17019be6c3f83e

See more details on using hashes here.

Provenance

The following attestation bundles were made for hashcodecs-1.2.0-cp311-cp311-macosx_11_0_arm64.whl:

Publisher: release.yml on kozistr/hashcodecs-rs

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

File details

Details for the file hashcodecs-1.2.0-cp310-cp310-win_amd64.whl.

File metadata

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

File hashes

Hashes for hashcodecs-1.2.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 9f06a9252b4aaea1dba944b880d24f51cb8899d37ca71d48f539f628dea29bb1
MD5 915391e258d5d43ae0cdc0a1f5959334
BLAKE2b-256 05643cbf12cb6c9d3805d92f5ceb678b0df1e2bb0f7fa3a5a5874412fcb22d7e

See more details on using hashes here.

Provenance

The following attestation bundles were made for hashcodecs-1.2.0-cp310-cp310-win_amd64.whl:

Publisher: release.yml on kozistr/hashcodecs-rs

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

File details

Details for the file hashcodecs-1.2.0-cp310-cp310-manylinux_2_28_x86_64.whl.

File metadata

  • Download URL: hashcodecs-1.2.0-cp310-cp310-manylinux_2_28_x86_64.whl
  • Upload date:
  • Size: 465.4 kB
  • Tags: CPython 3.10, manylinux: glibc 2.28+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.5 {"installer":{"name":"uv","version":"0.12.5","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for hashcodecs-1.2.0-cp310-cp310-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 daa98fa95c3a750573e53eeb6b6541b2aa9418517f91ef602a248d325d58dc38
MD5 269f8e999481dc5128df16fcac76765e
BLAKE2b-256 ce8ff1b14e7c133cde8693d000f1050e06d426b4ea17e9eb9a69232cc3e161cc

See more details on using hashes here.

Provenance

The following attestation bundles were made for hashcodecs-1.2.0-cp310-cp310-manylinux_2_28_x86_64.whl:

Publisher: release.yml on kozistr/hashcodecs-rs

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

File details

Details for the file hashcodecs-1.2.0-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

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

File hashes

Hashes for hashcodecs-1.2.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 85b847b84d610f20171dbcde470c891d5ba9c5c3c92e18dfa27719c851b0440c
MD5 c59b6db330e7af490a0954366df1635b
BLAKE2b-256 eea806845b2ae54cc1d018e65bf128c2330e87c3d40dc275c015d137d5eb4846

See more details on using hashes here.

Provenance

The following attestation bundles were made for hashcodecs-1.2.0-cp310-cp310-macosx_11_0_arm64.whl:

Publisher: release.yml on kozistr/hashcodecs-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

1.4.1

25 files

1.4.0

25 files

1.3.0

25 files

1.2.1

25 files

This release

1.2.0 This release

25 files

1.1.0

25 files

1.0.0

25 files

0.6.1

19 files

0.6.0

19 files

0.5.0

4 files

0.4.0

4 files

0.3.0

4 files

0.2.0

4 files

0.1.0

4 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