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.

Citation

If you use hashcodecs, cite CITATION.cff.

Installation

pip3 install hashcodecs

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. Before 1.0, minor releases may contain breaking Rust API changes; the documented Python API follows the compatibility policy below. See Security Policy for vulnerability reporting.

Performance snapshot

On the benchmark host, hashcodecs.xxh3_64 processes a 1 MiB input at 78.83 GiB/s. The operator pinned one logical CPU and measured hashcodecs alone. At 256 B items in batches of 64, the Base64 batch API reaches 8.56 GiB/s for encode and 7.60 GiB/s for decode. The per-item loop reaches 4.41 and 3.39 GiB/s. Read the benchmark details and raw results.

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.

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. Use --help on a benchmark script for its supported modes.

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

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.

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.

License

Licensed under either of the following, at your option:

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.0.0.tar.gz (126.7 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.0.0-cp315-cp315t-win_amd64.whl (304.3 kB view details)

Uploaded CPython 3.15tWindows x86-64

hashcodecs-1.0.0-cp315-cp315t-manylinux_2_28_x86_64.whl (443.5 kB view details)

Uploaded CPython 3.15tmanylinux: glibc 2.28+ x86-64

hashcodecs-1.0.0-cp315-cp315t-macosx_11_0_arm64.whl (363.8 kB view details)

Uploaded CPython 3.15tmacOS 11.0+ ARM64

hashcodecs-1.0.0-cp315-cp315-win_amd64.whl (300.4 kB view details)

Uploaded CPython 3.15Windows x86-64

hashcodecs-1.0.0-cp315-cp315-manylinux_2_28_x86_64.whl (437.7 kB view details)

Uploaded CPython 3.15manylinux: glibc 2.28+ x86-64

hashcodecs-1.0.0-cp315-cp315-macosx_11_0_arm64.whl (360.9 kB view details)

Uploaded CPython 3.15macOS 11.0+ ARM64

hashcodecs-1.0.0-cp314-cp314t-win_amd64.whl (304.1 kB view details)

Uploaded CPython 3.14tWindows x86-64

hashcodecs-1.0.0-cp314-cp314t-manylinux_2_28_x86_64.whl (443.1 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.28+ x86-64

hashcodecs-1.0.0-cp314-cp314t-macosx_11_0_arm64.whl (363.6 kB view details)

Uploaded CPython 3.14tmacOS 11.0+ ARM64

hashcodecs-1.0.0-cp314-cp314-win_amd64.whl (300.2 kB view details)

Uploaded CPython 3.14Windows x86-64

hashcodecs-1.0.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.0.0-cp314-cp314-macosx_11_0_arm64.whl (360.6 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

hashcodecs-1.0.0-cp313-cp313-win_amd64.whl (288.1 kB view details)

Uploaded CPython 3.13Windows x86-64

hashcodecs-1.0.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.0.0-cp313-cp313-macosx_11_0_arm64.whl (359.1 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

hashcodecs-1.0.0-cp312-cp312-win_amd64.whl (287.7 kB view details)

Uploaded CPython 3.12Windows x86-64

hashcodecs-1.0.0-cp312-cp312-manylinux_2_28_x86_64.whl (434.7 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.28+ x86-64

hashcodecs-1.0.0-cp312-cp312-macosx_11_0_arm64.whl (358.8 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

hashcodecs-1.0.0-cp311-cp311-win_amd64.whl (290.2 kB view details)

Uploaded CPython 3.11Windows x86-64

hashcodecs-1.0.0-cp311-cp311-manylinux_2_28_x86_64.whl (437.6 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.28+ x86-64

hashcodecs-1.0.0-cp311-cp311-macosx_11_0_arm64.whl (362.8 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

hashcodecs-1.0.0-cp310-cp310-win_amd64.whl (290.4 kB view details)

Uploaded CPython 3.10Windows x86-64

hashcodecs-1.0.0-cp310-cp310-manylinux_2_28_x86_64.whl (437.9 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.28+ x86-64

hashcodecs-1.0.0-cp310-cp310-macosx_11_0_arm64.whl (363.1 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

File details

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

File metadata

  • Download URL: hashcodecs-1.0.0.tar.gz
  • Upload date:
  • Size: 126.7 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.0.0.tar.gz
Algorithm Hash digest
SHA256 edb037a86fe5f3ee3774e3b7592c2b56386a99d3c0177c43898cf9e293e3bcc8
MD5 be3a5adc6d4aff8e6cf211bec5a94b9a
BLAKE2b-256 12ca030eece789a3b6e63e01b0984cab976c64f5dab0b0ae4ea157c8526c924a

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: hashcodecs-1.0.0-cp315-cp315t-win_amd64.whl
  • Upload date:
  • Size: 304.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.0.0-cp315-cp315t-win_amd64.whl
Algorithm Hash digest
SHA256 4e4addf6e24576148f1a3debca3d3373f10b3ccebf8b1d434a1a6c99c59b2678
MD5 76559ba33620008ba688b63c6ce17c7b
BLAKE2b-256 65beb4f0cdbb4e383875c9ed930a8bbda8126f91c636b2de5bf645a5b0cf55e4

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: hashcodecs-1.0.0-cp315-cp315t-manylinux_2_28_x86_64.whl
  • Upload date:
  • Size: 443.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.0.0-cp315-cp315t-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 dfc2ab80efff004199e4870e25926f9695204d7afcb6bc2b8e4a68410105d267
MD5 9a830f8579560191e8f019e245adc42c
BLAKE2b-256 416a317d02c51e0114c94099f31ba33d85f468265af2545a5f7b575ee0bcbcd1

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: hashcodecs-1.0.0-cp315-cp315t-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 363.8 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.0.0-cp315-cp315t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 cf9056d728792ed4ad4d08fd67fac04b16ad891e43513c1fb0812ed85596e9ba
MD5 5698ef49b51ddee0b50f4f06c7077942
BLAKE2b-256 e03d13c4810cd5e349bfbee11fc39ed975939ae0c133000087096390f297efae

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: hashcodecs-1.0.0-cp315-cp315-win_amd64.whl
  • Upload date:
  • Size: 300.4 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.0.0-cp315-cp315-win_amd64.whl
Algorithm Hash digest
SHA256 de6cac1b67cac767a4205c73221ae66238b3541ea8aa761ba81f3e599f3b5805
MD5 eae68f218dd919933476562910aa8bb6
BLAKE2b-256 125c93847f2651e5e4ee8755d81275f69f673e04212a99f5e3965efc9be99b0b

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: hashcodecs-1.0.0-cp315-cp315-manylinux_2_28_x86_64.whl
  • Upload date:
  • Size: 437.7 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.0.0-cp315-cp315-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 e623812fde8defc783540c741e0fe6cba39bfca36bd0283f6fff2033198fd225
MD5 38d4a7147d995c390e512e34ee99d6f7
BLAKE2b-256 933a77f410f35a23f73a289811aefddcab3f6242edef214f4a95f018616cd316

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: hashcodecs-1.0.0-cp315-cp315-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 360.9 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.0.0-cp315-cp315-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ae9103d8f24713114e6798ddc2d6b9a677255286c94888df57b649441e863dd2
MD5 c57b9ca006b53d562bced773ad05835e
BLAKE2b-256 1c62f450f63b38db9951ad9d9b0cb479700e33b3d8c60db84e93f065131d8428

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: hashcodecs-1.0.0-cp314-cp314t-win_amd64.whl
  • Upload date:
  • Size: 304.1 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.0.0-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 c0930c7e943f8cf2a9f37355357583ab56776a8173c26dca4958f291c23f16c1
MD5 e271cb30e009431528bebd2be684e53d
BLAKE2b-256 851318b823b56789b6b8903a85c1728804465f0b6663c33f54640195867f5633

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: hashcodecs-1.0.0-cp314-cp314t-manylinux_2_28_x86_64.whl
  • Upload date:
  • Size: 443.1 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.0.0-cp314-cp314t-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 0a9d837b213f585076fb01187422f821408da2b34d600aba8fc97ebae64944d6
MD5 d20be6ab9b99ce3706ffb2cc03ebbe7d
BLAKE2b-256 51b45027120d2750be17be7b7074148624930d94672895b505d784e75b9d16ed

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: hashcodecs-1.0.0-cp314-cp314t-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 363.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.0.0-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 bfb12b45f884afc233311ef4477e628390a1b05e9abfcf8f91426e454f120870
MD5 c2cde1770497cbad7f40c302aa5cc442
BLAKE2b-256 63bc6d27abca0715d1903c5c1a694bf7fb8d65c0376e536ef5c60afa12b73a3b

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: hashcodecs-1.0.0-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 300.2 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.0.0-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 ce2eb660b028fb638a785c71c58061fa84e0c769665f34edef5f6d636a9c56ce
MD5 3ca9bdc1e57cc5662f7760d706d30953
BLAKE2b-256 dbd3e8017d05f04aa7aa54652f2680eb663b7d66f5fefff208ec57117bcc97ab

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: hashcodecs-1.0.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.0.0-cp314-cp314-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 f9bd4228ce6bb25a1a9bb35d029f1972e5b37cadc088a6ee29a729394d199fbd
MD5 09765e454d17f18ba15a8c931786cc26
BLAKE2b-256 da9ab83ad6ef6fe3a9b6d9183dea5f109fe854cdd9ffbce9c9589e6c2845457a

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: hashcodecs-1.0.0-cp314-cp314-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 360.6 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.0.0-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 147c41c02e628104a016adfc20d524283f8bdcf2aa41b1c0372b5fd60b4e6d0b
MD5 f97024d59d8a9f3e821c97b8cf73d190
BLAKE2b-256 c2e1dc2a0b8ab258163129234d284cab3a2eda55d835d0dd572946440ddeaacf

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: hashcodecs-1.0.0-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 288.1 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.0.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 fd729a152f84b8cd98c9307aa1187261df71c8f119e0f738e0232ff1a3985dc8
MD5 9721cd517cadcca006975b1c2c7e9648
BLAKE2b-256 8a76856f2422d69a42daa63a0c5c8454aaa514634398d33ca97ba66095a1da6c

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: hashcodecs-1.0.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.0.0-cp313-cp313-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 1b82cdff335b4f985822de9e21c3311e9fc6a874f4fb62edc3a52f4b8881f0ba
MD5 ea8b6ae0e5e0206b5de67f3cd16651e3
BLAKE2b-256 c04b38ed9455a08360f4cafa001fc2dbaf7ee133e3887439a576f28f2373a487

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: hashcodecs-1.0.0-cp313-cp313-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 359.1 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.0.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 8639ad1cc0a3f8415884b15e29204a642ae7ce1b8683a646dea5632f67f7356b
MD5 f750580e139c756892c369e9b89c8ad2
BLAKE2b-256 864ef5faf2b44fbfdb55d6a29af6e958b6db04b7c8569e8c0b1c97bf7f1c44b7

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: hashcodecs-1.0.0-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 287.7 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.0.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 f36e9a470efb5fb2319f3fb62458ac8d2c7b57ba7df7879488f9890549cc0cc4
MD5 25a06d8aaec1e77d2930f617dcf7929b
BLAKE2b-256 1aa5390fe5f7beda5c9abc81bad77c7acfa7d6b339fa97328ad5e327b21b18e0

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: hashcodecs-1.0.0-cp312-cp312-manylinux_2_28_x86_64.whl
  • Upload date:
  • Size: 434.7 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.0.0-cp312-cp312-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 6a972d80c881ab00c3ab3f3e9653fbd6fad57937236ae14ee221bed24082d3f2
MD5 bd37aabaed2c1e6c7ad3fe233f7afcc2
BLAKE2b-256 d194b803d204630c6a53e335ef578b2006df4d285f44bb7eeb1f8eb6a25827bd

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: hashcodecs-1.0.0-cp312-cp312-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 358.8 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.0.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 62d91a051b8725c1bb87c59dee3664f2661d6c2d4c722d871d75ead890a1ec68
MD5 d60030f0630341c7c51638b449a78ae7
BLAKE2b-256 d301e6de0f38668db81c4d82a3b0127ec2ed28812bad5cb1c86e8848996b0f70

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: hashcodecs-1.0.0-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 290.2 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.0.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 4f8a0a042720157cdf06c4b520859b817e5055dba291cdfe1d9181e8e77590ef
MD5 e9af3231807f0b64b3bcbc1e6bbce942
BLAKE2b-256 9d1bd887ebb7e8b90c69e0c641f95ff4f40087288cd1b7de3c452a1851e3de61

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: hashcodecs-1.0.0-cp311-cp311-manylinux_2_28_x86_64.whl
  • Upload date:
  • Size: 437.6 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.0.0-cp311-cp311-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 87580f659345e4307796842262cb3dacf2a06e88c38442d16acf9be71307a1eb
MD5 57c4145b16937b2b3e9a159af787170c
BLAKE2b-256 d4febae2394b3aaf21081b0081481e23fbf042b280e6a7824418286fbfbbd4c9

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: hashcodecs-1.0.0-cp311-cp311-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 362.8 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.0.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a38fe6b188ae81de454c319bf0db31a568207782e8084f14b1336f6a01bab1a6
MD5 f8bdef72521cfe6769bb5ca88eabdcf2
BLAKE2b-256 08543dfcaaf618e28f74b36df75419b662f504a3a50a37580cec41a6cbb4042d

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: hashcodecs-1.0.0-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 290.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.0.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 abc9cf0486bf46398b491a0e86eecb040f88956023a131aa227ea6f5cf94cef6
MD5 8c1dc13f446422207de7ad36546edeec
BLAKE2b-256 ee059d7317d251d647ffc676e843b8fc05f42d3dd940c5a08319ce8a772e17a7

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: hashcodecs-1.0.0-cp310-cp310-manylinux_2_28_x86_64.whl
  • Upload date:
  • Size: 437.9 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.0.0-cp310-cp310-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 668573f77d359fd7041a6a179a9202e03fc040bb43879e6de8c5e8cd436e2706
MD5 5ad9c1639f25f73dff25aa05b3632ace
BLAKE2b-256 d920876ed56722b2c1f1d517b4aaddaf53b9822f236b46c40ddd9dc6dba9edb6

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: hashcodecs-1.0.0-cp310-cp310-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 363.1 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.0.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 52db07aeb345bb78d7f7ce4de6bd1e1b2b8cb375d73e1ebb1e0587eb1ecbf4dc
MD5 066b9bb351a199f147f2421571e4b8b8
BLAKE2b-256 1b5f0ed53bf1053698b001c44d4bc8334e85aafa3fbf0dfcbcd61b302d9cee40

See more details on using hashes here.

Provenance

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

1.1.0

25 files

This release

1.0.0 This release

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