No project description provided
Project description
rustoml
A modern, high-performance TOML library for Python implemented in Rust.
About This Fork
This project is a maintained and enhanced fork of samuelcolvin/rtoml. The original project hasn't been updated in a while, and this fork continues development for the latest Python versions, with additional Rust tooling improvements.
Key Improvements Over Original rtoml
- Python 3.14 Support: Full support for Python 3.14, including free-threaded mode (GIL-free)
- Modern Dependencies: Updated to latest Rust dependencies (PyO3 0.26, toml 0.9)
- Enhanced Error Handling: tomllib-compatible error messages with line/column information
- Comprehensive Docstrings: For improved developer experience and IDE support
- Custom Float Parsing: Support for
parse_floatparameter (e.g., for Decimal types) - Binary File Support: Read TOML from binary file handles
- Better Type Safety: Comprehensive type stubs and full mypy strict compatibility
- Modern Tooling: Built with uv, maturin, and modern Python packaging standards
Credits
Original project by Samuel Colvin. This fork maintained by Sean Lees.
Both projects are MIT licensed.
Why Use rustoml
- Correctness: Built on the widely-used and stable toml-rs library. Passes all standard TOML tests with 100% test coverage on Python code.
- Performance: One of the fastest Python TOML libraries available.
- Flexible None handling: Configurable support for
Nonevalues with custom serialization/deserialization. - Type safe: Full type annotations with
py.typedmarker for excellent IDE support and type checking.
Install
Requires python>=3.10, binaries are available from PyPI for Linux, macOS and Windows,
see here.
uv add rustoml
# or
pip install rustoml
If no binary is available on PyPI for your system configuration, you'll need Rust stable installed before you can install rustoml.
Usage
load
def load(toml: str | Path | TextIO, *, none_value: str | None = None) -> dict[str, Any]: ...
Parse TOML via a string or file and return a python dictionary.
toml: astr,Pathor file object fromopen().none_value: controlling which value intomlis loaded asNonein python. By default,none_valueisNone, which means nothing is loaded asNone
loads
def loads(toml: str, *, none_value: str | None = None) -> dict[str, Any]: ...
Parse a TOML string and return a python dictionary. (provided to match the interface of json and similar libraries)
toml: astrcontaining TOML.none_value: controlling which value intomlis loaded asNonein python. By default,none_valueisNone, which means nothing is loaded asNone
dumps
def dumps(obj: Any, *, pretty: bool = False, none_value: str | None = "null") -> str: ...
Serialize a python object to TOML.
obj: a python object to be serialized.pretty: ifTruethe output has a more "pretty" format.none_value: controlling howNonevalues inobjare serialized.none_value=NonemeansNonevalues are ignored.
dump
def dump(
obj: Any, file: Path | TextIO, *, pretty: bool = False, none_value: str | None = "null"
) -> int: ...
Serialize a python object to TOML and write it to a file.
obj: a python object to be serialized.file: aPathor file object fromopen().pretty: ifTruethe output has a more "pretty" format.none_value: controlling howNonevalues inobjare serialized.none_value=NonemeansNonevalues are ignored.
Examples
from datetime import datetime, timezone, timedelta
import rustoml
obj = {
'title': 'TOML Example',
'owner': {
'dob': datetime(1979, 5, 27, 7, 32, tzinfo=timezone(timedelta(hours=-8))),
'name': 'Tom Preston-Werner',
},
'database': {
'connection_max': 5000,
'enabled': True,
'ports': [8001, 8001, 8002],
'server': '192.168.1.1',
},
}
loaded_obj = rustoml.load("""\
# This is a TOML document.
title = "TOML Example"
[owner]
name = "Tom Preston-Werner"
dob = 1979-05-27T07:32:00-08:00 # First class dates
[database]
server = "192.168.1.1"
ports = [8001, 8001, 8002]
connection_max = 5000
enabled = true
""")
assert loaded_obj == obj
assert rustoml.dumps(obj) == """\
title = "TOML Example"
[owner]
dob = 1979-05-27T07:32:00-08:00
name = "Tom Preston-Werner"
[database]
connection_max = 5000
enabled = true
server = "192.168.1.1"
ports = [8001, 8001, 8002]
"""
An example of None-value handling:
obj = {
'a': None,
'b': 1,
'c': [1, 2, None, 3],
}
# Ignore None values
assert rustoml.dumps(obj, none_value=None) == """\
b = 1
c = [1, 2, 3]
"""
# Serialize None values as '@None'
assert rustoml.dumps(obj, none_value='@None') == """\
a = "@None"
b = 1
c = [1, 2, "@None", 3]
"""
# Deserialize '@None' back to None
assert rustoml.load("""\
a = "@None"
b = 1
c = [1, 2, "@None", 3]
""", none_value='@None') == obj
Project details
Release history Release notifications | RSS feed
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 rustoml-0.13.0.tar.gz.
File metadata
- Download URL: rustoml-0.13.0.tar.gz
- Upload date:
- Size: 55.8 kB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.0.1 CPython/3.12.8
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
0da94efa71e99a2f17b0230c110e17dc14c85eadaa602e1fd29ccdc393634922
|
|
| MD5 |
eeb788fc0501c7bda9084f54bcb3553d
|
|
| BLAKE2b-256 |
e868aed33ee28c73e862ec965193057dca1bedc5b07de5c5b6fa292f9bf36e79
|
Provenance
The following attestation bundles were made for rustoml-0.13.0.tar.gz:
Publisher:
ci.yml on seanmozeik/rustoml
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
rustoml-0.13.0.tar.gz -
Subject digest:
0da94efa71e99a2f17b0230c110e17dc14c85eadaa602e1fd29ccdc393634922 - Sigstore transparency entry: 604687048
- Sigstore integration time:
-
Permalink:
seanmozeik/rustoml@8a531f256ad2de00099166e5461fdbec5e65da20 -
Branch / Tag:
refs/heads/main - Owner: https://github.com/seanmozeik
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
ci.yml@8a531f256ad2de00099166e5461fdbec5e65da20 -
Trigger Event:
push
-
Statement type:
File details
Details for the file rustoml-0.13.0-cp314-cp314t-win_arm64.whl.
File metadata
- Download URL: rustoml-0.13.0-cp314-cp314t-win_arm64.whl
- Upload date:
- Size: 247.0 kB
- Tags: CPython 3.14t, Windows ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.0.1 CPython/3.12.8
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
ccf92129d42c761f1e3ec4a96774a6ee3c98c8c01b6b66635d1e64031e6156a5
|
|
| MD5 |
07c9ae4b2597583e52166b8564d6ec77
|
|
| BLAKE2b-256 |
88106628c8a3a90ef60e5a61f07da515f0a8eeac2084ab8a6651bb65a738e32a
|
Provenance
The following attestation bundles were made for rustoml-0.13.0-cp314-cp314t-win_arm64.whl:
Publisher:
ci.yml on seanmozeik/rustoml
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
rustoml-0.13.0-cp314-cp314t-win_arm64.whl -
Subject digest:
ccf92129d42c761f1e3ec4a96774a6ee3c98c8c01b6b66635d1e64031e6156a5 - Sigstore transparency entry: 604687198
- Sigstore integration time:
-
Permalink:
seanmozeik/rustoml@8a531f256ad2de00099166e5461fdbec5e65da20 -
Branch / Tag:
refs/heads/main - Owner: https://github.com/seanmozeik
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
ci.yml@8a531f256ad2de00099166e5461fdbec5e65da20 -
Trigger Event:
push
-
Statement type:
File details
Details for the file rustoml-0.13.0-cp314-cp314t-win_amd64.whl.
File metadata
- Download URL: rustoml-0.13.0-cp314-cp314t-win_amd64.whl
- Upload date:
- Size: 260.2 kB
- Tags: CPython 3.14t, Windows x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.0.1 CPython/3.12.8
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
252aed42df005f6915354119045bce60d0d5a0765c8f8f372640e915eca20531
|
|
| MD5 |
7fbbd28350d7979fa0cc3d2e1b35fde0
|
|
| BLAKE2b-256 |
892429dbd4e52c957f30f2be72551122c4c0bb0262cc317c13f9a2db3f5ac36c
|
Provenance
The following attestation bundles were made for rustoml-0.13.0-cp314-cp314t-win_amd64.whl:
Publisher:
ci.yml on seanmozeik/rustoml
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
rustoml-0.13.0-cp314-cp314t-win_amd64.whl -
Subject digest:
252aed42df005f6915354119045bce60d0d5a0765c8f8f372640e915eca20531 - Sigstore transparency entry: 604687101
- Sigstore integration time:
-
Permalink:
seanmozeik/rustoml@8a531f256ad2de00099166e5461fdbec5e65da20 -
Branch / Tag:
refs/heads/main - Owner: https://github.com/seanmozeik
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
ci.yml@8a531f256ad2de00099166e5461fdbec5e65da20 -
Trigger Event:
push
-
Statement type:
File details
Details for the file rustoml-0.13.0-cp314-cp314t-win32.whl.
File metadata
- Download URL: rustoml-0.13.0-cp314-cp314t-win32.whl
- Upload date:
- Size: 253.4 kB
- Tags: CPython 3.14t, Windows x86
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.0.1 CPython/3.12.8
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
265e6db61b215ec6fd8bc6ae54ad1cd3231c5c3f5efa7871469bfe2c4c67aac6
|
|
| MD5 |
8665ec0f54187bb89c622711f9a08a0d
|
|
| BLAKE2b-256 |
14483db1fb05a5a99a14afc6b695130bf8bccdd56281514794a0c77473be25a9
|
Provenance
The following attestation bundles were made for rustoml-0.13.0-cp314-cp314t-win32.whl:
Publisher:
ci.yml on seanmozeik/rustoml
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
rustoml-0.13.0-cp314-cp314t-win32.whl -
Subject digest:
265e6db61b215ec6fd8bc6ae54ad1cd3231c5c3f5efa7871469bfe2c4c67aac6 - Sigstore transparency entry: 604687273
- Sigstore integration time:
-
Permalink:
seanmozeik/rustoml@8a531f256ad2de00099166e5461fdbec5e65da20 -
Branch / Tag:
refs/heads/main - Owner: https://github.com/seanmozeik
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
ci.yml@8a531f256ad2de00099166e5461fdbec5e65da20 -
Trigger Event:
push
-
Statement type:
File details
Details for the file rustoml-0.13.0-cp314-cp314t-musllinux_1_1_x86_64.whl.
File metadata
- Download URL: rustoml-0.13.0-cp314-cp314t-musllinux_1_1_x86_64.whl
- Upload date:
- Size: 558.8 kB
- Tags: CPython 3.14t, musllinux: musl 1.1+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.0.1 CPython/3.12.8
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
1a20af35d4a9cfd2048ba7d4a3dbba9b833729e17a5da6e9496fdb612d0cd33d
|
|
| MD5 |
4bbb56c33133bccbc3054ba1efa6ba17
|
|
| BLAKE2b-256 |
06be329f2385b5f2dc62e12dc83f348a2c949c53540b46d602b6d8136f84ee47
|
Provenance
The following attestation bundles were made for rustoml-0.13.0-cp314-cp314t-musllinux_1_1_x86_64.whl:
Publisher:
ci.yml on seanmozeik/rustoml
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
rustoml-0.13.0-cp314-cp314t-musllinux_1_1_x86_64.whl -
Subject digest:
1a20af35d4a9cfd2048ba7d4a3dbba9b833729e17a5da6e9496fdb612d0cd33d - Sigstore transparency entry: 604687202
- Sigstore integration time:
-
Permalink:
seanmozeik/rustoml@8a531f256ad2de00099166e5461fdbec5e65da20 -
Branch / Tag:
refs/heads/main - Owner: https://github.com/seanmozeik
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
ci.yml@8a531f256ad2de00099166e5461fdbec5e65da20 -
Trigger Event:
push
-
Statement type:
File details
Details for the file rustoml-0.13.0-cp314-cp314t-musllinux_1_1_aarch64.whl.
File metadata
- Download URL: rustoml-0.13.0-cp314-cp314t-musllinux_1_1_aarch64.whl
- Upload date:
- Size: 559.8 kB
- Tags: CPython 3.14t, musllinux: musl 1.1+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.0.1 CPython/3.12.8
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
fa3001ddc8438042c865f750537318369200c5bb85aa644239b67f87c868d8c6
|
|
| MD5 |
c97c546bd14e6a48548e5666d0e60299
|
|
| BLAKE2b-256 |
b2bc3f550f39b32f0043a157a16a4ab2b73f87255fa4082f2698a5d217b07edf
|
Provenance
The following attestation bundles were made for rustoml-0.13.0-cp314-cp314t-musllinux_1_1_aarch64.whl:
Publisher:
ci.yml on seanmozeik/rustoml
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
rustoml-0.13.0-cp314-cp314t-musllinux_1_1_aarch64.whl -
Subject digest:
fa3001ddc8438042c865f750537318369200c5bb85aa644239b67f87c868d8c6 - Sigstore transparency entry: 604687185
- Sigstore integration time:
-
Permalink:
seanmozeik/rustoml@8a531f256ad2de00099166e5461fdbec5e65da20 -
Branch / Tag:
refs/heads/main - Owner: https://github.com/seanmozeik
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
ci.yml@8a531f256ad2de00099166e5461fdbec5e65da20 -
Trigger Event:
push
-
Statement type:
File details
Details for the file rustoml-0.13.0-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: rustoml-0.13.0-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 385.5 kB
- Tags: CPython 3.14t, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.0.1 CPython/3.12.8
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
f0ade24ae76d765502fde016642521ecea7412437a72d17f06e2bc6fe4574bde
|
|
| MD5 |
e8e7b494c0ed585404d4154560c0d503
|
|
| BLAKE2b-256 |
a23b6d9f070b87bbadd90db2b441bb4e7000284d324b837fa4f9638d54623cb3
|
Provenance
The following attestation bundles were made for rustoml-0.13.0-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:
Publisher:
ci.yml on seanmozeik/rustoml
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
rustoml-0.13.0-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.whl -
Subject digest:
f0ade24ae76d765502fde016642521ecea7412437a72d17f06e2bc6fe4574bde - Sigstore transparency entry: 604687069
- Sigstore integration time:
-
Permalink:
seanmozeik/rustoml@8a531f256ad2de00099166e5461fdbec5e65da20 -
Branch / Tag:
refs/heads/main - Owner: https://github.com/seanmozeik
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
ci.yml@8a531f256ad2de00099166e5461fdbec5e65da20 -
Trigger Event:
push
-
Statement type:
File details
Details for the file rustoml-0.13.0-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl.
File metadata
- Download URL: rustoml-0.13.0-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl
- Upload date:
- Size: 445.6 kB
- Tags: CPython 3.14t, manylinux: glibc 2.17+ s390x
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.0.1 CPython/3.12.8
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
cf1f2169c91ba3d173d7fc6d0b873901dfe6b722d62e4e45fd8eeffc363899d4
|
|
| MD5 |
fb9659f3d026d466b556a4eb7688eb3a
|
|
| BLAKE2b-256 |
653ae92caed8c6926037396977f3945e5c6d51efba0d67b04dfa63e6fffa3e10
|
Provenance
The following attestation bundles were made for rustoml-0.13.0-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl:
Publisher:
ci.yml on seanmozeik/rustoml
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
rustoml-0.13.0-cp314-cp314t-manylinux2014_s390x.manylinux_2_17_s390x.whl -
Subject digest:
cf1f2169c91ba3d173d7fc6d0b873901dfe6b722d62e4e45fd8eeffc363899d4 - Sigstore transparency entry: 604687213
- Sigstore integration time:
-
Permalink:
seanmozeik/rustoml@8a531f256ad2de00099166e5461fdbec5e65da20 -
Branch / Tag:
refs/heads/main - Owner: https://github.com/seanmozeik
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
ci.yml@8a531f256ad2de00099166e5461fdbec5e65da20 -
Trigger Event:
push
-
Statement type:
File details
Details for the file rustoml-0.13.0-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.
File metadata
- Download URL: rustoml-0.13.0-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
- Upload date:
- Size: 430.5 kB
- Tags: CPython 3.14t, manylinux: glibc 2.17+ ppc64le
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.0.1 CPython/3.12.8
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
da9d99bd50e19a23024a3f38aa1e03a8dadc140f513c70b011376e3911acaa13
|
|
| MD5 |
08cf741cc827fd7d53146d565379e014
|
|
| BLAKE2b-256 |
d30fe269584ab22beaf601b5fc00fbeaa52e0a736ebbbda687f95ed44a6b2877
|
Provenance
The following attestation bundles were made for rustoml-0.13.0-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl:
Publisher:
ci.yml on seanmozeik/rustoml
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
rustoml-0.13.0-cp314-cp314t-manylinux2014_ppc64le.manylinux_2_17_ppc64le.whl -
Subject digest:
da9d99bd50e19a23024a3f38aa1e03a8dadc140f513c70b011376e3911acaa13 - Sigstore transparency entry: 604687163
- Sigstore integration time:
-
Permalink:
seanmozeik/rustoml@8a531f256ad2de00099166e5461fdbec5e65da20 -
Branch / Tag:
refs/heads/main - Owner: https://github.com/seanmozeik
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
ci.yml@8a531f256ad2de00099166e5461fdbec5e65da20 -
Trigger Event:
push
-
Statement type:
File details
Details for the file rustoml-0.13.0-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.
File metadata
- Download URL: rustoml-0.13.0-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
- Upload date:
- Size: 405.5 kB
- Tags: CPython 3.14t, manylinux: glibc 2.17+ ARMv7l
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.0.1 CPython/3.12.8
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
40deb593e162dbc9eb24b4f74f7050a5c559d3c77319a243f577df908763a662
|
|
| MD5 |
a66318f65c1ca5f4ec8a7db8c79ee928
|
|
| BLAKE2b-256 |
adcefd6fe33408a4155fee06d5cec6e9573c6d7c01cd296e6b081b126976d569
|
Provenance
The following attestation bundles were made for rustoml-0.13.0-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl:
Publisher:
ci.yml on seanmozeik/rustoml
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
rustoml-0.13.0-cp314-cp314t-manylinux2014_armv7l.manylinux_2_17_armv7l.whl -
Subject digest:
40deb593e162dbc9eb24b4f74f7050a5c559d3c77319a243f577df908763a662 - Sigstore transparency entry: 604687088
- Sigstore integration time:
-
Permalink:
seanmozeik/rustoml@8a531f256ad2de00099166e5461fdbec5e65da20 -
Branch / Tag:
refs/heads/main - Owner: https://github.com/seanmozeik
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
ci.yml@8a531f256ad2de00099166e5461fdbec5e65da20 -
Trigger Event:
push
-
Statement type:
File details
Details for the file rustoml-0.13.0-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: rustoml-0.13.0-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 378.4 kB
- Tags: CPython 3.14t, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.0.1 CPython/3.12.8
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
bdbeeb558e343fc5ab5f104dc236fd1c2ca3023fb7dbaf4a0164d4461ee36205
|
|
| MD5 |
840a6d579002be477a873e0295e9e443
|
|
| BLAKE2b-256 |
42fa6e470ae7e5a70f841885b9296a4855a5e580a3f418019e08054032b21530
|
Provenance
The following attestation bundles were made for rustoml-0.13.0-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:
Publisher:
ci.yml on seanmozeik/rustoml
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
rustoml-0.13.0-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.whl -
Subject digest:
bdbeeb558e343fc5ab5f104dc236fd1c2ca3023fb7dbaf4a0164d4461ee36205 - Sigstore transparency entry: 604687219
- Sigstore integration time:
-
Permalink:
seanmozeik/rustoml@8a531f256ad2de00099166e5461fdbec5e65da20 -
Branch / Tag:
refs/heads/main - Owner: https://github.com/seanmozeik
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
ci.yml@8a531f256ad2de00099166e5461fdbec5e65da20 -
Trigger Event:
push
-
Statement type:
File details
Details for the file rustoml-0.13.0-cp314-cp314t-manylinux_2_5_i686.manylinux1_i686.whl.
File metadata
- Download URL: rustoml-0.13.0-cp314-cp314t-manylinux_2_5_i686.manylinux1_i686.whl
- Upload date:
- Size: 413.9 kB
- Tags: CPython 3.14t, manylinux: glibc 2.5+ i686
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.0.1 CPython/3.12.8
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
0e2bbae170e0c3e869f7e63c83b7d20b228a4a2bd618dc91d1e8e87c3046003e
|
|
| MD5 |
40fab1b2f4a823724c614de60015c088
|
|
| BLAKE2b-256 |
9a470bfe9043a77c0f8bf7747c0b4ccb15905fb8f1be11993d0bf5e6394fbb6f
|
Provenance
The following attestation bundles were made for rustoml-0.13.0-cp314-cp314t-manylinux_2_5_i686.manylinux1_i686.whl:
Publisher:
ci.yml on seanmozeik/rustoml
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
rustoml-0.13.0-cp314-cp314t-manylinux1_i686.manylinux_2_5_i686.whl -
Subject digest:
0e2bbae170e0c3e869f7e63c83b7d20b228a4a2bd618dc91d1e8e87c3046003e - Sigstore transparency entry: 604687094
- Sigstore integration time:
-
Permalink:
seanmozeik/rustoml@8a531f256ad2de00099166e5461fdbec5e65da20 -
Branch / Tag:
refs/heads/main - Owner: https://github.com/seanmozeik
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
ci.yml@8a531f256ad2de00099166e5461fdbec5e65da20 -
Trigger Event:
push
-
Statement type:
File details
Details for the file rustoml-0.13.0-cp314-cp314t-macosx_11_0_arm64.whl.
File metadata
- Download URL: rustoml-0.13.0-cp314-cp314t-macosx_11_0_arm64.whl
- Upload date:
- Size: 349.1 kB
- Tags: CPython 3.14t, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.0.1 CPython/3.12.8
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
dce37188ab1c497e285563894fc6bccda8c0618581e94ce4710f9cfcfeb3e4d7
|
|
| MD5 |
914ed81953d862bf7158eb6f88eb116c
|
|
| BLAKE2b-256 |
eb9c036abb65502816c65d47c8638570d4627b08586cb86f76abfea0f856b7c5
|
Provenance
The following attestation bundles were made for rustoml-0.13.0-cp314-cp314t-macosx_11_0_arm64.whl:
Publisher:
ci.yml on seanmozeik/rustoml
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
rustoml-0.13.0-cp314-cp314t-macosx_11_0_arm64.whl -
Subject digest:
dce37188ab1c497e285563894fc6bccda8c0618581e94ce4710f9cfcfeb3e4d7 - Sigstore transparency entry: 604687286
- Sigstore integration time:
-
Permalink:
seanmozeik/rustoml@8a531f256ad2de00099166e5461fdbec5e65da20 -
Branch / Tag:
refs/heads/main - Owner: https://github.com/seanmozeik
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
ci.yml@8a531f256ad2de00099166e5461fdbec5e65da20 -
Trigger Event:
push
-
Statement type:
File details
Details for the file rustoml-0.13.0-cp314-cp314t-macosx_10_12_x86_64.whl.
File metadata
- Download URL: rustoml-0.13.0-cp314-cp314t-macosx_10_12_x86_64.whl
- Upload date:
- Size: 366.7 kB
- Tags: CPython 3.14t, macOS 10.12+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.0.1 CPython/3.12.8
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
b72ff54e4e59f730b974796c5013dcd959beb91506763175a459a39c00e891c5
|
|
| MD5 |
5dc79cd52fc922c48d6dd3459e2fbd8f
|
|
| BLAKE2b-256 |
56ae77bdb9633893ee8d50c46da3fd9c1bacf36eb06b65d204edf423095f9e13
|
Provenance
The following attestation bundles were made for rustoml-0.13.0-cp314-cp314t-macosx_10_12_x86_64.whl:
Publisher:
ci.yml on seanmozeik/rustoml
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
rustoml-0.13.0-cp314-cp314t-macosx_10_12_x86_64.whl -
Subject digest:
b72ff54e4e59f730b974796c5013dcd959beb91506763175a459a39c00e891c5 - Sigstore transparency entry: 604687166
- Sigstore integration time:
-
Permalink:
seanmozeik/rustoml@8a531f256ad2de00099166e5461fdbec5e65da20 -
Branch / Tag:
refs/heads/main - Owner: https://github.com/seanmozeik
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
ci.yml@8a531f256ad2de00099166e5461fdbec5e65da20 -
Trigger Event:
push
-
Statement type:
File details
Details for the file rustoml-0.13.0-cp314-cp314-win_arm64.whl.
File metadata
- Download URL: rustoml-0.13.0-cp314-cp314-win_arm64.whl
- Upload date:
- Size: 248.3 kB
- Tags: CPython 3.14, Windows ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.0.1 CPython/3.12.8
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
05da5605ce847a3df2970ef92b097de30e41e97107ca45fe4e37f9b0b0324a6f
|
|
| MD5 |
54685114e0c4ed02a967bf8dc997f223
|
|
| BLAKE2b-256 |
ce335beef5ec340bf5fbbeea4dc29e261c633c2cff7f8ba268708b89f4dd241e
|
Provenance
The following attestation bundles were made for rustoml-0.13.0-cp314-cp314-win_arm64.whl:
Publisher:
ci.yml on seanmozeik/rustoml
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
rustoml-0.13.0-cp314-cp314-win_arm64.whl -
Subject digest:
05da5605ce847a3df2970ef92b097de30e41e97107ca45fe4e37f9b0b0324a6f - Sigstore transparency entry: 604687081
- Sigstore integration time:
-
Permalink:
seanmozeik/rustoml@8a531f256ad2de00099166e5461fdbec5e65da20 -
Branch / Tag:
refs/heads/main - Owner: https://github.com/seanmozeik
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
ci.yml@8a531f256ad2de00099166e5461fdbec5e65da20 -
Trigger Event:
push
-
Statement type:
File details
Details for the file rustoml-0.13.0-cp314-cp314-win_amd64.whl.
File metadata
- Download URL: rustoml-0.13.0-cp314-cp314-win_amd64.whl
- Upload date:
- Size: 260.7 kB
- Tags: CPython 3.14, Windows x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.0.1 CPython/3.12.8
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
c1b201f251e6bf2e4bbb22c0156000b0d4f2368a00dce98cc986ea1dc6ef742e
|
|
| MD5 |
1de6110c3719d55ea512d3344e7302cc
|
|
| BLAKE2b-256 |
b50accf404cc649630554d43ec9e5ed18670220b336c2718f1ae02bad42aa633
|
Provenance
The following attestation bundles were made for rustoml-0.13.0-cp314-cp314-win_amd64.whl:
Publisher:
ci.yml on seanmozeik/rustoml
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
rustoml-0.13.0-cp314-cp314-win_amd64.whl -
Subject digest:
c1b201f251e6bf2e4bbb22c0156000b0d4f2368a00dce98cc986ea1dc6ef742e - Sigstore transparency entry: 604687143
- Sigstore integration time:
-
Permalink:
seanmozeik/rustoml@8a531f256ad2de00099166e5461fdbec5e65da20 -
Branch / Tag:
refs/heads/main - Owner: https://github.com/seanmozeik
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
ci.yml@8a531f256ad2de00099166e5461fdbec5e65da20 -
Trigger Event:
push
-
Statement type:
File details
Details for the file rustoml-0.13.0-cp314-cp314-win32.whl.
File metadata
- Download URL: rustoml-0.13.0-cp314-cp314-win32.whl
- Upload date:
- Size: 254.5 kB
- Tags: CPython 3.14, Windows x86
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.0.1 CPython/3.12.8
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
8e0e996674db0fba6205a0ad7a8bc4aeb4d3503c96c18bbde1c9278eec4ee5e8
|
|
| MD5 |
16e7d776a699e846e6226e67eda227b0
|
|
| BLAKE2b-256 |
74731cd35b4960c12b3d10b1f416cfbfee57985456037d0b7453bb76b73081e0
|
Provenance
The following attestation bundles were made for rustoml-0.13.0-cp314-cp314-win32.whl:
Publisher:
ci.yml on seanmozeik/rustoml
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
rustoml-0.13.0-cp314-cp314-win32.whl -
Subject digest:
8e0e996674db0fba6205a0ad7a8bc4aeb4d3503c96c18bbde1c9278eec4ee5e8 - Sigstore transparency entry: 604687111
- Sigstore integration time:
-
Permalink:
seanmozeik/rustoml@8a531f256ad2de00099166e5461fdbec5e65da20 -
Branch / Tag:
refs/heads/main - Owner: https://github.com/seanmozeik
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
ci.yml@8a531f256ad2de00099166e5461fdbec5e65da20 -
Trigger Event:
push
-
Statement type:
File details
Details for the file rustoml-0.13.0-cp314-cp314-musllinux_1_1_x86_64.whl.
File metadata
- Download URL: rustoml-0.13.0-cp314-cp314-musllinux_1_1_x86_64.whl
- Upload date:
- Size: 560.7 kB
- Tags: CPython 3.14, musllinux: musl 1.1+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.0.1 CPython/3.12.8
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
ffaabab91faa70b7e7bddee67951303594b24d64fa7e65475e30c47ee0ccbea0
|
|
| MD5 |
25662773e02cdf7e4dc13c4c62b61dc0
|
|
| BLAKE2b-256 |
c54602c122aec905e0d98bbd225cdd60ca5ffe08ac4a514e2e048a6d83016be8
|
Provenance
The following attestation bundles were made for rustoml-0.13.0-cp314-cp314-musllinux_1_1_x86_64.whl:
Publisher:
ci.yml on seanmozeik/rustoml
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
rustoml-0.13.0-cp314-cp314-musllinux_1_1_x86_64.whl -
Subject digest:
ffaabab91faa70b7e7bddee67951303594b24d64fa7e65475e30c47ee0ccbea0 - Sigstore transparency entry: 604687186
- Sigstore integration time:
-
Permalink:
seanmozeik/rustoml@8a531f256ad2de00099166e5461fdbec5e65da20 -
Branch / Tag:
refs/heads/main - Owner: https://github.com/seanmozeik
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
ci.yml@8a531f256ad2de00099166e5461fdbec5e65da20 -
Trigger Event:
push
-
Statement type:
File details
Details for the file rustoml-0.13.0-cp314-cp314-musllinux_1_1_aarch64.whl.
File metadata
- Download URL: rustoml-0.13.0-cp314-cp314-musllinux_1_1_aarch64.whl
- Upload date:
- Size: 562.0 kB
- Tags: CPython 3.14, musllinux: musl 1.1+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.0.1 CPython/3.12.8
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
8a95d0dcaf3ecc03a9745eaaaf6890df4f463fa2986ddda08a93b06c5f988c88
|
|
| MD5 |
21af6b0a72ad077b9faed3debe353087
|
|
| BLAKE2b-256 |
1c0850d253c4c5396f42a054fd9c6ba626cb0aa15ee6eb393be04ff3282a3dd7
|
Provenance
The following attestation bundles were made for rustoml-0.13.0-cp314-cp314-musllinux_1_1_aarch64.whl:
Publisher:
ci.yml on seanmozeik/rustoml
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
rustoml-0.13.0-cp314-cp314-musllinux_1_1_aarch64.whl -
Subject digest:
8a95d0dcaf3ecc03a9745eaaaf6890df4f463fa2986ddda08a93b06c5f988c88 - Sigstore transparency entry: 604687241
- Sigstore integration time:
-
Permalink:
seanmozeik/rustoml@8a531f256ad2de00099166e5461fdbec5e65da20 -
Branch / Tag:
refs/heads/main - Owner: https://github.com/seanmozeik
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
ci.yml@8a531f256ad2de00099166e5461fdbec5e65da20 -
Trigger Event:
push
-
Statement type:
File details
Details for the file rustoml-0.13.0-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: rustoml-0.13.0-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 387.5 kB
- Tags: CPython 3.14, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.0.1 CPython/3.12.8
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
39a1ca9c986a2960dea6e5b837d042258898005eaebd5fa9f12e2739b30d8fe5
|
|
| MD5 |
d887dbb89d829f29381e343f76849310
|
|
| BLAKE2b-256 |
64ea91902180602eb22e714c16451a837cf1f1013466544d2a9d97d05f983a66
|
Provenance
The following attestation bundles were made for rustoml-0.13.0-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:
Publisher:
ci.yml on seanmozeik/rustoml
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
rustoml-0.13.0-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.whl -
Subject digest:
39a1ca9c986a2960dea6e5b837d042258898005eaebd5fa9f12e2739b30d8fe5 - Sigstore transparency entry: 604687102
- Sigstore integration time:
-
Permalink:
seanmozeik/rustoml@8a531f256ad2de00099166e5461fdbec5e65da20 -
Branch / Tag:
refs/heads/main - Owner: https://github.com/seanmozeik
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
ci.yml@8a531f256ad2de00099166e5461fdbec5e65da20 -
Trigger Event:
push
-
Statement type:
File details
Details for the file rustoml-0.13.0-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl.
File metadata
- Download URL: rustoml-0.13.0-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl
- Upload date:
- Size: 448.4 kB
- Tags: CPython 3.14, manylinux: glibc 2.17+ s390x
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.0.1 CPython/3.12.8
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
eab1ac5de836fe72284a02e516c8fea37cd437bbd0a79d955dbe6410d6d6e0b8
|
|
| MD5 |
1296a1668dee65d77d82840288fae4cb
|
|
| BLAKE2b-256 |
53ac74a17ad05a82dd20bdb58b74d56be15c6f896b894cb6ef9824c4a5ba6388
|
Provenance
The following attestation bundles were made for rustoml-0.13.0-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl:
Publisher:
ci.yml on seanmozeik/rustoml
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
rustoml-0.13.0-cp314-cp314-manylinux2014_s390x.manylinux_2_17_s390x.whl -
Subject digest:
eab1ac5de836fe72284a02e516c8fea37cd437bbd0a79d955dbe6410d6d6e0b8 - Sigstore transparency entry: 604687105
- Sigstore integration time:
-
Permalink:
seanmozeik/rustoml@8a531f256ad2de00099166e5461fdbec5e65da20 -
Branch / Tag:
refs/heads/main - Owner: https://github.com/seanmozeik
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
ci.yml@8a531f256ad2de00099166e5461fdbec5e65da20 -
Trigger Event:
push
-
Statement type:
File details
Details for the file rustoml-0.13.0-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.
File metadata
- Download URL: rustoml-0.13.0-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
- Upload date:
- Size: 432.9 kB
- Tags: CPython 3.14, manylinux: glibc 2.17+ ppc64le
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.0.1 CPython/3.12.8
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
12d670a01fb357481073c51a83358c31965f0a52abbcbd3b2d0a6ba2102a074e
|
|
| MD5 |
e285a4b6db9cec47785128fa36f2abdf
|
|
| BLAKE2b-256 |
d236f8b5b02682355eb7a2c042e6c00efed1b14df6839de30175af2abe7e9aa6
|
Provenance
The following attestation bundles were made for rustoml-0.13.0-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl:
Publisher:
ci.yml on seanmozeik/rustoml
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
rustoml-0.13.0-cp314-cp314-manylinux2014_ppc64le.manylinux_2_17_ppc64le.whl -
Subject digest:
12d670a01fb357481073c51a83358c31965f0a52abbcbd3b2d0a6ba2102a074e - Sigstore transparency entry: 604687072
- Sigstore integration time:
-
Permalink:
seanmozeik/rustoml@8a531f256ad2de00099166e5461fdbec5e65da20 -
Branch / Tag:
refs/heads/main - Owner: https://github.com/seanmozeik
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
ci.yml@8a531f256ad2de00099166e5461fdbec5e65da20 -
Trigger Event:
push
-
Statement type:
File details
Details for the file rustoml-0.13.0-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.
File metadata
- Download URL: rustoml-0.13.0-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
- Upload date:
- Size: 407.9 kB
- Tags: CPython 3.14, manylinux: glibc 2.17+ ARMv7l
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.0.1 CPython/3.12.8
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
2291a2390ef04cd6b4c5abb08e6dd01e114d9246730518cf3116af167fdc93ed
|
|
| MD5 |
ef4f08efdba4620101d237a13c545cfb
|
|
| BLAKE2b-256 |
f17827f12b2f0f0c345bae6efb9f1c40ecd0bd8b6bfbdd58d903a9fdf79d9776
|
Provenance
The following attestation bundles were made for rustoml-0.13.0-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl:
Publisher:
ci.yml on seanmozeik/rustoml
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
rustoml-0.13.0-cp314-cp314-manylinux2014_armv7l.manylinux_2_17_armv7l.whl -
Subject digest:
2291a2390ef04cd6b4c5abb08e6dd01e114d9246730518cf3116af167fdc93ed - Sigstore transparency entry: 604687117
- Sigstore integration time:
-
Permalink:
seanmozeik/rustoml@8a531f256ad2de00099166e5461fdbec5e65da20 -
Branch / Tag:
refs/heads/main - Owner: https://github.com/seanmozeik
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
ci.yml@8a531f256ad2de00099166e5461fdbec5e65da20 -
Trigger Event:
push
-
Statement type:
File details
Details for the file rustoml-0.13.0-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: rustoml-0.13.0-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 380.8 kB
- Tags: CPython 3.14, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.0.1 CPython/3.12.8
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
a16a5ee7f99d3cc2eabf7037511a96a934758bd403bfad1ab0a95e32356071dc
|
|
| MD5 |
211fff7045138252868cdeeb0502eec9
|
|
| BLAKE2b-256 |
c9b84621700cf6580a8b45d0cb0c29e9096dbdadda0013b468d58946cb657a42
|
Provenance
The following attestation bundles were made for rustoml-0.13.0-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:
Publisher:
ci.yml on seanmozeik/rustoml
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
rustoml-0.13.0-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.whl -
Subject digest:
a16a5ee7f99d3cc2eabf7037511a96a934758bd403bfad1ab0a95e32356071dc - Sigstore transparency entry: 604687199
- Sigstore integration time:
-
Permalink:
seanmozeik/rustoml@8a531f256ad2de00099166e5461fdbec5e65da20 -
Branch / Tag:
refs/heads/main - Owner: https://github.com/seanmozeik
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
ci.yml@8a531f256ad2de00099166e5461fdbec5e65da20 -
Trigger Event:
push
-
Statement type:
File details
Details for the file rustoml-0.13.0-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl.
File metadata
- Download URL: rustoml-0.13.0-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl
- Upload date:
- Size: 416.3 kB
- Tags: CPython 3.14, manylinux: glibc 2.5+ i686
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.0.1 CPython/3.12.8
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
4bb9d2464ffa964b60ccee1b33e43106d6549fb252b9a0b333788b0c5c00da4d
|
|
| MD5 |
e821d01652185b7d11a71b5680bef1c9
|
|
| BLAKE2b-256 |
1530f143d13c94265e52306e525c33f2965e42fcbbdbc84d5d6abed2cc5b2b6f
|
Provenance
The following attestation bundles were made for rustoml-0.13.0-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl:
Publisher:
ci.yml on seanmozeik/rustoml
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
rustoml-0.13.0-cp314-cp314-manylinux1_i686.manylinux_2_5_i686.whl -
Subject digest:
4bb9d2464ffa964b60ccee1b33e43106d6549fb252b9a0b333788b0c5c00da4d - Sigstore transparency entry: 604687058
- Sigstore integration time:
-
Permalink:
seanmozeik/rustoml@8a531f256ad2de00099166e5461fdbec5e65da20 -
Branch / Tag:
refs/heads/main - Owner: https://github.com/seanmozeik
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
ci.yml@8a531f256ad2de00099166e5461fdbec5e65da20 -
Trigger Event:
push
-
Statement type:
File details
Details for the file rustoml-0.13.0-cp314-cp314-macosx_11_0_arm64.whl.
File metadata
- Download URL: rustoml-0.13.0-cp314-cp314-macosx_11_0_arm64.whl
- Upload date:
- Size: 351.0 kB
- Tags: CPython 3.14, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.0.1 CPython/3.12.8
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
2e7e0e334f6e3e9f9c76cb65d1ec42989954ac0fcfea8bdd76bcd23b8982a2bb
|
|
| MD5 |
d4680eba83b80de3c9bad33eeb00c7c8
|
|
| BLAKE2b-256 |
2c7f6a639be62b34dd8d31252a9218b5815c432d7b206c5d0714dba49bb56b55
|
Provenance
The following attestation bundles were made for rustoml-0.13.0-cp314-cp314-macosx_11_0_arm64.whl:
Publisher:
ci.yml on seanmozeik/rustoml
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
rustoml-0.13.0-cp314-cp314-macosx_11_0_arm64.whl -
Subject digest:
2e7e0e334f6e3e9f9c76cb65d1ec42989954ac0fcfea8bdd76bcd23b8982a2bb - Sigstore transparency entry: 604687191
- Sigstore integration time:
-
Permalink:
seanmozeik/rustoml@8a531f256ad2de00099166e5461fdbec5e65da20 -
Branch / Tag:
refs/heads/main - Owner: https://github.com/seanmozeik
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
ci.yml@8a531f256ad2de00099166e5461fdbec5e65da20 -
Trigger Event:
push
-
Statement type:
File details
Details for the file rustoml-0.13.0-cp314-cp314-macosx_10_12_x86_64.whl.
File metadata
- Download URL: rustoml-0.13.0-cp314-cp314-macosx_10_12_x86_64.whl
- Upload date:
- Size: 368.8 kB
- Tags: CPython 3.14, macOS 10.12+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.0.1 CPython/3.12.8
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
6b5188d9f62ff7011326b63dcb51ed2488c56c3774bc79f325ed8332e28a9e6c
|
|
| MD5 |
ae2d62d87ea725eb0e1e369dc2e5b1f7
|
|
| BLAKE2b-256 |
d80d2f1f349690b67af0880e5d17441204ac1f95b3e284615492681aebe41847
|
Provenance
The following attestation bundles were made for rustoml-0.13.0-cp314-cp314-macosx_10_12_x86_64.whl:
Publisher:
ci.yml on seanmozeik/rustoml
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
rustoml-0.13.0-cp314-cp314-macosx_10_12_x86_64.whl -
Subject digest:
6b5188d9f62ff7011326b63dcb51ed2488c56c3774bc79f325ed8332e28a9e6c - Sigstore transparency entry: 604687214
- Sigstore integration time:
-
Permalink:
seanmozeik/rustoml@8a531f256ad2de00099166e5461fdbec5e65da20 -
Branch / Tag:
refs/heads/main - Owner: https://github.com/seanmozeik
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
ci.yml@8a531f256ad2de00099166e5461fdbec5e65da20 -
Trigger Event:
push
-
Statement type:
File details
Details for the file rustoml-0.13.0-cp313-cp313-win_arm64.whl.
File metadata
- Download URL: rustoml-0.13.0-cp313-cp313-win_arm64.whl
- Upload date:
- Size: 248.2 kB
- Tags: CPython 3.13, Windows ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.0.1 CPython/3.12.8
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
e8a7863d814cd7f35b47b40d2c6b52b3d21df6c3f297e486bb5111d214143266
|
|
| MD5 |
df099ca354e7e82a90bac65fb5528d32
|
|
| BLAKE2b-256 |
4b70e592d0affc36daa8c379098057af5d3379115edbeb6a6aaab2e63ab5e2f1
|
Provenance
The following attestation bundles were made for rustoml-0.13.0-cp313-cp313-win_arm64.whl:
Publisher:
ci.yml on seanmozeik/rustoml
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
rustoml-0.13.0-cp313-cp313-win_arm64.whl -
Subject digest:
e8a7863d814cd7f35b47b40d2c6b52b3d21df6c3f297e486bb5111d214143266 - Sigstore transparency entry: 604687089
- Sigstore integration time:
-
Permalink:
seanmozeik/rustoml@8a531f256ad2de00099166e5461fdbec5e65da20 -
Branch / Tag:
refs/heads/main - Owner: https://github.com/seanmozeik
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
ci.yml@8a531f256ad2de00099166e5461fdbec5e65da20 -
Trigger Event:
push
-
Statement type:
File details
Details for the file rustoml-0.13.0-cp313-cp313-win_amd64.whl.
File metadata
- Download URL: rustoml-0.13.0-cp313-cp313-win_amd64.whl
- Upload date:
- Size: 260.7 kB
- Tags: CPython 3.13, Windows x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.0.1 CPython/3.12.8
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
44590470e9b2c3fad7a9a23ac2f6973cf06f6b4e399c17c276e9db3a2162b833
|
|
| MD5 |
ae7a9ecfaf68c75c1b114789c754b860
|
|
| BLAKE2b-256 |
abaa7994b8964ddb577517317f06f86fee2e18631a2ab18841238193269e944f
|
Provenance
The following attestation bundles were made for rustoml-0.13.0-cp313-cp313-win_amd64.whl:
Publisher:
ci.yml on seanmozeik/rustoml
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
rustoml-0.13.0-cp313-cp313-win_amd64.whl -
Subject digest:
44590470e9b2c3fad7a9a23ac2f6973cf06f6b4e399c17c276e9db3a2162b833 - Sigstore transparency entry: 604687192
- Sigstore integration time:
-
Permalink:
seanmozeik/rustoml@8a531f256ad2de00099166e5461fdbec5e65da20 -
Branch / Tag:
refs/heads/main - Owner: https://github.com/seanmozeik
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
ci.yml@8a531f256ad2de00099166e5461fdbec5e65da20 -
Trigger Event:
push
-
Statement type:
File details
Details for the file rustoml-0.13.0-cp313-cp313-win32.whl.
File metadata
- Download URL: rustoml-0.13.0-cp313-cp313-win32.whl
- Upload date:
- Size: 254.2 kB
- Tags: CPython 3.13, Windows x86
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.0.1 CPython/3.12.8
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
07cbb174c6eed4d74dbd7ecffa3255a9c1989cf40d6d97760377c611d3bc814f
|
|
| MD5 |
8266ad151ee866348079ea5668978b01
|
|
| BLAKE2b-256 |
8275814d72f6a82c6b43630dde691b8aeab322fe82fbb20ad2ad822159132ac3
|
Provenance
The following attestation bundles were made for rustoml-0.13.0-cp313-cp313-win32.whl:
Publisher:
ci.yml on seanmozeik/rustoml
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
rustoml-0.13.0-cp313-cp313-win32.whl -
Subject digest:
07cbb174c6eed4d74dbd7ecffa3255a9c1989cf40d6d97760377c611d3bc814f - Sigstore transparency entry: 604687084
- Sigstore integration time:
-
Permalink:
seanmozeik/rustoml@8a531f256ad2de00099166e5461fdbec5e65da20 -
Branch / Tag:
refs/heads/main - Owner: https://github.com/seanmozeik
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
ci.yml@8a531f256ad2de00099166e5461fdbec5e65da20 -
Trigger Event:
push
-
Statement type:
File details
Details for the file rustoml-0.13.0-cp313-cp313-musllinux_1_1_x86_64.whl.
File metadata
- Download URL: rustoml-0.13.0-cp313-cp313-musllinux_1_1_x86_64.whl
- Upload date:
- Size: 560.7 kB
- Tags: CPython 3.13, musllinux: musl 1.1+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.0.1 CPython/3.12.8
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
88282d717cdfcbaa648c55a29e05ce1bfeccd510be2ffd37f7099f59dce270e9
|
|
| MD5 |
66f56c8eb3340e6aa2ad891093627b61
|
|
| BLAKE2b-256 |
fc00eba894eb617e1ff60879e182e6e33c011359958feb3bfe1fd291c408ea75
|
Provenance
The following attestation bundles were made for rustoml-0.13.0-cp313-cp313-musllinux_1_1_x86_64.whl:
Publisher:
ci.yml on seanmozeik/rustoml
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
rustoml-0.13.0-cp313-cp313-musllinux_1_1_x86_64.whl -
Subject digest:
88282d717cdfcbaa648c55a29e05ce1bfeccd510be2ffd37f7099f59dce270e9 - Sigstore transparency entry: 604687056
- Sigstore integration time:
-
Permalink:
seanmozeik/rustoml@8a531f256ad2de00099166e5461fdbec5e65da20 -
Branch / Tag:
refs/heads/main - Owner: https://github.com/seanmozeik
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
ci.yml@8a531f256ad2de00099166e5461fdbec5e65da20 -
Trigger Event:
push
-
Statement type:
File details
Details for the file rustoml-0.13.0-cp313-cp313-musllinux_1_1_aarch64.whl.
File metadata
- Download URL: rustoml-0.13.0-cp313-cp313-musllinux_1_1_aarch64.whl
- Upload date:
- Size: 561.8 kB
- Tags: CPython 3.13, musllinux: musl 1.1+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.0.1 CPython/3.12.8
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
43772daa9583c8d2c9f6a1910e1302583b0d9b31047dc4d4ee8c84efa68ec39b
|
|
| MD5 |
75dc9db35ece0f482fdef85ae7e95d94
|
|
| BLAKE2b-256 |
e671b9bc4f684ec7f43aa4d7ab3f0a9fe09184ec62dad161ba30db3d6b1b7836
|
Provenance
The following attestation bundles were made for rustoml-0.13.0-cp313-cp313-musllinux_1_1_aarch64.whl:
Publisher:
ci.yml on seanmozeik/rustoml
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
rustoml-0.13.0-cp313-cp313-musllinux_1_1_aarch64.whl -
Subject digest:
43772daa9583c8d2c9f6a1910e1302583b0d9b31047dc4d4ee8c84efa68ec39b - Sigstore transparency entry: 604687066
- Sigstore integration time:
-
Permalink:
seanmozeik/rustoml@8a531f256ad2de00099166e5461fdbec5e65da20 -
Branch / Tag:
refs/heads/main - Owner: https://github.com/seanmozeik
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
ci.yml@8a531f256ad2de00099166e5461fdbec5e65da20 -
Trigger Event:
push
-
Statement type:
File details
Details for the file rustoml-0.13.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: rustoml-0.13.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 387.5 kB
- Tags: CPython 3.13, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.0.1 CPython/3.12.8
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
3ac0460e4fd119ec44e20a6ff988dde1c10c3479b96f30b0f1f34f77bd446559
|
|
| MD5 |
918f4b817af46ce131fc14799e60b952
|
|
| BLAKE2b-256 |
8c5fda2f12c329a2e136adec6139199a311dd9ab701d1f619890020a7f4b2039
|
Provenance
The following attestation bundles were made for rustoml-0.13.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:
Publisher:
ci.yml on seanmozeik/rustoml
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
rustoml-0.13.0-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.whl -
Subject digest:
3ac0460e4fd119ec44e20a6ff988dde1c10c3479b96f30b0f1f34f77bd446559 - Sigstore transparency entry: 604687150
- Sigstore integration time:
-
Permalink:
seanmozeik/rustoml@8a531f256ad2de00099166e5461fdbec5e65da20 -
Branch / Tag:
refs/heads/main - Owner: https://github.com/seanmozeik
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
ci.yml@8a531f256ad2de00099166e5461fdbec5e65da20 -
Trigger Event:
push
-
Statement type:
File details
Details for the file rustoml-0.13.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl.
File metadata
- Download URL: rustoml-0.13.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
- Upload date:
- Size: 448.1 kB
- Tags: CPython 3.13, manylinux: glibc 2.17+ s390x
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.0.1 CPython/3.12.8
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
4646ab0d138aa053cf9915316e5261e1d0213aec38f87e66ab37f81fa9b153b5
|
|
| MD5 |
a812a839dcc86f712d7fbbb5dbcd3355
|
|
| BLAKE2b-256 |
244a1d01901a798d3b7865484d58495c17f1869a1d5f2de9584bb9eac03af335
|
Provenance
The following attestation bundles were made for rustoml-0.13.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl:
Publisher:
ci.yml on seanmozeik/rustoml
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
rustoml-0.13.0-cp313-cp313-manylinux2014_s390x.manylinux_2_17_s390x.whl -
Subject digest:
4646ab0d138aa053cf9915316e5261e1d0213aec38f87e66ab37f81fa9b153b5 - Sigstore transparency entry: 604687054
- Sigstore integration time:
-
Permalink:
seanmozeik/rustoml@8a531f256ad2de00099166e5461fdbec5e65da20 -
Branch / Tag:
refs/heads/main - Owner: https://github.com/seanmozeik
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
ci.yml@8a531f256ad2de00099166e5461fdbec5e65da20 -
Trigger Event:
push
-
Statement type:
File details
Details for the file rustoml-0.13.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.
File metadata
- Download URL: rustoml-0.13.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
- Upload date:
- Size: 433.0 kB
- Tags: CPython 3.13, manylinux: glibc 2.17+ ppc64le
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.0.1 CPython/3.12.8
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
47fa7c0206ac97084b09075253d02d38d49e0f157f9ea470b5dafeafc2d28317
|
|
| MD5 |
286b641832032d10cdc8256fc94bc9aa
|
|
| BLAKE2b-256 |
e6a24fc6162bd4a236114bf92a1d0bc7b4f3aff6886e8e783096f775820790c6
|
Provenance
The following attestation bundles were made for rustoml-0.13.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl:
Publisher:
ci.yml on seanmozeik/rustoml
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
rustoml-0.13.0-cp313-cp313-manylinux2014_ppc64le.manylinux_2_17_ppc64le.whl -
Subject digest:
47fa7c0206ac97084b09075253d02d38d49e0f157f9ea470b5dafeafc2d28317 - Sigstore transparency entry: 604687136
- Sigstore integration time:
-
Permalink:
seanmozeik/rustoml@8a531f256ad2de00099166e5461fdbec5e65da20 -
Branch / Tag:
refs/heads/main - Owner: https://github.com/seanmozeik
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
ci.yml@8a531f256ad2de00099166e5461fdbec5e65da20 -
Trigger Event:
push
-
Statement type:
File details
Details for the file rustoml-0.13.0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.
File metadata
- Download URL: rustoml-0.13.0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
- Upload date:
- Size: 407.9 kB
- Tags: CPython 3.13, manylinux: glibc 2.17+ ARMv7l
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.0.1 CPython/3.12.8
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
08a83cd92c3ace27b05ebd962c8f9e7817a084c7469a3491a25c282204ba10c4
|
|
| MD5 |
e1b98ff7d3b30b2e36ea71b3fa738f68
|
|
| BLAKE2b-256 |
80e9891d4fe9cc16e3a13cbd811a48b484fc8085bc7da3e7ee97201c5d3f8fb8
|
Provenance
The following attestation bundles were made for rustoml-0.13.0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl:
Publisher:
ci.yml on seanmozeik/rustoml
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
rustoml-0.13.0-cp313-cp313-manylinux2014_armv7l.manylinux_2_17_armv7l.whl -
Subject digest:
08a83cd92c3ace27b05ebd962c8f9e7817a084c7469a3491a25c282204ba10c4 - Sigstore transparency entry: 604687204
- Sigstore integration time:
-
Permalink:
seanmozeik/rustoml@8a531f256ad2de00099166e5461fdbec5e65da20 -
Branch / Tag:
refs/heads/main - Owner: https://github.com/seanmozeik
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
ci.yml@8a531f256ad2de00099166e5461fdbec5e65da20 -
Trigger Event:
push
-
Statement type:
File details
Details for the file rustoml-0.13.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: rustoml-0.13.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 380.6 kB
- Tags: CPython 3.13, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.0.1 CPython/3.12.8
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
84b318cfb037cf3893e042458c77d88b7436cbcf4787f17ba896a4c12252de40
|
|
| MD5 |
7139b1bf6dcdc5015f2f617de16279fa
|
|
| BLAKE2b-256 |
35a366a8078bd65e990fef789bb2338b9d9d7b0c9064c7f0ea58129370db2e43
|
Provenance
The following attestation bundles were made for rustoml-0.13.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:
Publisher:
ci.yml on seanmozeik/rustoml
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
rustoml-0.13.0-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.whl -
Subject digest:
84b318cfb037cf3893e042458c77d88b7436cbcf4787f17ba896a4c12252de40 - Sigstore transparency entry: 604687203
- Sigstore integration time:
-
Permalink:
seanmozeik/rustoml@8a531f256ad2de00099166e5461fdbec5e65da20 -
Branch / Tag:
refs/heads/main - Owner: https://github.com/seanmozeik
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
ci.yml@8a531f256ad2de00099166e5461fdbec5e65da20 -
Trigger Event:
push
-
Statement type:
File details
Details for the file rustoml-0.13.0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl.
File metadata
- Download URL: rustoml-0.13.0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl
- Upload date:
- Size: 416.3 kB
- Tags: CPython 3.13, manylinux: glibc 2.5+ i686
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.0.1 CPython/3.12.8
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
e60a2d590a49df7b1ba9c6db27780a0a4d0be680a2f30d0b8dd8bfe0edbc2e60
|
|
| MD5 |
712ebd458d418fc44447274c8068570c
|
|
| BLAKE2b-256 |
531d26ee3abc9c49e5605add3e5e4eafef58e7cfc59f34c3519a4b9b4ed6a712
|
Provenance
The following attestation bundles were made for rustoml-0.13.0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl:
Publisher:
ci.yml on seanmozeik/rustoml
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
rustoml-0.13.0-cp313-cp313-manylinux1_i686.manylinux_2_5_i686.whl -
Subject digest:
e60a2d590a49df7b1ba9c6db27780a0a4d0be680a2f30d0b8dd8bfe0edbc2e60 - Sigstore transparency entry: 604687108
- Sigstore integration time:
-
Permalink:
seanmozeik/rustoml@8a531f256ad2de00099166e5461fdbec5e65da20 -
Branch / Tag:
refs/heads/main - Owner: https://github.com/seanmozeik
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
ci.yml@8a531f256ad2de00099166e5461fdbec5e65da20 -
Trigger Event:
push
-
Statement type:
File details
Details for the file rustoml-0.13.0-cp313-cp313-macosx_11_0_arm64.whl.
File metadata
- Download URL: rustoml-0.13.0-cp313-cp313-macosx_11_0_arm64.whl
- Upload date:
- Size: 350.8 kB
- Tags: CPython 3.13, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.0.1 CPython/3.12.8
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
a889dbbeaa2749723c4811f34cf5f344ecd4ecd4d0c743fa25c4a6d58122e5c7
|
|
| MD5 |
4332d3c475b0c820b8efa5fe1420bbc3
|
|
| BLAKE2b-256 |
308eff313dea298c49c09be0a4b56841a35d7e96dcc38318ab4c16d9fb2955c7
|
Provenance
The following attestation bundles were made for rustoml-0.13.0-cp313-cp313-macosx_11_0_arm64.whl:
Publisher:
ci.yml on seanmozeik/rustoml
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
rustoml-0.13.0-cp313-cp313-macosx_11_0_arm64.whl -
Subject digest:
a889dbbeaa2749723c4811f34cf5f344ecd4ecd4d0c743fa25c4a6d58122e5c7 - Sigstore transparency entry: 604687114
- Sigstore integration time:
-
Permalink:
seanmozeik/rustoml@8a531f256ad2de00099166e5461fdbec5e65da20 -
Branch / Tag:
refs/heads/main - Owner: https://github.com/seanmozeik
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
ci.yml@8a531f256ad2de00099166e5461fdbec5e65da20 -
Trigger Event:
push
-
Statement type:
File details
Details for the file rustoml-0.13.0-cp313-cp313-macosx_10_12_x86_64.whl.
File metadata
- Download URL: rustoml-0.13.0-cp313-cp313-macosx_10_12_x86_64.whl
- Upload date:
- Size: 368.7 kB
- Tags: CPython 3.13, macOS 10.12+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.0.1 CPython/3.12.8
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
519e60bc931b2472479a381757e31a00c68a9a49415f6895c6a9df04c36c8a5e
|
|
| MD5 |
232f24dee320659e61ddd43fcd8cc5f4
|
|
| BLAKE2b-256 |
79521fc057e36f397c14eccc2ac42f8b9244cb942e0054ef4e332c6b477db2ae
|
Provenance
The following attestation bundles were made for rustoml-0.13.0-cp313-cp313-macosx_10_12_x86_64.whl:
Publisher:
ci.yml on seanmozeik/rustoml
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
rustoml-0.13.0-cp313-cp313-macosx_10_12_x86_64.whl -
Subject digest:
519e60bc931b2472479a381757e31a00c68a9a49415f6895c6a9df04c36c8a5e - Sigstore transparency entry: 604687149
- Sigstore integration time:
-
Permalink:
seanmozeik/rustoml@8a531f256ad2de00099166e5461fdbec5e65da20 -
Branch / Tag:
refs/heads/main - Owner: https://github.com/seanmozeik
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
ci.yml@8a531f256ad2de00099166e5461fdbec5e65da20 -
Trigger Event:
push
-
Statement type:
File details
Details for the file rustoml-0.13.0-cp312-cp312-win_arm64.whl.
File metadata
- Download URL: rustoml-0.13.0-cp312-cp312-win_arm64.whl
- Upload date:
- Size: 248.9 kB
- Tags: CPython 3.12, Windows ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.0.1 CPython/3.12.8
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
3712ff36ff90d110c9c2371af5296775293f079ea080f54bc482f01b55b03058
|
|
| MD5 |
0412f1d279edd9fa5ad5436b4aca0875
|
|
| BLAKE2b-256 |
94eab393e06f73bda6155060c4266557d03c61c33b5dc6ad9ccbd08e4e88ec0c
|
Provenance
The following attestation bundles were made for rustoml-0.13.0-cp312-cp312-win_arm64.whl:
Publisher:
ci.yml on seanmozeik/rustoml
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
rustoml-0.13.0-cp312-cp312-win_arm64.whl -
Subject digest:
3712ff36ff90d110c9c2371af5296775293f079ea080f54bc482f01b55b03058 - Sigstore transparency entry: 604687193
- Sigstore integration time:
-
Permalink:
seanmozeik/rustoml@8a531f256ad2de00099166e5461fdbec5e65da20 -
Branch / Tag:
refs/heads/main - Owner: https://github.com/seanmozeik
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
ci.yml@8a531f256ad2de00099166e5461fdbec5e65da20 -
Trigger Event:
push
-
Statement type:
File details
Details for the file rustoml-0.13.0-cp312-cp312-win_amd64.whl.
File metadata
- Download URL: rustoml-0.13.0-cp312-cp312-win_amd64.whl
- Upload date:
- Size: 261.3 kB
- Tags: CPython 3.12, Windows x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.0.1 CPython/3.12.8
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
d679b04f429200472a49b0e7c601ca4f4f84fd1bb268e99728149532846e6c4c
|
|
| MD5 |
7d8e5fb682b262d4f797340a1b59edf0
|
|
| BLAKE2b-256 |
3f5136e83ffc1857906ee6ff2132fdb193a9d9412c9c7a30f3ca2fc417bfb897
|
Provenance
The following attestation bundles were made for rustoml-0.13.0-cp312-cp312-win_amd64.whl:
Publisher:
ci.yml on seanmozeik/rustoml
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
rustoml-0.13.0-cp312-cp312-win_amd64.whl -
Subject digest:
d679b04f429200472a49b0e7c601ca4f4f84fd1bb268e99728149532846e6c4c - Sigstore transparency entry: 604687060
- Sigstore integration time:
-
Permalink:
seanmozeik/rustoml@8a531f256ad2de00099166e5461fdbec5e65da20 -
Branch / Tag:
refs/heads/main - Owner: https://github.com/seanmozeik
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
ci.yml@8a531f256ad2de00099166e5461fdbec5e65da20 -
Trigger Event:
push
-
Statement type:
File details
Details for the file rustoml-0.13.0-cp312-cp312-win32.whl.
File metadata
- Download URL: rustoml-0.13.0-cp312-cp312-win32.whl
- Upload date:
- Size: 254.8 kB
- Tags: CPython 3.12, Windows x86
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.0.1 CPython/3.12.8
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
4d5bd7b5166baafd47af9761bd6f6759befcf873770a0fcac7f90539ce5b37f3
|
|
| MD5 |
f069de43e4918661fa6ec5437583b697
|
|
| BLAKE2b-256 |
6e27a650bc3c3d8ed981161b98e5a3a0a85ad11fd3e942564c81bd8cb9dfb971
|
Provenance
The following attestation bundles were made for rustoml-0.13.0-cp312-cp312-win32.whl:
Publisher:
ci.yml on seanmozeik/rustoml
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
rustoml-0.13.0-cp312-cp312-win32.whl -
Subject digest:
4d5bd7b5166baafd47af9761bd6f6759befcf873770a0fcac7f90539ce5b37f3 - Sigstore transparency entry: 604687100
- Sigstore integration time:
-
Permalink:
seanmozeik/rustoml@8a531f256ad2de00099166e5461fdbec5e65da20 -
Branch / Tag:
refs/heads/main - Owner: https://github.com/seanmozeik
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
ci.yml@8a531f256ad2de00099166e5461fdbec5e65da20 -
Trigger Event:
push
-
Statement type:
File details
Details for the file rustoml-0.13.0-cp312-cp312-musllinux_1_1_x86_64.whl.
File metadata
- Download URL: rustoml-0.13.0-cp312-cp312-musllinux_1_1_x86_64.whl
- Upload date:
- Size: 561.2 kB
- Tags: CPython 3.12, musllinux: musl 1.1+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.0.1 CPython/3.12.8
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
3d694bece3070d04d66fccf5614be0a585d0fd5952fe51112890be0cdbcb5d97
|
|
| MD5 |
f58a2525c37211d1abf9f077e373902f
|
|
| BLAKE2b-256 |
36c6d851de8bd3d789b4084a0331d1a141173d4488900dc5c5d1d8ef710563e7
|
Provenance
The following attestation bundles were made for rustoml-0.13.0-cp312-cp312-musllinux_1_1_x86_64.whl:
Publisher:
ci.yml on seanmozeik/rustoml
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
rustoml-0.13.0-cp312-cp312-musllinux_1_1_x86_64.whl -
Subject digest:
3d694bece3070d04d66fccf5614be0a585d0fd5952fe51112890be0cdbcb5d97 - Sigstore transparency entry: 604687228
- Sigstore integration time:
-
Permalink:
seanmozeik/rustoml@8a531f256ad2de00099166e5461fdbec5e65da20 -
Branch / Tag:
refs/heads/main - Owner: https://github.com/seanmozeik
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
ci.yml@8a531f256ad2de00099166e5461fdbec5e65da20 -
Trigger Event:
push
-
Statement type:
File details
Details for the file rustoml-0.13.0-cp312-cp312-musllinux_1_1_aarch64.whl.
File metadata
- Download URL: rustoml-0.13.0-cp312-cp312-musllinux_1_1_aarch64.whl
- Upload date:
- Size: 562.1 kB
- Tags: CPython 3.12, musllinux: musl 1.1+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.0.1 CPython/3.12.8
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
8dc37886130d88fd17758a037ff4bf52895687a07e8ed96817c1e3e6f908ab6f
|
|
| MD5 |
29401acc5face6367ff7d0aeec04aaeb
|
|
| BLAKE2b-256 |
ef2c4d85853151c8b6f4b431e15e51cc218220f0d16873e5be06b163202e91eb
|
Provenance
The following attestation bundles were made for rustoml-0.13.0-cp312-cp312-musllinux_1_1_aarch64.whl:
Publisher:
ci.yml on seanmozeik/rustoml
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
rustoml-0.13.0-cp312-cp312-musllinux_1_1_aarch64.whl -
Subject digest:
8dc37886130d88fd17758a037ff4bf52895687a07e8ed96817c1e3e6f908ab6f - Sigstore transparency entry: 604687217
- Sigstore integration time:
-
Permalink:
seanmozeik/rustoml@8a531f256ad2de00099166e5461fdbec5e65da20 -
Branch / Tag:
refs/heads/main - Owner: https://github.com/seanmozeik
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
ci.yml@8a531f256ad2de00099166e5461fdbec5e65da20 -
Trigger Event:
push
-
Statement type:
File details
Details for the file rustoml-0.13.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: rustoml-0.13.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 388.0 kB
- Tags: CPython 3.12, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.0.1 CPython/3.12.8
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
463a72d4a0ee9a07ab0773b51d72e18af593c645425b58c4954cec859f0175d5
|
|
| MD5 |
5b0a5c04ec3eeab3d06f02944d7d3c48
|
|
| BLAKE2b-256 |
b1ef7675399ebd9cea46f31e8730affe5527a7fd925124d42561928e8d6ed672
|
Provenance
The following attestation bundles were made for rustoml-0.13.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:
Publisher:
ci.yml on seanmozeik/rustoml
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
rustoml-0.13.0-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.whl -
Subject digest:
463a72d4a0ee9a07ab0773b51d72e18af593c645425b58c4954cec859f0175d5 - Sigstore transparency entry: 604687130
- Sigstore integration time:
-
Permalink:
seanmozeik/rustoml@8a531f256ad2de00099166e5461fdbec5e65da20 -
Branch / Tag:
refs/heads/main - Owner: https://github.com/seanmozeik
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
ci.yml@8a531f256ad2de00099166e5461fdbec5e65da20 -
Trigger Event:
push
-
Statement type:
File details
Details for the file rustoml-0.13.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl.
File metadata
- Download URL: rustoml-0.13.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
- Upload date:
- Size: 448.5 kB
- Tags: CPython 3.12, manylinux: glibc 2.17+ s390x
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.0.1 CPython/3.12.8
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
6fa810f31389f0c1a2eb2cd1922ff8d4876d72380e2aa38f6dd20898b7291868
|
|
| MD5 |
32b931866a1d82cb603b2c0648445093
|
|
| BLAKE2b-256 |
77bbf0dbf6ca7b38a2e37838ef1e610b7d0d27abf41153154f1f10c87ff7ff2e
|
Provenance
The following attestation bundles were made for rustoml-0.13.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl:
Publisher:
ci.yml on seanmozeik/rustoml
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
rustoml-0.13.0-cp312-cp312-manylinux2014_s390x.manylinux_2_17_s390x.whl -
Subject digest:
6fa810f31389f0c1a2eb2cd1922ff8d4876d72380e2aa38f6dd20898b7291868 - Sigstore transparency entry: 604687171
- Sigstore integration time:
-
Permalink:
seanmozeik/rustoml@8a531f256ad2de00099166e5461fdbec5e65da20 -
Branch / Tag:
refs/heads/main - Owner: https://github.com/seanmozeik
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
ci.yml@8a531f256ad2de00099166e5461fdbec5e65da20 -
Trigger Event:
push
-
Statement type:
File details
Details for the file rustoml-0.13.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.
File metadata
- Download URL: rustoml-0.13.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
- Upload date:
- Size: 433.6 kB
- Tags: CPython 3.12, manylinux: glibc 2.17+ ppc64le
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.0.1 CPython/3.12.8
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
fd2d1d9df5686b9c5cfe1f8db2e0bb458fac7163c4b43cc06546e4ffadedbcd5
|
|
| MD5 |
7472daef7c00a0e8666c0b2a67e8fe61
|
|
| BLAKE2b-256 |
3b8c35c2f12691ddc8982808e0afda89620a1e612b85a4426b7cb8043a2fa5e9
|
Provenance
The following attestation bundles were made for rustoml-0.13.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl:
Publisher:
ci.yml on seanmozeik/rustoml
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
rustoml-0.13.0-cp312-cp312-manylinux2014_ppc64le.manylinux_2_17_ppc64le.whl -
Subject digest:
fd2d1d9df5686b9c5cfe1f8db2e0bb458fac7163c4b43cc06546e4ffadedbcd5 - Sigstore transparency entry: 604687140
- Sigstore integration time:
-
Permalink:
seanmozeik/rustoml@8a531f256ad2de00099166e5461fdbec5e65da20 -
Branch / Tag:
refs/heads/main - Owner: https://github.com/seanmozeik
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
ci.yml@8a531f256ad2de00099166e5461fdbec5e65da20 -
Trigger Event:
push
-
Statement type:
File details
Details for the file rustoml-0.13.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.
File metadata
- Download URL: rustoml-0.13.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
- Upload date:
- Size: 408.3 kB
- Tags: CPython 3.12, manylinux: glibc 2.17+ ARMv7l
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.0.1 CPython/3.12.8
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
bbde8684d333344943876582b88ee8a01e7eb5c9f92e9f95c5694f1206a7018b
|
|
| MD5 |
fcb83444063cab7762d4c4f40bc99e08
|
|
| BLAKE2b-256 |
855a2c8ae1c525ed179e10e6f6573de902a4a8a3a4ca9b579db4e441e6a12471
|
Provenance
The following attestation bundles were made for rustoml-0.13.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl:
Publisher:
ci.yml on seanmozeik/rustoml
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
rustoml-0.13.0-cp312-cp312-manylinux2014_armv7l.manylinux_2_17_armv7l.whl -
Subject digest:
bbde8684d333344943876582b88ee8a01e7eb5c9f92e9f95c5694f1206a7018b - Sigstore transparency entry: 604687146
- Sigstore integration time:
-
Permalink:
seanmozeik/rustoml@8a531f256ad2de00099166e5461fdbec5e65da20 -
Branch / Tag:
refs/heads/main - Owner: https://github.com/seanmozeik
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
ci.yml@8a531f256ad2de00099166e5461fdbec5e65da20 -
Trigger Event:
push
-
Statement type:
File details
Details for the file rustoml-0.13.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: rustoml-0.13.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 381.1 kB
- Tags: CPython 3.12, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.0.1 CPython/3.12.8
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
39bc24f4f78b05e3d65bbad39829f4122ef613354a6fe8b624f3999bb5a2b82a
|
|
| MD5 |
8266097fd6f31d03ff74cf5a6fc8ef18
|
|
| BLAKE2b-256 |
4620d675f6361dee02a15e163d80294520fe5c3922ce0808f3f83082890420b4
|
Provenance
The following attestation bundles were made for rustoml-0.13.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:
Publisher:
ci.yml on seanmozeik/rustoml
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
rustoml-0.13.0-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.whl -
Subject digest:
39bc24f4f78b05e3d65bbad39829f4122ef613354a6fe8b624f3999bb5a2b82a - Sigstore transparency entry: 604687096
- Sigstore integration time:
-
Permalink:
seanmozeik/rustoml@8a531f256ad2de00099166e5461fdbec5e65da20 -
Branch / Tag:
refs/heads/main - Owner: https://github.com/seanmozeik
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
ci.yml@8a531f256ad2de00099166e5461fdbec5e65da20 -
Trigger Event:
push
-
Statement type:
File details
Details for the file rustoml-0.13.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl.
File metadata
- Download URL: rustoml-0.13.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl
- Upload date:
- Size: 416.8 kB
- Tags: CPython 3.12, manylinux: glibc 2.5+ i686
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.0.1 CPython/3.12.8
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
890d8a2b0b7d3eea1c54c41ba3cf073596b0da69e26da0a195c97ba182d1f300
|
|
| MD5 |
5f751c25d8be8ed04703f8be1aef2725
|
|
| BLAKE2b-256 |
44c64a78e0c6ffcd477cd7d3f26c019ba598171a54d7679383ce0f70072be256
|
Provenance
The following attestation bundles were made for rustoml-0.13.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl:
Publisher:
ci.yml on seanmozeik/rustoml
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
rustoml-0.13.0-cp312-cp312-manylinux1_i686.manylinux_2_5_i686.whl -
Subject digest:
890d8a2b0b7d3eea1c54c41ba3cf073596b0da69e26da0a195c97ba182d1f300 - Sigstore transparency entry: 604687055
- Sigstore integration time:
-
Permalink:
seanmozeik/rustoml@8a531f256ad2de00099166e5461fdbec5e65da20 -
Branch / Tag:
refs/heads/main - Owner: https://github.com/seanmozeik
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
ci.yml@8a531f256ad2de00099166e5461fdbec5e65da20 -
Trigger Event:
push
-
Statement type:
File details
Details for the file rustoml-0.13.0-cp312-cp312-macosx_11_0_arm64.whl.
File metadata
- Download URL: rustoml-0.13.0-cp312-cp312-macosx_11_0_arm64.whl
- Upload date:
- Size: 351.1 kB
- Tags: CPython 3.12, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.0.1 CPython/3.12.8
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
b304cb0d1157dea8e69d10b3defb1a42cd316bfbfa0cef795480d73a920f3e9f
|
|
| MD5 |
758da84d346673029832e4344f0d621d
|
|
| BLAKE2b-256 |
43d570cae4f1a55f070f06b3ef1a26e20403296f5a8c3ba065b273652b31298b
|
Provenance
The following attestation bundles were made for rustoml-0.13.0-cp312-cp312-macosx_11_0_arm64.whl:
Publisher:
ci.yml on seanmozeik/rustoml
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
rustoml-0.13.0-cp312-cp312-macosx_11_0_arm64.whl -
Subject digest:
b304cb0d1157dea8e69d10b3defb1a42cd316bfbfa0cef795480d73a920f3e9f - Sigstore transparency entry: 604687211
- Sigstore integration time:
-
Permalink:
seanmozeik/rustoml@8a531f256ad2de00099166e5461fdbec5e65da20 -
Branch / Tag:
refs/heads/main - Owner: https://github.com/seanmozeik
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
ci.yml@8a531f256ad2de00099166e5461fdbec5e65da20 -
Trigger Event:
push
-
Statement type:
File details
Details for the file rustoml-0.13.0-cp312-cp312-macosx_10_12_x86_64.whl.
File metadata
- Download URL: rustoml-0.13.0-cp312-cp312-macosx_10_12_x86_64.whl
- Upload date:
- Size: 369.2 kB
- Tags: CPython 3.12, macOS 10.12+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.0.1 CPython/3.12.8
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
37a9a88d6e60e18b04fa4c9f5307c7a50834428d73b7f155ba83ee655d87cea8
|
|
| MD5 |
4bcbc42ab7f8f93a829d23128c967663
|
|
| BLAKE2b-256 |
8df97a442192892daca34d7151471519b96264a5fc5be0b2151ba537c0f3d7f3
|
Provenance
The following attestation bundles were made for rustoml-0.13.0-cp312-cp312-macosx_10_12_x86_64.whl:
Publisher:
ci.yml on seanmozeik/rustoml
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
rustoml-0.13.0-cp312-cp312-macosx_10_12_x86_64.whl -
Subject digest:
37a9a88d6e60e18b04fa4c9f5307c7a50834428d73b7f155ba83ee655d87cea8 - Sigstore transparency entry: 604687231
- Sigstore integration time:
-
Permalink:
seanmozeik/rustoml@8a531f256ad2de00099166e5461fdbec5e65da20 -
Branch / Tag:
refs/heads/main - Owner: https://github.com/seanmozeik
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
ci.yml@8a531f256ad2de00099166e5461fdbec5e65da20 -
Trigger Event:
push
-
Statement type:
File details
Details for the file rustoml-0.13.0-cp311-cp311-win_arm64.whl.
File metadata
- Download URL: rustoml-0.13.0-cp311-cp311-win_arm64.whl
- Upload date:
- Size: 248.7 kB
- Tags: CPython 3.11, Windows ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.0.1 CPython/3.12.8
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
970d4ac6dcf35b0503d273af1ce3492cdd552f62c335742460daf075bf1740bd
|
|
| MD5 |
e7d5736070040e023480791d9c491ec6
|
|
| BLAKE2b-256 |
ad70cd27af8a2cc55dd71d2f988c8d8e1f3633a8bfbf7c9c2822a784e41161ae
|
Provenance
The following attestation bundles were made for rustoml-0.13.0-cp311-cp311-win_arm64.whl:
Publisher:
ci.yml on seanmozeik/rustoml
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
rustoml-0.13.0-cp311-cp311-win_arm64.whl -
Subject digest:
970d4ac6dcf35b0503d273af1ce3492cdd552f62c335742460daf075bf1740bd - Sigstore transparency entry: 604687174
- Sigstore integration time:
-
Permalink:
seanmozeik/rustoml@8a531f256ad2de00099166e5461fdbec5e65da20 -
Branch / Tag:
refs/heads/main - Owner: https://github.com/seanmozeik
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
ci.yml@8a531f256ad2de00099166e5461fdbec5e65da20 -
Trigger Event:
push
-
Statement type:
File details
Details for the file rustoml-0.13.0-cp311-cp311-win_amd64.whl.
File metadata
- Download URL: rustoml-0.13.0-cp311-cp311-win_amd64.whl
- Upload date:
- Size: 260.4 kB
- Tags: CPython 3.11, Windows x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.0.1 CPython/3.12.8
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
fc0a9a94281d9e7608082247b9ab88db3bbf7d3b3d81a9cb99fc087c4a0fe833
|
|
| MD5 |
fe55f1e4a092e31c47fc570affa3ddd3
|
|
| BLAKE2b-256 |
1614c6cf38958836aace48ef70722e5d7608cf690270d34eee3f48c80390f99c
|
Provenance
The following attestation bundles were made for rustoml-0.13.0-cp311-cp311-win_amd64.whl:
Publisher:
ci.yml on seanmozeik/rustoml
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
rustoml-0.13.0-cp311-cp311-win_amd64.whl -
Subject digest:
fc0a9a94281d9e7608082247b9ab88db3bbf7d3b3d81a9cb99fc087c4a0fe833 - Sigstore transparency entry: 604687118
- Sigstore integration time:
-
Permalink:
seanmozeik/rustoml@8a531f256ad2de00099166e5461fdbec5e65da20 -
Branch / Tag:
refs/heads/main - Owner: https://github.com/seanmozeik
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
ci.yml@8a531f256ad2de00099166e5461fdbec5e65da20 -
Trigger Event:
push
-
Statement type:
File details
Details for the file rustoml-0.13.0-cp311-cp311-win32.whl.
File metadata
- Download URL: rustoml-0.13.0-cp311-cp311-win32.whl
- Upload date:
- Size: 254.3 kB
- Tags: CPython 3.11, Windows x86
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.0.1 CPython/3.12.8
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
cea1100253c43bd987b389421a2b3f45ab5e5ed6539fbad7486aae0d863e910e
|
|
| MD5 |
58f85667dbf4b02aa8a0c6391c81878c
|
|
| BLAKE2b-256 |
a475d4c21ab1d433a15cf62285b039867ea8cb15ac90f4bb64c21e6c539219b4
|
Provenance
The following attestation bundles were made for rustoml-0.13.0-cp311-cp311-win32.whl:
Publisher:
ci.yml on seanmozeik/rustoml
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
rustoml-0.13.0-cp311-cp311-win32.whl -
Subject digest:
cea1100253c43bd987b389421a2b3f45ab5e5ed6539fbad7486aae0d863e910e - Sigstore transparency entry: 604687153
- Sigstore integration time:
-
Permalink:
seanmozeik/rustoml@8a531f256ad2de00099166e5461fdbec5e65da20 -
Branch / Tag:
refs/heads/main - Owner: https://github.com/seanmozeik
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
ci.yml@8a531f256ad2de00099166e5461fdbec5e65da20 -
Trigger Event:
push
-
Statement type:
File details
Details for the file rustoml-0.13.0-cp311-cp311-musllinux_1_1_x86_64.whl.
File metadata
- Download URL: rustoml-0.13.0-cp311-cp311-musllinux_1_1_x86_64.whl
- Upload date:
- Size: 563.0 kB
- Tags: CPython 3.11, musllinux: musl 1.1+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.0.1 CPython/3.12.8
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
8ad79969028e873abfec259a0a1fcb8fe8488f4e06578cd071a119ae9ab3ec22
|
|
| MD5 |
85bcb19b24a864b9660329bc239476c6
|
|
| BLAKE2b-256 |
434e54331556db3b67c73da494a90d8c920e3dddfc97718af4ec377ee0ea1116
|
Provenance
The following attestation bundles were made for rustoml-0.13.0-cp311-cp311-musllinux_1_1_x86_64.whl:
Publisher:
ci.yml on seanmozeik/rustoml
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
rustoml-0.13.0-cp311-cp311-musllinux_1_1_x86_64.whl -
Subject digest:
8ad79969028e873abfec259a0a1fcb8fe8488f4e06578cd071a119ae9ab3ec22 - Sigstore transparency entry: 604687190
- Sigstore integration time:
-
Permalink:
seanmozeik/rustoml@8a531f256ad2de00099166e5461fdbec5e65da20 -
Branch / Tag:
refs/heads/main - Owner: https://github.com/seanmozeik
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
ci.yml@8a531f256ad2de00099166e5461fdbec5e65da20 -
Trigger Event:
push
-
Statement type:
File details
Details for the file rustoml-0.13.0-cp311-cp311-musllinux_1_1_aarch64.whl.
File metadata
- Download URL: rustoml-0.13.0-cp311-cp311-musllinux_1_1_aarch64.whl
- Upload date:
- Size: 564.1 kB
- Tags: CPython 3.11, musllinux: musl 1.1+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.0.1 CPython/3.12.8
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
96e9d976d850149d2c8b8e09621d1fc655d326c66d4023c3d515bd075c7106a0
|
|
| MD5 |
b476a9dc2e7b918320a65eaa9b90a42c
|
|
| BLAKE2b-256 |
53aa6c323b887a012d35ade65a49fe239b49bfec39ef7f10a4e45403de81a719
|
Provenance
The following attestation bundles were made for rustoml-0.13.0-cp311-cp311-musllinux_1_1_aarch64.whl:
Publisher:
ci.yml on seanmozeik/rustoml
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
rustoml-0.13.0-cp311-cp311-musllinux_1_1_aarch64.whl -
Subject digest:
96e9d976d850149d2c8b8e09621d1fc655d326c66d4023c3d515bd075c7106a0 - Sigstore transparency entry: 604687125
- Sigstore integration time:
-
Permalink:
seanmozeik/rustoml@8a531f256ad2de00099166e5461fdbec5e65da20 -
Branch / Tag:
refs/heads/main - Owner: https://github.com/seanmozeik
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
ci.yml@8a531f256ad2de00099166e5461fdbec5e65da20 -
Trigger Event:
push
-
Statement type:
File details
Details for the file rustoml-0.13.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: rustoml-0.13.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 389.9 kB
- Tags: CPython 3.11, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.0.1 CPython/3.12.8
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
e3e6fd5ed67ae975de6bffe60f2a520eaeefdfb228012e01f99e31ebcb213b29
|
|
| MD5 |
5cdc1f36cdffaf9a40ad5582f780bdda
|
|
| BLAKE2b-256 |
b3386065e8c1a4f237a2ee1884886a3ac12e0b42ff153e5f47b97bfbac6b8429
|
Provenance
The following attestation bundles were made for rustoml-0.13.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:
Publisher:
ci.yml on seanmozeik/rustoml
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
rustoml-0.13.0-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.whl -
Subject digest:
e3e6fd5ed67ae975de6bffe60f2a520eaeefdfb228012e01f99e31ebcb213b29 - Sigstore transparency entry: 604687119
- Sigstore integration time:
-
Permalink:
seanmozeik/rustoml@8a531f256ad2de00099166e5461fdbec5e65da20 -
Branch / Tag:
refs/heads/main - Owner: https://github.com/seanmozeik
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
ci.yml@8a531f256ad2de00099166e5461fdbec5e65da20 -
Trigger Event:
push
-
Statement type:
File details
Details for the file rustoml-0.13.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl.
File metadata
- Download URL: rustoml-0.13.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
- Upload date:
- Size: 450.4 kB
- Tags: CPython 3.11, manylinux: glibc 2.17+ s390x
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.0.1 CPython/3.12.8
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
384e9194c73ced0c5c2ccdbfd7ed1e4fb1dcf4462954c3268cabe539deb72970
|
|
| MD5 |
e9d2c4d0b012d5bf35d9b43762ca7276
|
|
| BLAKE2b-256 |
d6e88aff8afe235447103f74122fb79714e3e00da7347700124c02ae932c04e3
|
Provenance
The following attestation bundles were made for rustoml-0.13.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl:
Publisher:
ci.yml on seanmozeik/rustoml
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
rustoml-0.13.0-cp311-cp311-manylinux2014_s390x.manylinux_2_17_s390x.whl -
Subject digest:
384e9194c73ced0c5c2ccdbfd7ed1e4fb1dcf4462954c3268cabe539deb72970 - Sigstore transparency entry: 604687206
- Sigstore integration time:
-
Permalink:
seanmozeik/rustoml@8a531f256ad2de00099166e5461fdbec5e65da20 -
Branch / Tag:
refs/heads/main - Owner: https://github.com/seanmozeik
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
ci.yml@8a531f256ad2de00099166e5461fdbec5e65da20 -
Trigger Event:
push
-
Statement type:
File details
Details for the file rustoml-0.13.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.
File metadata
- Download URL: rustoml-0.13.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
- Upload date:
- Size: 435.3 kB
- Tags: CPython 3.11, manylinux: glibc 2.17+ ppc64le
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.0.1 CPython/3.12.8
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
1170921bce52f64b3b361862b41493b773a6b9a9fdcb803eb93afbc0376a83e7
|
|
| MD5 |
de0e5f79d882f4973f9e4f6f52916afb
|
|
| BLAKE2b-256 |
cbd2b36f48a692a37fdd1212bbd0e082e3452576421f4ab1f03518afbc80489c
|
Provenance
The following attestation bundles were made for rustoml-0.13.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl:
Publisher:
ci.yml on seanmozeik/rustoml
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
rustoml-0.13.0-cp311-cp311-manylinux2014_ppc64le.manylinux_2_17_ppc64le.whl -
Subject digest:
1170921bce52f64b3b361862b41493b773a6b9a9fdcb803eb93afbc0376a83e7 - Sigstore transparency entry: 604687098
- Sigstore integration time:
-
Permalink:
seanmozeik/rustoml@8a531f256ad2de00099166e5461fdbec5e65da20 -
Branch / Tag:
refs/heads/main - Owner: https://github.com/seanmozeik
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
ci.yml@8a531f256ad2de00099166e5461fdbec5e65da20 -
Trigger Event:
push
-
Statement type:
File details
Details for the file rustoml-0.13.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.
File metadata
- Download URL: rustoml-0.13.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
- Upload date:
- Size: 409.6 kB
- Tags: CPython 3.11, manylinux: glibc 2.17+ ARMv7l
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.0.1 CPython/3.12.8
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
d8552b8e452ce853281b18981fd07b68c384f75f6562d115ea6ab9cbc2b8e89e
|
|
| MD5 |
033c57452650c214f5b3736ddf6ddb97
|
|
| BLAKE2b-256 |
49a4dc9facc6650b4ebec3f2ffb81b3c087919f11d1a8eb9f28ee2c1a9684000
|
Provenance
The following attestation bundles were made for rustoml-0.13.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl:
Publisher:
ci.yml on seanmozeik/rustoml
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
rustoml-0.13.0-cp311-cp311-manylinux2014_armv7l.manylinux_2_17_armv7l.whl -
Subject digest:
d8552b8e452ce853281b18981fd07b68c384f75f6562d115ea6ab9cbc2b8e89e - Sigstore transparency entry: 604687063
- Sigstore integration time:
-
Permalink:
seanmozeik/rustoml@8a531f256ad2de00099166e5461fdbec5e65da20 -
Branch / Tag:
refs/heads/main - Owner: https://github.com/seanmozeik
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
ci.yml@8a531f256ad2de00099166e5461fdbec5e65da20 -
Trigger Event:
push
-
Statement type:
File details
Details for the file rustoml-0.13.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: rustoml-0.13.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 382.9 kB
- Tags: CPython 3.11, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.0.1 CPython/3.12.8
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
f5bb9ddc0deab6a006d662b373fd75c3d9168802d690ea0ad40536db2e3ca21b
|
|
| MD5 |
fa49923eb125efa7dd18216bf500ab0f
|
|
| BLAKE2b-256 |
919d826191637f34f2f13ac3e0d4bf999ace84f3ffc50b7d7354dbe1091cfff8
|
Provenance
The following attestation bundles were made for rustoml-0.13.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:
Publisher:
ci.yml on seanmozeik/rustoml
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
rustoml-0.13.0-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.whl -
Subject digest:
f5bb9ddc0deab6a006d662b373fd75c3d9168802d690ea0ad40536db2e3ca21b - Sigstore transparency entry: 604687209
- Sigstore integration time:
-
Permalink:
seanmozeik/rustoml@8a531f256ad2de00099166e5461fdbec5e65da20 -
Branch / Tag:
refs/heads/main - Owner: https://github.com/seanmozeik
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
ci.yml@8a531f256ad2de00099166e5461fdbec5e65da20 -
Trigger Event:
push
-
Statement type:
File details
Details for the file rustoml-0.13.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl.
File metadata
- Download URL: rustoml-0.13.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl
- Upload date:
- Size: 417.9 kB
- Tags: CPython 3.11, manylinux: glibc 2.5+ i686
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.0.1 CPython/3.12.8
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
bc52b9a9e87b021d2e01aab57adbb1f8961497ae5cb173219a0dceb6e455d656
|
|
| MD5 |
62f6ae13d38573fcf3c9cb7e53a3878b
|
|
| BLAKE2b-256 |
72f8dc66e351cc971a6140eba266834ebb2e9a91aad60a4dc40638947c7298d3
|
Provenance
The following attestation bundles were made for rustoml-0.13.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl:
Publisher:
ci.yml on seanmozeik/rustoml
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
rustoml-0.13.0-cp311-cp311-manylinux1_i686.manylinux_2_5_i686.whl -
Subject digest:
bc52b9a9e87b021d2e01aab57adbb1f8961497ae5cb173219a0dceb6e455d656 - Sigstore transparency entry: 604687168
- Sigstore integration time:
-
Permalink:
seanmozeik/rustoml@8a531f256ad2de00099166e5461fdbec5e65da20 -
Branch / Tag:
refs/heads/main - Owner: https://github.com/seanmozeik
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
ci.yml@8a531f256ad2de00099166e5461fdbec5e65da20 -
Trigger Event:
push
-
Statement type:
File details
Details for the file rustoml-0.13.0-cp311-cp311-macosx_11_0_arm64.whl.
File metadata
- Download URL: rustoml-0.13.0-cp311-cp311-macosx_11_0_arm64.whl
- Upload date:
- Size: 351.2 kB
- Tags: CPython 3.11, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.0.1 CPython/3.12.8
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
c2cbc27316fb5eba65ddd4a8106836d7a3c424d6abd321bf865f69e03b5bd807
|
|
| MD5 |
dbb117f691b1f0dce93a771c6113ebdc
|
|
| BLAKE2b-256 |
0010b4532ac4114ac08a82034b233100065c80a970ce1a353692e99fc698dde9
|
Provenance
The following attestation bundles were made for rustoml-0.13.0-cp311-cp311-macosx_11_0_arm64.whl:
Publisher:
ci.yml on seanmozeik/rustoml
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
rustoml-0.13.0-cp311-cp311-macosx_11_0_arm64.whl -
Subject digest:
c2cbc27316fb5eba65ddd4a8106836d7a3c424d6abd321bf865f69e03b5bd807 - Sigstore transparency entry: 604687207
- Sigstore integration time:
-
Permalink:
seanmozeik/rustoml@8a531f256ad2de00099166e5461fdbec5e65da20 -
Branch / Tag:
refs/heads/main - Owner: https://github.com/seanmozeik
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
ci.yml@8a531f256ad2de00099166e5461fdbec5e65da20 -
Trigger Event:
push
-
Statement type:
File details
Details for the file rustoml-0.13.0-cp311-cp311-macosx_10_12_x86_64.whl.
File metadata
- Download URL: rustoml-0.13.0-cp311-cp311-macosx_10_12_x86_64.whl
- Upload date:
- Size: 369.3 kB
- Tags: CPython 3.11, macOS 10.12+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.0.1 CPython/3.12.8
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
5cdbb4c9ce8709d01e0203253e1dfd6941e50ba6a90ee135a2c6dee3d71e4ef0
|
|
| MD5 |
76e01973ff8beb88e4aa1302ace0d9c1
|
|
| BLAKE2b-256 |
10e549fb8c7477fdd421e9e6962f910c7c2b1b090ce28affa2bf49885fc41b51
|
Provenance
The following attestation bundles were made for rustoml-0.13.0-cp311-cp311-macosx_10_12_x86_64.whl:
Publisher:
ci.yml on seanmozeik/rustoml
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
rustoml-0.13.0-cp311-cp311-macosx_10_12_x86_64.whl -
Subject digest:
5cdbb4c9ce8709d01e0203253e1dfd6941e50ba6a90ee135a2c6dee3d71e4ef0 - Sigstore transparency entry: 604687179
- Sigstore integration time:
-
Permalink:
seanmozeik/rustoml@8a531f256ad2de00099166e5461fdbec5e65da20 -
Branch / Tag:
refs/heads/main - Owner: https://github.com/seanmozeik
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
ci.yml@8a531f256ad2de00099166e5461fdbec5e65da20 -
Trigger Event:
push
-
Statement type:
File details
Details for the file rustoml-0.13.0-cp310-cp310-win_amd64.whl.
File metadata
- Download URL: rustoml-0.13.0-cp310-cp310-win_amd64.whl
- Upload date:
- Size: 260.4 kB
- Tags: CPython 3.10, Windows x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.0.1 CPython/3.12.8
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
ee0bbcc912d2571a0565397c8d2138551feba032f2a4862252c5485ef7493279
|
|
| MD5 |
c2fb69922f84b76b82f9dde3e7ec66a3
|
|
| BLAKE2b-256 |
882a181632e784cb713c69204d381e734cb47631f8df37c334d37651d5a1f7de
|
Provenance
The following attestation bundles were made for rustoml-0.13.0-cp310-cp310-win_amd64.whl:
Publisher:
ci.yml on seanmozeik/rustoml
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
rustoml-0.13.0-cp310-cp310-win_amd64.whl -
Subject digest:
ee0bbcc912d2571a0565397c8d2138551feba032f2a4862252c5485ef7493279 - Sigstore transparency entry: 604687257
- Sigstore integration time:
-
Permalink:
seanmozeik/rustoml@8a531f256ad2de00099166e5461fdbec5e65da20 -
Branch / Tag:
refs/heads/main - Owner: https://github.com/seanmozeik
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
ci.yml@8a531f256ad2de00099166e5461fdbec5e65da20 -
Trigger Event:
push
-
Statement type:
File details
Details for the file rustoml-0.13.0-cp310-cp310-win32.whl.
File metadata
- Download URL: rustoml-0.13.0-cp310-cp310-win32.whl
- Upload date:
- Size: 255.0 kB
- Tags: CPython 3.10, Windows x86
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.0.1 CPython/3.12.8
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
99924f69d35e79403f73d723540c48f1a65e0a6a2dec7eee198f14c97367b59c
|
|
| MD5 |
d28be5cc9da6e1972ac9f2c934c1aba4
|
|
| BLAKE2b-256 |
cff1a558414bce3894e73998c2341aeadffd23b35f44db553c2feac7fdbbb038
|
Provenance
The following attestation bundles were made for rustoml-0.13.0-cp310-cp310-win32.whl:
Publisher:
ci.yml on seanmozeik/rustoml
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
rustoml-0.13.0-cp310-cp310-win32.whl -
Subject digest:
99924f69d35e79403f73d723540c48f1a65e0a6a2dec7eee198f14c97367b59c - Sigstore transparency entry: 604687157
- Sigstore integration time:
-
Permalink:
seanmozeik/rustoml@8a531f256ad2de00099166e5461fdbec5e65da20 -
Branch / Tag:
refs/heads/main - Owner: https://github.com/seanmozeik
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
ci.yml@8a531f256ad2de00099166e5461fdbec5e65da20 -
Trigger Event:
push
-
Statement type:
File details
Details for the file rustoml-0.13.0-cp310-cp310-musllinux_1_1_x86_64.whl.
File metadata
- Download URL: rustoml-0.13.0-cp310-cp310-musllinux_1_1_x86_64.whl
- Upload date:
- Size: 562.9 kB
- Tags: CPython 3.10, musllinux: musl 1.1+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.0.1 CPython/3.12.8
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
77f119b873ad87cee99c0d0b96bc37e1f8152b0663f19b47f98705f835037af2
|
|
| MD5 |
63d9fa2935d635f5c597682be4bcf7da
|
|
| BLAKE2b-256 |
e2f03c8798105c0e271036c78e4915f6fb68b1273224dd6eb01baadb01ff94a6
|
Provenance
The following attestation bundles were made for rustoml-0.13.0-cp310-cp310-musllinux_1_1_x86_64.whl:
Publisher:
ci.yml on seanmozeik/rustoml
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
rustoml-0.13.0-cp310-cp310-musllinux_1_1_x86_64.whl -
Subject digest:
77f119b873ad87cee99c0d0b96bc37e1f8152b0663f19b47f98705f835037af2 - Sigstore transparency entry: 604687079
- Sigstore integration time:
-
Permalink:
seanmozeik/rustoml@8a531f256ad2de00099166e5461fdbec5e65da20 -
Branch / Tag:
refs/heads/main - Owner: https://github.com/seanmozeik
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
ci.yml@8a531f256ad2de00099166e5461fdbec5e65da20 -
Trigger Event:
push
-
Statement type:
File details
Details for the file rustoml-0.13.0-cp310-cp310-musllinux_1_1_aarch64.whl.
File metadata
- Download URL: rustoml-0.13.0-cp310-cp310-musllinux_1_1_aarch64.whl
- Upload date:
- Size: 564.1 kB
- Tags: CPython 3.10, musllinux: musl 1.1+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.0.1 CPython/3.12.8
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
14cc319a8fa0bb6fc8fe30e7069f006479bc41464563386273508dc9d2ac146c
|
|
| MD5 |
4131a8184ca34e89c72bb950982730d7
|
|
| BLAKE2b-256 |
24df5e261a131acf0ac2a6ee26ec1a3a9bc5754f4efcc6f488d86d1be752ad42
|
Provenance
The following attestation bundles were made for rustoml-0.13.0-cp310-cp310-musllinux_1_1_aarch64.whl:
Publisher:
ci.yml on seanmozeik/rustoml
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
rustoml-0.13.0-cp310-cp310-musllinux_1_1_aarch64.whl -
Subject digest:
14cc319a8fa0bb6fc8fe30e7069f006479bc41464563386273508dc9d2ac146c - Sigstore transparency entry: 604687220
- Sigstore integration time:
-
Permalink:
seanmozeik/rustoml@8a531f256ad2de00099166e5461fdbec5e65da20 -
Branch / Tag:
refs/heads/main - Owner: https://github.com/seanmozeik
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
ci.yml@8a531f256ad2de00099166e5461fdbec5e65da20 -
Trigger Event:
push
-
Statement type:
File details
Details for the file rustoml-0.13.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: rustoml-0.13.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 389.9 kB
- Tags: CPython 3.10, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.0.1 CPython/3.12.8
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
f64596235f9d2ae45107e39c2bb76af0b8fe139759f5a22183851436d0de3cd8
|
|
| MD5 |
97174ad958f4912aa3332de171729e39
|
|
| BLAKE2b-256 |
e692b43bc8d5bce28f1178e05292adefff1063adb9dee1af2716448277fc8201
|
Provenance
The following attestation bundles were made for rustoml-0.13.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:
Publisher:
ci.yml on seanmozeik/rustoml
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
rustoml-0.13.0-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.whl -
Subject digest:
f64596235f9d2ae45107e39c2bb76af0b8fe139759f5a22183851436d0de3cd8 - Sigstore transparency entry: 604687076
- Sigstore integration time:
-
Permalink:
seanmozeik/rustoml@8a531f256ad2de00099166e5461fdbec5e65da20 -
Branch / Tag:
refs/heads/main - Owner: https://github.com/seanmozeik
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
ci.yml@8a531f256ad2de00099166e5461fdbec5e65da20 -
Trigger Event:
push
-
Statement type:
File details
Details for the file rustoml-0.13.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl.
File metadata
- Download URL: rustoml-0.13.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
- Upload date:
- Size: 450.9 kB
- Tags: CPython 3.10, manylinux: glibc 2.17+ s390x
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.0.1 CPython/3.12.8
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
302405238103ef4534db8bc2ca7662c3855ae9f5d8a7b15240c2e2d60818b231
|
|
| MD5 |
6e89f42d116cc0b5a9611f1f4b49a973
|
|
| BLAKE2b-256 |
581afe67526277039de0869b2a03443d6dbcbc39604f2ed4f0869d5c08f5b929
|
Provenance
The following attestation bundles were made for rustoml-0.13.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl:
Publisher:
ci.yml on seanmozeik/rustoml
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
rustoml-0.13.0-cp310-cp310-manylinux2014_s390x.manylinux_2_17_s390x.whl -
Subject digest:
302405238103ef4534db8bc2ca7662c3855ae9f5d8a7b15240c2e2d60818b231 - Sigstore transparency entry: 604687201
- Sigstore integration time:
-
Permalink:
seanmozeik/rustoml@8a531f256ad2de00099166e5461fdbec5e65da20 -
Branch / Tag:
refs/heads/main - Owner: https://github.com/seanmozeik
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
ci.yml@8a531f256ad2de00099166e5461fdbec5e65da20 -
Trigger Event:
push
-
Statement type:
File details
Details for the file rustoml-0.13.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.
File metadata
- Download URL: rustoml-0.13.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
- Upload date:
- Size: 435.4 kB
- Tags: CPython 3.10, manylinux: glibc 2.17+ ppc64le
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.0.1 CPython/3.12.8
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
1e742a9540588b13a7673c98a6b32e3c091d68bed094055e9f4d6c27ee107f23
|
|
| MD5 |
25aa4bb883f7f14fd644d883fc7011c9
|
|
| BLAKE2b-256 |
3b532483e1afd9b63dfe7ef3ec3f2fe2172c82dd1b9a17f6c4688029601eebe6
|
Provenance
The following attestation bundles were made for rustoml-0.13.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl:
Publisher:
ci.yml on seanmozeik/rustoml
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
rustoml-0.13.0-cp310-cp310-manylinux2014_ppc64le.manylinux_2_17_ppc64le.whl -
Subject digest:
1e742a9540588b13a7673c98a6b32e3c091d68bed094055e9f4d6c27ee107f23 - Sigstore transparency entry: 604687134
- Sigstore integration time:
-
Permalink:
seanmozeik/rustoml@8a531f256ad2de00099166e5461fdbec5e65da20 -
Branch / Tag:
refs/heads/main - Owner: https://github.com/seanmozeik
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
ci.yml@8a531f256ad2de00099166e5461fdbec5e65da20 -
Trigger Event:
push
-
Statement type:
File details
Details for the file rustoml-0.13.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.
File metadata
- Download URL: rustoml-0.13.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
- Upload date:
- Size: 410.3 kB
- Tags: CPython 3.10, manylinux: glibc 2.17+ ARMv7l
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.0.1 CPython/3.12.8
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
4a1dae600974d2367238a86a993c6c88bbf38ad7e57df22606aec38b0ea96f80
|
|
| MD5 |
f786e9ff4bebb323a0a73209d36be639
|
|
| BLAKE2b-256 |
458ee7c864653072e26f3845f094a7a1cda91913f243550475936761b1667b23
|
Provenance
The following attestation bundles were made for rustoml-0.13.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl:
Publisher:
ci.yml on seanmozeik/rustoml
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
rustoml-0.13.0-cp310-cp310-manylinux2014_armv7l.manylinux_2_17_armv7l.whl -
Subject digest:
4a1dae600974d2367238a86a993c6c88bbf38ad7e57df22606aec38b0ea96f80 - Sigstore transparency entry: 604687075
- Sigstore integration time:
-
Permalink:
seanmozeik/rustoml@8a531f256ad2de00099166e5461fdbec5e65da20 -
Branch / Tag:
refs/heads/main - Owner: https://github.com/seanmozeik
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
ci.yml@8a531f256ad2de00099166e5461fdbec5e65da20 -
Trigger Event:
push
-
Statement type:
File details
Details for the file rustoml-0.13.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: rustoml-0.13.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 383.0 kB
- Tags: CPython 3.10, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.0.1 CPython/3.12.8
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
1dee11f1be6b95cdb365031898ad12fea8ee26b75ecb56a9370914be277722fa
|
|
| MD5 |
a6572b1c2144dbaaa1a5df8b501cd40f
|
|
| BLAKE2b-256 |
169915034350d3cb84349a712cb2198a7476de175b6409121f9d283e3a1d8bc9
|
Provenance
The following attestation bundles were made for rustoml-0.13.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:
Publisher:
ci.yml on seanmozeik/rustoml
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
rustoml-0.13.0-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.whl -
Subject digest:
1dee11f1be6b95cdb365031898ad12fea8ee26b75ecb56a9370914be277722fa - Sigstore transparency entry: 604687223
- Sigstore integration time:
-
Permalink:
seanmozeik/rustoml@8a531f256ad2de00099166e5461fdbec5e65da20 -
Branch / Tag:
refs/heads/main - Owner: https://github.com/seanmozeik
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
ci.yml@8a531f256ad2de00099166e5461fdbec5e65da20 -
Trigger Event:
push
-
Statement type:
File details
Details for the file rustoml-0.13.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl.
File metadata
- Download URL: rustoml-0.13.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl
- Upload date:
- Size: 417.8 kB
- Tags: CPython 3.10, manylinux: glibc 2.5+ i686
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.0.1 CPython/3.12.8
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
dd82fc585af03dc49e03c95e7a140f8ba6a6e434f2b64f30137c9e1103f0e3c0
|
|
| MD5 |
628ee565fcf18ee0de2245a65df890d6
|
|
| BLAKE2b-256 |
f2919015553c44b049244dc9a40e9257b6fb127d201d2e09eac8725f9e57115c
|
Provenance
The following attestation bundles were made for rustoml-0.13.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl:
Publisher:
ci.yml on seanmozeik/rustoml
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
rustoml-0.13.0-cp310-cp310-manylinux1_i686.manylinux_2_5_i686.whl -
Subject digest:
dd82fc585af03dc49e03c95e7a140f8ba6a6e434f2b64f30137c9e1103f0e3c0 - Sigstore transparency entry: 604687196
- Sigstore integration time:
-
Permalink:
seanmozeik/rustoml@8a531f256ad2de00099166e5461fdbec5e65da20 -
Branch / Tag:
refs/heads/main - Owner: https://github.com/seanmozeik
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
ci.yml@8a531f256ad2de00099166e5461fdbec5e65da20 -
Trigger Event:
push
-
Statement type:
File details
Details for the file rustoml-0.13.0-cp310-cp310-macosx_11_0_arm64.whl.
File metadata
- Download URL: rustoml-0.13.0-cp310-cp310-macosx_11_0_arm64.whl
- Upload date:
- Size: 351.3 kB
- Tags: CPython 3.10, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.0.1 CPython/3.12.8
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
a3d8cf50bf6518a8372b0be9b716e3d67f15ae7615ecc2e10b27b28bb95cd72b
|
|
| MD5 |
c6db2d7e8b0419b3f4b826e3b38bad40
|
|
| BLAKE2b-256 |
697129e2d8fb26f14b709432e2b6610a4abbd521f6e72951ff59f75b25e3fb5f
|
Provenance
The following attestation bundles were made for rustoml-0.13.0-cp310-cp310-macosx_11_0_arm64.whl:
Publisher:
ci.yml on seanmozeik/rustoml
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
rustoml-0.13.0-cp310-cp310-macosx_11_0_arm64.whl -
Subject digest:
a3d8cf50bf6518a8372b0be9b716e3d67f15ae7615ecc2e10b27b28bb95cd72b - Sigstore transparency entry: 604687131
- Sigstore integration time:
-
Permalink:
seanmozeik/rustoml@8a531f256ad2de00099166e5461fdbec5e65da20 -
Branch / Tag:
refs/heads/main - Owner: https://github.com/seanmozeik
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
ci.yml@8a531f256ad2de00099166e5461fdbec5e65da20 -
Trigger Event:
push
-
Statement type:
File details
Details for the file rustoml-0.13.0-cp310-cp310-macosx_10_12_x86_64.whl.
File metadata
- Download URL: rustoml-0.13.0-cp310-cp310-macosx_10_12_x86_64.whl
- Upload date:
- Size: 369.4 kB
- Tags: CPython 3.10, macOS 10.12+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.0.1 CPython/3.12.8
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
123417badc115f7d30b334821be0041ed4e9a458d29acb21699241b1a61432e3
|
|
| MD5 |
b6cdcd55f20d4d4c66dd7340e12e8b95
|
|
| BLAKE2b-256 |
20d21a5e95e42be327459df079e80fd74055df0bebea7b73f9ac303c136e98de
|
Provenance
The following attestation bundles were made for rustoml-0.13.0-cp310-cp310-macosx_10_12_x86_64.whl:
Publisher:
ci.yml on seanmozeik/rustoml
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
rustoml-0.13.0-cp310-cp310-macosx_10_12_x86_64.whl -
Subject digest:
123417badc115f7d30b334821be0041ed4e9a458d29acb21699241b1a61432e3 - Sigstore transparency entry: 604687051
- Sigstore integration time:
-
Permalink:
seanmozeik/rustoml@8a531f256ad2de00099166e5461fdbec5e65da20 -
Branch / Tag:
refs/heads/main - Owner: https://github.com/seanmozeik
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
ci.yml@8a531f256ad2de00099166e5461fdbec5e65da20 -
Trigger Event:
push
-
Statement type: