Skip to main content

No project description provided

Project description

rtoml

Actions Status Coverage pypi versions license

A better TOML library for python implemented in rust.

Why Use rtoml

  • Correctness: rtoml is based on the widely used and very stable toml-rs library, it passes all the standard TOML tests as well as having 100% coverage on python code. Other TOML libraries for python I tried all failed to parse some valid TOML.
  • Performance: see github.com/pwwang/toml-bench - rtoml is the fastest Python TOML libraries at the time of writing.
  • None-value handling: rtoml has flexible support for None values, instead of simply ignoring them.

Install

Requires python>=3.9, binaries are available from PyPI for Linux, macOS and Windows, see here.

pip install rtoml

If no binary is available on pypi for you system configuration; you'll need rust stable installed before you can install rtoml.

Usage

load

def load(toml: Union[str, Path, TextIO], *, none_value: Optional[str] = None) -> Dict[str, Any]: ...

Parse TOML via a string or file and return a python dictionary.

  • toml: a str, Path or file object from open().
  • none_value: controlling which value in toml is loaded as None in python. By default, none_value is None, which means nothing is loaded as None

loads

def loads(toml: str, *, none_value: Optional[str] = None) -> Dict[str, Any]: ...

Parse a TOML string and return a python dictionary. (provided to match the interface of json and similar libraries)

  • toml: a str containing TOML.
  • none_value: controlling which value in toml is loaded as None in python. By default, none_value is None, which means nothing is loaded as None

dumps

def dumps(obj: Any, *, pretty: bool = False, none_value: Optional[str] = "null") -> str: ...

Serialize a python object to TOML.

  • obj: a python object to be serialized.
  • pretty: if True the output has a more "pretty" format.
  • none_value: controlling how None values in obj are serialized. none_value=None means None values are ignored.

dump

def dump(
    obj: Any, file: Union[Path, TextIO], *, pretty: bool = False, none_value: Optional[str] = "null"
) -> int: ...

Serialize a python object to TOML and write it to a file.

  • obj: a python object to be serialized.
  • file: a Path or file object from open().
  • pretty: if True the output has a more "pretty" format.
  • none_value: controlling how None values in obj are serialized. none_value=None means None values are ignored.

Examples

from datetime import datetime, timezone, timedelta
import rtoml

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 = rtoml.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 rtoml.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 rtoml.dumps(obj, none_value=None) == """\
b = 1
c = [1, 2, 3]
"""

# Serialize None values as '@None'
assert rtoml.dumps(obj, none_value='@None') == """\
a = "@None"
b = 1
c = [1, 2, "@None", 3]
"""

# Deserialize '@None' back to None
assert rtoml.load("""\
a = "@None"
b = 1
c = [1, 2, "@None", 3]
""", none_value='@None') == obj

Project details


Download files

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

Source Distribution

rtoml-0.12.0.tar.gz (43.1 kB view details)

Uploaded Source

Built Distributions

rtoml-0.12.0-cp313-cp313-win_arm64.whl (216.9 kB view details)

Uploaded CPython 3.13Windows ARM64

rtoml-0.12.0-cp313-cp313-win_amd64.whl (225.1 kB view details)

Uploaded CPython 3.13Windows x86-64

rtoml-0.12.0-cp313-cp313-win32.whl (220.1 kB view details)

Uploaded CPython 3.13Windows x86

rtoml-0.12.0-cp313-cp313-musllinux_1_1_x86_64.whl (517.4 kB view details)

Uploaded CPython 3.13musllinux: musl 1.1+ x86-64

rtoml-0.12.0-cp313-cp313-musllinux_1_1_aarch64.whl (518.2 kB view details)

Uploaded CPython 3.13musllinux: musl 1.1+ ARM64

rtoml-0.12.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (346.7 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

rtoml-0.12.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl (482.0 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ s390x

rtoml-0.12.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (382.2 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ppc64le

rtoml-0.12.0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (359.1 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARMv7l

rtoml-0.12.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (338.5 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

rtoml-0.12.0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl (366.0 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.5+ i686

rtoml-0.12.0-cp313-cp313-macosx_11_0_arm64.whl (311.5 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

rtoml-0.12.0-cp313-cp313-macosx_10_12_x86_64.whl (322.6 kB view details)

Uploaded CPython 3.13macOS 10.12+ x86-64

rtoml-0.12.0-cp312-cp312-win_arm64.whl (217.2 kB view details)

Uploaded CPython 3.12Windows ARM64

rtoml-0.12.0-cp312-cp312-win_amd64.whl (225.5 kB view details)

Uploaded CPython 3.12Windows x86-64

rtoml-0.12.0-cp312-cp312-win32.whl (220.5 kB view details)

Uploaded CPython 3.12Windows x86

rtoml-0.12.0-cp312-cp312-musllinux_1_1_x86_64.whl (518.1 kB view details)

Uploaded CPython 3.12musllinux: musl 1.1+ x86-64

rtoml-0.12.0-cp312-cp312-musllinux_1_1_aarch64.whl (518.7 kB view details)

Uploaded CPython 3.12musllinux: musl 1.1+ ARM64

rtoml-0.12.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (347.3 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

rtoml-0.12.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl (482.3 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ s390x

rtoml-0.12.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (382.7 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ppc64le

rtoml-0.12.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (359.6 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARMv7l

rtoml-0.12.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (339.0 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

rtoml-0.12.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl (366.4 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.5+ i686

rtoml-0.12.0-cp312-cp312-macosx_11_0_arm64.whl (311.7 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

rtoml-0.12.0-cp312-cp312-macosx_10_12_x86_64.whl (323.0 kB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

rtoml-0.12.0-cp311-cp311-win_arm64.whl (216.9 kB view details)

Uploaded CPython 3.11Windows ARM64

rtoml-0.12.0-cp311-cp311-win_amd64.whl (224.8 kB view details)

Uploaded CPython 3.11Windows x86-64

rtoml-0.12.0-cp311-cp311-win32.whl (219.4 kB view details)

Uploaded CPython 3.11Windows x86

rtoml-0.12.0-cp311-cp311-musllinux_1_1_x86_64.whl (520.1 kB view details)

Uploaded CPython 3.11musllinux: musl 1.1+ x86-64

rtoml-0.12.0-cp311-cp311-musllinux_1_1_aarch64.whl (520.2 kB view details)

Uploaded CPython 3.11musllinux: musl 1.1+ ARM64

rtoml-0.12.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (349.2 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

rtoml-0.12.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl (484.1 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ s390x

rtoml-0.12.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (384.5 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ppc64le

rtoml-0.12.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (361.1 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARMv7l

rtoml-0.12.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (341.3 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

rtoml-0.12.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl (368.4 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.5+ i686

rtoml-0.12.0-cp311-cp311-macosx_11_0_arm64.whl (313.7 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

rtoml-0.12.0-cp311-cp311-macosx_10_12_x86_64.whl (325.1 kB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

rtoml-0.12.0-cp310-cp310-win_amd64.whl (224.6 kB view details)

Uploaded CPython 3.10Windows x86-64

rtoml-0.12.0-cp310-cp310-win32.whl (219.1 kB view details)

Uploaded CPython 3.10Windows x86

rtoml-0.12.0-cp310-cp310-musllinux_1_1_x86_64.whl (520.1 kB view details)

Uploaded CPython 3.10musllinux: musl 1.1+ x86-64

rtoml-0.12.0-cp310-cp310-musllinux_1_1_aarch64.whl (520.4 kB view details)

Uploaded CPython 3.10musllinux: musl 1.1+ ARM64

rtoml-0.12.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (349.2 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

rtoml-0.12.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl (485.0 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ s390x

rtoml-0.12.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (384.4 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ppc64le

rtoml-0.12.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (360.9 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARMv7l

rtoml-0.12.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (341.3 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

rtoml-0.12.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl (368.2 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.5+ i686

rtoml-0.12.0-cp310-cp310-macosx_11_0_arm64.whl (313.5 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

rtoml-0.12.0-cp310-cp310-macosx_10_12_x86_64.whl (324.8 kB view details)

Uploaded CPython 3.10macOS 10.12+ x86-64

rtoml-0.12.0-cp39-cp39-win_amd64.whl (225.5 kB view details)

Uploaded CPython 3.9Windows x86-64

rtoml-0.12.0-cp39-cp39-win32.whl (220.2 kB view details)

Uploaded CPython 3.9Windows x86

rtoml-0.12.0-cp39-cp39-musllinux_1_1_x86_64.whl (521.1 kB view details)

Uploaded CPython 3.9musllinux: musl 1.1+ x86-64

rtoml-0.12.0-cp39-cp39-musllinux_1_1_aarch64.whl (521.1 kB view details)

Uploaded CPython 3.9musllinux: musl 1.1+ ARM64

rtoml-0.12.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (350.1 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

rtoml-0.12.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl (486.3 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ s390x

rtoml-0.12.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (385.1 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ppc64le

rtoml-0.12.0-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (362.1 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARMv7l

rtoml-0.12.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (342.1 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64

rtoml-0.12.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl (369.3 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.5+ i686

rtoml-0.12.0-cp39-cp39-macosx_11_0_arm64.whl (314.8 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

rtoml-0.12.0-cp39-cp39-macosx_10_12_x86_64.whl (325.7 kB view details)

Uploaded CPython 3.9macOS 10.12+ x86-64

File details

Details for the file rtoml-0.12.0.tar.gz.

File metadata

  • Download URL: rtoml-0.12.0.tar.gz
  • Upload date:
  • Size: 43.1 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.0.1 CPython/3.12.8

File hashes

Hashes for rtoml-0.12.0.tar.gz
Algorithm Hash digest
SHA256 662e56bd5953ee7ebcc5798507ae90daa329940a5d5157a48f3d477ebf99c55b
MD5 757108de14aefe53d22e8fcc3ebf283f
BLAKE2b-256 879359e1dc9829eafbfb349b1ff2dcfca647d7f7e7d87788de54ab0e402c7036

See more details on using hashes here.

Provenance

The following attestation bundles were made for rtoml-0.12.0.tar.gz:

Publisher: ci.yml on samuelcolvin/rtoml

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

File details

Details for the file rtoml-0.12.0-cp313-cp313-win_arm64.whl.

File metadata

  • Download URL: rtoml-0.12.0-cp313-cp313-win_arm64.whl
  • Upload date:
  • Size: 216.9 kB
  • Tags: CPython 3.13, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.0.1 CPython/3.12.8

File hashes

Hashes for rtoml-0.12.0-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 730770673649220d4265d9986d3a9089d38434f36c1c629b98a58eb2bbee9cfb
MD5 10742363df390f556e0b900b68cd92eb
BLAKE2b-256 a6402e8640ffe564626424aba6f1ea19f41f278e46932e5431faf8265f6e1dcb

See more details on using hashes here.

Provenance

The following attestation bundles were made for rtoml-0.12.0-cp313-cp313-win_arm64.whl:

Publisher: ci.yml on samuelcolvin/rtoml

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

File details

Details for the file rtoml-0.12.0-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: rtoml-0.12.0-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 225.1 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

Hashes for rtoml-0.12.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 1c88e48946adef48dce2dc54f1380f6ff0d580f06770f9ca9600ef330bc06c39
MD5 99a23b62016a4209901493d96bd3a334
BLAKE2b-256 aac88dc7e391ef6ee8967a8ac1a2c40e483d99b6c0e09c96ce0e5d4c01f88b9c

See more details on using hashes here.

Provenance

The following attestation bundles were made for rtoml-0.12.0-cp313-cp313-win_amd64.whl:

Publisher: ci.yml on samuelcolvin/rtoml

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

File details

Details for the file rtoml-0.12.0-cp313-cp313-win32.whl.

File metadata

  • Download URL: rtoml-0.12.0-cp313-cp313-win32.whl
  • Upload date:
  • Size: 220.1 kB
  • Tags: CPython 3.13, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.0.1 CPython/3.12.8

File hashes

Hashes for rtoml-0.12.0-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 7aebc94ed208ff46e6ce469ef30b98095932a3e74b99bde102a0f035d5034620
MD5 bad03cd3e870300dd930c70aebcfc2a1
BLAKE2b-256 3b88354f0f3388b38cb50a58e4abbeb364e08b7f6739f79c8a1a03f3326caaec

See more details on using hashes here.

Provenance

The following attestation bundles were made for rtoml-0.12.0-cp313-cp313-win32.whl:

Publisher: ci.yml on samuelcolvin/rtoml

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

File details

Details for the file rtoml-0.12.0-cp313-cp313-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for rtoml-0.12.0-cp313-cp313-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 57912b150aa48a8a90b599b57691a165092a9f5cf9a98bf431b1cd380e58414a
MD5 f5e27a92e8abef62c2b23b61f5640dd9
BLAKE2b-256 b69689c80a946adbd2050999b7cee974120c28df16683b8a5bbf3a09ea6b2a1b

See more details on using hashes here.

Provenance

The following attestation bundles were made for rtoml-0.12.0-cp313-cp313-musllinux_1_1_x86_64.whl:

Publisher: ci.yml on samuelcolvin/rtoml

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

File details

Details for the file rtoml-0.12.0-cp313-cp313-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for rtoml-0.12.0-cp313-cp313-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 321ee9dca365b5c1dab8c74617e7f8c941de3fdc10ac9f3c11c9ac261418ed80
MD5 7618852bc1920dd393330d09d819de66
BLAKE2b-256 fe63892c5c2087a159cd5bad8cab759b015fdd185d50ba97a91725548435b1f9

See more details on using hashes here.

Provenance

The following attestation bundles were made for rtoml-0.12.0-cp313-cp313-musllinux_1_1_aarch64.whl:

Publisher: ci.yml on samuelcolvin/rtoml

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

File details

Details for the file rtoml-0.12.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for rtoml-0.12.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 bea9797f08311b0b605cae671abd884724d8d3d6524c184ccf8c70b220a9a68b
MD5 f695793f65b080b51a93a6053e23a9ac
BLAKE2b-256 e8b887074f0c3f14b27dbe0eedd87cf41a5b00d4c12a06e16d76d6167f42a65d

See more details on using hashes here.

Provenance

The following attestation bundles were made for rtoml-0.12.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: ci.yml on samuelcolvin/rtoml

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

File details

Details for the file rtoml-0.12.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for rtoml-0.12.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 0b9156c2d30a2917f172b9a98c251864d3063dc5bc9764147779245c8a690441
MD5 a38cef120189bef5caf1afdc7d0c48ec
BLAKE2b-256 f894c415547d83b5831ef61302a41929d5013dc4d03c38fa77289f49c34e32e0

See more details on using hashes here.

Provenance

The following attestation bundles were made for rtoml-0.12.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl:

Publisher: ci.yml on samuelcolvin/rtoml

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

File details

Details for the file rtoml-0.12.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for rtoml-0.12.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 559f77c916cf02e0261756a7924382e5b4a529a316106aba9b7ff4b3b39e227a
MD5 4d0a8b1b68f35f749a73ffbeb06ac059
BLAKE2b-256 26f5257d2d2561597c3286e036053b6af4bd0f488d7adaf9e213ea1cf8c1e3a2

See more details on using hashes here.

Provenance

The following attestation bundles were made for rtoml-0.12.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl:

Publisher: ci.yml on samuelcolvin/rtoml

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

File details

Details for the file rtoml-0.12.0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for rtoml-0.12.0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 3637da07651aa522fcaa81d7944167a9db886c687ec81c31aade0048caa51c97
MD5 fc8e5eef55e0905ebfdabb687698f2a5
BLAKE2b-256 cd493ce420d49d9beae463a08326dbe276dbb8f9c76730ffbc4e49349cc5ba32

See more details on using hashes here.

Provenance

The following attestation bundles were made for rtoml-0.12.0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl:

Publisher: ci.yml on samuelcolvin/rtoml

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

File details

Details for the file rtoml-0.12.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for rtoml-0.12.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 8f5ee3825c9c7aad732b184fed58cc2c368360ca8d553516663374937b9497be
MD5 de32cdd9cacc2c5e867c10e90ab7df09
BLAKE2b-256 dc0fcb0c0b3db93775e3dfa7b83bfe8f9df7f75a2b61934c668cfaa377adcee2

See more details on using hashes here.

Provenance

The following attestation bundles were made for rtoml-0.12.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: ci.yml on samuelcolvin/rtoml

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

File details

Details for the file rtoml-0.12.0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for rtoml-0.12.0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 b522f671f8964a79dda162c9985950422e27fe9420dd924257dee0184c8d047f
MD5 20d60990d34a8bd291d48f97b71611e0
BLAKE2b-256 27572c25850a7f5597eaacc815194df3f78b99ff04201f48c2a573c0c1e05f97

See more details on using hashes here.

Provenance

The following attestation bundles were made for rtoml-0.12.0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl:

Publisher: ci.yml on samuelcolvin/rtoml

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

File details

Details for the file rtoml-0.12.0-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for rtoml-0.12.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a058a1739a2519a41afe160280dcd791c202068e477ceb7ebf606830299c63af
MD5 777d1f90137f4cf137c2fce3f70e13de
BLAKE2b-256 3aedd1d50706ff2ab0a934437609320fd8c4e0834e9bb5bba273ad76e86c9ca0

See more details on using hashes here.

Provenance

The following attestation bundles were made for rtoml-0.12.0-cp313-cp313-macosx_11_0_arm64.whl:

Publisher: ci.yml on samuelcolvin/rtoml

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

File details

Details for the file rtoml-0.12.0-cp313-cp313-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for rtoml-0.12.0-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 12e99b493f0d59ad925b307b4c3b15c560ee44c672dce2ddce227e550560af5e
MD5 4785284bb91087d8f073e7eb314139dc
BLAKE2b-256 88f535c0dcfb152300980c05c8c810bd9927fa204db9722917a11d617718ce8c

See more details on using hashes here.

Provenance

The following attestation bundles were made for rtoml-0.12.0-cp313-cp313-macosx_10_12_x86_64.whl:

Publisher: ci.yml on samuelcolvin/rtoml

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

File details

Details for the file rtoml-0.12.0-cp312-cp312-win_arm64.whl.

File metadata

  • Download URL: rtoml-0.12.0-cp312-cp312-win_arm64.whl
  • Upload date:
  • Size: 217.2 kB
  • Tags: CPython 3.12, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.0.1 CPython/3.12.8

File hashes

Hashes for rtoml-0.12.0-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 477131a487140163cc9850a66d92a864fb507b37d81fb3366ad5203d30c85520
MD5 b3f00c0ebe9a0c3cb061f32d699a3b3b
BLAKE2b-256 d5b4605d263956ef7287519df9c269de0409ea6589f4b1ddf6ce9e6d58a61e30

See more details on using hashes here.

Provenance

The following attestation bundles were made for rtoml-0.12.0-cp312-cp312-win_arm64.whl:

Publisher: ci.yml on samuelcolvin/rtoml

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

File details

Details for the file rtoml-0.12.0-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: rtoml-0.12.0-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 225.5 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

Hashes for rtoml-0.12.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 d7e187c38a86202bde843a517d341c026f7b0eb098ad5396ed40f93170565bd7
MD5 895056fa85e6af81bcbece1fbb4934fb
BLAKE2b-256 b8d95e6df3255f3eb277a8b6b3c421aba85803d9aa73a9562c50878642b9b300

See more details on using hashes here.

Provenance

The following attestation bundles were made for rtoml-0.12.0-cp312-cp312-win_amd64.whl:

Publisher: ci.yml on samuelcolvin/rtoml

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

File details

Details for the file rtoml-0.12.0-cp312-cp312-win32.whl.

File metadata

  • Download URL: rtoml-0.12.0-cp312-cp312-win32.whl
  • Upload date:
  • Size: 220.5 kB
  • Tags: CPython 3.12, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.0.1 CPython/3.12.8

File hashes

Hashes for rtoml-0.12.0-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 b28c7882f60622645ff7dd180ddb85f4e018406b674ea86f65d99ac0f75747bc
MD5 0fe3ec5589502e7a913bd872acf5c0e0
BLAKE2b-256 fb25f5b371c08269db9a0c4df5e80244c7a2d21e41197f4d66ea80556fbaaa83

See more details on using hashes here.

Provenance

The following attestation bundles were made for rtoml-0.12.0-cp312-cp312-win32.whl:

Publisher: ci.yml on samuelcolvin/rtoml

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

File details

Details for the file rtoml-0.12.0-cp312-cp312-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for rtoml-0.12.0-cp312-cp312-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 28a81c9335f2d7b9cdb6053940b35c590c675222d4935f7a4b8751071e5a5519
MD5 1adef1abacb990e4e8cc435b3b7c1bd8
BLAKE2b-256 04805fe39d943ba2a40ef2dcf8af00fa0bf35d18b6d495abdacc5b67502a194b

See more details on using hashes here.

Provenance

The following attestation bundles were made for rtoml-0.12.0-cp312-cp312-musllinux_1_1_x86_64.whl:

Publisher: ci.yml on samuelcolvin/rtoml

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

File details

Details for the file rtoml-0.12.0-cp312-cp312-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for rtoml-0.12.0-cp312-cp312-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 5248359a67aa034e409f2b06fed02de964bf9dd7f401661076dd7ddf3a81659b
MD5 fc8dd04b3126779b2a083576b371c588
BLAKE2b-256 88a8155fa88275e54a3b336ab5c0dec2bad5c374d6a1c4bf085deffd16baf09a

See more details on using hashes here.

Provenance

The following attestation bundles were made for rtoml-0.12.0-cp312-cp312-musllinux_1_1_aarch64.whl:

Publisher: ci.yml on samuelcolvin/rtoml

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

File details

Details for the file rtoml-0.12.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for rtoml-0.12.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 827159e7313fa35b8495c3ec1c54526ccd2fbd9713084ad959c4455749b4a68d
MD5 4403cabdef77b7f390bd5714900eea50
BLAKE2b-256 d76732b5f4ccb06876eec4bd339dc739e5e0ae30f3494f88012f9d293d265d9e

See more details on using hashes here.

Provenance

The following attestation bundles were made for rtoml-0.12.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: ci.yml on samuelcolvin/rtoml

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

File details

Details for the file rtoml-0.12.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for rtoml-0.12.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 cd24ed60f588aa7262528bfabf97ebf776ff1948ae78829c00389813cd482374
MD5 0623b70f1510db5de83e195b6b7d19b6
BLAKE2b-256 6160439bfff454a66c6cb197923400a9d07fd4664edf237983efcad8df1633a6

See more details on using hashes here.

Provenance

The following attestation bundles were made for rtoml-0.12.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl:

Publisher: ci.yml on samuelcolvin/rtoml

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

File details

Details for the file rtoml-0.12.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for rtoml-0.12.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 a7e4c13ed587d5fc8012aaacca3b73d283191f5462f27b005cadbf9a30083428
MD5 e845eb0443fdba3831f8a8fdfb210270
BLAKE2b-256 4ca496500a6d80c694813c0a795a90ec41d174344ce66acba8edb9507a3816d7

See more details on using hashes here.

Provenance

The following attestation bundles were made for rtoml-0.12.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl:

Publisher: ci.yml on samuelcolvin/rtoml

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

File details

Details for the file rtoml-0.12.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for rtoml-0.12.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 5ada7cc9fc0b94d1f5095d71d8966d10ee2628d69c574e3ef8c9e6dd36a9d525
MD5 d1d4b04062805ccef8edd10349970ef8
BLAKE2b-256 8f22fc829b0282c20dde98a66625ebc67a2d3bd9c3bb185e19b8dc09fac6b2ee

See more details on using hashes here.

Provenance

The following attestation bundles were made for rtoml-0.12.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl:

Publisher: ci.yml on samuelcolvin/rtoml

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

File details

Details for the file rtoml-0.12.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for rtoml-0.12.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 1c1c82d2a79a943c33b851ec3745580ea93fbc40dcb970288439107b6e4a7062
MD5 2728ff9648f010c39558135358401962
BLAKE2b-256 732aa97927be7b586c9f50825295b3ff34d30c06ebaa41593a961645e0c84c4d

See more details on using hashes here.

Provenance

The following attestation bundles were made for rtoml-0.12.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: ci.yml on samuelcolvin/rtoml

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

File details

Details for the file rtoml-0.12.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for rtoml-0.12.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 2fad4117620e22482468f28556362e778d44c2065dfac176bf42ac4997214ae4
MD5 1871f3f5782dd1e86c231d9a45c55708
BLAKE2b-256 6536a0cab2a2a2e00c351d19706ea0afd4034529a9402b7577051baf4ec5cf34

See more details on using hashes here.

Provenance

The following attestation bundles were made for rtoml-0.12.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl:

Publisher: ci.yml on samuelcolvin/rtoml

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

File details

Details for the file rtoml-0.12.0-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for rtoml-0.12.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 fd895de2745b4874498608948a9496e587b3154903ca8c6b4dec8f8b6c2a5252
MD5 659d930036aec510f8a12c6da150b702
BLAKE2b-256 bacc499c45159e96247167c6e3ee293f2d4f16f7e7d9c1585025bbb902de57a3

See more details on using hashes here.

Provenance

The following attestation bundles were made for rtoml-0.12.0-cp312-cp312-macosx_11_0_arm64.whl:

Publisher: ci.yml on samuelcolvin/rtoml

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

File details

Details for the file rtoml-0.12.0-cp312-cp312-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for rtoml-0.12.0-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 ac75a75f15924fa582df465a3b1f4495710e3d4e1930837423ea396bcb1549b6
MD5 b1bc4ad3695d3bd9ba7b6915aad6f9da
BLAKE2b-256 fcf8ab3712301107d19ef256338838af335378cb87c43cc5144e159c9fb46222

See more details on using hashes here.

Provenance

The following attestation bundles were made for rtoml-0.12.0-cp312-cp312-macosx_10_12_x86_64.whl:

Publisher: ci.yml on samuelcolvin/rtoml

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

File details

Details for the file rtoml-0.12.0-cp311-cp311-win_arm64.whl.

File metadata

  • Download URL: rtoml-0.12.0-cp311-cp311-win_arm64.whl
  • Upload date:
  • Size: 216.9 kB
  • Tags: CPython 3.11, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.0.1 CPython/3.12.8

File hashes

Hashes for rtoml-0.12.0-cp311-cp311-win_arm64.whl
Algorithm Hash digest
SHA256 e8308f6b585f5b9343fc54bd028d2662c0d6637fa123d5f8b96beef4626a323a
MD5 df413f214b17d085eea8adc760d23b19
BLAKE2b-256 4cec993038e802e5eded28e3ed680c31755e833ba82bb8bbc52eb9f1c3ea2504

See more details on using hashes here.

Provenance

The following attestation bundles were made for rtoml-0.12.0-cp311-cp311-win_arm64.whl:

Publisher: ci.yml on samuelcolvin/rtoml

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

File details

Details for the file rtoml-0.12.0-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: rtoml-0.12.0-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 224.8 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

Hashes for rtoml-0.12.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 6bc52a5d177668d9244c09aad75df8dc9a022155e4002850c03badba51585e5c
MD5 9fc49a5a6ff239cec701675aea430ba3
BLAKE2b-256 0fe900ab4b4da40e254d36baf670b67da88240990a86d44fc78b9d6a642563d7

See more details on using hashes here.

Provenance

The following attestation bundles were made for rtoml-0.12.0-cp311-cp311-win_amd64.whl:

Publisher: ci.yml on samuelcolvin/rtoml

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

File details

Details for the file rtoml-0.12.0-cp311-cp311-win32.whl.

File metadata

  • Download URL: rtoml-0.12.0-cp311-cp311-win32.whl
  • Upload date:
  • Size: 219.4 kB
  • Tags: CPython 3.11, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.0.1 CPython/3.12.8

File hashes

Hashes for rtoml-0.12.0-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 1f11b74bd8f730bb87fdbace4367d49adec006b75228fea869da3e9e460a20b2
MD5 abbbe585307d550398168d0647b8f76f
BLAKE2b-256 ab80a42d1bada534817ce91633db8696fa58b9c6d3cde0a8142a944c0cb96ecb

See more details on using hashes here.

Provenance

The following attestation bundles were made for rtoml-0.12.0-cp311-cp311-win32.whl:

Publisher: ci.yml on samuelcolvin/rtoml

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

File details

Details for the file rtoml-0.12.0-cp311-cp311-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for rtoml-0.12.0-cp311-cp311-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 4171fce22163ba0c5f9ca07320d768e25fd3c5603cf56366f327443e60aabc8c
MD5 af560c64a565dc7db8e1de04f68e17d2
BLAKE2b-256 c9cfc1dea06ad0ecc59950cf773bb99a265af86210fd6b6dc4c66984ec9b32bd

See more details on using hashes here.

Provenance

The following attestation bundles were made for rtoml-0.12.0-cp311-cp311-musllinux_1_1_x86_64.whl:

Publisher: ci.yml on samuelcolvin/rtoml

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

File details

Details for the file rtoml-0.12.0-cp311-cp311-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for rtoml-0.12.0-cp311-cp311-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 1a571e582b14cf4d36f52ae2066c098e4265714780db9d2ba1f1f2fc6718cf7e
MD5 d306dc4fbf246fd509c4305c46e110ab
BLAKE2b-256 e93e219c8222dc226eb6b42b9f7e8cf9af0f05479cb9328c1f74645da106bd11

See more details on using hashes here.

Provenance

The following attestation bundles were made for rtoml-0.12.0-cp311-cp311-musllinux_1_1_aarch64.whl:

Publisher: ci.yml on samuelcolvin/rtoml

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

File details

Details for the file rtoml-0.12.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for rtoml-0.12.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 53ce9204b52a51cb4d7aa29eb846cd78ce8644f3750c8de07f07f1561150c109
MD5 de08e8072745e36200c662c6c7ae2f11
BLAKE2b-256 f14efbd9c680da5f6f0788164109a326c5727c2827828fa202203e36418d1f7f

See more details on using hashes here.

Provenance

The following attestation bundles were made for rtoml-0.12.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: ci.yml on samuelcolvin/rtoml

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

File details

Details for the file rtoml-0.12.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for rtoml-0.12.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 d70ac00b0d838f5e54a5d957a74399aac2e671c60354f6457e0400c5e509d83d
MD5 f598e1ec753b13ad5d1fd01a4258a80f
BLAKE2b-256 1a5f1797307c95db6b934cb9724fefe09200ed4363d670984da9505c3e00c723

See more details on using hashes here.

Provenance

The following attestation bundles were made for rtoml-0.12.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl:

Publisher: ci.yml on samuelcolvin/rtoml

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

File details

Details for the file rtoml-0.12.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for rtoml-0.12.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 90becb592ac6129b132d299fc4c911c470fbf88d032a0df7987f9a30c8260966
MD5 76f8529d700a92eb186c41eadfe6ab61
BLAKE2b-256 59c5182d70e7f3ec00afaffaf979fe1ddcccfe9afaa00ccda38c09be5375cbeb

See more details on using hashes here.

Provenance

The following attestation bundles were made for rtoml-0.12.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl:

Publisher: ci.yml on samuelcolvin/rtoml

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

File details

Details for the file rtoml-0.12.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for rtoml-0.12.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 69a0bbd81ab27272845f2d2c211f7a1fc18d16ef6fc756796ec636589867c1e5
MD5 235d923a8d4321bf9c09d9bd34342534
BLAKE2b-256 8c5d0ffb6243e009472d2ce58b794830105067b03f01648a6c8c76bce9bc8fbb

See more details on using hashes here.

Provenance

The following attestation bundles were made for rtoml-0.12.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl:

Publisher: ci.yml on samuelcolvin/rtoml

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

File details

Details for the file rtoml-0.12.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for rtoml-0.12.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 51c9112935bd33dd9d30d45ff37567f0ece78b0ff5aa823072d448a96693f429
MD5 8dd601b8024fd4ff9c65b2348175e803
BLAKE2b-256 81cd6a45e07aba35f0c40d6628a237f6b61d940b2fe60799ad16364e50bcac6f

See more details on using hashes here.

Provenance

The following attestation bundles were made for rtoml-0.12.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: ci.yml on samuelcolvin/rtoml

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

File details

Details for the file rtoml-0.12.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for rtoml-0.12.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 1b59008b2e8e5216aab65a9a711df032a89ef91c5bd66a1e22c74cd5ea4dfe7a
MD5 ecdc9517c7613b5ead3e580750feebee
BLAKE2b-256 8ed4523f17e7819dda78e29362b8ece4a6dd398099b40b8faaf238633aad5fbd

See more details on using hashes here.

Provenance

The following attestation bundles were made for rtoml-0.12.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl:

Publisher: ci.yml on samuelcolvin/rtoml

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

File details

Details for the file rtoml-0.12.0-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for rtoml-0.12.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 0229a51ec690b30a899b60ec06ae132c4ebf86bc81efd2a9a131f482570324d1
MD5 22475063e8d763e305458a2c716ea211
BLAKE2b-256 7ff0cef59ce5f4a72a92562c07c94c4d15f6c03b92bb3e385eb4cdd4136bca6b

See more details on using hashes here.

Provenance

The following attestation bundles were made for rtoml-0.12.0-cp311-cp311-macosx_11_0_arm64.whl:

Publisher: ci.yml on samuelcolvin/rtoml

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

File details

Details for the file rtoml-0.12.0-cp311-cp311-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for rtoml-0.12.0-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 d986a7ea113122023a76ff9b2ed40ecc86ff9ed1e5c459010b6b06b5f05ef4ed
MD5 431bbf90985ddc84f5f058e4d77b9a0c
BLAKE2b-256 5616a6612dd636be6ff56ed285bfffa938915fa62fdacad8d8c6b13586374ad5

See more details on using hashes here.

Provenance

The following attestation bundles were made for rtoml-0.12.0-cp311-cp311-macosx_10_12_x86_64.whl:

Publisher: ci.yml on samuelcolvin/rtoml

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

File details

Details for the file rtoml-0.12.0-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: rtoml-0.12.0-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 224.6 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

Hashes for rtoml-0.12.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 540e461998f419a11fd73ebd2aa6de8986af8348ddfd18d2eb2c5f57ec9ed08d
MD5 f5fc556843700e828e176a189121a9d1
BLAKE2b-256 53bec0a13f0b2b1317785592806e143819af8dc2cf35e6ecd62e260274f730a7

See more details on using hashes here.

Provenance

The following attestation bundles were made for rtoml-0.12.0-cp310-cp310-win_amd64.whl:

Publisher: ci.yml on samuelcolvin/rtoml

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

File details

Details for the file rtoml-0.12.0-cp310-cp310-win32.whl.

File metadata

  • Download URL: rtoml-0.12.0-cp310-cp310-win32.whl
  • Upload date:
  • Size: 219.1 kB
  • Tags: CPython 3.10, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.0.1 CPython/3.12.8

File hashes

Hashes for rtoml-0.12.0-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 17b9628a7c70404fdd440d95eea5ba749653f000773df868d4accc2d61760db4
MD5 ff08fd9f400d3dddebbb1a82f42c1201
BLAKE2b-256 acb65d136a24a9252edae5ce4613fe531a379f73dbbf1fbcbad869503b831f74

See more details on using hashes here.

Provenance

The following attestation bundles were made for rtoml-0.12.0-cp310-cp310-win32.whl:

Publisher: ci.yml on samuelcolvin/rtoml

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

File details

Details for the file rtoml-0.12.0-cp310-cp310-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for rtoml-0.12.0-cp310-cp310-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 79adf4665f50153cb1b625bb1271fd9c0362ce48ffb7ee12c729e7f8087242ce
MD5 ab95874f1f8fa55058a81990cba21260
BLAKE2b-256 5e1c20a9aa9ccaaadd82bde1388c8e579528e68810e426bde79ca35c3341aeb6

See more details on using hashes here.

Provenance

The following attestation bundles were made for rtoml-0.12.0-cp310-cp310-musllinux_1_1_x86_64.whl:

Publisher: ci.yml on samuelcolvin/rtoml

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

File details

Details for the file rtoml-0.12.0-cp310-cp310-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for rtoml-0.12.0-cp310-cp310-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 ded14b9b0fce50bfe38eab6a3f8300eb969019f69bd64a3f6eb1b47949d9f34d
MD5 1376cc5b4e638644145d00c14e9342ff
BLAKE2b-256 4962f201d4b58df8b97512e922c4a9d8a62f51febca1e9ca0d1d8a3b789a3f42

See more details on using hashes here.

Provenance

The following attestation bundles were made for rtoml-0.12.0-cp310-cp310-musllinux_1_1_aarch64.whl:

Publisher: ci.yml on samuelcolvin/rtoml

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

File details

Details for the file rtoml-0.12.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for rtoml-0.12.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 08da11609dab48b57ee2969beec593863db1f83957d0879a8bb88d2d41b44f2c
MD5 25e49ffca61a8430ae602f22911832eb
BLAKE2b-256 d070085af811ed39fb39ed7063a052474c0deb34e28df4ab5bb3c3a6d0e04e94

See more details on using hashes here.

Provenance

The following attestation bundles were made for rtoml-0.12.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: ci.yml on samuelcolvin/rtoml

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

File details

Details for the file rtoml-0.12.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for rtoml-0.12.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 4d991801446b964040b914527c62ae42d3f36be52a45be1d1f5fc2f36aa1dce3
MD5 7a702b8bc68336f274b9274a411e0ac9
BLAKE2b-256 7e8974f435cc713bf9c8f7cef11fa24999f85dfb9f8ff84ce79bff0c905fa6a2

See more details on using hashes here.

Provenance

The following attestation bundles were made for rtoml-0.12.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl:

Publisher: ci.yml on samuelcolvin/rtoml

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

File details

Details for the file rtoml-0.12.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for rtoml-0.12.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 71884d293c34abf37d14b5e561ea0e57d71caa81b6f42c4c04120c7dd19650ca
MD5 adebbc9bc63027b06fe7d88ca2b8ee2e
BLAKE2b-256 7cd15d914a94b49b3695d1ab125fb00cb277bff5027dd0ef29b3b903ccbe9f42

See more details on using hashes here.

Provenance

The following attestation bundles were made for rtoml-0.12.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl:

Publisher: ci.yml on samuelcolvin/rtoml

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

File details

Details for the file rtoml-0.12.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for rtoml-0.12.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 76261f8ffdf78f0947c6628f364807073f3d30c2f480f5d7ee40d09e951ec84a
MD5 66a009f0a0c69b750635c37bf523a50f
BLAKE2b-256 7ff9567a5353b3c30fa484e851d5cd0fc689efc48aa3edd6e28ce765e0c6f874

See more details on using hashes here.

Provenance

The following attestation bundles were made for rtoml-0.12.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl:

Publisher: ci.yml on samuelcolvin/rtoml

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

File details

Details for the file rtoml-0.12.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for rtoml-0.12.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 4f4f3f7667c4d030669ae378da5d15a5c8dcb0065d12d2505b676f84828426b0
MD5 21b2334c3a6422d1410bc4c80b181596
BLAKE2b-256 957e6554227a80e750a6b27b0439f94d5406b0db479bb07c7b29437dbc4fbab0

See more details on using hashes here.

Provenance

The following attestation bundles were made for rtoml-0.12.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: ci.yml on samuelcolvin/rtoml

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

File details

Details for the file rtoml-0.12.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for rtoml-0.12.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 8a2dbb5aa11ab76e4f2f6fcfc53996eb1a3aaedd8465352b597a8a70e1ec0818
MD5 d5289ddd4893a07f93129a2a1cf973ed
BLAKE2b-256 71f9d31a3198bc8f1e690e4273d15195e8a6319fd3f1618f7bd7121af1ffd25a

See more details on using hashes here.

Provenance

The following attestation bundles were made for rtoml-0.12.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl:

Publisher: ci.yml on samuelcolvin/rtoml

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

File details

Details for the file rtoml-0.12.0-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for rtoml-0.12.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 af6dd6adc39a5be17dc6b07e13c1dd0e07af095a909e04355b756ad7ee7a7211
MD5 5ad0566cafde060ee4a68c200e8f5d19
BLAKE2b-256 b1913c1454fdc0562318b3ef33dc60d365ba4fb8b5b8d252802b3f4a4046fa4b

See more details on using hashes here.

Provenance

The following attestation bundles were made for rtoml-0.12.0-cp310-cp310-macosx_11_0_arm64.whl:

Publisher: ci.yml on samuelcolvin/rtoml

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

File details

Details for the file rtoml-0.12.0-cp310-cp310-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for rtoml-0.12.0-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 750761d30c70ffd45cd30ef8982e4c0665e76914efcc828ff4cd8450acddd328
MD5 7dee8415a36f14cb99b74ca870d1d6ee
BLAKE2b-256 fade08dc63ef974b6720e1f6159a4d3b36f0cb40d2d1c4a6315ebdf0bbf78ef7

See more details on using hashes here.

Provenance

The following attestation bundles were made for rtoml-0.12.0-cp310-cp310-macosx_10_12_x86_64.whl:

Publisher: ci.yml on samuelcolvin/rtoml

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

File details

Details for the file rtoml-0.12.0-cp39-cp39-win_amd64.whl.

File metadata

  • Download URL: rtoml-0.12.0-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 225.5 kB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.0.1 CPython/3.12.8

File hashes

Hashes for rtoml-0.12.0-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 b7c6bdc9128c0a4ebf45e6720ae03c99ed7443a7135e494d93d3c30c14769eb3
MD5 e3e896077deb31a1e04f459013bb4d9b
BLAKE2b-256 29cee4f54612e662c4803816ea65cee8eacd13f2919be068b65ef7f459d772d7

See more details on using hashes here.

Provenance

The following attestation bundles were made for rtoml-0.12.0-cp39-cp39-win_amd64.whl:

Publisher: ci.yml on samuelcolvin/rtoml

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

File details

Details for the file rtoml-0.12.0-cp39-cp39-win32.whl.

File metadata

  • Download URL: rtoml-0.12.0-cp39-cp39-win32.whl
  • Upload date:
  • Size: 220.2 kB
  • Tags: CPython 3.9, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.0.1 CPython/3.12.8

File hashes

Hashes for rtoml-0.12.0-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 fe180b78d026499ee3b42c368a6c060a3d5b23838f17dde42d099839a8f8a2c6
MD5 443d91ba5934212f35b93814c7be839d
BLAKE2b-256 c997aaf3386a8b2c0763f1e1fa8e5a302611289399f8ecb2a67beef9ff09ae64

See more details on using hashes here.

Provenance

The following attestation bundles were made for rtoml-0.12.0-cp39-cp39-win32.whl:

Publisher: ci.yml on samuelcolvin/rtoml

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

File details

Details for the file rtoml-0.12.0-cp39-cp39-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for rtoml-0.12.0-cp39-cp39-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 9d5564dcc5ca1755f5bae59e036fb4e255ed59a9f8af836eb2d9765d125b11bb
MD5 3e04995310a792c9fd3a71669589952d
BLAKE2b-256 676ee9f3f60adf30c5f30554609f62bd31914fa3089e8c6c19f2ce8d83f91ee5

See more details on using hashes here.

Provenance

The following attestation bundles were made for rtoml-0.12.0-cp39-cp39-musllinux_1_1_x86_64.whl:

Publisher: ci.yml on samuelcolvin/rtoml

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

File details

Details for the file rtoml-0.12.0-cp39-cp39-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for rtoml-0.12.0-cp39-cp39-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 63f6742f3e0dd076309c195af422447513ccace978023784607ee22302f4a900
MD5 0d532a24e49c5d48bc5b26d22597692f
BLAKE2b-256 3c671f2fdd00697f89ec9045eefcf41f7d28b7a05f73e9593d3667c76a42857e

See more details on using hashes here.

Provenance

The following attestation bundles were made for rtoml-0.12.0-cp39-cp39-musllinux_1_1_aarch64.whl:

Publisher: ci.yml on samuelcolvin/rtoml

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

File details

Details for the file rtoml-0.12.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for rtoml-0.12.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 b8f4ae09e9ca8de5bd874b661302f8083dc1a47b0865f99f7becf24903f76736
MD5 d64c1cc4730f063db535774c69c571ac
BLAKE2b-256 bf35a95e2d373f48cb8b51e3b10ae3d266b04c206c1cae48f85f28acbdbff27a

See more details on using hashes here.

Provenance

The following attestation bundles were made for rtoml-0.12.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: ci.yml on samuelcolvin/rtoml

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

File details

Details for the file rtoml-0.12.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for rtoml-0.12.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 206c7ba5ab2a4b5f452565b1751430cc14d7b1423045370e5968a0e5a15846a7
MD5 74d60662e2176d931edd822f1448a866
BLAKE2b-256 77378f5d06b58121764563061f59258d6b23aba46ce33e40df875f323ccc09b4

See more details on using hashes here.

Provenance

The following attestation bundles were made for rtoml-0.12.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl:

Publisher: ci.yml on samuelcolvin/rtoml

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

File details

Details for the file rtoml-0.12.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for rtoml-0.12.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 67e7c7c61224d2b31aa2d6f9bbdd81011a505cb0388f2e9e6d815a840dd6c39a
MD5 53f2a00a078f6cf202d278cbf10dd8e3
BLAKE2b-256 7d1be3128ea66d5e5c77f1f3e4c42f0423833d3ef93ddfb433a342e332a727ee

See more details on using hashes here.

Provenance

The following attestation bundles were made for rtoml-0.12.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl:

Publisher: ci.yml on samuelcolvin/rtoml

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

File details

Details for the file rtoml-0.12.0-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for rtoml-0.12.0-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 8c7865af375c8f40e75bcf82cbb10e20d662f239a9f49e5597e28742c938f4e5
MD5 97631357a333f14f68ae847eba49281b
BLAKE2b-256 35067fd09e8f84d5768d61f7878fd3684547c51a0c711acfaf3e7de4f854c18e

See more details on using hashes here.

Provenance

The following attestation bundles were made for rtoml-0.12.0-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl:

Publisher: ci.yml on samuelcolvin/rtoml

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

File details

Details for the file rtoml-0.12.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for rtoml-0.12.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 48f6ca7405f3bb45307029156b2f69c7048cc8c0cd840356f81f64091030adeb
MD5 22a9f185b2935e44aa2fcb6caf733ec9
BLAKE2b-256 36f3201f189b5d868da51a306cddc6ce5f74560ff0e9238405c666de374c212c

See more details on using hashes here.

Provenance

The following attestation bundles were made for rtoml-0.12.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: ci.yml on samuelcolvin/rtoml

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

File details

Details for the file rtoml-0.12.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for rtoml-0.12.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 3c7b633b74f7590f4c1e1fe36c1e6a26ca6dfa6491b9d91530d6e907b29d296b
MD5 a7f9754da07d05f1f133caf484ff540c
BLAKE2b-256 2f7ce3653dbe929e6723512beabc4229b443d5d0051a4c64b1e821693a3c67dc

See more details on using hashes here.

Provenance

The following attestation bundles were made for rtoml-0.12.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl:

Publisher: ci.yml on samuelcolvin/rtoml

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

File details

Details for the file rtoml-0.12.0-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for rtoml-0.12.0-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 4e919d19518a8f3c769601105677c2c2c73c1a7a1ac4306830f570801abf3299
MD5 b775e5d06e072e8b7a00271724ad8f74
BLAKE2b-256 d2fa9f9ff455a2d49ef269b9c4bb54ace30e7262d8184257cd61ac83b65cb218

See more details on using hashes here.

Provenance

The following attestation bundles were made for rtoml-0.12.0-cp39-cp39-macosx_11_0_arm64.whl:

Publisher: ci.yml on samuelcolvin/rtoml

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

File details

Details for the file rtoml-0.12.0-cp39-cp39-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for rtoml-0.12.0-cp39-cp39-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 9d3d266cbb0d42cf83658eb0ecc40288036fe986b200cefd2c6ad8e3c714b4cf
MD5 f917afba9733040f23660457de78174d
BLAKE2b-256 a1bca87c6c4ffeb629460c7c4c4e03d824c5752a65f6a5b5e99cccbd7c103c61

See more details on using hashes here.

Provenance

The following attestation bundles were made for rtoml-0.12.0-cp39-cp39-macosx_10_12_x86_64.whl:

Publisher: ci.yml on samuelcolvin/rtoml

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

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page