Skip to main content

hashcodecs

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

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 thin 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_murmur3.py
uv run --no-project --with . python benchmarks/python_xxhash.py

The Python benchmarks expose focused modes such as --into, --bytearray-input, --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.1.0.tar.gz (130.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.1.0-cp315-cp315t-win_amd64.whl (306.5 kB view details)

Uploaded CPython 3.15tWindows x86-64

hashcodecs-1.1.0-cp315-cp315t-manylinux_2_28_x86_64.whl (445.5 kB view details)

Uploaded CPython 3.15tmanylinux: glibc 2.28+ x86-64

hashcodecs-1.1.0-cp315-cp315t-macosx_11_0_arm64.whl (366.0 kB view details)

Uploaded CPython 3.15tmacOS 11.0+ ARM64

hashcodecs-1.1.0-cp315-cp315-win_amd64.whl (301.0 kB view details)

Uploaded CPython 3.15Windows x86-64

hashcodecs-1.1.0-cp315-cp315-manylinux_2_28_x86_64.whl (437.9 kB view details)

Uploaded CPython 3.15manylinux: glibc 2.28+ x86-64

hashcodecs-1.1.0-cp315-cp315-macosx_11_0_arm64.whl (362.0 kB view details)

Uploaded CPython 3.15macOS 11.0+ ARM64

hashcodecs-1.1.0-cp314-cp314t-win_amd64.whl (306.3 kB view details)

Uploaded CPython 3.14tWindows x86-64

hashcodecs-1.1.0-cp314-cp314t-manylinux_2_28_x86_64.whl (445.3 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.28+ x86-64

hashcodecs-1.1.0-cp314-cp314t-macosx_11_0_arm64.whl (365.9 kB view details)

Uploaded CPython 3.14tmacOS 11.0+ ARM64

hashcodecs-1.1.0-cp314-cp314-win_amd64.whl (300.7 kB view details)

Uploaded CPython 3.14Windows x86-64

hashcodecs-1.1.0-cp314-cp314-manylinux_2_28_x86_64.whl (437.4 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.28+ x86-64

hashcodecs-1.1.0-cp314-cp314-macosx_11_0_arm64.whl (361.7 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

hashcodecs-1.1.0-cp313-cp313-win_amd64.whl (288.7 kB view details)

Uploaded CPython 3.13Windows x86-64

hashcodecs-1.1.0-cp313-cp313-manylinux_2_28_x86_64.whl (435.1 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.28+ x86-64

hashcodecs-1.1.0-cp313-cp313-macosx_11_0_arm64.whl (360.3 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

hashcodecs-1.1.0-cp312-cp312-win_amd64.whl (288.2 kB view details)

Uploaded CPython 3.12Windows x86-64

hashcodecs-1.1.0-cp312-cp312-manylinux_2_28_x86_64.whl (434.9 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.28+ x86-64

hashcodecs-1.1.0-cp312-cp312-macosx_11_0_arm64.whl (360.1 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

hashcodecs-1.1.0-cp311-cp311-win_amd64.whl (292.4 kB view details)

Uploaded CPython 3.11Windows x86-64

hashcodecs-1.1.0-cp311-cp311-manylinux_2_28_x86_64.whl (440.2 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.28+ x86-64

hashcodecs-1.1.0-cp311-cp311-macosx_11_0_arm64.whl (363.4 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

hashcodecs-1.1.0-cp310-cp310-win_amd64.whl (292.6 kB view details)

Uploaded CPython 3.10Windows x86-64

hashcodecs-1.1.0-cp310-cp310-manylinux_2_28_x86_64.whl (440.5 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.28+ x86-64

hashcodecs-1.1.0-cp310-cp310-macosx_11_0_arm64.whl (363.6 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

File details

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

File metadata

  • Download URL: hashcodecs-1.1.0.tar.gz
  • Upload date:
  • Size: 130.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.1.0.tar.gz
Algorithm Hash digest
SHA256 388ab28dba9a27c9d75bd10c05f6ca57dc5f3945a706c514d392ec7b29b08612
MD5 ab96efac3fe01cb6e19f3fdffef74d0b
BLAKE2b-256 f914e382dbc590eba4803f345ca1c0e4fea2d2d390279e9a456275832d1236bc

See more details on using hashes here.

Provenance

The following attestation bundles were made for hashcodecs-1.1.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.1.0-cp315-cp315t-win_amd64.whl.

File metadata

  • Download URL: hashcodecs-1.1.0-cp315-cp315t-win_amd64.whl
  • Upload date:
  • Size: 306.5 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.1.0-cp315-cp315t-win_amd64.whl
Algorithm Hash digest
SHA256 f55b3e3d024f14a6be71ef89c5787a31dc10a25f5422feca82496abfc98f0782
MD5 1317bce65ff6cb177d6f79fd66f3b765
BLAKE2b-256 1a0bfe75e35f589da376d823102e6796a2a56fcf0f99c532a66468d82a54e813

See more details on using hashes here.

Provenance

The following attestation bundles were made for hashcodecs-1.1.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.1.0-cp315-cp315t-manylinux_2_28_x86_64.whl.

File metadata

  • Download URL: hashcodecs-1.1.0-cp315-cp315t-manylinux_2_28_x86_64.whl
  • Upload date:
  • Size: 445.5 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.1.0-cp315-cp315t-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 6c5d9250385d7c52c8021004f54b24c86a54b5e1061f087207acd814663bf037
MD5 1d9809dfeb9fbc6c01add65c899a5c97
BLAKE2b-256 69a33e2e10482c05eee75a4bdacfa2fa837488fabde558284f384fc6ee4fc413

See more details on using hashes here.

Provenance

The following attestation bundles were made for hashcodecs-1.1.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.1.0-cp315-cp315t-macosx_11_0_arm64.whl.

File metadata

  • Download URL: hashcodecs-1.1.0-cp315-cp315t-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 366.0 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.1.0-cp315-cp315t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f7f4783c9958961e96c122e10345a7cb17731829d4556ab8a959c1192080dad9
MD5 24c3101dfc0840e4d9dfbb32c5561550
BLAKE2b-256 81e0da3507a6c3985c08b37b8d410fade70cb2bb4675db842de0a37ef117fa04

See more details on using hashes here.

Provenance

The following attestation bundles were made for hashcodecs-1.1.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.1.0-cp315-cp315-win_amd64.whl.

File metadata

  • Download URL: hashcodecs-1.1.0-cp315-cp315-win_amd64.whl
  • Upload date:
  • Size: 301.0 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.1.0-cp315-cp315-win_amd64.whl
Algorithm Hash digest
SHA256 418167991b660ffb78d67fd1088b8dd209c11210b3ec064b1e1f2cf4f9a4ef43
MD5 abef1dbf42bb6e80cd45cc6cf7cf4fab
BLAKE2b-256 60768af7844d908f6f3abe07369b4b8ea50ce677308268e5877d6145c4d4f1b9

See more details on using hashes here.

Provenance

The following attestation bundles were made for hashcodecs-1.1.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.1.0-cp315-cp315-manylinux_2_28_x86_64.whl.

File metadata

  • Download URL: hashcodecs-1.1.0-cp315-cp315-manylinux_2_28_x86_64.whl
  • Upload date:
  • Size: 437.9 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.1.0-cp315-cp315-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 6daf4a406cf223ac69e0edc39ae6a57eda728d059ddc3824b947111fadf1f1eb
MD5 141e4fbc5350a8a74309af248f0fac38
BLAKE2b-256 6b963091633d038518c4121513c809d6bed664c55292ccc3ccef9cbf586a914a

See more details on using hashes here.

Provenance

The following attestation bundles were made for hashcodecs-1.1.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.1.0-cp315-cp315-macosx_11_0_arm64.whl.

File metadata

  • Download URL: hashcodecs-1.1.0-cp315-cp315-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 362.0 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.1.0-cp315-cp315-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 0eb1c6eb1961aa5c3c702facc68363d2456e6831a9c5a881b84e221189fd2736
MD5 2b2a0be71ec9629c3b7bba19bddd55ea
BLAKE2b-256 4c0e1b8bad2a403c934a744e845b9d7293162b7ad8caa993d8bb7c4bec5a429c

See more details on using hashes here.

Provenance

The following attestation bundles were made for hashcodecs-1.1.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.1.0-cp314-cp314t-win_amd64.whl.

File metadata

  • Download URL: hashcodecs-1.1.0-cp314-cp314t-win_amd64.whl
  • Upload date:
  • Size: 306.3 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.1.0-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 96d25b9e2ea1c7f6fedd510d02a4494c0736f273ddbc3525a06f7943cfd4a0cb
MD5 8b2dba2abcbd1a589e36746218f87fe8
BLAKE2b-256 cd659e644cfde3ea23cb690474cad054770b62617ac00627bb6375b083acd3d5

See more details on using hashes here.

Provenance

The following attestation bundles were made for hashcodecs-1.1.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.1.0-cp314-cp314t-manylinux_2_28_x86_64.whl.

File metadata

  • Download URL: hashcodecs-1.1.0-cp314-cp314t-manylinux_2_28_x86_64.whl
  • Upload date:
  • Size: 445.3 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.1.0-cp314-cp314t-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 e9944b81cc83b094b67a37e9b0b7da28737715057fa4e5ae94da21cfe61d8a54
MD5 5f8a9aa33322f12f09276844cf138774
BLAKE2b-256 82cc20dba8607008f58faec755b79e12d8980ca9ba8487bd202bd5899811ebac

See more details on using hashes here.

Provenance

The following attestation bundles were made for hashcodecs-1.1.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.1.0-cp314-cp314t-macosx_11_0_arm64.whl.

File metadata

  • Download URL: hashcodecs-1.1.0-cp314-cp314t-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 365.9 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.1.0-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 da6a6154d9a3e73c53a06f7c1234cc6feab2d68d532079688f491af13b25f4b3
MD5 02355c536115b5feb38c1aa0c6f5b850
BLAKE2b-256 37a3e9e8bc91aeb515b3d79ac1709424adb1a56085d1e19abb45ae1789a89af9

See more details on using hashes here.

Provenance

The following attestation bundles were made for hashcodecs-1.1.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.1.0-cp314-cp314-win_amd64.whl.

File metadata

  • Download URL: hashcodecs-1.1.0-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 300.7 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.1.0-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 1f1db2ad148306ee1c770f9de2dca4f530f3c789802ae9a51b052d20d1de8950
MD5 c0fd3dd81d69e052ce4dd5e0bff0f946
BLAKE2b-256 fdabb3daaa66491ee2530beac0901836771f99e10d24fd2bc8eb6797641cb2c2

See more details on using hashes here.

Provenance

The following attestation bundles were made for hashcodecs-1.1.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.1.0-cp314-cp314-manylinux_2_28_x86_64.whl.

File metadata

  • Download URL: hashcodecs-1.1.0-cp314-cp314-manylinux_2_28_x86_64.whl
  • Upload date:
  • Size: 437.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.1.0-cp314-cp314-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 940d73f1516e6e6e06a8a3a256161dfa81068833fa6de6e8d36245c5d2d70217
MD5 7e812e001f1123c72523894ebda81d45
BLAKE2b-256 f144ce8bbffa12dba341ebc59be74852c1ec303f8d18410f9c8fc4bb9885eed8

See more details on using hashes here.

Provenance

The following attestation bundles were made for hashcodecs-1.1.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.1.0-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

  • Download URL: hashcodecs-1.1.0-cp314-cp314-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 361.7 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.1.0-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e14bd5b18f299f374c3f7242e3dc357abaf2a6a32ebcd0fa825454814aad71a4
MD5 c31f412fdf378a9f8a80c22c535d6fba
BLAKE2b-256 35015ebe0e34e5c574d6684e6430c2252d5fffc2fcbe67e5aeb0e4169b469eb1

See more details on using hashes here.

Provenance

The following attestation bundles were made for hashcodecs-1.1.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.1.0-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: hashcodecs-1.1.0-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 288.7 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.1.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 7b068b2765ba5438dc2d4a8d46d594a8ed2055b945c972abf8e4e6bc522bc610
MD5 b53a0573eb4b803ae6ab7d9d58ef9bb6
BLAKE2b-256 3a97e8f7ad674e427cd7aeedbe9ff65b6a17fa392ced9df35f84408a3a2403c7

See more details on using hashes here.

Provenance

The following attestation bundles were made for hashcodecs-1.1.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.1.0-cp313-cp313-manylinux_2_28_x86_64.whl.

File metadata

  • Download URL: hashcodecs-1.1.0-cp313-cp313-manylinux_2_28_x86_64.whl
  • Upload date:
  • Size: 435.1 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.1.0-cp313-cp313-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 c9110aaa34a66861fd3f6bfd24336b7231b0810f24fabce3470d6025ec74991a
MD5 744a37ad5fb08e0df17d2d1878c11a07
BLAKE2b-256 513b429ddf54e925680db0ccc1817fdbf773364838795a87f9b4e75e2ac4d501

See more details on using hashes here.

Provenance

The following attestation bundles were made for hashcodecs-1.1.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.1.0-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

  • Download URL: hashcodecs-1.1.0-cp313-cp313-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 360.3 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.1.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 7b8c83977e58738c66597049ffb258b3a4fde74ae80b50ac22af1d34812ed04d
MD5 6e31c763d9dbeb764f6c3bd021d94d45
BLAKE2b-256 5dcd6f4bfb2525b1c565a7fe8ff8ae7db360f802f5b287c8776edeed3063ec37

See more details on using hashes here.

Provenance

The following attestation bundles were made for hashcodecs-1.1.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.1.0-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: hashcodecs-1.1.0-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 288.2 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.1.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 60117c5ab4d59556e4c5ea74c1f0126dc055730e2f225afe5e652ef96a80f38f
MD5 6fc82c654b2cb276ad026f91360b66be
BLAKE2b-256 790eaf77f8fad1162fc58b38aa293767eacb824cf2bcfc51912ca23fa70f8aae

See more details on using hashes here.

Provenance

The following attestation bundles were made for hashcodecs-1.1.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.1.0-cp312-cp312-manylinux_2_28_x86_64.whl.

File metadata

  • Download URL: hashcodecs-1.1.0-cp312-cp312-manylinux_2_28_x86_64.whl
  • Upload date:
  • Size: 434.9 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.1.0-cp312-cp312-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 6787d2c4838503695ca39e52e2e27b0f5a646147039597872e0044550b76d675
MD5 f53f59448157d0d95439751478748f6b
BLAKE2b-256 2f957742aa4780304c61ada1ffcacb06df4a25ad46ca0808fec0b3ce31951d34

See more details on using hashes here.

Provenance

The following attestation bundles were made for hashcodecs-1.1.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.1.0-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

  • Download URL: hashcodecs-1.1.0-cp312-cp312-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 360.1 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.1.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 92a7b7f1f9c57b02bd2ca2fe26be05ba51ca9086a1338cc7efd720b360cd2401
MD5 8a54157ccf8b231d1d440bc5cf65585d
BLAKE2b-256 44b53309c3eb761fdd201168eca94ac0763da97e9cf36e279c68597e3684f1d1

See more details on using hashes here.

Provenance

The following attestation bundles were made for hashcodecs-1.1.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.1.0-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: hashcodecs-1.1.0-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 292.4 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.1.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 c140592d794e7475b81ad07a5ae9f3c125e4556f3db7fb4f195b69ac4c737659
MD5 3ba622453a030e8806c78489e91ccf6e
BLAKE2b-256 7a22b973e11f9890cb3c126c279ef94209ac2c8fd61a480172bf1b6b6556372e

See more details on using hashes here.

Provenance

The following attestation bundles were made for hashcodecs-1.1.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.1.0-cp311-cp311-manylinux_2_28_x86_64.whl.

File metadata

  • Download URL: hashcodecs-1.1.0-cp311-cp311-manylinux_2_28_x86_64.whl
  • Upload date:
  • Size: 440.2 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.1.0-cp311-cp311-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 18a3f49c4b7cddaae98b11872338d5c155b9be64d86395bda48dbfc37e828c7e
MD5 9bddc73bbc54ada7788558b2055b5c18
BLAKE2b-256 2a25e25cac3a82bea1636b9c19f478f9059e626b2883b3ed4f6ba614df123254

See more details on using hashes here.

Provenance

The following attestation bundles were made for hashcodecs-1.1.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.1.0-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

  • Download URL: hashcodecs-1.1.0-cp311-cp311-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 363.4 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.1.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 de58a512df155d1f1f20ef5e40a1016635a276e10a16bd5331c0ddb4c56a82f6
MD5 96edf5cfe1e9143d7912c22fa4aef6c9
BLAKE2b-256 15c5403e672af61c77136b386360c6ae2c3ef45b88c52cca66903a75c38dee19

See more details on using hashes here.

Provenance

The following attestation bundles were made for hashcodecs-1.1.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.1.0-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: hashcodecs-1.1.0-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 292.6 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.1.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 0f805f0dcf3bb4402ae5c02376a42f10dca5be0a7b64c3d1f95b266676dcde03
MD5 fb5c11b76fc33bbc80bf2824e61e3037
BLAKE2b-256 8537a4f7b815f752560a3bf60a254f4e7885ef10ecc24cb5eefe762a8f15ea33

See more details on using hashes here.

Provenance

The following attestation bundles were made for hashcodecs-1.1.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.1.0-cp310-cp310-manylinux_2_28_x86_64.whl.

File metadata

  • Download URL: hashcodecs-1.1.0-cp310-cp310-manylinux_2_28_x86_64.whl
  • Upload date:
  • Size: 440.5 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.1.0-cp310-cp310-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 1aa3cf31753e4a613ae11d57c3f72548f414fbe81386d2fcfabce6c504d0b5b0
MD5 ad08af65f227ead207c2d5b57eaf1e94
BLAKE2b-256 445bdf9768f01ba13100efd19bd3af121e94a75d0f6f317a8d5962d65ec3c791

See more details on using hashes here.

Provenance

The following attestation bundles were made for hashcodecs-1.1.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.1.0-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

  • Download URL: hashcodecs-1.1.0-cp310-cp310-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 363.6 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.1.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 5ac17ec16e26771e5c36ce98f14bf53d2a6701fb221952a2d05fd100dd47561d
MD5 2a7d764303f7acfc5a7837365e06aa33
BLAKE2b-256 2087aaadaf4981efa824bae542b215a5df816cc551157b934cb75594e41d5b83

See more details on using hashes here.

Provenance

The following attestation bundles were made for hashcodecs-1.1.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

1.2.0

25 files

This release

1.1.0 This release

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