cast-value-rs
Python bindings for cast-value.rs, a Rust
implementation of the cast_value Zarr codec.
The cast_value codec converts array elements between numeric data types as part of the Zarr v3
codec pipeline. This package exposes that conversion to Python as a pair of numpy-aware functions.
The hot path applies per-element work -- scalar map lookups, rounding, and range checking -- to every value in the array. In pure Python/numpy this requires multiple passes over the data; the Rust implementation fuses all steps into a single pass over contiguous memory, avoiding intermediate allocations.
Installation
pip install cast-value-rs
Usage
import numpy as np
from cast_value_rs import cast_array
# Convert float64 to uint8 with clamping.
data = np.array([1.7, 2.3, 300.0, -5.0], dtype=np.float64)
result = cast_array(
data,
target_dtype="uint8",
rounding_mode="nearest-even",
out_of_range_mode="clamp",
)
print(result) # [2, 2, 255, 0]
target_dtype accepts a string name, a numpy dtype object, or a numpy scalar type:
cast_array(data, target_dtype="uint8", ...)
cast_array(data, target_dtype=np.dtype("uint8"), ...)
cast_array(data, target_dtype=np.uint8, ...)
A scalar map handles special values such as NaN before conversion:
from math import nan, inf
result = cast_array(
np.array([1.0, nan, inf], dtype=np.float64),
target_dtype="uint8",
rounding_mode="nearest-even",
out_of_range_mode="clamp",
scalar_map_entries={nan: 0, inf: 255},
)
print(result) # [1, 0, 255]
Use cast_array_into to write into a pre-allocated array instead of allocating a new one:
from cast_value_rs import cast_array_into
src = np.array([1.0, 2.0, 3.0], dtype=np.float64)
dst = np.zeros(3, dtype=np.uint8)
cast_array_into(
src, dst,
rounding_mode="nearest-even",
out_of_range_mode="clamp",
)
print(dst) # [1, 2, 3]
Supported types and modes
| Category | Values |
|---|---|
| Signed integers | int8, int16, int32, int64 |
| Unsigned integers | uint8, uint16, uint32, uint64 |
| Floats | float16, float32, float64 |
| Rounding modes | nearest-even, towards-zero, towards-positive, towards-negative, nearest-away |
| Out-of-range modes | clamp, wrap, or None to raise an error |
Documentation
Full documentation, including the Rust API, is at https://zarr-developers.github.io/cast-value.rs/.
License
Licensed under either of Apache License, Version 2.0 or MIT license 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
Built Distributions
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file cast_value_rs-0.4.2.tar.gz.
File metadata
- Download URL: cast_value_rs-0.4.2.tar.gz
- Upload date:
- Size: 86.9 kB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
fd621b8dd4f7e93bbffdb119882d85e2731c2f0fb1d30de85f29e8e04c044822
|
|
| MD5 |
2bea1fe2f35a8bcb154e52fdb995fb1b
|
|
| BLAKE2b-256 |
56a4634d1917ac49ea69291471e87eee9c1aa45d71d6da9b2cd5e1bfe82729de
|
Provenance
The following attestation bundles were made for cast_value_rs-0.4.2.tar.gz:
Publisher:
cd.yml on zarr-developers/cast-value.rs
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
cast_value_rs-0.4.2.tar.gz -
Subject digest:
fd621b8dd4f7e93bbffdb119882d85e2731c2f0fb1d30de85f29e8e04c044822 - Sigstore transparency entry: 2449243676
- Sigstore integration time:
-
Permalink:
zarr-developers/cast-value.rs@0fc546798ea70e8207ee709994be73aaed187401 -
Branch / Tag:
refs/tags/v0.4.2 - Owner: https://github.com/zarr-developers
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
cd.yml@0fc546798ea70e8207ee709994be73aaed187401 -
Trigger Event:
push
-
Statement type:
File details
Details for the file cast_value_rs-0.4.2-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: cast_value_rs-0.4.2-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 749.2 kB
- Tags: PyPy, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
62b01206f2de756a609d95542b3a149f691dc501634e110e122029da8c7b048d
|
|
| MD5 |
6a0de6f0cc39aacfe88ae6e5141277e4
|
|
| BLAKE2b-256 |
32c04175bec315af75a7d2dcbd139c72869a17160c48e79e19ca44abe9bf3506
|
Provenance
The following attestation bundles were made for cast_value_rs-0.4.2-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl:
Publisher:
cd.yml on zarr-developers/cast-value.rs
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
cast_value_rs-0.4.2-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl -
Subject digest:
62b01206f2de756a609d95542b3a149f691dc501634e110e122029da8c7b048d - Sigstore transparency entry: 2449243978
- Sigstore integration time:
-
Permalink:
zarr-developers/cast-value.rs@0fc546798ea70e8207ee709994be73aaed187401 -
Branch / Tag:
refs/tags/v0.4.2 - Owner: https://github.com/zarr-developers
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
cd.yml@0fc546798ea70e8207ee709994be73aaed187401 -
Trigger Event:
push
-
Statement type:
File details
Details for the file cast_value_rs-0.4.2-pp311-pypy311_pp73-musllinux_1_2_i686.whl.
File metadata
- Download URL: cast_value_rs-0.4.2-pp311-pypy311_pp73-musllinux_1_2_i686.whl
- Upload date:
- Size: 777.1 kB
- Tags: PyPy, musllinux: musl 1.2+ i686
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
a309860cee6deb217773099814eea8dc195a1e33db6d69b953b91ccd6f13a960
|
|
| MD5 |
bffd1778d6b638f1a11225492e912b54
|
|
| BLAKE2b-256 |
417f77631e18197e39594402fc637d7a6cb16e02cf22c52879390a374d1bb552
|
Provenance
The following attestation bundles were made for cast_value_rs-0.4.2-pp311-pypy311_pp73-musllinux_1_2_i686.whl:
Publisher:
cd.yml on zarr-developers/cast-value.rs
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
cast_value_rs-0.4.2-pp311-pypy311_pp73-musllinux_1_2_i686.whl -
Subject digest:
a309860cee6deb217773099814eea8dc195a1e33db6d69b953b91ccd6f13a960 - Sigstore transparency entry: 2449245580
- Sigstore integration time:
-
Permalink:
zarr-developers/cast-value.rs@0fc546798ea70e8207ee709994be73aaed187401 -
Branch / Tag:
refs/tags/v0.4.2 - Owner: https://github.com/zarr-developers
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
cd.yml@0fc546798ea70e8207ee709994be73aaed187401 -
Trigger Event:
push
-
Statement type:
File details
Details for the file cast_value_rs-0.4.2-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl.
File metadata
- Download URL: cast_value_rs-0.4.2-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl
- Upload date:
- Size: 814.4 kB
- Tags: PyPy, musllinux: musl 1.2+ ARMv7l
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
4dd8c39b3863744e1bbaea4ff107a774208631a65630045a1331f408fdcd1862
|
|
| MD5 |
9b688766230e3a3e94d413249ccc1702
|
|
| BLAKE2b-256 |
d46c84ea0f328793279989fb9d2a94b139a24e2b52b490d7a88ddb93a2399803
|
Provenance
The following attestation bundles were made for cast_value_rs-0.4.2-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl:
Publisher:
cd.yml on zarr-developers/cast-value.rs
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
cast_value_rs-0.4.2-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl -
Subject digest:
4dd8c39b3863744e1bbaea4ff107a774208631a65630045a1331f408fdcd1862 - Sigstore transparency entry: 2449246513
- Sigstore integration time:
-
Permalink:
zarr-developers/cast-value.rs@0fc546798ea70e8207ee709994be73aaed187401 -
Branch / Tag:
refs/tags/v0.4.2 - Owner: https://github.com/zarr-developers
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
cd.yml@0fc546798ea70e8207ee709994be73aaed187401 -
Trigger Event:
push
-
Statement type:
File details
Details for the file cast_value_rs-0.4.2-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: cast_value_rs-0.4.2-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 663.3 kB
- Tags: PyPy, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
708d7a6cb50c61d305b07ac5ef933ae4a5fc5c86caa108c0a1d56a9218809d9b
|
|
| MD5 |
124f74b3c981083de2d448d56b8b5f2c
|
|
| BLAKE2b-256 |
89606cb20d8911c1c3b447c0b59161d52e372860d5060bba09d6e41814264f79
|
Provenance
The following attestation bundles were made for cast_value_rs-0.4.2-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl:
Publisher:
cd.yml on zarr-developers/cast-value.rs
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
cast_value_rs-0.4.2-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl -
Subject digest:
708d7a6cb50c61d305b07ac5ef933ae4a5fc5c86caa108c0a1d56a9218809d9b - Sigstore transparency entry: 2449244712
- Sigstore integration time:
-
Permalink:
zarr-developers/cast-value.rs@0fc546798ea70e8207ee709994be73aaed187401 -
Branch / Tag:
refs/tags/v0.4.2 - Owner: https://github.com/zarr-developers
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
cd.yml@0fc546798ea70e8207ee709994be73aaed187401 -
Trigger Event:
push
-
Statement type:
File details
Details for the file cast_value_rs-0.4.2-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: cast_value_rs-0.4.2-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 544.3 kB
- Tags: PyPy, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
5a053e389914a5c5b3cb36bf1cd6e6f6b485b97237e257477b71aa6640512cd4
|
|
| MD5 |
43e5dcc783c55795e9ea5628533c9b64
|
|
| BLAKE2b-256 |
23de89ea83f119e9a34446e634fbe01b743d1b6a020ff55617c8887f9e441c28
|
Provenance
The following attestation bundles were made for cast_value_rs-0.4.2-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:
Publisher:
cd.yml on zarr-developers/cast-value.rs
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
cast_value_rs-0.4.2-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl -
Subject digest:
5a053e389914a5c5b3cb36bf1cd6e6f6b485b97237e257477b71aa6640512cd4 - Sigstore transparency entry: 2449245729
- Sigstore integration time:
-
Permalink:
zarr-developers/cast-value.rs@0fc546798ea70e8207ee709994be73aaed187401 -
Branch / Tag:
refs/tags/v0.4.2 - Owner: https://github.com/zarr-developers
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
cd.yml@0fc546798ea70e8207ee709994be73aaed187401 -
Trigger Event:
push
-
Statement type:
File details
Details for the file cast_value_rs-0.4.2-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl.
File metadata
- Download URL: cast_value_rs-0.4.2-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
- Upload date:
- Size: 548.4 kB
- Tags: PyPy, manylinux: glibc 2.17+ s390x
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
751e25a67a7a725665f3c3ddfcfa1e0c2da132f366d8736e15e375782d4505cb
|
|
| MD5 |
0205e043bfdebdb33beaa2537156548a
|
|
| BLAKE2b-256 |
07c1f64b23776a6fc0299080d7a0e0f9aec14a3022e0fe3161deadb40eadace5
|
Provenance
The following attestation bundles were made for cast_value_rs-0.4.2-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl:
Publisher:
cd.yml on zarr-developers/cast-value.rs
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
cast_value_rs-0.4.2-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl -
Subject digest:
751e25a67a7a725665f3c3ddfcfa1e0c2da132f366d8736e15e375782d4505cb - Sigstore transparency entry: 2449246047
- Sigstore integration time:
-
Permalink:
zarr-developers/cast-value.rs@0fc546798ea70e8207ee709994be73aaed187401 -
Branch / Tag:
refs/tags/v0.4.2 - Owner: https://github.com/zarr-developers
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
cd.yml@0fc546798ea70e8207ee709994be73aaed187401 -
Trigger Event:
push
-
Statement type:
File details
Details for the file cast_value_rs-0.4.2-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.
File metadata
- Download URL: cast_value_rs-0.4.2-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
- Upload date:
- Size: 649.9 kB
- Tags: PyPy, manylinux: glibc 2.17+ ppc64le
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
a331d536387e6a05b935fe4e6f9254ff131748c80644a2df8eede43086b2add8
|
|
| MD5 |
5ef89964e4224764159dd107e4f7a999
|
|
| BLAKE2b-256 |
80b635d97bffa96c2e7f747bc16dda3478d2706201a5c388080f42f6dc770dac
|
Provenance
The following attestation bundles were made for cast_value_rs-0.4.2-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl:
Publisher:
cd.yml on zarr-developers/cast-value.rs
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
cast_value_rs-0.4.2-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl -
Subject digest:
a331d536387e6a05b935fe4e6f9254ff131748c80644a2df8eede43086b2add8 - Sigstore transparency entry: 2449243766
- Sigstore integration time:
-
Permalink:
zarr-developers/cast-value.rs@0fc546798ea70e8207ee709994be73aaed187401 -
Branch / Tag:
refs/tags/v0.4.2 - Owner: https://github.com/zarr-developers
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
cd.yml@0fc546798ea70e8207ee709994be73aaed187401 -
Trigger Event:
push
-
Statement type:
File details
Details for the file cast_value_rs-0.4.2-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.
File metadata
- Download URL: cast_value_rs-0.4.2-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
- Upload date:
- Size: 538.7 kB
- Tags: PyPy, manylinux: glibc 2.17+ ARMv7l
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
c92412c868aa4f59463606c291d4fa9435e1fc96f7bac30322ef1b1c69fadc07
|
|
| MD5 |
af94f0e7934d846f9769ace8247d9306
|
|
| BLAKE2b-256 |
ab26bd055326a8e86b222e0b67dbfeec04f4318d903e983edc0b9921a7c17c3e
|
Provenance
The following attestation bundles were made for cast_value_rs-0.4.2-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl:
Publisher:
cd.yml on zarr-developers/cast-value.rs
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
cast_value_rs-0.4.2-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl -
Subject digest:
c92412c868aa4f59463606c291d4fa9435e1fc96f7bac30322ef1b1c69fadc07 - Sigstore transparency entry: 2449243899
- Sigstore integration time:
-
Permalink:
zarr-developers/cast-value.rs@0fc546798ea70e8207ee709994be73aaed187401 -
Branch / Tag:
refs/tags/v0.4.2 - Owner: https://github.com/zarr-developers
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
cd.yml@0fc546798ea70e8207ee709994be73aaed187401 -
Trigger Event:
push
-
Statement type:
File details
Details for the file cast_value_rs-0.4.2-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: cast_value_rs-0.4.2-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 486.0 kB
- Tags: PyPy, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
1ab74b1e51ce8ad5d74de210ce95c512bd915f5002ce3627034218679e42b31c
|
|
| MD5 |
731670ec77e9f7d2c8363a2945f99414
|
|
| BLAKE2b-256 |
9828fb19dcca5d5d51ebc1e0646a7593c0e84e84485494fce926d1a0cae08e1a
|
Provenance
The following attestation bundles were made for cast_value_rs-0.4.2-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:
Publisher:
cd.yml on zarr-developers/cast-value.rs
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
cast_value_rs-0.4.2-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl -
Subject digest:
1ab74b1e51ce8ad5d74de210ce95c512bd915f5002ce3627034218679e42b31c - Sigstore transparency entry: 2449245207
- Sigstore integration time:
-
Permalink:
zarr-developers/cast-value.rs@0fc546798ea70e8207ee709994be73aaed187401 -
Branch / Tag:
refs/tags/v0.4.2 - Owner: https://github.com/zarr-developers
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
cd.yml@0fc546798ea70e8207ee709994be73aaed187401 -
Trigger Event:
push
-
Statement type:
File details
Details for the file cast_value_rs-0.4.2-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl.
File metadata
- Download URL: cast_value_rs-0.4.2-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl
- Upload date:
- Size: 579.2 kB
- Tags: PyPy, manylinux: glibc 2.5+ i686
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
20856d8ca961c68041397a79f57f29be8d911d13641c527a932ef74c4f901265
|
|
| MD5 |
53c71e782759f5e0effaf8ca05a35aa2
|
|
| BLAKE2b-256 |
bb43869b0e7f1b87faac53d0e55c965b7e08fb0f8cc6466759b377afe0d5d630
|
Provenance
The following attestation bundles were made for cast_value_rs-0.4.2-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl:
Publisher:
cd.yml on zarr-developers/cast-value.rs
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
cast_value_rs-0.4.2-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl -
Subject digest:
20856d8ca961c68041397a79f57f29be8d911d13641c527a932ef74c4f901265 - Sigstore transparency entry: 2449244694
- Sigstore integration time:
-
Permalink:
zarr-developers/cast-value.rs@0fc546798ea70e8207ee709994be73aaed187401 -
Branch / Tag:
refs/tags/v0.4.2 - Owner: https://github.com/zarr-developers
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
cd.yml@0fc546798ea70e8207ee709994be73aaed187401 -
Trigger Event:
push
-
Statement type:
File details
Details for the file cast_value_rs-0.4.2-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: cast_value_rs-0.4.2-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 749.2 kB
- Tags: PyPy, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
25760a50c1329334232b2a690d71c9637b416af6a22851b092da882d69aa2d6b
|
|
| MD5 |
3b662d5c678d5eafb88baf2b13b96301
|
|
| BLAKE2b-256 |
11d314462d5c0134147efa8cc6966378a8b7e777425cdb9133ab6f39b8f1f6c4
|
Provenance
The following attestation bundles were made for cast_value_rs-0.4.2-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl:
Publisher:
cd.yml on zarr-developers/cast-value.rs
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
cast_value_rs-0.4.2-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl -
Subject digest:
25760a50c1329334232b2a690d71c9637b416af6a22851b092da882d69aa2d6b - Sigstore transparency entry: 2449245640
- Sigstore integration time:
-
Permalink:
zarr-developers/cast-value.rs@0fc546798ea70e8207ee709994be73aaed187401 -
Branch / Tag:
refs/tags/v0.4.2 - Owner: https://github.com/zarr-developers
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
cd.yml@0fc546798ea70e8207ee709994be73aaed187401 -
Trigger Event:
push
-
Statement type:
File details
Details for the file cast_value_rs-0.4.2-pp310-pypy310_pp73-musllinux_1_2_i686.whl.
File metadata
- Download URL: cast_value_rs-0.4.2-pp310-pypy310_pp73-musllinux_1_2_i686.whl
- Upload date:
- Size: 777.5 kB
- Tags: PyPy, musllinux: musl 1.2+ i686
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
6fd70e89bf99e7219ea6e7c7c0b96987af11a8226031552ffed899c7425921d5
|
|
| MD5 |
8ff9c6ff7458c4343f7aaf8e989bd203
|
|
| BLAKE2b-256 |
a5d77c016b00760c733d2e818dfc65042e5cf0694af6d57f7ffc4c7d0258f9c8
|
Provenance
The following attestation bundles were made for cast_value_rs-0.4.2-pp310-pypy310_pp73-musllinux_1_2_i686.whl:
Publisher:
cd.yml on zarr-developers/cast-value.rs
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
cast_value_rs-0.4.2-pp310-pypy310_pp73-musllinux_1_2_i686.whl -
Subject digest:
6fd70e89bf99e7219ea6e7c7c0b96987af11a8226031552ffed899c7425921d5 - Sigstore transparency entry: 2449244259
- Sigstore integration time:
-
Permalink:
zarr-developers/cast-value.rs@0fc546798ea70e8207ee709994be73aaed187401 -
Branch / Tag:
refs/tags/v0.4.2 - Owner: https://github.com/zarr-developers
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
cd.yml@0fc546798ea70e8207ee709994be73aaed187401 -
Trigger Event:
push
-
Statement type:
File details
Details for the file cast_value_rs-0.4.2-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl.
File metadata
- Download URL: cast_value_rs-0.4.2-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl
- Upload date:
- Size: 814.6 kB
- Tags: PyPy, musllinux: musl 1.2+ ARMv7l
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
ce28d971151e47f862bc1a942cbfd1e49125e94bdcc85619eb66d6610e5bba61
|
|
| MD5 |
fc8ccd522ee4305313a8125153128dce
|
|
| BLAKE2b-256 |
52ed47fea8e3010239ecc406f6172b7bca788d2708fe373ba51102ef71d975b4
|
Provenance
The following attestation bundles were made for cast_value_rs-0.4.2-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl:
Publisher:
cd.yml on zarr-developers/cast-value.rs
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
cast_value_rs-0.4.2-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl -
Subject digest:
ce28d971151e47f862bc1a942cbfd1e49125e94bdcc85619eb66d6610e5bba61 - Sigstore transparency entry: 2449244483
- Sigstore integration time:
-
Permalink:
zarr-developers/cast-value.rs@0fc546798ea70e8207ee709994be73aaed187401 -
Branch / Tag:
refs/tags/v0.4.2 - Owner: https://github.com/zarr-developers
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
cd.yml@0fc546798ea70e8207ee709994be73aaed187401 -
Trigger Event:
push
-
Statement type:
File details
Details for the file cast_value_rs-0.4.2-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: cast_value_rs-0.4.2-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 663.6 kB
- Tags: PyPy, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
51fc2080f518c8fb401ef95581ee19ae74d55814fdc391cc1beae3733c7312ba
|
|
| MD5 |
832ced06df50dfbe16fdbe83077da3cc
|
|
| BLAKE2b-256 |
98605945f1032a8f84f6e05b1c3c946d380524a6bafc6ce953a444237c9b3a2a
|
Provenance
The following attestation bundles were made for cast_value_rs-0.4.2-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl:
Publisher:
cd.yml on zarr-developers/cast-value.rs
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
cast_value_rs-0.4.2-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl -
Subject digest:
51fc2080f518c8fb401ef95581ee19ae74d55814fdc391cc1beae3733c7312ba - Sigstore transparency entry: 2449245600
- Sigstore integration time:
-
Permalink:
zarr-developers/cast-value.rs@0fc546798ea70e8207ee709994be73aaed187401 -
Branch / Tag:
refs/tags/v0.4.2 - Owner: https://github.com/zarr-developers
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
cd.yml@0fc546798ea70e8207ee709994be73aaed187401 -
Trigger Event:
push
-
Statement type:
File details
Details for the file cast_value_rs-0.4.2-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl.
File metadata
- Download URL: cast_value_rs-0.4.2-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
- Upload date:
- Size: 548.6 kB
- Tags: PyPy, manylinux: glibc 2.17+ s390x
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
f7615eee08ebbc660cab33bb866a28f44ca31d10eb9833e14d26884a5efb9c99
|
|
| MD5 |
91435eb00284a52b5db635a328a73d04
|
|
| BLAKE2b-256 |
b39eddcf3a3616331d7271a2e56d41b3b480d9b4b0783ae678abba0986ad5596
|
Provenance
The following attestation bundles were made for cast_value_rs-0.4.2-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl:
Publisher:
cd.yml on zarr-developers/cast-value.rs
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
cast_value_rs-0.4.2-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl -
Subject digest:
f7615eee08ebbc660cab33bb866a28f44ca31d10eb9833e14d26884a5efb9c99 - Sigstore transparency entry: 2449244457
- Sigstore integration time:
-
Permalink:
zarr-developers/cast-value.rs@0fc546798ea70e8207ee709994be73aaed187401 -
Branch / Tag:
refs/tags/v0.4.2 - Owner: https://github.com/zarr-developers
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
cd.yml@0fc546798ea70e8207ee709994be73aaed187401 -
Trigger Event:
push
-
Statement type:
File details
Details for the file cast_value_rs-0.4.2-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.
File metadata
- Download URL: cast_value_rs-0.4.2-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
- Upload date:
- Size: 649.8 kB
- Tags: PyPy, manylinux: glibc 2.17+ ppc64le
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
0d80f84bc3f98d083991d19c37f0a4d0b6a45a133bb8a63502e2d6e708ee5e8e
|
|
| MD5 |
acd7fdbf112c1bdd800c5244bac6b924
|
|
| BLAKE2b-256 |
a06ce92bfe5400b30c070c989c61288d317d2c07e5a8fdf8b76de93f29ea067f
|
Provenance
The following attestation bundles were made for cast_value_rs-0.4.2-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl:
Publisher:
cd.yml on zarr-developers/cast-value.rs
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
cast_value_rs-0.4.2-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl -
Subject digest:
0d80f84bc3f98d083991d19c37f0a4d0b6a45a133bb8a63502e2d6e708ee5e8e - Sigstore transparency entry: 2449246161
- Sigstore integration time:
-
Permalink:
zarr-developers/cast-value.rs@0fc546798ea70e8207ee709994be73aaed187401 -
Branch / Tag:
refs/tags/v0.4.2 - Owner: https://github.com/zarr-developers
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
cd.yml@0fc546798ea70e8207ee709994be73aaed187401 -
Trigger Event:
push
-
Statement type:
File details
Details for the file cast_value_rs-0.4.2-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.
File metadata
- Download URL: cast_value_rs-0.4.2-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
- Upload date:
- Size: 538.7 kB
- Tags: PyPy, manylinux: glibc 2.17+ ARMv7l
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
45f50a79d792bf011a01d0490e192030f53ee4504dcb53aef173d1ba84005e8c
|
|
| MD5 |
2073772eb6524bf61fc95abcb56c6316
|
|
| BLAKE2b-256 |
46c783f1f2d53ac864e471c9159f1ecf3a2f0f6ebbc3bf524853b250f379dbc5
|
Provenance
The following attestation bundles were made for cast_value_rs-0.4.2-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl:
Publisher:
cd.yml on zarr-developers/cast-value.rs
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
cast_value_rs-0.4.2-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl -
Subject digest:
45f50a79d792bf011a01d0490e192030f53ee4504dcb53aef173d1ba84005e8c - Sigstore transparency entry: 2449244372
- Sigstore integration time:
-
Permalink:
zarr-developers/cast-value.rs@0fc546798ea70e8207ee709994be73aaed187401 -
Branch / Tag:
refs/tags/v0.4.2 - Owner: https://github.com/zarr-developers
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
cd.yml@0fc546798ea70e8207ee709994be73aaed187401 -
Trigger Event:
push
-
Statement type:
File details
Details for the file cast_value_rs-0.4.2-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: cast_value_rs-0.4.2-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 486.3 kB
- Tags: PyPy, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
08344d37b9d9912e9c79e8b32e5576419bb5d6b212c5d3cae7502bb892dc3b2a
|
|
| MD5 |
e8fc61972a92ff2e6390c51c9ccedcb7
|
|
| BLAKE2b-256 |
f4b78f1655079f78846e73471fad124b8bd42dce792fc8b51adf52cb371b561e
|
Provenance
The following attestation bundles were made for cast_value_rs-0.4.2-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:
Publisher:
cd.yml on zarr-developers/cast-value.rs
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
cast_value_rs-0.4.2-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl -
Subject digest:
08344d37b9d9912e9c79e8b32e5576419bb5d6b212c5d3cae7502bb892dc3b2a - Sigstore transparency entry: 2449244393
- Sigstore integration time:
-
Permalink:
zarr-developers/cast-value.rs@0fc546798ea70e8207ee709994be73aaed187401 -
Branch / Tag:
refs/tags/v0.4.2 - Owner: https://github.com/zarr-developers
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
cd.yml@0fc546798ea70e8207ee709994be73aaed187401 -
Trigger Event:
push
-
Statement type:
File details
Details for the file cast_value_rs-0.4.2-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: cast_value_rs-0.4.2-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 750.3 kB
- Tags: PyPy, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
22229c38ed0dbd801bed6524f1d8d983d26e90a758d78e3ced5b1b8cd63cf629
|
|
| MD5 |
79726742222af607bf047def090c8d21
|
|
| BLAKE2b-256 |
5ced22721eb93c20790ddb4ba7a70795b17b18d9665a8a10dc7090ded39aa259
|
Provenance
The following attestation bundles were made for cast_value_rs-0.4.2-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl:
Publisher:
cd.yml on zarr-developers/cast-value.rs
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
cast_value_rs-0.4.2-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl -
Subject digest:
22229c38ed0dbd801bed6524f1d8d983d26e90a758d78e3ced5b1b8cd63cf629 - Sigstore transparency entry: 2449245179
- Sigstore integration time:
-
Permalink:
zarr-developers/cast-value.rs@0fc546798ea70e8207ee709994be73aaed187401 -
Branch / Tag:
refs/tags/v0.4.2 - Owner: https://github.com/zarr-developers
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
cd.yml@0fc546798ea70e8207ee709994be73aaed187401 -
Trigger Event:
push
-
Statement type:
File details
Details for the file cast_value_rs-0.4.2-pp39-pypy39_pp73-musllinux_1_2_i686.whl.
File metadata
- Download URL: cast_value_rs-0.4.2-pp39-pypy39_pp73-musllinux_1_2_i686.whl
- Upload date:
- Size: 778.9 kB
- Tags: PyPy, musllinux: musl 1.2+ i686
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
41895b4ec3ec63c000417ed505cec58afe93fab8f329d53e6d7b9dccbb167019
|
|
| MD5 |
9a89ca84fde36cea9cd2fd46db936fed
|
|
| BLAKE2b-256 |
14a22cd22bd4d9b8872ac70b084953443bf8ffe6cd2a13ceb99a86d3a8d21687
|
Provenance
The following attestation bundles were made for cast_value_rs-0.4.2-pp39-pypy39_pp73-musllinux_1_2_i686.whl:
Publisher:
cd.yml on zarr-developers/cast-value.rs
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
cast_value_rs-0.4.2-pp39-pypy39_pp73-musllinux_1_2_i686.whl -
Subject digest:
41895b4ec3ec63c000417ed505cec58afe93fab8f329d53e6d7b9dccbb167019 - Sigstore transparency entry: 2449245266
- Sigstore integration time:
-
Permalink:
zarr-developers/cast-value.rs@0fc546798ea70e8207ee709994be73aaed187401 -
Branch / Tag:
refs/tags/v0.4.2 - Owner: https://github.com/zarr-developers
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
cd.yml@0fc546798ea70e8207ee709994be73aaed187401 -
Trigger Event:
push
-
Statement type:
File details
Details for the file cast_value_rs-0.4.2-pp39-pypy39_pp73-musllinux_1_2_armv7l.whl.
File metadata
- Download URL: cast_value_rs-0.4.2-pp39-pypy39_pp73-musllinux_1_2_armv7l.whl
- Upload date:
- Size: 815.3 kB
- Tags: PyPy, musllinux: musl 1.2+ ARMv7l
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
be5d335c69f7c023f89a5235ad6d6da2633f3f39f84ee405b05dcba1470708d5
|
|
| MD5 |
4048ca0aede78a52c576759d69b1c6bc
|
|
| BLAKE2b-256 |
575b13f5bc3ee35fbfdad357b7ddb30fbb1bba95e713116e52beb3f97434ee80
|
Provenance
The following attestation bundles were made for cast_value_rs-0.4.2-pp39-pypy39_pp73-musllinux_1_2_armv7l.whl:
Publisher:
cd.yml on zarr-developers/cast-value.rs
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
cast_value_rs-0.4.2-pp39-pypy39_pp73-musllinux_1_2_armv7l.whl -
Subject digest:
be5d335c69f7c023f89a5235ad6d6da2633f3f39f84ee405b05dcba1470708d5 - Sigstore transparency entry: 2449244155
- Sigstore integration time:
-
Permalink:
zarr-developers/cast-value.rs@0fc546798ea70e8207ee709994be73aaed187401 -
Branch / Tag:
refs/tags/v0.4.2 - Owner: https://github.com/zarr-developers
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
cd.yml@0fc546798ea70e8207ee709994be73aaed187401 -
Trigger Event:
push
-
Statement type:
File details
Details for the file cast_value_rs-0.4.2-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: cast_value_rs-0.4.2-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 664.4 kB
- Tags: PyPy, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
2f0ce9f41f124fd193189159d89f215558269c6aa226fa81c1183d72a580edcd
|
|
| MD5 |
4023d5c4995060d32c69b3ac8047a165
|
|
| BLAKE2b-256 |
0042617aaae128fb4440e645da901c1d2fd588e5390a50e2c400f0a24fe74fd2
|
Provenance
The following attestation bundles were made for cast_value_rs-0.4.2-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl:
Publisher:
cd.yml on zarr-developers/cast-value.rs
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
cast_value_rs-0.4.2-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl -
Subject digest:
2f0ce9f41f124fd193189159d89f215558269c6aa226fa81c1183d72a580edcd - Sigstore transparency entry: 2449244292
- Sigstore integration time:
-
Permalink:
zarr-developers/cast-value.rs@0fc546798ea70e8207ee709994be73aaed187401 -
Branch / Tag:
refs/tags/v0.4.2 - Owner: https://github.com/zarr-developers
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
cd.yml@0fc546798ea70e8207ee709994be73aaed187401 -
Trigger Event:
push
-
Statement type:
File details
Details for the file cast_value_rs-0.4.2-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl.
File metadata
- Download URL: cast_value_rs-0.4.2-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
- Upload date:
- Size: 549.7 kB
- Tags: PyPy, manylinux: glibc 2.17+ s390x
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
8851de77a9f9434724b19d5f73700815046272bb70dca9ee6bf3389c0db9d5cf
|
|
| MD5 |
001871df0976e6e85437203bd03d9fd2
|
|
| BLAKE2b-256 |
b034d457103452eec9cbceca301b5a3921267d00e0a44285df23ef1aa722bf9a
|
Provenance
The following attestation bundles were made for cast_value_rs-0.4.2-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl:
Publisher:
cd.yml on zarr-developers/cast-value.rs
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
cast_value_rs-0.4.2-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl -
Subject digest:
8851de77a9f9434724b19d5f73700815046272bb70dca9ee6bf3389c0db9d5cf - Sigstore transparency entry: 2449244313
- Sigstore integration time:
-
Permalink:
zarr-developers/cast-value.rs@0fc546798ea70e8207ee709994be73aaed187401 -
Branch / Tag:
refs/tags/v0.4.2 - Owner: https://github.com/zarr-developers
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
cd.yml@0fc546798ea70e8207ee709994be73aaed187401 -
Trigger Event:
push
-
Statement type:
File details
Details for the file cast_value_rs-0.4.2-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.
File metadata
- Download URL: cast_value_rs-0.4.2-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
- Upload date:
- Size: 651.7 kB
- Tags: PyPy, manylinux: glibc 2.17+ ppc64le
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
f0da36203f23bb80708119d3b60a8086c7c6462516ffa65d1aad246f1dc5e0bf
|
|
| MD5 |
1109a362aa481091726e0e73428a5cba
|
|
| BLAKE2b-256 |
8199f9b396e7a8b0f5cf42996b5fda49a4cdedf4f15a7bbf1918b4da81026370
|
Provenance
The following attestation bundles were made for cast_value_rs-0.4.2-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl:
Publisher:
cd.yml on zarr-developers/cast-value.rs
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
cast_value_rs-0.4.2-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl -
Subject digest:
f0da36203f23bb80708119d3b60a8086c7c6462516ffa65d1aad246f1dc5e0bf - Sigstore transparency entry: 2449245426
- Sigstore integration time:
-
Permalink:
zarr-developers/cast-value.rs@0fc546798ea70e8207ee709994be73aaed187401 -
Branch / Tag:
refs/tags/v0.4.2 - Owner: https://github.com/zarr-developers
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
cd.yml@0fc546798ea70e8207ee709994be73aaed187401 -
Trigger Event:
push
-
Statement type:
File details
Details for the file cast_value_rs-0.4.2-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.
File metadata
- Download URL: cast_value_rs-0.4.2-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
- Upload date:
- Size: 539.4 kB
- Tags: PyPy, manylinux: glibc 2.17+ ARMv7l
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
9300b731d6e738bc7a5bc92865c67fe18f626a981158c06b29f254f5f8ef96c3
|
|
| MD5 |
53bebe6b37df5391e412fa94967aa758
|
|
| BLAKE2b-256 |
575669114376f3b27e2938a21b0016eb8137464259ad2cc2087843c544c226a4
|
Provenance
The following attestation bundles were made for cast_value_rs-0.4.2-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl:
Publisher:
cd.yml on zarr-developers/cast-value.rs
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
cast_value_rs-0.4.2-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl -
Subject digest:
9300b731d6e738bc7a5bc92865c67fe18f626a981158c06b29f254f5f8ef96c3 - Sigstore transparency entry: 2449245833
- Sigstore integration time:
-
Permalink:
zarr-developers/cast-value.rs@0fc546798ea70e8207ee709994be73aaed187401 -
Branch / Tag:
refs/tags/v0.4.2 - Owner: https://github.com/zarr-developers
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
cd.yml@0fc546798ea70e8207ee709994be73aaed187401 -
Trigger Event:
push
-
Statement type:
File details
Details for the file cast_value_rs-0.4.2-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: cast_value_rs-0.4.2-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 487.3 kB
- Tags: PyPy, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
ad99ca3295d76e94b634ed215928bdd0a5a54b3e40708ddfc4360f3cce810e63
|
|
| MD5 |
fb5b733d84da4c5e4ec760df71a47e91
|
|
| BLAKE2b-256 |
a4399b8d9abcb5575288cb2b7b315854294dd48a55397a4719d045c1da9fcd36
|
Provenance
The following attestation bundles were made for cast_value_rs-0.4.2-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:
Publisher:
cd.yml on zarr-developers/cast-value.rs
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
cast_value_rs-0.4.2-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl -
Subject digest:
ad99ca3295d76e94b634ed215928bdd0a5a54b3e40708ddfc4360f3cce810e63 - Sigstore transparency entry: 2449244518
- Sigstore integration time:
-
Permalink:
zarr-developers/cast-value.rs@0fc546798ea70e8207ee709994be73aaed187401 -
Branch / Tag:
refs/tags/v0.4.2 - Owner: https://github.com/zarr-developers
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
cd.yml@0fc546798ea70e8207ee709994be73aaed187401 -
Trigger Event:
push
-
Statement type:
File details
Details for the file cast_value_rs-0.4.2-cp314-cp314t-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: cast_value_rs-0.4.2-cp314-cp314t-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 754.1 kB
- Tags: CPython 3.14t, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
45d630592afb18880d4df0d7afb28b8cfc0ba6aa742d8db115f616df284b453a
|
|
| MD5 |
70c98ec952a7aee4572e38620e64e215
|
|
| BLAKE2b-256 |
3a6c913de75054092de796509dc04b92fc6ac1bf83dc86901f1f482667dead16
|
Provenance
The following attestation bundles were made for cast_value_rs-0.4.2-cp314-cp314t-musllinux_1_2_x86_64.whl:
Publisher:
cd.yml on zarr-developers/cast-value.rs
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
cast_value_rs-0.4.2-cp314-cp314t-musllinux_1_2_x86_64.whl -
Subject digest:
45d630592afb18880d4df0d7afb28b8cfc0ba6aa742d8db115f616df284b453a - Sigstore transparency entry: 2449245985
- Sigstore integration time:
-
Permalink:
zarr-developers/cast-value.rs@0fc546798ea70e8207ee709994be73aaed187401 -
Branch / Tag:
refs/tags/v0.4.2 - Owner: https://github.com/zarr-developers
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
cd.yml@0fc546798ea70e8207ee709994be73aaed187401 -
Trigger Event:
push
-
Statement type:
File details
Details for the file cast_value_rs-0.4.2-cp314-cp314t-musllinux_1_2_i686.whl.
File metadata
- Download URL: cast_value_rs-0.4.2-cp314-cp314t-musllinux_1_2_i686.whl
- Upload date:
- Size: 782.3 kB
- Tags: CPython 3.14t, musllinux: musl 1.2+ i686
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
73978c6dd2ce45a05a59ec7090df8b3f2a579ee86db9b1c7df21ede17f32189e
|
|
| MD5 |
92c46140232fcfcb410ecff5b224256d
|
|
| BLAKE2b-256 |
94a3b04e0f42dafeae30604abca079cce303ebb69ba24f3c4debbf211ecc781c
|
Provenance
The following attestation bundles were made for cast_value_rs-0.4.2-cp314-cp314t-musllinux_1_2_i686.whl:
Publisher:
cd.yml on zarr-developers/cast-value.rs
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
cast_value_rs-0.4.2-cp314-cp314t-musllinux_1_2_i686.whl -
Subject digest:
73978c6dd2ce45a05a59ec7090df8b3f2a579ee86db9b1c7df21ede17f32189e - Sigstore transparency entry: 2449245084
- Sigstore integration time:
-
Permalink:
zarr-developers/cast-value.rs@0fc546798ea70e8207ee709994be73aaed187401 -
Branch / Tag:
refs/tags/v0.4.2 - Owner: https://github.com/zarr-developers
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
cd.yml@0fc546798ea70e8207ee709994be73aaed187401 -
Trigger Event:
push
-
Statement type:
File details
Details for the file cast_value_rs-0.4.2-cp314-cp314t-musllinux_1_2_armv7l.whl.
File metadata
- Download URL: cast_value_rs-0.4.2-cp314-cp314t-musllinux_1_2_armv7l.whl
- Upload date:
- Size: 814.7 kB
- Tags: CPython 3.14t, musllinux: musl 1.2+ ARMv7l
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
5552e3c80d43de7a8a821793cb57da0dd3720a377051a5bf86bcabe094e87777
|
|
| MD5 |
3a43d9ec7eb382644b1f5c1ecb71f110
|
|
| BLAKE2b-256 |
244fa71bfaea1286bd12cc912733d650bd89a07c4430ee715202551c6e3eb0b0
|
Provenance
The following attestation bundles were made for cast_value_rs-0.4.2-cp314-cp314t-musllinux_1_2_armv7l.whl:
Publisher:
cd.yml on zarr-developers/cast-value.rs
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
cast_value_rs-0.4.2-cp314-cp314t-musllinux_1_2_armv7l.whl -
Subject digest:
5552e3c80d43de7a8a821793cb57da0dd3720a377051a5bf86bcabe094e87777 - Sigstore transparency entry: 2449243962
- Sigstore integration time:
-
Permalink:
zarr-developers/cast-value.rs@0fc546798ea70e8207ee709994be73aaed187401 -
Branch / Tag:
refs/tags/v0.4.2 - Owner: https://github.com/zarr-developers
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
cd.yml@0fc546798ea70e8207ee709994be73aaed187401 -
Trigger Event:
push
-
Statement type:
File details
Details for the file cast_value_rs-0.4.2-cp314-cp314t-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: cast_value_rs-0.4.2-cp314-cp314t-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 662.5 kB
- Tags: CPython 3.14t, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
da5df79a926bdcc1f5494612f621027970a9702eb49d556068025166d4c0ace2
|
|
| MD5 |
a044af09cecb38e0eed686a4977428d4
|
|
| BLAKE2b-256 |
f07035c7cb37839454aeb93b9576b42daebd8249dd59e3834cd1be020b4b0660
|
Provenance
The following attestation bundles were made for cast_value_rs-0.4.2-cp314-cp314t-musllinux_1_2_aarch64.whl:
Publisher:
cd.yml on zarr-developers/cast-value.rs
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
cast_value_rs-0.4.2-cp314-cp314t-musllinux_1_2_aarch64.whl -
Subject digest:
da5df79a926bdcc1f5494612f621027970a9702eb49d556068025166d4c0ace2 - Sigstore transparency entry: 2449244089
- Sigstore integration time:
-
Permalink:
zarr-developers/cast-value.rs@0fc546798ea70e8207ee709994be73aaed187401 -
Branch / Tag:
refs/tags/v0.4.2 - Owner: https://github.com/zarr-developers
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
cd.yml@0fc546798ea70e8207ee709994be73aaed187401 -
Trigger Event:
push
-
Statement type:
File details
Details for the file cast_value_rs-0.4.2-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: cast_value_rs-0.4.2-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 548.0 kB
- Tags: CPython 3.14t, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
704171aec75f417f5a70a3eb5f107fbfc79183620093c9d9074290920a5981f1
|
|
| MD5 |
965110758d1ce23a7f09d541dab2f0b2
|
|
| BLAKE2b-256 |
8bc2d31f177025b51a3fda70c5888b92f5fd30ec53bc2df2c046fc9a2717cd36
|
Provenance
The following attestation bundles were made for cast_value_rs-0.4.2-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:
Publisher:
cd.yml on zarr-developers/cast-value.rs
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
cast_value_rs-0.4.2-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl -
Subject digest:
704171aec75f417f5a70a3eb5f107fbfc79183620093c9d9074290920a5981f1 - Sigstore transparency entry: 2449244216
- Sigstore integration time:
-
Permalink:
zarr-developers/cast-value.rs@0fc546798ea70e8207ee709994be73aaed187401 -
Branch / Tag:
refs/tags/v0.4.2 - Owner: https://github.com/zarr-developers
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
cd.yml@0fc546798ea70e8207ee709994be73aaed187401 -
Trigger Event:
push
-
Statement type:
File details
Details for the file cast_value_rs-0.4.2-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl.
File metadata
- Download URL: cast_value_rs-0.4.2-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl
- Upload date:
- Size: 555.3 kB
- Tags: CPython 3.14t, manylinux: glibc 2.17+ s390x
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
89434eebb7a12f66e99382e08c32648f055e24d9fce66274adef6620af2aebbd
|
|
| MD5 |
70ce8daba0b344f0cf9771e0f8602916
|
|
| BLAKE2b-256 |
398b1faa6b27cda3dd793635c7945118e49188b6714d6bf23bb072efd718e467
|
Provenance
The following attestation bundles were made for cast_value_rs-0.4.2-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl:
Publisher:
cd.yml on zarr-developers/cast-value.rs
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
cast_value_rs-0.4.2-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl -
Subject digest:
89434eebb7a12f66e99382e08c32648f055e24d9fce66274adef6620af2aebbd - Sigstore transparency entry: 2449246012
- Sigstore integration time:
-
Permalink:
zarr-developers/cast-value.rs@0fc546798ea70e8207ee709994be73aaed187401 -
Branch / Tag:
refs/tags/v0.4.2 - Owner: https://github.com/zarr-developers
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
cd.yml@0fc546798ea70e8207ee709994be73aaed187401 -
Trigger Event:
push
-
Statement type:
File details
Details for the file cast_value_rs-0.4.2-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.
File metadata
- Download URL: cast_value_rs-0.4.2-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
- Upload date:
- Size: 649.3 kB
- Tags: CPython 3.14t, manylinux: glibc 2.17+ ppc64le
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
86d00b9cef0d38d0c5631ba63270c38c5d7c85aa87c609644f204919f939f0c9
|
|
| MD5 |
bb1f71ec8c83ca298c1f1a4aa4cc18aa
|
|
| BLAKE2b-256 |
d3b12cf4f4f13f74caaa4dab4ddf4924fdeeffb39920d5ec30a80112aa041efa
|
Provenance
The following attestation bundles were made for cast_value_rs-0.4.2-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl:
Publisher:
cd.yml on zarr-developers/cast-value.rs
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
cast_value_rs-0.4.2-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl -
Subject digest:
86d00b9cef0d38d0c5631ba63270c38c5d7c85aa87c609644f204919f939f0c9 - Sigstore transparency entry: 2449246216
- Sigstore integration time:
-
Permalink:
zarr-developers/cast-value.rs@0fc546798ea70e8207ee709994be73aaed187401 -
Branch / Tag:
refs/tags/v0.4.2 - Owner: https://github.com/zarr-developers
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
cd.yml@0fc546798ea70e8207ee709994be73aaed187401 -
Trigger Event:
push
-
Statement type:
File details
Details for the file cast_value_rs-0.4.2-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.
File metadata
- Download URL: cast_value_rs-0.4.2-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
- Upload date:
- Size: 538.7 kB
- Tags: CPython 3.14t, manylinux: glibc 2.17+ ARMv7l
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
37538170dc1fedbfd62dd56670e443b881474e7eda7f583a3c989c83a9ff15fc
|
|
| MD5 |
6d4d6649e8f1bffeb02e3d5415e9d775
|
|
| BLAKE2b-256 |
b979aaa713cb151a902439b670a4774ea76d0a5dadf1f03954f6a34af2a6cb1e
|
Provenance
The following attestation bundles were made for cast_value_rs-0.4.2-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl:
Publisher:
cd.yml on zarr-developers/cast-value.rs
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
cast_value_rs-0.4.2-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl -
Subject digest:
37538170dc1fedbfd62dd56670e443b881474e7eda7f583a3c989c83a9ff15fc - Sigstore transparency entry: 2449244069
- Sigstore integration time:
-
Permalink:
zarr-developers/cast-value.rs@0fc546798ea70e8207ee709994be73aaed187401 -
Branch / Tag:
refs/tags/v0.4.2 - Owner: https://github.com/zarr-developers
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
cd.yml@0fc546798ea70e8207ee709994be73aaed187401 -
Trigger Event:
push
-
Statement type:
File details
Details for the file cast_value_rs-0.4.2-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: cast_value_rs-0.4.2-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 485.2 kB
- Tags: CPython 3.14t, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
230f6440db74d2d11e513060d0e72aa3f897546465bc778d30aaeac90f8e733e
|
|
| MD5 |
36f69b56cb4edd381fcf65304e64f8a6
|
|
| BLAKE2b-256 |
a009527646deeb622e5a597e4271e9e06d9d7cd24d64de77b8cb4ce250128c18
|
Provenance
The following attestation bundles were made for cast_value_rs-0.4.2-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:
Publisher:
cd.yml on zarr-developers/cast-value.rs
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
cast_value_rs-0.4.2-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl -
Subject digest:
230f6440db74d2d11e513060d0e72aa3f897546465bc778d30aaeac90f8e733e - Sigstore transparency entry: 2449245935
- Sigstore integration time:
-
Permalink:
zarr-developers/cast-value.rs@0fc546798ea70e8207ee709994be73aaed187401 -
Branch / Tag:
refs/tags/v0.4.2 - Owner: https://github.com/zarr-developers
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
cd.yml@0fc546798ea70e8207ee709994be73aaed187401 -
Trigger Event:
push
-
Statement type:
File details
Details for the file cast_value_rs-0.4.2-cp314-cp314t-manylinux_2_5_i686.manylinux1_i686.whl.
File metadata
- Download URL: cast_value_rs-0.4.2-cp314-cp314t-manylinux_2_5_i686.manylinux1_i686.whl
- Upload date:
- Size: 574.8 kB
- Tags: CPython 3.14t, manylinux: glibc 2.5+ i686
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
2add2599d299436ec161661a8e119a69742c763a0936e542db92b1ce9d6e0c04
|
|
| MD5 |
b7cac6437d1128416f3444222087c226
|
|
| BLAKE2b-256 |
6499521c2d6347ca39deef237909dfee61c6d2cb806dcc20d74636e209bc646e
|
Provenance
The following attestation bundles were made for cast_value_rs-0.4.2-cp314-cp314t-manylinux_2_5_i686.manylinux1_i686.whl:
Publisher:
cd.yml on zarr-developers/cast-value.rs
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
cast_value_rs-0.4.2-cp314-cp314t-manylinux_2_5_i686.manylinux1_i686.whl -
Subject digest:
2add2599d299436ec161661a8e119a69742c763a0936e542db92b1ce9d6e0c04 - Sigstore transparency entry: 2449246254
- Sigstore integration time:
-
Permalink:
zarr-developers/cast-value.rs@0fc546798ea70e8207ee709994be73aaed187401 -
Branch / Tag:
refs/tags/v0.4.2 - Owner: https://github.com/zarr-developers
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
cd.yml@0fc546798ea70e8207ee709994be73aaed187401 -
Trigger Event:
push
-
Statement type:
File details
Details for the file cast_value_rs-0.4.2-cp314-cp314-win_arm64.whl.
File metadata
- Download URL: cast_value_rs-0.4.2-cp314-cp314-win_arm64.whl
- Upload date:
- Size: 398.2 kB
- Tags: CPython 3.14, Windows ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
1f57e762a06102d61e940548a6ab841e05ad1f51f1c4e2aa26bc27a8c59a5abc
|
|
| MD5 |
aaf94ecc432ad430912b22c03dd3c3e9
|
|
| BLAKE2b-256 |
951c8e7546a044da8e92eafbb12594169301cc94e2a071fd3e34204595d0a05f
|
Provenance
The following attestation bundles were made for cast_value_rs-0.4.2-cp314-cp314-win_arm64.whl:
Publisher:
cd.yml on zarr-developers/cast-value.rs
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
cast_value_rs-0.4.2-cp314-cp314-win_arm64.whl -
Subject digest:
1f57e762a06102d61e940548a6ab841e05ad1f51f1c4e2aa26bc27a8c59a5abc - Sigstore transparency entry: 2449246481
- Sigstore integration time:
-
Permalink:
zarr-developers/cast-value.rs@0fc546798ea70e8207ee709994be73aaed187401 -
Branch / Tag:
refs/tags/v0.4.2 - Owner: https://github.com/zarr-developers
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
cd.yml@0fc546798ea70e8207ee709994be73aaed187401 -
Trigger Event:
push
-
Statement type:
File details
Details for the file cast_value_rs-0.4.2-cp314-cp314-win_amd64.whl.
File metadata
- Download URL: cast_value_rs-0.4.2-cp314-cp314-win_amd64.whl
- Upload date:
- Size: 442.1 kB
- Tags: CPython 3.14, Windows x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
7e7bb9faa4820b7eb0d99074fd61efff3a7392e72b6abe4b41c9d6b6d14fe457
|
|
| MD5 |
e01f6f857d7775335b1d4a3f55ed3385
|
|
| BLAKE2b-256 |
d39c5f71a5e94875bb999646227a583792dbbe9a2b257df0d961e8a2da879f9e
|
Provenance
The following attestation bundles were made for cast_value_rs-0.4.2-cp314-cp314-win_amd64.whl:
Publisher:
cd.yml on zarr-developers/cast-value.rs
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
cast_value_rs-0.4.2-cp314-cp314-win_amd64.whl -
Subject digest:
7e7bb9faa4820b7eb0d99074fd61efff3a7392e72b6abe4b41c9d6b6d14fe457 - Sigstore transparency entry: 2449245301
- Sigstore integration time:
-
Permalink:
zarr-developers/cast-value.rs@0fc546798ea70e8207ee709994be73aaed187401 -
Branch / Tag:
refs/tags/v0.4.2 - Owner: https://github.com/zarr-developers
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
cd.yml@0fc546798ea70e8207ee709994be73aaed187401 -
Trigger Event:
push
-
Statement type:
File details
Details for the file cast_value_rs-0.4.2-cp314-cp314-win32.whl.
File metadata
- Download URL: cast_value_rs-0.4.2-cp314-cp314-win32.whl
- Upload date:
- Size: 387.1 kB
- Tags: CPython 3.14, Windows x86
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
d438517530d3a8d6bc810ab6dee831c48b45287435513fea1b0476b5d4fda07d
|
|
| MD5 |
f04f906353448cea1fd5b7a101fa4b09
|
|
| BLAKE2b-256 |
e3a547b6db4f68da086db3f3768775f545b9b7f660cab8f61039c91de1f813c4
|
Provenance
The following attestation bundles were made for cast_value_rs-0.4.2-cp314-cp314-win32.whl:
Publisher:
cd.yml on zarr-developers/cast-value.rs
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
cast_value_rs-0.4.2-cp314-cp314-win32.whl -
Subject digest:
d438517530d3a8d6bc810ab6dee831c48b45287435513fea1b0476b5d4fda07d - Sigstore transparency entry: 2449246070
- Sigstore integration time:
-
Permalink:
zarr-developers/cast-value.rs@0fc546798ea70e8207ee709994be73aaed187401 -
Branch / Tag:
refs/tags/v0.4.2 - Owner: https://github.com/zarr-developers
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
cd.yml@0fc546798ea70e8207ee709994be73aaed187401 -
Trigger Event:
push
-
Statement type:
File details
Details for the file cast_value_rs-0.4.2-cp314-cp314-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: cast_value_rs-0.4.2-cp314-cp314-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 753.0 kB
- Tags: CPython 3.14, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
ae0cbdd44290a74e34519eb990b33bf0f8e96f0fde95ffc799913ff1aab27719
|
|
| MD5 |
514b137cdf61f099182b565ca0008add
|
|
| BLAKE2b-256 |
d67293f906345d03972de52e3e74dd4ed12b56aab53bec85cc96020690ba6dbe
|
Provenance
The following attestation bundles were made for cast_value_rs-0.4.2-cp314-cp314-musllinux_1_2_x86_64.whl:
Publisher:
cd.yml on zarr-developers/cast-value.rs
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
cast_value_rs-0.4.2-cp314-cp314-musllinux_1_2_x86_64.whl -
Subject digest:
ae0cbdd44290a74e34519eb990b33bf0f8e96f0fde95ffc799913ff1aab27719 - Sigstore transparency entry: 2449246668
- Sigstore integration time:
-
Permalink:
zarr-developers/cast-value.rs@0fc546798ea70e8207ee709994be73aaed187401 -
Branch / Tag:
refs/tags/v0.4.2 - Owner: https://github.com/zarr-developers
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
cd.yml@0fc546798ea70e8207ee709994be73aaed187401 -
Trigger Event:
push
-
Statement type:
File details
Details for the file cast_value_rs-0.4.2-cp314-cp314-musllinux_1_2_i686.whl.
File metadata
- Download URL: cast_value_rs-0.4.2-cp314-cp314-musllinux_1_2_i686.whl
- Upload date:
- Size: 787.8 kB
- Tags: CPython 3.14, musllinux: musl 1.2+ i686
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
d7de068a1dcc65d1aaf4e93228198b588776bd25b62ef42478ab7efe5245a6f3
|
|
| MD5 |
04358bcdd8629d1848badd624650e2c8
|
|
| BLAKE2b-256 |
e640a234d9d06013a0bee08f662ab083b3a55decfa2dbb315094fdf06693d425
|
Provenance
The following attestation bundles were made for cast_value_rs-0.4.2-cp314-cp314-musllinux_1_2_i686.whl:
Publisher:
cd.yml on zarr-developers/cast-value.rs
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
cast_value_rs-0.4.2-cp314-cp314-musllinux_1_2_i686.whl -
Subject digest:
d7de068a1dcc65d1aaf4e93228198b588776bd25b62ef42478ab7efe5245a6f3 - Sigstore transparency entry: 2449244355
- Sigstore integration time:
-
Permalink:
zarr-developers/cast-value.rs@0fc546798ea70e8207ee709994be73aaed187401 -
Branch / Tag:
refs/tags/v0.4.2 - Owner: https://github.com/zarr-developers
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
cd.yml@0fc546798ea70e8207ee709994be73aaed187401 -
Trigger Event:
push
-
Statement type:
File details
Details for the file cast_value_rs-0.4.2-cp314-cp314-musllinux_1_2_armv7l.whl.
File metadata
- Download URL: cast_value_rs-0.4.2-cp314-cp314-musllinux_1_2_armv7l.whl
- Upload date:
- Size: 830.7 kB
- Tags: CPython 3.14, musllinux: musl 1.2+ ARMv7l
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
95b064458233a7ef0525481eccfd2d37e86620d877ab1535ae809d37355cf131
|
|
| MD5 |
9a5c7500cae95fc5f7e88aff9d33104e
|
|
| BLAKE2b-256 |
0b0158a3eadff1233bd98d5809e2f6b5dc6d1b8c4c770664145f57fd0bdce756
|
Provenance
The following attestation bundles were made for cast_value_rs-0.4.2-cp314-cp314-musllinux_1_2_armv7l.whl:
Publisher:
cd.yml on zarr-developers/cast-value.rs
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
cast_value_rs-0.4.2-cp314-cp314-musllinux_1_2_armv7l.whl -
Subject digest:
95b064458233a7ef0525481eccfd2d37e86620d877ab1535ae809d37355cf131 - Sigstore transparency entry: 2449246306
- Sigstore integration time:
-
Permalink:
zarr-developers/cast-value.rs@0fc546798ea70e8207ee709994be73aaed187401 -
Branch / Tag:
refs/tags/v0.4.2 - Owner: https://github.com/zarr-developers
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
cd.yml@0fc546798ea70e8207ee709994be73aaed187401 -
Trigger Event:
push
-
Statement type:
File details
Details for the file cast_value_rs-0.4.2-cp314-cp314-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: cast_value_rs-0.4.2-cp314-cp314-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 664.1 kB
- Tags: CPython 3.14, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
9946054c77d7c5df579e9e99ebebd4d8a220cb04a6af1b6467112dfe07eee72d
|
|
| MD5 |
ec2501296b087ca80d8d3b03bfccde4e
|
|
| BLAKE2b-256 |
941eed86da6fe69eff312cc83e348cf4715d4168ab2699783febd24bfd477cd8
|
Provenance
The following attestation bundles were made for cast_value_rs-0.4.2-cp314-cp314-musllinux_1_2_aarch64.whl:
Publisher:
cd.yml on zarr-developers/cast-value.rs
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
cast_value_rs-0.4.2-cp314-cp314-musllinux_1_2_aarch64.whl -
Subject digest:
9946054c77d7c5df579e9e99ebebd4d8a220cb04a6af1b6467112dfe07eee72d - Sigstore transparency entry: 2449246755
- Sigstore integration time:
-
Permalink:
zarr-developers/cast-value.rs@0fc546798ea70e8207ee709994be73aaed187401 -
Branch / Tag:
refs/tags/v0.4.2 - Owner: https://github.com/zarr-developers
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
cd.yml@0fc546798ea70e8207ee709994be73aaed187401 -
Trigger Event:
push
-
Statement type:
File details
Details for the file cast_value_rs-0.4.2-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: cast_value_rs-0.4.2-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 548.7 kB
- Tags: CPython 3.14, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
e4affe8668a2f17764ed978c2dddb2b49554f36a71389e6928a8a5523c1a4173
|
|
| MD5 |
0e2b38a9c8cab7d46c1a3bd49f33c09b
|
|
| BLAKE2b-256 |
41c8313e1d016b0adfccd1ead2bb28d2c94313ab62534bd6e11db19a480d3b55
|
Provenance
The following attestation bundles were made for cast_value_rs-0.4.2-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:
Publisher:
cd.yml on zarr-developers/cast-value.rs
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
cast_value_rs-0.4.2-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl -
Subject digest:
e4affe8668a2f17764ed978c2dddb2b49554f36a71389e6928a8a5523c1a4173 - Sigstore transparency entry: 2449246351
- Sigstore integration time:
-
Permalink:
zarr-developers/cast-value.rs@0fc546798ea70e8207ee709994be73aaed187401 -
Branch / Tag:
refs/tags/v0.4.2 - Owner: https://github.com/zarr-developers
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
cd.yml@0fc546798ea70e8207ee709994be73aaed187401 -
Trigger Event:
push
-
Statement type:
File details
Details for the file cast_value_rs-0.4.2-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl.
File metadata
- Download URL: cast_value_rs-0.4.2-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl
- Upload date:
- Size: 561.5 kB
- Tags: CPython 3.14, manylinux: glibc 2.17+ s390x
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
ab3fd77144d26e2da2a113f862c05ea1cf465df347daf5deb6cf1689253fddfa
|
|
| MD5 |
823365c444cca1cf0a9fee938511eacc
|
|
| BLAKE2b-256 |
603852b4cc31570384e0286e28a03164a357d53a8aba7421ef83e500843d5449
|
Provenance
The following attestation bundles were made for cast_value_rs-0.4.2-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl:
Publisher:
cd.yml on zarr-developers/cast-value.rs
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
cast_value_rs-0.4.2-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl -
Subject digest:
ab3fd77144d26e2da2a113f862c05ea1cf465df347daf5deb6cf1689253fddfa - Sigstore transparency entry: 2449244181
- Sigstore integration time:
-
Permalink:
zarr-developers/cast-value.rs@0fc546798ea70e8207ee709994be73aaed187401 -
Branch / Tag:
refs/tags/v0.4.2 - Owner: https://github.com/zarr-developers
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
cd.yml@0fc546798ea70e8207ee709994be73aaed187401 -
Trigger Event:
push
-
Statement type:
File details
Details for the file cast_value_rs-0.4.2-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.
File metadata
- Download URL: cast_value_rs-0.4.2-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
- Upload date:
- Size: 650.3 kB
- Tags: CPython 3.14, manylinux: glibc 2.17+ ppc64le
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
3bddec46b36f29964c8d4bbe82b8270575fbe1c0fb41c404bb3da1778f390a24
|
|
| MD5 |
8040d296e4c15cb7da8431831a01b46c
|
|
| BLAKE2b-256 |
7fb3c84c1e820786ddb062b162112b80e5dfc1b5b54b11125618f38c1e18d075
|
Provenance
The following attestation bundles were made for cast_value_rs-0.4.2-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl:
Publisher:
cd.yml on zarr-developers/cast-value.rs
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
cast_value_rs-0.4.2-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl -
Subject digest:
3bddec46b36f29964c8d4bbe82b8270575fbe1c0fb41c404bb3da1778f390a24 - Sigstore transparency entry: 2449245760
- Sigstore integration time:
-
Permalink:
zarr-developers/cast-value.rs@0fc546798ea70e8207ee709994be73aaed187401 -
Branch / Tag:
refs/tags/v0.4.2 - Owner: https://github.com/zarr-developers
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
cd.yml@0fc546798ea70e8207ee709994be73aaed187401 -
Trigger Event:
push
-
Statement type:
File details
Details for the file cast_value_rs-0.4.2-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.
File metadata
- Download URL: cast_value_rs-0.4.2-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
- Upload date:
- Size: 555.3 kB
- Tags: CPython 3.14, manylinux: glibc 2.17+ ARMv7l
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
1eaa7c3d5fe418a74928f78514f9baeaeb8e31b93db96b1761edd6144f0d2eff
|
|
| MD5 |
0ba35dc928a4952e0b1c2bf37fd249df
|
|
| BLAKE2b-256 |
181397851c45b275fbc9d42b5d5a340fd5ea430525b60c2eacfe6a36399d69ef
|
Provenance
The following attestation bundles were made for cast_value_rs-0.4.2-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl:
Publisher:
cd.yml on zarr-developers/cast-value.rs
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
cast_value_rs-0.4.2-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl -
Subject digest:
1eaa7c3d5fe418a74928f78514f9baeaeb8e31b93db96b1761edd6144f0d2eff - Sigstore transparency entry: 2449245527
- Sigstore integration time:
-
Permalink:
zarr-developers/cast-value.rs@0fc546798ea70e8207ee709994be73aaed187401 -
Branch / Tag:
refs/tags/v0.4.2 - Owner: https://github.com/zarr-developers
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
cd.yml@0fc546798ea70e8207ee709994be73aaed187401 -
Trigger Event:
push
-
Statement type:
File details
Details for the file cast_value_rs-0.4.2-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: cast_value_rs-0.4.2-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 486.8 kB
- Tags: CPython 3.14, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
c224a9b30c2521cd06eac4bb1ac3860f41c902695e6f806344bc039d7a8a1d93
|
|
| MD5 |
589d46ef55f4dba7b8683bf55a04af2b
|
|
| BLAKE2b-256 |
65e546c2985ccbae41c8140f04f2acc9080761f10e8d2f8101c46083e632f812
|
Provenance
The following attestation bundles were made for cast_value_rs-0.4.2-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:
Publisher:
cd.yml on zarr-developers/cast-value.rs
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
cast_value_rs-0.4.2-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl -
Subject digest:
c224a9b30c2521cd06eac4bb1ac3860f41c902695e6f806344bc039d7a8a1d93 - Sigstore transparency entry: 2449243921
- Sigstore integration time:
-
Permalink:
zarr-developers/cast-value.rs@0fc546798ea70e8207ee709994be73aaed187401 -
Branch / Tag:
refs/tags/v0.4.2 - Owner: https://github.com/zarr-developers
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
cd.yml@0fc546798ea70e8207ee709994be73aaed187401 -
Trigger Event:
push
-
Statement type:
File details
Details for the file cast_value_rs-0.4.2-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl.
File metadata
- Download URL: cast_value_rs-0.4.2-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl
- Upload date:
- Size: 590.8 kB
- Tags: CPython 3.14, manylinux: glibc 2.5+ i686
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
a67316b00ca01a78865d222badef2b1cb6c60ad5ebd360bf4fa3b224e87b8ffa
|
|
| MD5 |
2e20362b0df47bfbe382c474ad85cbc1
|
|
| BLAKE2b-256 |
818ba11f8e514598ebfc084507b0db390ecbdc6bfcffbf91ae666e0de93e6c25
|
Provenance
The following attestation bundles were made for cast_value_rs-0.4.2-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl:
Publisher:
cd.yml on zarr-developers/cast-value.rs
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
cast_value_rs-0.4.2-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl -
Subject digest:
a67316b00ca01a78865d222badef2b1cb6c60ad5ebd360bf4fa3b224e87b8ffa - Sigstore transparency entry: 2449244611
- Sigstore integration time:
-
Permalink:
zarr-developers/cast-value.rs@0fc546798ea70e8207ee709994be73aaed187401 -
Branch / Tag:
refs/tags/v0.4.2 - Owner: https://github.com/zarr-developers
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
cd.yml@0fc546798ea70e8207ee709994be73aaed187401 -
Trigger Event:
push
-
Statement type:
File details
Details for the file cast_value_rs-0.4.2-cp314-cp314-macosx_11_0_arm64.whl.
File metadata
- Download URL: cast_value_rs-0.4.2-cp314-cp314-macosx_11_0_arm64.whl
- Upload date:
- Size: 458.5 kB
- Tags: CPython 3.14, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
cbcec2cfd199c1e404f5bda71b273b4a7470762f4b55c1c21f09d60d2762e339
|
|
| MD5 |
11ec99e04154bf41fa534656a249c232
|
|
| BLAKE2b-256 |
ed9f7ac6bf95d160f3fd89020aa952ffb4a49216b85a3fda02f84bc2c2612a2f
|
Provenance
The following attestation bundles were made for cast_value_rs-0.4.2-cp314-cp314-macosx_11_0_arm64.whl:
Publisher:
cd.yml on zarr-developers/cast-value.rs
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
cast_value_rs-0.4.2-cp314-cp314-macosx_11_0_arm64.whl -
Subject digest:
cbcec2cfd199c1e404f5bda71b273b4a7470762f4b55c1c21f09d60d2762e339 - Sigstore transparency entry: 2449243740
- Sigstore integration time:
-
Permalink:
zarr-developers/cast-value.rs@0fc546798ea70e8207ee709994be73aaed187401 -
Branch / Tag:
refs/tags/v0.4.2 - Owner: https://github.com/zarr-developers
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
cd.yml@0fc546798ea70e8207ee709994be73aaed187401 -
Trigger Event:
push
-
Statement type:
File details
Details for the file cast_value_rs-0.4.2-cp314-cp314-macosx_10_12_x86_64.whl.
File metadata
- Download URL: cast_value_rs-0.4.2-cp314-cp314-macosx_10_12_x86_64.whl
- Upload date:
- Size: 495.7 kB
- Tags: CPython 3.14, macOS 10.12+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
cefdcfd4d2b95e3b35fd98b3d3d865be9b3ef1bc1264db3bc1b8c50c5e8ac999
|
|
| MD5 |
2c6411493b3d460512565dd2f52075a8
|
|
| BLAKE2b-256 |
bee9baf39cd3991962705ffd055fce071e23e7707f62df3fb44af2ffe0e84d11
|
Provenance
The following attestation bundles were made for cast_value_rs-0.4.2-cp314-cp314-macosx_10_12_x86_64.whl:
Publisher:
cd.yml on zarr-developers/cast-value.rs
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
cast_value_rs-0.4.2-cp314-cp314-macosx_10_12_x86_64.whl -
Subject digest:
cefdcfd4d2b95e3b35fd98b3d3d865be9b3ef1bc1264db3bc1b8c50c5e8ac999 - Sigstore transparency entry: 2449245709
- Sigstore integration time:
-
Permalink:
zarr-developers/cast-value.rs@0fc546798ea70e8207ee709994be73aaed187401 -
Branch / Tag:
refs/tags/v0.4.2 - Owner: https://github.com/zarr-developers
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
cd.yml@0fc546798ea70e8207ee709994be73aaed187401 -
Trigger Event:
push
-
Statement type:
File details
Details for the file cast_value_rs-0.4.2-cp313-cp313-win_arm64.whl.
File metadata
- Download URL: cast_value_rs-0.4.2-cp313-cp313-win_arm64.whl
- Upload date:
- Size: 397.9 kB
- Tags: CPython 3.13, Windows ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
9ce6678fc4b1bdc459178225347acd8019f1d22bca1e13ab86cc2a3e4ecb2f46
|
|
| MD5 |
9264ab336dbdcf128a725136dd476e15
|
|
| BLAKE2b-256 |
644942a0b48a71aca3ebb0abd0948fa9d484723c3562af30a8d6904b874abb2f
|
Provenance
The following attestation bundles were made for cast_value_rs-0.4.2-cp313-cp313-win_arm64.whl:
Publisher:
cd.yml on zarr-developers/cast-value.rs
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
cast_value_rs-0.4.2-cp313-cp313-win_arm64.whl -
Subject digest:
9ce6678fc4b1bdc459178225347acd8019f1d22bca1e13ab86cc2a3e4ecb2f46 - Sigstore transparency entry: 2449244549
- Sigstore integration time:
-
Permalink:
zarr-developers/cast-value.rs@0fc546798ea70e8207ee709994be73aaed187401 -
Branch / Tag:
refs/tags/v0.4.2 - Owner: https://github.com/zarr-developers
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
cd.yml@0fc546798ea70e8207ee709994be73aaed187401 -
Trigger Event:
push
-
Statement type:
File details
Details for the file cast_value_rs-0.4.2-cp313-cp313-win_amd64.whl.
File metadata
- Download URL: cast_value_rs-0.4.2-cp313-cp313-win_amd64.whl
- Upload date:
- Size: 442.0 kB
- Tags: CPython 3.13, Windows x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
26fe305d5bd35d21c5ee72c5651892895447e175ba3019a24713c565d965c0ef
|
|
| MD5 |
f44e87dc41bbe01730cbccbc4053d579
|
|
| BLAKE2b-256 |
65109c18cb01104bb211c9b0d9a956fae3f1a40f743c35bbc6763d0114ec36a7
|
Provenance
The following attestation bundles were made for cast_value_rs-0.4.2-cp313-cp313-win_amd64.whl:
Publisher:
cd.yml on zarr-developers/cast-value.rs
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
cast_value_rs-0.4.2-cp313-cp313-win_amd64.whl -
Subject digest:
26fe305d5bd35d21c5ee72c5651892895447e175ba3019a24713c565d965c0ef - Sigstore transparency entry: 2449245846
- Sigstore integration time:
-
Permalink:
zarr-developers/cast-value.rs@0fc546798ea70e8207ee709994be73aaed187401 -
Branch / Tag:
refs/tags/v0.4.2 - Owner: https://github.com/zarr-developers
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
cd.yml@0fc546798ea70e8207ee709994be73aaed187401 -
Trigger Event:
push
-
Statement type:
File details
Details for the file cast_value_rs-0.4.2-cp313-cp313-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: cast_value_rs-0.4.2-cp313-cp313-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 752.8 kB
- Tags: CPython 3.13, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
5c66ca6ad21758993830a9f4d24263065727bf767e4524d79ded0c0b61e3da9d
|
|
| MD5 |
8886ef2af0d00ee51158b060bb20f40a
|
|
| BLAKE2b-256 |
21a95d7410d37be26bed1dc740c885a0c7fdb213b93e9b13ac76fb3282aa50ea
|
Provenance
The following attestation bundles were made for cast_value_rs-0.4.2-cp313-cp313-musllinux_1_2_x86_64.whl:
Publisher:
cd.yml on zarr-developers/cast-value.rs
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
cast_value_rs-0.4.2-cp313-cp313-musllinux_1_2_x86_64.whl -
Subject digest:
5c66ca6ad21758993830a9f4d24263065727bf767e4524d79ded0c0b61e3da9d - Sigstore transparency entry: 2449245813
- Sigstore integration time:
-
Permalink:
zarr-developers/cast-value.rs@0fc546798ea70e8207ee709994be73aaed187401 -
Branch / Tag:
refs/tags/v0.4.2 - Owner: https://github.com/zarr-developers
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
cd.yml@0fc546798ea70e8207ee709994be73aaed187401 -
Trigger Event:
push
-
Statement type:
File details
Details for the file cast_value_rs-0.4.2-cp313-cp313-musllinux_1_2_i686.whl.
File metadata
- Download URL: cast_value_rs-0.4.2-cp313-cp313-musllinux_1_2_i686.whl
- Upload date:
- Size: 788.2 kB
- Tags: CPython 3.13, musllinux: musl 1.2+ i686
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
f9e787397588fabb28a146a28159150f44e8ef85a25abe364f989044f1b7159d
|
|
| MD5 |
3dac69c317231ff5f16c0f48331e19a3
|
|
| BLAKE2b-256 |
2f7d9e99c969dd76087dbf731667982d8bb6b390d29c8f37c09dd330657b0487
|
Provenance
The following attestation bundles were made for cast_value_rs-0.4.2-cp313-cp313-musllinux_1_2_i686.whl:
Publisher:
cd.yml on zarr-developers/cast-value.rs
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
cast_value_rs-0.4.2-cp313-cp313-musllinux_1_2_i686.whl -
Subject digest:
f9e787397588fabb28a146a28159150f44e8ef85a25abe364f989044f1b7159d - Sigstore transparency entry: 2449244915
- Sigstore integration time:
-
Permalink:
zarr-developers/cast-value.rs@0fc546798ea70e8207ee709994be73aaed187401 -
Branch / Tag:
refs/tags/v0.4.2 - Owner: https://github.com/zarr-developers
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
cd.yml@0fc546798ea70e8207ee709994be73aaed187401 -
Trigger Event:
push
-
Statement type:
File details
Details for the file cast_value_rs-0.4.2-cp313-cp313-musllinux_1_2_armv7l.whl.
File metadata
- Download URL: cast_value_rs-0.4.2-cp313-cp313-musllinux_1_2_armv7l.whl
- Upload date:
- Size: 830.9 kB
- Tags: CPython 3.13, musllinux: musl 1.2+ ARMv7l
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
59e15ec495e8707447180e0111e65e083464da60236edd5c3387efedce3da997
|
|
| MD5 |
373fe44a83e03e6e6bf1f81042a66f2f
|
|
| BLAKE2b-256 |
36df0a9ac5bae4e1d3b7b4a79795054d822c26bdbc3bedad71fe13e8ce666c4b
|
Provenance
The following attestation bundles were made for cast_value_rs-0.4.2-cp313-cp313-musllinux_1_2_armv7l.whl:
Publisher:
cd.yml on zarr-developers/cast-value.rs
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
cast_value_rs-0.4.2-cp313-cp313-musllinux_1_2_armv7l.whl -
Subject digest:
59e15ec495e8707447180e0111e65e083464da60236edd5c3387efedce3da997 - Sigstore transparency entry: 2449246413
- Sigstore integration time:
-
Permalink:
zarr-developers/cast-value.rs@0fc546798ea70e8207ee709994be73aaed187401 -
Branch / Tag:
refs/tags/v0.4.2 - Owner: https://github.com/zarr-developers
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
cd.yml@0fc546798ea70e8207ee709994be73aaed187401 -
Trigger Event:
push
-
Statement type:
File details
Details for the file cast_value_rs-0.4.2-cp313-cp313-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: cast_value_rs-0.4.2-cp313-cp313-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 665.1 kB
- Tags: CPython 3.13, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
e69f81dab0b47c74c1f30c79198c412938b6c41510b8124dbd08fb36d13a8807
|
|
| MD5 |
ea2b8cbc875cc27804c6ff716afe0b32
|
|
| BLAKE2b-256 |
a3cf6a39df104923bc397ae58f90e21d1e87edd62d17f24fe3d6777e6c4d3e5f
|
Provenance
The following attestation bundles were made for cast_value_rs-0.4.2-cp313-cp313-musllinux_1_2_aarch64.whl:
Publisher:
cd.yml on zarr-developers/cast-value.rs
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
cast_value_rs-0.4.2-cp313-cp313-musllinux_1_2_aarch64.whl -
Subject digest:
e69f81dab0b47c74c1f30c79198c412938b6c41510b8124dbd08fb36d13a8807 - Sigstore transparency entry: 2449244872
- Sigstore integration time:
-
Permalink:
zarr-developers/cast-value.rs@0fc546798ea70e8207ee709994be73aaed187401 -
Branch / Tag:
refs/tags/v0.4.2 - Owner: https://github.com/zarr-developers
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
cd.yml@0fc546798ea70e8207ee709994be73aaed187401 -
Trigger Event:
push
-
Statement type:
File details
Details for the file cast_value_rs-0.4.2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: cast_value_rs-0.4.2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 548.9 kB
- Tags: CPython 3.13, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
b9d799a20d7517974d61d7c4dd54e5d7ef439e726012c087bada31bc644b1535
|
|
| MD5 |
fed5b646ffe66869207763726b19886c
|
|
| BLAKE2b-256 |
6018f63e8378db66b5a99e96c1422c68ba02a4e35de34355b90cf6d169d99ae6
|
Provenance
The following attestation bundles were made for cast_value_rs-0.4.2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:
Publisher:
cd.yml on zarr-developers/cast-value.rs
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
cast_value_rs-0.4.2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl -
Subject digest:
b9d799a20d7517974d61d7c4dd54e5d7ef439e726012c087bada31bc644b1535 - Sigstore transparency entry: 2449244745
- Sigstore integration time:
-
Permalink:
zarr-developers/cast-value.rs@0fc546798ea70e8207ee709994be73aaed187401 -
Branch / Tag:
refs/tags/v0.4.2 - Owner: https://github.com/zarr-developers
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
cd.yml@0fc546798ea70e8207ee709994be73aaed187401 -
Trigger Event:
push
-
Statement type:
File details
Details for the file cast_value_rs-0.4.2-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl.
File metadata
- Download URL: cast_value_rs-0.4.2-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
- Upload date:
- Size: 560.9 kB
- Tags: CPython 3.13, manylinux: glibc 2.17+ s390x
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
d23bac26b2c2fe6a2368d10fbb072a71671f6e0d4d8cf9e893f62ed3530bbd1b
|
|
| MD5 |
88d0749d0c99089a024810e59dd8e77a
|
|
| BLAKE2b-256 |
d7d239f9ff9b678dfb01d206aec6be0f486137d5e9669ebadf0d1f356d2a7324
|
Provenance
The following attestation bundles were made for cast_value_rs-0.4.2-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl:
Publisher:
cd.yml on zarr-developers/cast-value.rs
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
cast_value_rs-0.4.2-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl -
Subject digest:
d23bac26b2c2fe6a2368d10fbb072a71671f6e0d4d8cf9e893f62ed3530bbd1b - Sigstore transparency entry: 2449245874
- Sigstore integration time:
-
Permalink:
zarr-developers/cast-value.rs@0fc546798ea70e8207ee709994be73aaed187401 -
Branch / Tag:
refs/tags/v0.4.2 - Owner: https://github.com/zarr-developers
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
cd.yml@0fc546798ea70e8207ee709994be73aaed187401 -
Trigger Event:
push
-
Statement type:
File details
Details for the file cast_value_rs-0.4.2-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.
File metadata
- Download URL: cast_value_rs-0.4.2-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
- Upload date:
- Size: 651.0 kB
- Tags: CPython 3.13, manylinux: glibc 2.17+ ppc64le
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
101318e594ee998a5ccbc5ea7ed045cbd9fd22d45cac467c745fbd30309f1343
|
|
| MD5 |
b71f759fd16bd784a1226e33b0bf9508
|
|
| BLAKE2b-256 |
e91fed22b2e536ccbd4c5b234d869fc8f478347a45f7b940273023a0d6013134
|
Provenance
The following attestation bundles were made for cast_value_rs-0.4.2-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl:
Publisher:
cd.yml on zarr-developers/cast-value.rs
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
cast_value_rs-0.4.2-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl -
Subject digest:
101318e594ee998a5ccbc5ea7ed045cbd9fd22d45cac467c745fbd30309f1343 - Sigstore transparency entry: 2449244661
- Sigstore integration time:
-
Permalink:
zarr-developers/cast-value.rs@0fc546798ea70e8207ee709994be73aaed187401 -
Branch / Tag:
refs/tags/v0.4.2 - Owner: https://github.com/zarr-developers
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
cd.yml@0fc546798ea70e8207ee709994be73aaed187401 -
Trigger Event:
push
-
Statement type:
File details
Details for the file cast_value_rs-0.4.2-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.
File metadata
- Download URL: cast_value_rs-0.4.2-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
- Upload date:
- Size: 555.2 kB
- Tags: CPython 3.13, manylinux: glibc 2.17+ ARMv7l
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
939417d72c9945ce24eb959e6b2cd32f7aa7d0a50a06a0fac484056b10b650dd
|
|
| MD5 |
0cf4248eca28761dc0d5e4c70ad7812a
|
|
| BLAKE2b-256 |
933018313de8c1d3826e9a6abd883b7a7981b19391f674dcd52ff2635d19f8ee
|
Provenance
The following attestation bundles were made for cast_value_rs-0.4.2-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl:
Publisher:
cd.yml on zarr-developers/cast-value.rs
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
cast_value_rs-0.4.2-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl -
Subject digest:
939417d72c9945ce24eb959e6b2cd32f7aa7d0a50a06a0fac484056b10b650dd - Sigstore transparency entry: 2449245961
- Sigstore integration time:
-
Permalink:
zarr-developers/cast-value.rs@0fc546798ea70e8207ee709994be73aaed187401 -
Branch / Tag:
refs/tags/v0.4.2 - Owner: https://github.com/zarr-developers
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
cd.yml@0fc546798ea70e8207ee709994be73aaed187401 -
Trigger Event:
push
-
Statement type:
File details
Details for the file cast_value_rs-0.4.2-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: cast_value_rs-0.4.2-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 487.3 kB
- Tags: CPython 3.13, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
8399dc89570c01537c07adc03fc2fc0e43a517be8a198e2f9e3f8a70dd003be0
|
|
| MD5 |
00bad15b05f78b5e592c6ef306fbd435
|
|
| BLAKE2b-256 |
97e496d72ccf5e00dd7af7bf55c96313df2ffba1f34a224f10430716232775c0
|
Provenance
The following attestation bundles were made for cast_value_rs-0.4.2-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:
Publisher:
cd.yml on zarr-developers/cast-value.rs
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
cast_value_rs-0.4.2-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl -
Subject digest:
8399dc89570c01537c07adc03fc2fc0e43a517be8a198e2f9e3f8a70dd003be0 - Sigstore transparency entry: 2449244241
- Sigstore integration time:
-
Permalink:
zarr-developers/cast-value.rs@0fc546798ea70e8207ee709994be73aaed187401 -
Branch / Tag:
refs/tags/v0.4.2 - Owner: https://github.com/zarr-developers
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
cd.yml@0fc546798ea70e8207ee709994be73aaed187401 -
Trigger Event:
push
-
Statement type:
File details
Details for the file cast_value_rs-0.4.2-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl.
File metadata
- Download URL: cast_value_rs-0.4.2-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl
- Upload date:
- Size: 590.8 kB
- Tags: CPython 3.13, manylinux: glibc 2.5+ i686
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
b9f0f04815efcc47592474e91f61f24810139396696f0690f3d0bf0e6ff3bb4a
|
|
| MD5 |
56b4fdf6f7cfe596604396b76d95499d
|
|
| BLAKE2b-256 |
98af12349007b670b11e16d3be51c29ab2398550b2653dae692a5d788d3dda87
|
Provenance
The following attestation bundles were made for cast_value_rs-0.4.2-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl:
Publisher:
cd.yml on zarr-developers/cast-value.rs
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
cast_value_rs-0.4.2-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl -
Subject digest:
b9f0f04815efcc47592474e91f61f24810139396696f0690f3d0bf0e6ff3bb4a - Sigstore transparency entry: 2449246381
- Sigstore integration time:
-
Permalink:
zarr-developers/cast-value.rs@0fc546798ea70e8207ee709994be73aaed187401 -
Branch / Tag:
refs/tags/v0.4.2 - Owner: https://github.com/zarr-developers
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
cd.yml@0fc546798ea70e8207ee709994be73aaed187401 -
Trigger Event:
push
-
Statement type:
File details
Details for the file cast_value_rs-0.4.2-cp313-cp313-macosx_11_0_arm64.whl.
File metadata
- Download URL: cast_value_rs-0.4.2-cp313-cp313-macosx_11_0_arm64.whl
- Upload date:
- Size: 458.7 kB
- Tags: CPython 3.13, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
b8b6e0781b4ce61a559cc050d836a52157bd30b1f59d63fdeee79fbc19ab7e57
|
|
| MD5 |
4db1dc5c68b78b6fea506dd79d314f58
|
|
| BLAKE2b-256 |
7ff3d633218979cd8839fcfbade64a277c0ff9d8ff59d21bbd8a59f1467085b4
|
Provenance
The following attestation bundles were made for cast_value_rs-0.4.2-cp313-cp313-macosx_11_0_arm64.whl:
Publisher:
cd.yml on zarr-developers/cast-value.rs
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
cast_value_rs-0.4.2-cp313-cp313-macosx_11_0_arm64.whl -
Subject digest:
b8b6e0781b4ce61a559cc050d836a52157bd30b1f59d63fdeee79fbc19ab7e57 - Sigstore transparency entry: 2449246613
- Sigstore integration time:
-
Permalink:
zarr-developers/cast-value.rs@0fc546798ea70e8207ee709994be73aaed187401 -
Branch / Tag:
refs/tags/v0.4.2 - Owner: https://github.com/zarr-developers
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
cd.yml@0fc546798ea70e8207ee709994be73aaed187401 -
Trigger Event:
push
-
Statement type:
File details
Details for the file cast_value_rs-0.4.2-cp313-cp313-macosx_10_12_x86_64.whl.
File metadata
- Download URL: cast_value_rs-0.4.2-cp313-cp313-macosx_10_12_x86_64.whl
- Upload date:
- Size: 494.4 kB
- Tags: CPython 3.13, macOS 10.12+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
297445abc64891a2e62af93e4f35bb280f874ac548646d0a6b04a86d45e636a5
|
|
| MD5 |
58f709b7d6d917f83cdda542bf84fcdf
|
|
| BLAKE2b-256 |
6ffc1f48ae9ea1f10caf3bbc31b288d08137835d8965188f6ddcccdb3c7d398e
|
Provenance
The following attestation bundles were made for cast_value_rs-0.4.2-cp313-cp313-macosx_10_12_x86_64.whl:
Publisher:
cd.yml on zarr-developers/cast-value.rs
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
cast_value_rs-0.4.2-cp313-cp313-macosx_10_12_x86_64.whl -
Subject digest:
297445abc64891a2e62af93e4f35bb280f874ac548646d0a6b04a86d45e636a5 - Sigstore transparency entry: 2449244635
- Sigstore integration time:
-
Permalink:
zarr-developers/cast-value.rs@0fc546798ea70e8207ee709994be73aaed187401 -
Branch / Tag:
refs/tags/v0.4.2 - Owner: https://github.com/zarr-developers
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
cd.yml@0fc546798ea70e8207ee709994be73aaed187401 -
Trigger Event:
push
-
Statement type:
File details
Details for the file cast_value_rs-0.4.2-cp312-cp312-win_arm64.whl.
File metadata
- Download URL: cast_value_rs-0.4.2-cp312-cp312-win_arm64.whl
- Upload date:
- Size: 397.8 kB
- Tags: CPython 3.12, Windows ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
b8af7de3639271ad9e62aba4d15ddd22819c706bd7c7859663fdbb022397bdad
|
|
| MD5 |
695a1e74a7725fcd591945de5cd7a170
|
|
| BLAKE2b-256 |
fc497def5933625ff3c98e7d20cbd7de0aa1e83098ffa425a9df087764657767
|
Provenance
The following attestation bundles were made for cast_value_rs-0.4.2-cp312-cp312-win_arm64.whl:
Publisher:
cd.yml on zarr-developers/cast-value.rs
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
cast_value_rs-0.4.2-cp312-cp312-win_arm64.whl -
Subject digest:
b8af7de3639271ad9e62aba4d15ddd22819c706bd7c7859663fdbb022397bdad - Sigstore transparency entry: 2449245899
- Sigstore integration time:
-
Permalink:
zarr-developers/cast-value.rs@0fc546798ea70e8207ee709994be73aaed187401 -
Branch / Tag:
refs/tags/v0.4.2 - Owner: https://github.com/zarr-developers
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
cd.yml@0fc546798ea70e8207ee709994be73aaed187401 -
Trigger Event:
push
-
Statement type:
File details
Details for the file cast_value_rs-0.4.2-cp312-cp312-win_amd64.whl.
File metadata
- Download URL: cast_value_rs-0.4.2-cp312-cp312-win_amd64.whl
- Upload date:
- Size: 442.1 kB
- Tags: CPython 3.12, Windows x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
79a8c13af39bf65014dd6567dc5fa7c42dfda246e4335ab52814f3dd6fb42cac
|
|
| MD5 |
69d0f9f150fb4ab4d6a78ea0348fc83d
|
|
| BLAKE2b-256 |
062609f4618dbab2de8ea427e817c349b8391b4d559316de899e9b54dde6143e
|
Provenance
The following attestation bundles were made for cast_value_rs-0.4.2-cp312-cp312-win_amd64.whl:
Publisher:
cd.yml on zarr-developers/cast-value.rs
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
cast_value_rs-0.4.2-cp312-cp312-win_amd64.whl -
Subject digest:
79a8c13af39bf65014dd6567dc5fa7c42dfda246e4335ab52814f3dd6fb42cac - Sigstore transparency entry: 2449246806
- Sigstore integration time:
-
Permalink:
zarr-developers/cast-value.rs@0fc546798ea70e8207ee709994be73aaed187401 -
Branch / Tag:
refs/tags/v0.4.2 - Owner: https://github.com/zarr-developers
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
cd.yml@0fc546798ea70e8207ee709994be73aaed187401 -
Trigger Event:
push
-
Statement type:
File details
Details for the file cast_value_rs-0.4.2-cp312-cp312-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: cast_value_rs-0.4.2-cp312-cp312-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 753.1 kB
- Tags: CPython 3.12, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
decf297bc576675fff2139885fb88f84844e27b99e5d28eaa01909db7a327c4b
|
|
| MD5 |
d2d54a6a3cfccc6a99e7c5d76ee00493
|
|
| BLAKE2b-256 |
f1543a9280f791c8765a54f7814a010d2f460c7d5f5483be3e5634f4d9b38d75
|
Provenance
The following attestation bundles were made for cast_value_rs-0.4.2-cp312-cp312-musllinux_1_2_x86_64.whl:
Publisher:
cd.yml on zarr-developers/cast-value.rs
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
cast_value_rs-0.4.2-cp312-cp312-musllinux_1_2_x86_64.whl -
Subject digest:
decf297bc576675fff2139885fb88f84844e27b99e5d28eaa01909db7a327c4b - Sigstore transparency entry: 2449246579
- Sigstore integration time:
-
Permalink:
zarr-developers/cast-value.rs@0fc546798ea70e8207ee709994be73aaed187401 -
Branch / Tag:
refs/tags/v0.4.2 - Owner: https://github.com/zarr-developers
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
cd.yml@0fc546798ea70e8207ee709994be73aaed187401 -
Trigger Event:
push
-
Statement type:
File details
Details for the file cast_value_rs-0.4.2-cp312-cp312-musllinux_1_2_i686.whl.
File metadata
- Download URL: cast_value_rs-0.4.2-cp312-cp312-musllinux_1_2_i686.whl
- Upload date:
- Size: 788.5 kB
- Tags: CPython 3.12, musllinux: musl 1.2+ i686
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
8a67648bf47d9b740388efaf6f05185f22dea783e97eba895efdd1dbafe8e3cc
|
|
| MD5 |
fb1e050c9b22be9da0bb2539c1d44181
|
|
| BLAKE2b-256 |
b566ca653bf9b51eb624615623611db28ec9428a351259fcf5625c5520faf759
|
Provenance
The following attestation bundles were made for cast_value_rs-0.4.2-cp312-cp312-musllinux_1_2_i686.whl:
Publisher:
cd.yml on zarr-developers/cast-value.rs
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
cast_value_rs-0.4.2-cp312-cp312-musllinux_1_2_i686.whl -
Subject digest:
8a67648bf47d9b740388efaf6f05185f22dea783e97eba895efdd1dbafe8e3cc - Sigstore transparency entry: 2449246554
- Sigstore integration time:
-
Permalink:
zarr-developers/cast-value.rs@0fc546798ea70e8207ee709994be73aaed187401 -
Branch / Tag:
refs/tags/v0.4.2 - Owner: https://github.com/zarr-developers
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
cd.yml@0fc546798ea70e8207ee709994be73aaed187401 -
Trigger Event:
push
-
Statement type:
File details
Details for the file cast_value_rs-0.4.2-cp312-cp312-musllinux_1_2_armv7l.whl.
File metadata
- Download URL: cast_value_rs-0.4.2-cp312-cp312-musllinux_1_2_armv7l.whl
- Upload date:
- Size: 831.1 kB
- Tags: CPython 3.12, musllinux: musl 1.2+ ARMv7l
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
1b0881c23a8f5ff1dc6c70542179f2fc9191e0b7fa7a02f65316fb48904cd8d1
|
|
| MD5 |
4447a2819b18bdda42f91c91b7a68f3f
|
|
| BLAKE2b-256 |
ce9ffabffd9788f0b2d3f49ca4582b8859ab58b929b1b8837ec0be1263399279
|
Provenance
The following attestation bundles were made for cast_value_rs-0.4.2-cp312-cp312-musllinux_1_2_armv7l.whl:
Publisher:
cd.yml on zarr-developers/cast-value.rs
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
cast_value_rs-0.4.2-cp312-cp312-musllinux_1_2_armv7l.whl -
Subject digest:
1b0881c23a8f5ff1dc6c70542179f2fc9191e0b7fa7a02f65316fb48904cd8d1 - Sigstore transparency entry: 2449244274
- Sigstore integration time:
-
Permalink:
zarr-developers/cast-value.rs@0fc546798ea70e8207ee709994be73aaed187401 -
Branch / Tag:
refs/tags/v0.4.2 - Owner: https://github.com/zarr-developers
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
cd.yml@0fc546798ea70e8207ee709994be73aaed187401 -
Trigger Event:
push
-
Statement type:
File details
Details for the file cast_value_rs-0.4.2-cp312-cp312-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: cast_value_rs-0.4.2-cp312-cp312-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 665.2 kB
- Tags: CPython 3.12, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
92556f1bb9d6b222736d967228565ec745c640c29bc291d1cb730a1011d3dcac
|
|
| MD5 |
874ad838df3bf7bb65c2beda9c8957e6
|
|
| BLAKE2b-256 |
9097b489f8048491f2ece21bf99d5a1fea3bbfaf3cd0e9f555ac4a0352c11d81
|
Provenance
The following attestation bundles were made for cast_value_rs-0.4.2-cp312-cp312-musllinux_1_2_aarch64.whl:
Publisher:
cd.yml on zarr-developers/cast-value.rs
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
cast_value_rs-0.4.2-cp312-cp312-musllinux_1_2_aarch64.whl -
Subject digest:
92556f1bb9d6b222736d967228565ec745c640c29bc291d1cb730a1011d3dcac - Sigstore transparency entry: 2449244332
- Sigstore integration time:
-
Permalink:
zarr-developers/cast-value.rs@0fc546798ea70e8207ee709994be73aaed187401 -
Branch / Tag:
refs/tags/v0.4.2 - Owner: https://github.com/zarr-developers
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
cd.yml@0fc546798ea70e8207ee709994be73aaed187401 -
Trigger Event:
push
-
Statement type:
File details
Details for the file cast_value_rs-0.4.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: cast_value_rs-0.4.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 549.2 kB
- Tags: CPython 3.12, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
686ea86aad1ffebd0b6793549043108600593a85032457eb88a3a0513a4100f5
|
|
| MD5 |
df587da30286fdfba06b546bc90e2e0c
|
|
| BLAKE2b-256 |
d487edb215d17da304a6b36489fc51b8eb785c5b041c2fcc5f200f16adde3133
|
Provenance
The following attestation bundles were made for cast_value_rs-0.4.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:
Publisher:
cd.yml on zarr-developers/cast-value.rs
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
cast_value_rs-0.4.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl -
Subject digest:
686ea86aad1ffebd0b6793549043108600593a85032457eb88a3a0513a4100f5 - Sigstore transparency entry: 2449245561
- Sigstore integration time:
-
Permalink:
zarr-developers/cast-value.rs@0fc546798ea70e8207ee709994be73aaed187401 -
Branch / Tag:
refs/tags/v0.4.2 - Owner: https://github.com/zarr-developers
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
cd.yml@0fc546798ea70e8207ee709994be73aaed187401 -
Trigger Event:
push
-
Statement type:
File details
Details for the file cast_value_rs-0.4.2-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl.
File metadata
- Download URL: cast_value_rs-0.4.2-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
- Upload date:
- Size: 561.0 kB
- Tags: CPython 3.12, manylinux: glibc 2.17+ s390x
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
8184135c78ebcabb904574a1b3bc5704c131140feae1b58d65c888fe08b46029
|
|
| MD5 |
cb362fecf184cd01575976e0ffa5f60a
|
|
| BLAKE2b-256 |
832a452cf37675af02c3ac8bfa01fc962cb744a1392c51bccfb6d1faca423067
|
Provenance
The following attestation bundles were made for cast_value_rs-0.4.2-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl:
Publisher:
cd.yml on zarr-developers/cast-value.rs
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
cast_value_rs-0.4.2-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl -
Subject digest:
8184135c78ebcabb904574a1b3bc5704c131140feae1b58d65c888fe08b46029 - Sigstore transparency entry: 2449246714
- Sigstore integration time:
-
Permalink:
zarr-developers/cast-value.rs@0fc546798ea70e8207ee709994be73aaed187401 -
Branch / Tag:
refs/tags/v0.4.2 - Owner: https://github.com/zarr-developers
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
cd.yml@0fc546798ea70e8207ee709994be73aaed187401 -
Trigger Event:
push
-
Statement type:
File details
Details for the file cast_value_rs-0.4.2-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.
File metadata
- Download URL: cast_value_rs-0.4.2-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
- Upload date:
- Size: 650.9 kB
- Tags: CPython 3.12, manylinux: glibc 2.17+ ppc64le
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
73fb23256dda16e4e9f49bfedebe0e068f00ece85091b526c102618f66144216
|
|
| MD5 |
17d0e5895577d91e77e2f38694f2ccde
|
|
| BLAKE2b-256 |
4a1b4105fabec3268139bda3555422808211ec29428e17fa56566c1af7957c04
|
Provenance
The following attestation bundles were made for cast_value_rs-0.4.2-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl:
Publisher:
cd.yml on zarr-developers/cast-value.rs
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
cast_value_rs-0.4.2-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl -
Subject digest:
73fb23256dda16e4e9f49bfedebe0e068f00ece85091b526c102618f66144216 - Sigstore transparency entry: 2449245485
- Sigstore integration time:
-
Permalink:
zarr-developers/cast-value.rs@0fc546798ea70e8207ee709994be73aaed187401 -
Branch / Tag:
refs/tags/v0.4.2 - Owner: https://github.com/zarr-developers
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
cd.yml@0fc546798ea70e8207ee709994be73aaed187401 -
Trigger Event:
push
-
Statement type:
File details
Details for the file cast_value_rs-0.4.2-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.
File metadata
- Download URL: cast_value_rs-0.4.2-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
- Upload date:
- Size: 555.5 kB
- Tags: CPython 3.12, manylinux: glibc 2.17+ ARMv7l
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
fbf145ed6f724fa7f5ddc9715f78e0d450ac141fc05299c83b2e7d627793ddaf
|
|
| MD5 |
eaab0ab56a1072c637455e58eaa5230f
|
|
| BLAKE2b-256 |
a90f69befc7905af2e73a2739b26444787cd528331c041f37235f3853bf15f75
|
Provenance
The following attestation bundles were made for cast_value_rs-0.4.2-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl:
Publisher:
cd.yml on zarr-developers/cast-value.rs
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
cast_value_rs-0.4.2-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl -
Subject digest:
fbf145ed6f724fa7f5ddc9715f78e0d450ac141fc05299c83b2e7d627793ddaf - Sigstore transparency entry: 2449245667
- Sigstore integration time:
-
Permalink:
zarr-developers/cast-value.rs@0fc546798ea70e8207ee709994be73aaed187401 -
Branch / Tag:
refs/tags/v0.4.2 - Owner: https://github.com/zarr-developers
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
cd.yml@0fc546798ea70e8207ee709994be73aaed187401 -
Trigger Event:
push
-
Statement type:
File details
Details for the file cast_value_rs-0.4.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: cast_value_rs-0.4.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 487.6 kB
- Tags: CPython 3.12, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
68492eef745691c80754cd027e216dbd5f7a4ce2e07fddfded3ee59bd947afb5
|
|
| MD5 |
803c478af733a55f90b8a59d66209314
|
|
| BLAKE2b-256 |
910be50ac2eb271eb6c34402b4abe317c795bc7d650d332d0bf422ae868aa2cd
|
Provenance
The following attestation bundles were made for cast_value_rs-0.4.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:
Publisher:
cd.yml on zarr-developers/cast-value.rs
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
cast_value_rs-0.4.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl -
Subject digest:
68492eef745691c80754cd027e216dbd5f7a4ce2e07fddfded3ee59bd947afb5 - Sigstore transparency entry: 2449245156
- Sigstore integration time:
-
Permalink:
zarr-developers/cast-value.rs@0fc546798ea70e8207ee709994be73aaed187401 -
Branch / Tag:
refs/tags/v0.4.2 - Owner: https://github.com/zarr-developers
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
cd.yml@0fc546798ea70e8207ee709994be73aaed187401 -
Trigger Event:
push
-
Statement type:
File details
Details for the file cast_value_rs-0.4.2-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl.
File metadata
- Download URL: cast_value_rs-0.4.2-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl
- Upload date:
- Size: 591.0 kB
- Tags: CPython 3.12, manylinux: glibc 2.5+ i686
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
d6c425d2803e13408755a0022faa9efd0ab0becdf3573a1a8a7af64b1adee4ba
|
|
| MD5 |
36489c0fb9702d3ca2fa7b0cacc9ed57
|
|
| BLAKE2b-256 |
63820f9963ef0bcb434cd1244cb2620123c2d71763d429d017ceb98fbb6faf48
|
Provenance
The following attestation bundles were made for cast_value_rs-0.4.2-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl:
Publisher:
cd.yml on zarr-developers/cast-value.rs
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
cast_value_rs-0.4.2-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl -
Subject digest:
d6c425d2803e13408755a0022faa9efd0ab0becdf3573a1a8a7af64b1adee4ba - Sigstore transparency entry: 2449243882
- Sigstore integration time:
-
Permalink:
zarr-developers/cast-value.rs@0fc546798ea70e8207ee709994be73aaed187401 -
Branch / Tag:
refs/tags/v0.4.2 - Owner: https://github.com/zarr-developers
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
cd.yml@0fc546798ea70e8207ee709994be73aaed187401 -
Trigger Event:
push
-
Statement type:
File details
Details for the file cast_value_rs-0.4.2-cp312-cp312-macosx_11_0_arm64.whl.
File metadata
- Download URL: cast_value_rs-0.4.2-cp312-cp312-macosx_11_0_arm64.whl
- Upload date:
- Size: 458.5 kB
- Tags: CPython 3.12, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
8c953321ff7954e0fe1b25c1baf96f0a9cae0961b8a56ce63dc7b94e2ea7d85c
|
|
| MD5 |
a4901ebe855c47cebe9999aca411c411
|
|
| BLAKE2b-256 |
8f5310ece0b4ba4a0c156674c2db7e5d05ce9b04efe72e191417546e111d645c
|
Provenance
The following attestation bundles were made for cast_value_rs-0.4.2-cp312-cp312-macosx_11_0_arm64.whl:
Publisher:
cd.yml on zarr-developers/cast-value.rs
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
cast_value_rs-0.4.2-cp312-cp312-macosx_11_0_arm64.whl -
Subject digest:
8c953321ff7954e0fe1b25c1baf96f0a9cae0961b8a56ce63dc7b94e2ea7d85c - Sigstore transparency entry: 2449244975
- Sigstore integration time:
-
Permalink:
zarr-developers/cast-value.rs@0fc546798ea70e8207ee709994be73aaed187401 -
Branch / Tag:
refs/tags/v0.4.2 - Owner: https://github.com/zarr-developers
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
cd.yml@0fc546798ea70e8207ee709994be73aaed187401 -
Trigger Event:
push
-
Statement type:
File details
Details for the file cast_value_rs-0.4.2-cp312-cp312-macosx_10_12_x86_64.whl.
File metadata
- Download URL: cast_value_rs-0.4.2-cp312-cp312-macosx_10_12_x86_64.whl
- Upload date:
- Size: 494.4 kB
- Tags: CPython 3.12, macOS 10.12+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
6d8e1c6d7b0fec6b1060f83867d20ebd0cb1ac6fa2954cd82f418a31a96ac504
|
|
| MD5 |
0bdb2a11a7742483f179427738bdbff7
|
|
| BLAKE2b-256 |
67c79db59d415df2d1c9f905c4da951fe023c6259a162584ef68bd81c171d448
|
Provenance
The following attestation bundles were made for cast_value_rs-0.4.2-cp312-cp312-macosx_10_12_x86_64.whl:
Publisher:
cd.yml on zarr-developers/cast-value.rs
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
cast_value_rs-0.4.2-cp312-cp312-macosx_10_12_x86_64.whl -
Subject digest:
6d8e1c6d7b0fec6b1060f83867d20ebd0cb1ac6fa2954cd82f418a31a96ac504 - Sigstore transparency entry: 2449245049
- Sigstore integration time:
-
Permalink:
zarr-developers/cast-value.rs@0fc546798ea70e8207ee709994be73aaed187401 -
Branch / Tag:
refs/tags/v0.4.2 - Owner: https://github.com/zarr-developers
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
cd.yml@0fc546798ea70e8207ee709994be73aaed187401 -
Trigger Event:
push
-
Statement type:
File details
Details for the file cast_value_rs-0.4.2-cp311-cp311-win_amd64.whl.
File metadata
- Download URL: cast_value_rs-0.4.2-cp311-cp311-win_amd64.whl
- Upload date:
- Size: 426.1 kB
- Tags: CPython 3.11, Windows x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
065a4a47e65e9adbf3a4a973f6c714137806cdba6dcdff2cf0709144e1446b7a
|
|
| MD5 |
986bcb44c7e63cb2d54b38eb6f30bcb5
|
|
| BLAKE2b-256 |
ac04b589b4a37e3166b450bd66eebbc38a5354827a21cd1bcda678a8c8e10da8
|
Provenance
The following attestation bundles were made for cast_value_rs-0.4.2-cp311-cp311-win_amd64.whl:
Publisher:
cd.yml on zarr-developers/cast-value.rs
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
cast_value_rs-0.4.2-cp311-cp311-win_amd64.whl -
Subject digest:
065a4a47e65e9adbf3a4a973f6c714137806cdba6dcdff2cf0709144e1446b7a - Sigstore transparency entry: 2449246449
- Sigstore integration time:
-
Permalink:
zarr-developers/cast-value.rs@0fc546798ea70e8207ee709994be73aaed187401 -
Branch / Tag:
refs/tags/v0.4.2 - Owner: https://github.com/zarr-developers
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
cd.yml@0fc546798ea70e8207ee709994be73aaed187401 -
Trigger Event:
push
-
Statement type:
File details
Details for the file cast_value_rs-0.4.2-cp311-cp311-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: cast_value_rs-0.4.2-cp311-cp311-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 736.6 kB
- Tags: CPython 3.11, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
531013a85ddaa7a70bbdf9a0af251fde12364ed00f4498a7100e74b33ba1f35d
|
|
| MD5 |
403d2e78d1ef1d7427bd02deffbbcb92
|
|
| BLAKE2b-256 |
1505c87aff2899314b08ed5642cb00f4793c3c8067d3fefdff4b2d5fdebf0d82
|
Provenance
The following attestation bundles were made for cast_value_rs-0.4.2-cp311-cp311-musllinux_1_2_x86_64.whl:
Publisher:
cd.yml on zarr-developers/cast-value.rs
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
cast_value_rs-0.4.2-cp311-cp311-musllinux_1_2_x86_64.whl -
Subject digest:
531013a85ddaa7a70bbdf9a0af251fde12364ed00f4498a7100e74b33ba1f35d - Sigstore transparency entry: 2449244831
- Sigstore integration time:
-
Permalink:
zarr-developers/cast-value.rs@0fc546798ea70e8207ee709994be73aaed187401 -
Branch / Tag:
refs/tags/v0.4.2 - Owner: https://github.com/zarr-developers
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
cd.yml@0fc546798ea70e8207ee709994be73aaed187401 -
Trigger Event:
push
-
Statement type:
File details
Details for the file cast_value_rs-0.4.2-cp311-cp311-musllinux_1_2_i686.whl.
File metadata
- Download URL: cast_value_rs-0.4.2-cp311-cp311-musllinux_1_2_i686.whl
- Upload date:
- Size: 769.7 kB
- Tags: CPython 3.11, musllinux: musl 1.2+ i686
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
8a9510742db0489e989d0e49334fc438962a75db1e328c98a05a443c7a31125c
|
|
| MD5 |
0fbf4a05cbe340e8a82287845cd81063
|
|
| BLAKE2b-256 |
39303fa821a77428dfe87a9ca7233e56a4f55336b41239b22bca87365c20ea8a
|
Provenance
The following attestation bundles were made for cast_value_rs-0.4.2-cp311-cp311-musllinux_1_2_i686.whl:
Publisher:
cd.yml on zarr-developers/cast-value.rs
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
cast_value_rs-0.4.2-cp311-cp311-musllinux_1_2_i686.whl -
Subject digest:
8a9510742db0489e989d0e49334fc438962a75db1e328c98a05a443c7a31125c - Sigstore transparency entry: 2449245014
- Sigstore integration time:
-
Permalink:
zarr-developers/cast-value.rs@0fc546798ea70e8207ee709994be73aaed187401 -
Branch / Tag:
refs/tags/v0.4.2 - Owner: https://github.com/zarr-developers
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
cd.yml@0fc546798ea70e8207ee709994be73aaed187401 -
Trigger Event:
push
-
Statement type:
File details
Details for the file cast_value_rs-0.4.2-cp311-cp311-musllinux_1_2_armv7l.whl.
File metadata
- Download URL: cast_value_rs-0.4.2-cp311-cp311-musllinux_1_2_armv7l.whl
- Upload date:
- Size: 825.3 kB
- Tags: CPython 3.11, musllinux: musl 1.2+ ARMv7l
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
915d5c06fad6c0b9c5eb40992e9b9cdcbb380ee64b1860cab7892f1c4b210a81
|
|
| MD5 |
8e97bc8ae4f4ea44aba86e105579e6a3
|
|
| BLAKE2b-256 |
efd376f02d910141042a128e698bd6e1276c4053646a843efca0d6afa4496463
|
Provenance
The following attestation bundles were made for cast_value_rs-0.4.2-cp311-cp311-musllinux_1_2_armv7l.whl:
Publisher:
cd.yml on zarr-developers/cast-value.rs
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
cast_value_rs-0.4.2-cp311-cp311-musllinux_1_2_armv7l.whl -
Subject digest:
915d5c06fad6c0b9c5eb40992e9b9cdcbb380ee64b1860cab7892f1c4b210a81 - Sigstore transparency entry: 2449243716
- Sigstore integration time:
-
Permalink:
zarr-developers/cast-value.rs@0fc546798ea70e8207ee709994be73aaed187401 -
Branch / Tag:
refs/tags/v0.4.2 - Owner: https://github.com/zarr-developers
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
cd.yml@0fc546798ea70e8207ee709994be73aaed187401 -
Trigger Event:
push
-
Statement type:
File details
Details for the file cast_value_rs-0.4.2-cp311-cp311-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: cast_value_rs-0.4.2-cp311-cp311-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 664.3 kB
- Tags: CPython 3.11, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
745bb4d8f352f0652c6f0e9d2c249acf4576085ed55065d09ff0b011a7811c47
|
|
| MD5 |
97af86e0f28ccd9a3b8856cd92e7bdb3
|
|
| BLAKE2b-256 |
fe7f9b977606f396224f179bbc1d7eb2f6a1207dd010017291f9e793a6fcfe36
|
Provenance
The following attestation bundles were made for cast_value_rs-0.4.2-cp311-cp311-musllinux_1_2_aarch64.whl:
Publisher:
cd.yml on zarr-developers/cast-value.rs
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
cast_value_rs-0.4.2-cp311-cp311-musllinux_1_2_aarch64.whl -
Subject digest:
745bb4d8f352f0652c6f0e9d2c249acf4576085ed55065d09ff0b011a7811c47 - Sigstore transparency entry: 2449243840
- Sigstore integration time:
-
Permalink:
zarr-developers/cast-value.rs@0fc546798ea70e8207ee709994be73aaed187401 -
Branch / Tag:
refs/tags/v0.4.2 - Owner: https://github.com/zarr-developers
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
cd.yml@0fc546798ea70e8207ee709994be73aaed187401 -
Trigger Event:
push
-
Statement type:
File details
Details for the file cast_value_rs-0.4.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: cast_value_rs-0.4.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 530.3 kB
- Tags: CPython 3.11, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
6e4321d2f7929d7278f13afc2d2d8dd47a7e443d0c8dd9238517c6436395cade
|
|
| MD5 |
3173643e6c46c0fbd2df4e866f46e5a4
|
|
| BLAKE2b-256 |
626d241b91521dc57f84a2eb5d02874cea7d541cd0dabfa9d6c4a76ec03d212d
|
Provenance
The following attestation bundles were made for cast_value_rs-0.4.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:
Publisher:
cd.yml on zarr-developers/cast-value.rs
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
cast_value_rs-0.4.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl -
Subject digest:
6e4321d2f7929d7278f13afc2d2d8dd47a7e443d0c8dd9238517c6436395cade - Sigstore transparency entry: 2449243816
- Sigstore integration time:
-
Permalink:
zarr-developers/cast-value.rs@0fc546798ea70e8207ee709994be73aaed187401 -
Branch / Tag:
refs/tags/v0.4.2 - Owner: https://github.com/zarr-developers
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
cd.yml@0fc546798ea70e8207ee709994be73aaed187401 -
Trigger Event:
push
-
Statement type:
File details
Details for the file cast_value_rs-0.4.2-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl.
File metadata
- Download URL: cast_value_rs-0.4.2-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
- Upload date:
- Size: 549.2 kB
- Tags: CPython 3.11, manylinux: glibc 2.17+ s390x
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
58c0cdc35435519c528d43eda661575bb101bae9504887c343a9b3b635419c5c
|
|
| MD5 |
c98aa82646ac8a88facad02770c51144
|
|
| BLAKE2b-256 |
d85918fbda67d710859fd96d4d554e5de2b93528dc051bd571adbe987ecc014a
|
Provenance
The following attestation bundles were made for cast_value_rs-0.4.2-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl:
Publisher:
cd.yml on zarr-developers/cast-value.rs
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
cast_value_rs-0.4.2-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl -
Subject digest:
58c0cdc35435519c528d43eda661575bb101bae9504887c343a9b3b635419c5c - Sigstore transparency entry: 2449243733
- Sigstore integration time:
-
Permalink:
zarr-developers/cast-value.rs@0fc546798ea70e8207ee709994be73aaed187401 -
Branch / Tag:
refs/tags/v0.4.2 - Owner: https://github.com/zarr-developers
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
cd.yml@0fc546798ea70e8207ee709994be73aaed187401 -
Trigger Event:
push
-
Statement type:
File details
Details for the file cast_value_rs-0.4.2-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.
File metadata
- Download URL: cast_value_rs-0.4.2-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
- Upload date:
- Size: 652.4 kB
- Tags: CPython 3.11, manylinux: glibc 2.17+ ppc64le
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
31e09e714a295917475bc732842aa67ea902fa98e42783be00a84505af6950c1
|
|
| MD5 |
e1e3dadbc2d659cd3a30ff9b9a4de3e5
|
|
| BLAKE2b-256 |
53acc9ec034852dbeb0ee38b14e8ba11119e214a95a0445b4f5adf026b37026a
|
Provenance
The following attestation bundles were made for cast_value_rs-0.4.2-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl:
Publisher:
cd.yml on zarr-developers/cast-value.rs
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
cast_value_rs-0.4.2-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl -
Subject digest:
31e09e714a295917475bc732842aa67ea902fa98e42783be00a84505af6950c1 - Sigstore transparency entry: 2449244019
- Sigstore integration time:
-
Permalink:
zarr-developers/cast-value.rs@0fc546798ea70e8207ee709994be73aaed187401 -
Branch / Tag:
refs/tags/v0.4.2 - Owner: https://github.com/zarr-developers
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
cd.yml@0fc546798ea70e8207ee709994be73aaed187401 -
Trigger Event:
push
-
Statement type:
File details
Details for the file cast_value_rs-0.4.2-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.
File metadata
- Download URL: cast_value_rs-0.4.2-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
- Upload date:
- Size: 549.3 kB
- Tags: CPython 3.11, manylinux: glibc 2.17+ ARMv7l
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
7dc2c72df9292a6ab47556280f8f8587501fa60268eda79f1c5700cc30450972
|
|
| MD5 |
311c20eb3dc078114c41a4d3c5d7b650
|
|
| BLAKE2b-256 |
5f96d7245b0fd9731a80127b9626c645b787ccb3d47444aa8585f74ab2b22532
|
Provenance
The following attestation bundles were made for cast_value_rs-0.4.2-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl:
Publisher:
cd.yml on zarr-developers/cast-value.rs
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
cast_value_rs-0.4.2-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl -
Subject digest:
7dc2c72df9292a6ab47556280f8f8587501fa60268eda79f1c5700cc30450972 - Sigstore transparency entry: 2449246687
- Sigstore integration time:
-
Permalink:
zarr-developers/cast-value.rs@0fc546798ea70e8207ee709994be73aaed187401 -
Branch / Tag:
refs/tags/v0.4.2 - Owner: https://github.com/zarr-developers
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
cd.yml@0fc546798ea70e8207ee709994be73aaed187401 -
Trigger Event:
push
-
Statement type:
File details
Details for the file cast_value_rs-0.4.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: cast_value_rs-0.4.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 486.8 kB
- Tags: CPython 3.11, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
dcbd19845bb93b7a1ae3848bdfb0ecf69569b5958fe93184a48fc820b6ef32fd
|
|
| MD5 |
404ff76a90138dcd175b59752dcaeeca
|
|
| BLAKE2b-256 |
a1ae9d3f0866446b866f2ccdbafc039320c9675f472cd26bfb225b74a1b218e6
|
Provenance
The following attestation bundles were made for cast_value_rs-0.4.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:
Publisher:
cd.yml on zarr-developers/cast-value.rs
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
cast_value_rs-0.4.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl -
Subject digest:
dcbd19845bb93b7a1ae3848bdfb0ecf69569b5958fe93184a48fc820b6ef32fd - Sigstore transparency entry: 2449246639
- Sigstore integration time:
-
Permalink:
zarr-developers/cast-value.rs@0fc546798ea70e8207ee709994be73aaed187401 -
Branch / Tag:
refs/tags/v0.4.2 - Owner: https://github.com/zarr-developers
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
cd.yml@0fc546798ea70e8207ee709994be73aaed187401 -
Trigger Event:
push
-
Statement type:
File details
Details for the file cast_value_rs-0.4.2-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl.
File metadata
- Download URL: cast_value_rs-0.4.2-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl
- Upload date:
- Size: 573.2 kB
- Tags: CPython 3.11, manylinux: glibc 2.5+ i686
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
5c4fb678f20f1eb0d50519ae35d2b623f2c54ba97263ae01d4ad14b3006d32ae
|
|
| MD5 |
f85efddbb58774e09a7ee02274d84210
|
|
| BLAKE2b-256 |
df258eb9ab38a2de87f1574a58a23fd6a0b656526abee8812832af65f033d75c
|
Provenance
The following attestation bundles were made for cast_value_rs-0.4.2-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl:
Publisher:
cd.yml on zarr-developers/cast-value.rs
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
cast_value_rs-0.4.2-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl -
Subject digest:
5c4fb678f20f1eb0d50519ae35d2b623f2c54ba97263ae01d4ad14b3006d32ae - Sigstore transparency entry: 2449244577
- Sigstore integration time:
-
Permalink:
zarr-developers/cast-value.rs@0fc546798ea70e8207ee709994be73aaed187401 -
Branch / Tag:
refs/tags/v0.4.2 - Owner: https://github.com/zarr-developers
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
cd.yml@0fc546798ea70e8207ee709994be73aaed187401 -
Trigger Event:
push
-
Statement type:
File details
Details for the file cast_value_rs-0.4.2-cp311-cp311-macosx_11_0_arm64.whl.
File metadata
- Download URL: cast_value_rs-0.4.2-cp311-cp311-macosx_11_0_arm64.whl
- Upload date:
- Size: 481.0 kB
- Tags: CPython 3.11, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
b430536be9336c8198307b46d59a62e4e15a6cbb64606a7b821b6f0eecf243b7
|
|
| MD5 |
b553a6cb5ec9ccc79ab7361bbe57c09c
|
|
| BLAKE2b-256 |
b5c2324ce39b3913e5ce960a49540a1ffc759dd0e694f7f374d50e29254e9a2b
|
Provenance
The following attestation bundles were made for cast_value_rs-0.4.2-cp311-cp311-macosx_11_0_arm64.whl:
Publisher:
cd.yml on zarr-developers/cast-value.rs
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
cast_value_rs-0.4.2-cp311-cp311-macosx_11_0_arm64.whl -
Subject digest:
b430536be9336c8198307b46d59a62e4e15a6cbb64606a7b821b6f0eecf243b7 - Sigstore transparency entry: 2449243941
- Sigstore integration time:
-
Permalink:
zarr-developers/cast-value.rs@0fc546798ea70e8207ee709994be73aaed187401 -
Branch / Tag:
refs/tags/v0.4.2 - Owner: https://github.com/zarr-developers
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
cd.yml@0fc546798ea70e8207ee709994be73aaed187401 -
Trigger Event:
push
-
Statement type:
File details
Details for the file cast_value_rs-0.4.2-cp311-cp311-macosx_10_12_x86_64.whl.
File metadata
- Download URL: cast_value_rs-0.4.2-cp311-cp311-macosx_10_12_x86_64.whl
- Upload date:
- Size: 522.7 kB
- Tags: CPython 3.11, macOS 10.12+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
f435d4a1291a552309f6efdb88fa13b5dae0642a269adebed47603909014b5ea
|
|
| MD5 |
1b22ea85d5d4c662fae4cdeeed71cbae
|
|
| BLAKE2b-256 |
000c7fadd0df77a1f1764bee8ab0b9f169e1b23f3af85e56d6d70e13553acb78
|
Provenance
The following attestation bundles were made for cast_value_rs-0.4.2-cp311-cp311-macosx_10_12_x86_64.whl:
Publisher:
cd.yml on zarr-developers/cast-value.rs
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
cast_value_rs-0.4.2-cp311-cp311-macosx_10_12_x86_64.whl -
Subject digest:
f435d4a1291a552309f6efdb88fa13b5dae0642a269adebed47603909014b5ea - Sigstore transparency entry: 2449245237
- Sigstore integration time:
-
Permalink:
zarr-developers/cast-value.rs@0fc546798ea70e8207ee709994be73aaed187401 -
Branch / Tag:
refs/tags/v0.4.2 - Owner: https://github.com/zarr-developers
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
cd.yml@0fc546798ea70e8207ee709994be73aaed187401 -
Trigger Event:
push
-
Statement type:
File details
Details for the file cast_value_rs-0.4.2-cp310-cp310-win_amd64.whl.
File metadata
- Download URL: cast_value_rs-0.4.2-cp310-cp310-win_amd64.whl
- Upload date:
- Size: 426.2 kB
- Tags: CPython 3.10, Windows x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
9f5968377ab9f0cb6407fe9aca791b24d7af288ae0777749856a433746312550
|
|
| MD5 |
5817a084b4b3d43bc615a9e6aec17095
|
|
| BLAKE2b-256 |
32ea57715a5bab78cc17e5f2cc7be8b8e90fd450df4acb6c1c46d0194c7de7ed
|
Provenance
The following attestation bundles were made for cast_value_rs-0.4.2-cp310-cp310-win_amd64.whl:
Publisher:
cd.yml on zarr-developers/cast-value.rs
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
cast_value_rs-0.4.2-cp310-cp310-win_amd64.whl -
Subject digest:
9f5968377ab9f0cb6407fe9aca791b24d7af288ae0777749856a433746312550 - Sigstore transparency entry: 2449243782
- Sigstore integration time:
-
Permalink:
zarr-developers/cast-value.rs@0fc546798ea70e8207ee709994be73aaed187401 -
Branch / Tag:
refs/tags/v0.4.2 - Owner: https://github.com/zarr-developers
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
cd.yml@0fc546798ea70e8207ee709994be73aaed187401 -
Trigger Event:
push
-
Statement type:
File details
Details for the file cast_value_rs-0.4.2-cp310-cp310-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: cast_value_rs-0.4.2-cp310-cp310-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 737.1 kB
- Tags: CPython 3.10, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
9d52b7b5974d1f372ca8addd47e9a561adc4eb9e5e21aa6c85c2bedac80686ec
|
|
| MD5 |
05fc46e879347729714a25113f8fd114
|
|
| BLAKE2b-256 |
8a267c105fcc3ce499d08ef782a2d5a6eeb21ad4634f271cba7a92663b6b14b6
|
Provenance
The following attestation bundles were made for cast_value_rs-0.4.2-cp310-cp310-musllinux_1_2_x86_64.whl:
Publisher:
cd.yml on zarr-developers/cast-value.rs
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
cast_value_rs-0.4.2-cp310-cp310-musllinux_1_2_x86_64.whl -
Subject digest:
9d52b7b5974d1f372ca8addd47e9a561adc4eb9e5e21aa6c85c2bedac80686ec - Sigstore transparency entry: 2449244433
- Sigstore integration time:
-
Permalink:
zarr-developers/cast-value.rs@0fc546798ea70e8207ee709994be73aaed187401 -
Branch / Tag:
refs/tags/v0.4.2 - Owner: https://github.com/zarr-developers
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
cd.yml@0fc546798ea70e8207ee709994be73aaed187401 -
Trigger Event:
push
-
Statement type:
File details
Details for the file cast_value_rs-0.4.2-cp310-cp310-musllinux_1_2_i686.whl.
File metadata
- Download URL: cast_value_rs-0.4.2-cp310-cp310-musllinux_1_2_i686.whl
- Upload date:
- Size: 769.9 kB
- Tags: CPython 3.10, musllinux: musl 1.2+ i686
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
c03fb6d7d9587a4b6384b4398659a74e7c9980ee3bff789eff7e012b0f93708b
|
|
| MD5 |
3c86fea51c84515e6f4f281c73b09581
|
|
| BLAKE2b-256 |
d2292a5308c1deabc1a99e18060a6f3d18a6eb41095bc4ac936d8170808fc0e8
|
Provenance
The following attestation bundles were made for cast_value_rs-0.4.2-cp310-cp310-musllinux_1_2_i686.whl:
Publisher:
cd.yml on zarr-developers/cast-value.rs
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
cast_value_rs-0.4.2-cp310-cp310-musllinux_1_2_i686.whl -
Subject digest:
c03fb6d7d9587a4b6384b4398659a74e7c9980ee3bff789eff7e012b0f93708b - Sigstore transparency entry: 2449243863
- Sigstore integration time:
-
Permalink:
zarr-developers/cast-value.rs@0fc546798ea70e8207ee709994be73aaed187401 -
Branch / Tag:
refs/tags/v0.4.2 - Owner: https://github.com/zarr-developers
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
cd.yml@0fc546798ea70e8207ee709994be73aaed187401 -
Trigger Event:
push
-
Statement type:
File details
Details for the file cast_value_rs-0.4.2-cp310-cp310-musllinux_1_2_armv7l.whl.
File metadata
- Download URL: cast_value_rs-0.4.2-cp310-cp310-musllinux_1_2_armv7l.whl
- Upload date:
- Size: 825.5 kB
- Tags: CPython 3.10, musllinux: musl 1.2+ ARMv7l
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
dfb2e6e88683c7f5f378a7fb4e5b1bb384ff4b4a4ce8652f9555ec8617114683
|
|
| MD5 |
e3fa73aa2040d5ae2488bc446c19dcd2
|
|
| BLAKE2b-256 |
55670c9b67eeda7a8ebffd6220370278e888e399fd314feb10a2539c2c7daa7b
|
Provenance
The following attestation bundles were made for cast_value_rs-0.4.2-cp310-cp310-musllinux_1_2_armv7l.whl:
Publisher:
cd.yml on zarr-developers/cast-value.rs
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
cast_value_rs-0.4.2-cp310-cp310-musllinux_1_2_armv7l.whl -
Subject digest:
dfb2e6e88683c7f5f378a7fb4e5b1bb384ff4b4a4ce8652f9555ec8617114683 - Sigstore transparency entry: 2449245623
- Sigstore integration time:
-
Permalink:
zarr-developers/cast-value.rs@0fc546798ea70e8207ee709994be73aaed187401 -
Branch / Tag:
refs/tags/v0.4.2 - Owner: https://github.com/zarr-developers
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
cd.yml@0fc546798ea70e8207ee709994be73aaed187401 -
Trigger Event:
push
-
Statement type:
File details
Details for the file cast_value_rs-0.4.2-cp310-cp310-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: cast_value_rs-0.4.2-cp310-cp310-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 664.6 kB
- Tags: CPython 3.10, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
923740c5d2824c556516dbdcd1ee50490df10ec042900898417166bfb66cef90
|
|
| MD5 |
5547ea80e2058cf13033fb8d09f19240
|
|
| BLAKE2b-256 |
5b5ce8caacc0cf6f9f7d38789e21d7140a73d97ea45717d97f68b4186c15240d
|
Provenance
The following attestation bundles were made for cast_value_rs-0.4.2-cp310-cp310-musllinux_1_2_aarch64.whl:
Publisher:
cd.yml on zarr-developers/cast-value.rs
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
cast_value_rs-0.4.2-cp310-cp310-musllinux_1_2_aarch64.whl -
Subject digest:
923740c5d2824c556516dbdcd1ee50490df10ec042900898417166bfb66cef90 - Sigstore transparency entry: 2449243693
- Sigstore integration time:
-
Permalink:
zarr-developers/cast-value.rs@0fc546798ea70e8207ee709994be73aaed187401 -
Branch / Tag:
refs/tags/v0.4.2 - Owner: https://github.com/zarr-developers
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
cd.yml@0fc546798ea70e8207ee709994be73aaed187401 -
Trigger Event:
push
-
Statement type:
File details
Details for the file cast_value_rs-0.4.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: cast_value_rs-0.4.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 530.4 kB
- Tags: CPython 3.10, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
b95151976f4eeab84967a77cc9c84c09b2f965058e1866ebc27318d616f159e3
|
|
| MD5 |
9b66cd73d8c64537beb6aa62e7b283ff
|
|
| BLAKE2b-256 |
87c25b458d78b8822f0ebdd10f560acf32cf40a45484941fd9a4030b1922a006
|
Provenance
The following attestation bundles were made for cast_value_rs-0.4.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:
Publisher:
cd.yml on zarr-developers/cast-value.rs
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
cast_value_rs-0.4.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl -
Subject digest:
b95151976f4eeab84967a77cc9c84c09b2f965058e1866ebc27318d616f159e3 - Sigstore transparency entry: 2449246089
- Sigstore integration time:
-
Permalink:
zarr-developers/cast-value.rs@0fc546798ea70e8207ee709994be73aaed187401 -
Branch / Tag:
refs/tags/v0.4.2 - Owner: https://github.com/zarr-developers
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
cd.yml@0fc546798ea70e8207ee709994be73aaed187401 -
Trigger Event:
push
-
Statement type:
File details
Details for the file cast_value_rs-0.4.2-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl.
File metadata
- Download URL: cast_value_rs-0.4.2-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
- Upload date:
- Size: 549.3 kB
- Tags: CPython 3.10, manylinux: glibc 2.17+ s390x
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
41348b375acc9224c562c08727ebcdf8c3f8bc8b60e0d0df045b4d7a0329867a
|
|
| MD5 |
0645326f76f9abdf890b66d5f9b26fd7
|
|
| BLAKE2b-256 |
6d1253e85b3bcecfe8081bec7125dac331b36ce0c44606161a32198d8707e159
|
Provenance
The following attestation bundles were made for cast_value_rs-0.4.2-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl:
Publisher:
cd.yml on zarr-developers/cast-value.rs
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
cast_value_rs-0.4.2-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl -
Subject digest:
41348b375acc9224c562c08727ebcdf8c3f8bc8b60e0d0df045b4d7a0329867a - Sigstore transparency entry: 2449245787
- Sigstore integration time:
-
Permalink:
zarr-developers/cast-value.rs@0fc546798ea70e8207ee709994be73aaed187401 -
Branch / Tag:
refs/tags/v0.4.2 - Owner: https://github.com/zarr-developers
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
cd.yml@0fc546798ea70e8207ee709994be73aaed187401 -
Trigger Event:
push
-
Statement type:
File details
Details for the file cast_value_rs-0.4.2-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.
File metadata
- Download URL: cast_value_rs-0.4.2-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
- Upload date:
- Size: 652.6 kB
- Tags: CPython 3.10, manylinux: glibc 2.17+ ppc64le
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
1c614affe53253ec70ecd15d3c0032caf0e11728aa2e65f3b315c46b5cb2e8de
|
|
| MD5 |
d848873e133a07a564f79c8c04b4b60a
|
|
| BLAKE2b-256 |
5116fa8bf75e2d4faa745e0aa5cb4891cac0384be1da1eb27e5e2235e95862f8
|
Provenance
The following attestation bundles were made for cast_value_rs-0.4.2-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl:
Publisher:
cd.yml on zarr-developers/cast-value.rs
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
cast_value_rs-0.4.2-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl -
Subject digest:
1c614affe53253ec70ecd15d3c0032caf0e11728aa2e65f3b315c46b5cb2e8de - Sigstore transparency entry: 2449246278
- Sigstore integration time:
-
Permalink:
zarr-developers/cast-value.rs@0fc546798ea70e8207ee709994be73aaed187401 -
Branch / Tag:
refs/tags/v0.4.2 - Owner: https://github.com/zarr-developers
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
cd.yml@0fc546798ea70e8207ee709994be73aaed187401 -
Trigger Event:
push
-
Statement type:
File details
Details for the file cast_value_rs-0.4.2-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.
File metadata
- Download URL: cast_value_rs-0.4.2-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
- Upload date:
- Size: 549.5 kB
- Tags: CPython 3.10, manylinux: glibc 2.17+ ARMv7l
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
351d29f1c018178fd35c3b6638d3529b4648bbfc09dc0c804d81548e828652b7
|
|
| MD5 |
d0394866770fd666157beb089a9e1f0e
|
|
| BLAKE2b-256 |
7043761e793e63f01d76e47582d30c343ed1a23bda0125e937ea21c6ad48347f
|
Provenance
The following attestation bundles were made for cast_value_rs-0.4.2-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl:
Publisher:
cd.yml on zarr-developers/cast-value.rs
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
cast_value_rs-0.4.2-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl -
Subject digest:
351d29f1c018178fd35c3b6638d3529b4648bbfc09dc0c804d81548e828652b7 - Sigstore transparency entry: 2449244132
- Sigstore integration time:
-
Permalink:
zarr-developers/cast-value.rs@0fc546798ea70e8207ee709994be73aaed187401 -
Branch / Tag:
refs/tags/v0.4.2 - Owner: https://github.com/zarr-developers
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
cd.yml@0fc546798ea70e8207ee709994be73aaed187401 -
Trigger Event:
push
-
Statement type:
File details
Details for the file cast_value_rs-0.4.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: cast_value_rs-0.4.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 487.1 kB
- Tags: CPython 3.10, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
e99dd79fe3522d11af91d2262fae6485fadf65caf1c94459847eb6537b1033e0
|
|
| MD5 |
5d229e779414ac5f4f6df6b16e074083
|
|
| BLAKE2b-256 |
76391d058c28cae1dc42ad3351fd65314bbaf83449c26a7890cb5fa05916b2c8
|
Provenance
The following attestation bundles were made for cast_value_rs-0.4.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:
Publisher:
cd.yml on zarr-developers/cast-value.rs
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
cast_value_rs-0.4.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl -
Subject digest:
e99dd79fe3522d11af91d2262fae6485fadf65caf1c94459847eb6537b1033e0 - Sigstore transparency entry: 2449243999
- Sigstore integration time:
-
Permalink:
zarr-developers/cast-value.rs@0fc546798ea70e8207ee709994be73aaed187401 -
Branch / Tag:
refs/tags/v0.4.2 - Owner: https://github.com/zarr-developers
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
cd.yml@0fc546798ea70e8207ee709994be73aaed187401 -
Trigger Event:
push
-
Statement type:
File details
Details for the file cast_value_rs-0.4.2-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl.
File metadata
- Download URL: cast_value_rs-0.4.2-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl
- Upload date:
- Size: 573.7 kB
- Tags: CPython 3.10, manylinux: glibc 2.5+ i686
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
3cef8a2efffca1fee3fbf8640adf427e265f9c1b480dc43b30c424449dc187a8
|
|
| MD5 |
d6f62acaba1eb9a40dd9d3841984e0aa
|
|
| BLAKE2b-256 |
003176cb0e6842a3bd1ddb1c8540fea39c4e12e7cfdc37c1846bfca3ea9cf77d
|
Provenance
The following attestation bundles were made for cast_value_rs-0.4.2-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl:
Publisher:
cd.yml on zarr-developers/cast-value.rs
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
cast_value_rs-0.4.2-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl -
Subject digest:
3cef8a2efffca1fee3fbf8640adf427e265f9c1b480dc43b30c424449dc187a8 - Sigstore transparency entry: 2449244777
- Sigstore integration time:
-
Permalink:
zarr-developers/cast-value.rs@0fc546798ea70e8207ee709994be73aaed187401 -
Branch / Tag:
refs/tags/v0.4.2 - Owner: https://github.com/zarr-developers
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
cd.yml@0fc546798ea70e8207ee709994be73aaed187401 -
Trigger Event:
push
-
Statement type:
File details
Details for the file cast_value_rs-0.4.2-cp39-cp39-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: cast_value_rs-0.4.2-cp39-cp39-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 737.7 kB
- Tags: CPython 3.9, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
bfc053fdf9d541826c89c5ce7749bb94a18d28065139f14e55f72278bed7adf1
|
|
| MD5 |
03397063793752b0185533caac0a27d2
|
|
| BLAKE2b-256 |
83e2ab60d0b9ca79cc4939d86aab14940e2853670028bda11aa7c664458fa370
|
Provenance
The following attestation bundles were made for cast_value_rs-0.4.2-cp39-cp39-musllinux_1_2_x86_64.whl:
Publisher:
cd.yml on zarr-developers/cast-value.rs
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
cast_value_rs-0.4.2-cp39-cp39-musllinux_1_2_x86_64.whl -
Subject digest:
bfc053fdf9d541826c89c5ce7749bb94a18d28065139f14e55f72278bed7adf1 - Sigstore transparency entry: 2449243797
- Sigstore integration time:
-
Permalink:
zarr-developers/cast-value.rs@0fc546798ea70e8207ee709994be73aaed187401 -
Branch / Tag:
refs/tags/v0.4.2 - Owner: https://github.com/zarr-developers
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
cd.yml@0fc546798ea70e8207ee709994be73aaed187401 -
Trigger Event:
push
-
Statement type:
File details
Details for the file cast_value_rs-0.4.2-cp39-cp39-musllinux_1_2_i686.whl.
File metadata
- Download URL: cast_value_rs-0.4.2-cp39-cp39-musllinux_1_2_i686.whl
- Upload date:
- Size: 770.7 kB
- Tags: CPython 3.9, musllinux: musl 1.2+ i686
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
9951e3ef2f7554a46a8e7870ae0ad6b302c6dfa6f33079cfec626c503dca6f75
|
|
| MD5 |
ea749d27028268f71cf42736c34847f6
|
|
| BLAKE2b-256 |
99cea1746f26c9545e0ece5565a13b785f167af3ba563a7595d44bd5bd411bc9
|
Provenance
The following attestation bundles were made for cast_value_rs-0.4.2-cp39-cp39-musllinux_1_2_i686.whl:
Publisher:
cd.yml on zarr-developers/cast-value.rs
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
cast_value_rs-0.4.2-cp39-cp39-musllinux_1_2_i686.whl -
Subject digest:
9951e3ef2f7554a46a8e7870ae0ad6b302c6dfa6f33079cfec626c503dca6f75 - Sigstore transparency entry: 2449246129
- Sigstore integration time:
-
Permalink:
zarr-developers/cast-value.rs@0fc546798ea70e8207ee709994be73aaed187401 -
Branch / Tag:
refs/tags/v0.4.2 - Owner: https://github.com/zarr-developers
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
cd.yml@0fc546798ea70e8207ee709994be73aaed187401 -
Trigger Event:
push
-
Statement type:
File details
Details for the file cast_value_rs-0.4.2-cp39-cp39-musllinux_1_2_armv7l.whl.
File metadata
- Download URL: cast_value_rs-0.4.2-cp39-cp39-musllinux_1_2_armv7l.whl
- Upload date:
- Size: 826.1 kB
- Tags: CPython 3.9, musllinux: musl 1.2+ ARMv7l
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
04e86c24a4eb085b763b9c474a857721218e69087acde67ed701ce9416707260
|
|
| MD5 |
301ba15af0a1f72ee1caf996efff4578
|
|
| BLAKE2b-256 |
36b3d6ca641d3fe18682b916c4af6363b23068d3e30bc1834dc1dc513cb32b4a
|
Provenance
The following attestation bundles were made for cast_value_rs-0.4.2-cp39-cp39-musllinux_1_2_armv7l.whl:
Publisher:
cd.yml on zarr-developers/cast-value.rs
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
cast_value_rs-0.4.2-cp39-cp39-musllinux_1_2_armv7l.whl -
Subject digest:
04e86c24a4eb085b763b9c474a857721218e69087acde67ed701ce9416707260 - Sigstore transparency entry: 2449246108
- Sigstore integration time:
-
Permalink:
zarr-developers/cast-value.rs@0fc546798ea70e8207ee709994be73aaed187401 -
Branch / Tag:
refs/tags/v0.4.2 - Owner: https://github.com/zarr-developers
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
cd.yml@0fc546798ea70e8207ee709994be73aaed187401 -
Trigger Event:
push
-
Statement type:
File details
Details for the file cast_value_rs-0.4.2-cp39-cp39-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: cast_value_rs-0.4.2-cp39-cp39-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 665.2 kB
- Tags: CPython 3.9, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
41e673932e5f01c05d7b4db06c49769f33d01d22c445dbbe4aebf236e6173377
|
|
| MD5 |
3259019be48567575e7557885abea409
|
|
| BLAKE2b-256 |
84552ec13ba9d67110605c270b9fda8bc2331dde3f52c0040e271e727ede68fc
|
Provenance
The following attestation bundles were made for cast_value_rs-0.4.2-cp39-cp39-musllinux_1_2_aarch64.whl:
Publisher:
cd.yml on zarr-developers/cast-value.rs
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
cast_value_rs-0.4.2-cp39-cp39-musllinux_1_2_aarch64.whl -
Subject digest:
41e673932e5f01c05d7b4db06c49769f33d01d22c445dbbe4aebf236e6173377 - Sigstore transparency entry: 2449244050
- Sigstore integration time:
-
Permalink:
zarr-developers/cast-value.rs@0fc546798ea70e8207ee709994be73aaed187401 -
Branch / Tag:
refs/tags/v0.4.2 - Owner: https://github.com/zarr-developers
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
cd.yml@0fc546798ea70e8207ee709994be73aaed187401 -
Trigger Event:
push
-
Statement type:
File details
Details for the file cast_value_rs-0.4.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: cast_value_rs-0.4.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 530.9 kB
- Tags: CPython 3.9, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
ed5739d5b06f4c4e3dbc8556c68e03e310e4e6631578765928dc6c365d9881e4
|
|
| MD5 |
e22f1c9ea4d07c2e6920bb62e3aeedcd
|
|
| BLAKE2b-256 |
67edbc2c0354d8e6575d5a2cc587d477c5be2dc8589c6af5dc5a0253607d92ac
|
Provenance
The following attestation bundles were made for cast_value_rs-0.4.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:
Publisher:
cd.yml on zarr-developers/cast-value.rs
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
cast_value_rs-0.4.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl -
Subject digest:
ed5739d5b06f4c4e3dbc8556c68e03e310e4e6631578765928dc6c365d9881e4 - Sigstore transparency entry: 2449244412
- Sigstore integration time:
-
Permalink:
zarr-developers/cast-value.rs@0fc546798ea70e8207ee709994be73aaed187401 -
Branch / Tag:
refs/tags/v0.4.2 - Owner: https://github.com/zarr-developers
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
cd.yml@0fc546798ea70e8207ee709994be73aaed187401 -
Trigger Event:
push
-
Statement type:
File details
Details for the file cast_value_rs-0.4.2-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl.
File metadata
- Download URL: cast_value_rs-0.4.2-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
- Upload date:
- Size: 550.1 kB
- Tags: CPython 3.9, manylinux: glibc 2.17+ s390x
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
68467c8e563152234fbbcb9226eeadf2ecb67c78fd41f52897eb7a766f8656af
|
|
| MD5 |
ebdb6bbb286a3edb1027e369d02fef63
|
|
| BLAKE2b-256 |
77278155a72e2abef0af43b59adfe98a565a129323d3accb165bfbbfa35319ee
|
Provenance
The following attestation bundles were made for cast_value_rs-0.4.2-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl:
Publisher:
cd.yml on zarr-developers/cast-value.rs
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
cast_value_rs-0.4.2-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl -
Subject digest:
68467c8e563152234fbbcb9226eeadf2ecb67c78fd41f52897eb7a766f8656af - Sigstore transparency entry: 2449245380
- Sigstore integration time:
-
Permalink:
zarr-developers/cast-value.rs@0fc546798ea70e8207ee709994be73aaed187401 -
Branch / Tag:
refs/tags/v0.4.2 - Owner: https://github.com/zarr-developers
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
cd.yml@0fc546798ea70e8207ee709994be73aaed187401 -
Trigger Event:
push
-
Statement type:
File details
Details for the file cast_value_rs-0.4.2-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.
File metadata
- Download URL: cast_value_rs-0.4.2-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
- Upload date:
- Size: 653.1 kB
- Tags: CPython 3.9, manylinux: glibc 2.17+ ppc64le
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
9636441751e09726d609546e05765bece1a2b2090545ab08f890a691d10b8181
|
|
| MD5 |
9af4414dcb279b97514379df01e459c7
|
|
| BLAKE2b-256 |
2c528f62459814ab2558c486a06b60ff1ba379b734d6d5ba043198608476a2e8
|
Provenance
The following attestation bundles were made for cast_value_rs-0.4.2-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl:
Publisher:
cd.yml on zarr-developers/cast-value.rs
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
cast_value_rs-0.4.2-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl -
Subject digest:
9636441751e09726d609546e05765bece1a2b2090545ab08f890a691d10b8181 - Sigstore transparency entry: 2449246030
- Sigstore integration time:
-
Permalink:
zarr-developers/cast-value.rs@0fc546798ea70e8207ee709994be73aaed187401 -
Branch / Tag:
refs/tags/v0.4.2 - Owner: https://github.com/zarr-developers
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
cd.yml@0fc546798ea70e8207ee709994be73aaed187401 -
Trigger Event:
push
-
Statement type:
File details
Details for the file cast_value_rs-0.4.2-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.
File metadata
- Download URL: cast_value_rs-0.4.2-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
- Upload date:
- Size: 550.2 kB
- Tags: CPython 3.9, manylinux: glibc 2.17+ ARMv7l
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
97577738da9ec90aa22ce853777754b1f8137b3cb5e04af25bb19ed00de3114d
|
|
| MD5 |
bec459f7afd93dc627d4d7fdb5e5af57
|
|
| BLAKE2b-256 |
d09b6d6b232612ff851d2e7034886850f88aad6521c0a1e01d26ebf7d82eb9ef
|
Provenance
The following attestation bundles were made for cast_value_rs-0.4.2-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl:
Publisher:
cd.yml on zarr-developers/cast-value.rs
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
cast_value_rs-0.4.2-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl -
Subject digest:
97577738da9ec90aa22ce853777754b1f8137b3cb5e04af25bb19ed00de3114d - Sigstore transparency entry: 2449246197
- Sigstore integration time:
-
Permalink:
zarr-developers/cast-value.rs@0fc546798ea70e8207ee709994be73aaed187401 -
Branch / Tag:
refs/tags/v0.4.2 - Owner: https://github.com/zarr-developers
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
cd.yml@0fc546798ea70e8207ee709994be73aaed187401 -
Trigger Event:
push
-
Statement type:
File details
Details for the file cast_value_rs-0.4.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: cast_value_rs-0.4.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 488.0 kB
- Tags: CPython 3.9, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
6e61443d4cc70bfb54a567432be559deb5bed61fb7584e15838c68c506a6027b
|
|
| MD5 |
59713acfccdc298da2d99128de09bab7
|
|
| BLAKE2b-256 |
07d1ce448365395da108db4153fe0d0776651a224b3ec9622982c1e8283a78bf
|
Provenance
The following attestation bundles were made for cast_value_rs-0.4.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:
Publisher:
cd.yml on zarr-developers/cast-value.rs
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
cast_value_rs-0.4.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl -
Subject digest:
6e61443d4cc70bfb54a567432be559deb5bed61fb7584e15838c68c506a6027b - Sigstore transparency entry: 2449245113
- Sigstore integration time:
-
Permalink:
zarr-developers/cast-value.rs@0fc546798ea70e8207ee709994be73aaed187401 -
Branch / Tag:
refs/tags/v0.4.2 - Owner: https://github.com/zarr-developers
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
cd.yml@0fc546798ea70e8207ee709994be73aaed187401 -
Trigger Event:
push
-
Statement type:
File details
Details for the file cast_value_rs-0.4.2-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl.
File metadata
- Download URL: cast_value_rs-0.4.2-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl
- Upload date:
- Size: 574.2 kB
- Tags: CPython 3.9, manylinux: glibc 2.5+ i686
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
bb9de134fbd4f8f119bad3f0f30e2420b3bfce3395556881d9864f1582d80b1b
|
|
| MD5 |
0dc25e793c0d2950219aff1010d6978a
|
|
| BLAKE2b-256 |
48d6c07381b6bb3bc13dcb7eede5ef1016ad7e986bf29fdb12ace3c556f9a6a1
|
Provenance
The following attestation bundles were made for cast_value_rs-0.4.2-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl:
Publisher:
cd.yml on zarr-developers/cast-value.rs
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
cast_value_rs-0.4.2-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl -
Subject digest:
bb9de134fbd4f8f119bad3f0f30e2420b3bfce3395556881d9864f1582d80b1b - Sigstore transparency entry: 2449245543
- Sigstore integration time:
-
Permalink:
zarr-developers/cast-value.rs@0fc546798ea70e8207ee709994be73aaed187401 -
Branch / Tag:
refs/tags/v0.4.2 - Owner: https://github.com/zarr-developers
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
cd.yml@0fc546798ea70e8207ee709994be73aaed187401 -
Trigger Event:
push
-
Statement type: