Skip to main content

A High-Performance TOML Parser for Python written in Rust

Reason this release was yanked:

bug

Project description

toml-rs — A High-Performance TOML Parser for Python written in Rust

Features

  • The fastest TOML parser in Python (see benchmarks)

  • Drop-in compatibility with most tomllib use cases (see below)

Installation

# Using pip
pip install toml-rs

# Using uv
uv pip install toml-rs

Examples

import tomllib
from pprint import pprint

import toml_rs

toml = """\
title = "TOML Example"

[owner]
name = "Tom Preston-Werner"
dob = 1979-05-27T07:32:00-08:00

[database]
enabled = true
ports = [ 8000, 8001, 8002 ]
data = [ ["delta", "phi"], [3.14] ]
temp_targets = { cpu = 79.5, case = 72.0 }

[servers]
[servers.alpha]
ip = "10.0.0.1"
role = "frontend"
[servers.beta]
ip = "10.0.0.2"
role = "backend"
"""

tomllib_loads = tomllib.loads(toml)
toml_rs_loads = toml_rs.loads(toml)
toml_rs_dumps = toml_rs.dumps(toml_rs_loads)

assert tomllib_loads == toml_rs_loads

print("toml_rs.loads:")
pprint(toml_rs_loads)
print("toml_rs.dumps:")
print(toml_rs_dumps)

Differences with tomllib

  1. More understandable errors
import tomllib

t = """\
x = 1
y = 2
v = 
"""
print(tomllib.loads(t))
# tomllib.TOMLDecodeError: Invalid value (at line 3, column 5)
import toml_rs

t = """\
x = 1
y = 2
v = 
"""
print(toml_rs.loads(t))
# toml_rs.TOMLDecodeError: TOML parse error at line 3, column 5
#   |
# 3 | v = 
#   |     ^
# string values must be quoted, expected literal string
  1. Strict compliance with TOML v1.0.0

From TOML spec:

Arbitrary 64-bit signed integers (from −2^63 to 2^63−1) should be accepted and handled losslessly. If an integer cannot be represented losslessly, an error must be thrown.

import tomllib

t = "x = 999_999_999_999_999_999_999_999"
print(tomllib.loads(t))
# {'x': 999999999999999999999999} <== speс violation
import toml_rs

t = "x = 999_999_999_999_999_999_999_999"
print(toml_rs.loads(t))
# toml_rs.TOMLDecodeError: TOML parse error at line 1, column 5
#   |
# 1 | x = 999_999_999_999_999_999_999_999
#   |     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
# invalid type: integer `999999999999999999999999` as i128, expected any valid TOML value
  1. Supports serialization (toml_rs.dumps and toml_rs.dump)
from pathlib import Path

import toml_rs

data = {
    "title": "TOML Example",
    "owner": {"name": "Alice", "age": 30},
}

print(toml_rs.dumps(data))

toml_rs.dump(data, Path("example.toml"))  
# or `toml_rs.dump(data, "example.toml")`

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

toml_rs-0.0.10.tar.gz (84.4 kB view details)

Uploaded Source

Built Distributions

If you're not sure about the file name format, learn more about wheel file names.

toml_rs-0.0.10-pp311-pypy311_pp73-win_amd64.whl (279.1 kB view details)

Uploaded PyPyWindows x86-64

toml_rs-0.0.10-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl (548.1 kB view details)

Uploaded PyPymusllinux: musl 1.2+ x86-64

toml_rs-0.0.10-pp311-pypy311_pp73-musllinux_1_2_i686.whl (581.5 kB view details)

Uploaded PyPymusllinux: musl 1.2+ i686

toml_rs-0.0.10-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl (639.1 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

toml_rs-0.0.10-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl (541.5 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARM64

toml_rs-0.0.10-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (374.1 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

toml_rs-0.0.10-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (387.3 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ s390x

toml_rs-0.0.10-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (371.2 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

toml_rs-0.0.10-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (335.7 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

toml_rs-0.0.10-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (367.8 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

toml_rs-0.0.10-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl (405.5 kB view details)

Uploaded PyPymanylinux: glibc 2.5+ i686

toml_rs-0.0.10-pp311-pypy311_pp73-macosx_11_0_arm64.whl (340.9 kB view details)

Uploaded PyPymacOS 11.0+ ARM64

toml_rs-0.0.10-pp311-pypy311_pp73-macosx_10_12_x86_64.whl (357.9 kB view details)

Uploaded PyPymacOS 10.12+ x86-64

toml_rs-0.0.10-cp314-cp314t-win_amd64.whl (276.3 kB view details)

Uploaded CPython 3.14tWindows x86-64

toml_rs-0.0.10-cp314-cp314t-win32.whl (268.5 kB view details)

Uploaded CPython 3.14tWindows x86

toml_rs-0.0.10-cp314-cp314t-musllinux_1_2_x86_64.whl (545.1 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

toml_rs-0.0.10-cp314-cp314t-musllinux_1_2_i686.whl (578.0 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ i686

toml_rs-0.0.10-cp314-cp314t-musllinux_1_2_armv7l.whl (635.3 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARMv7l

toml_rs-0.0.10-cp314-cp314t-musllinux_1_2_aarch64.whl (538.1 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

toml_rs-0.0.10-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (371.5 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ x86-64

toml_rs-0.0.10-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl (383.4 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ s390x

toml_rs-0.0.10-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (367.4 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ppc64le

toml_rs-0.0.10-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (332.1 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARMv7l

toml_rs-0.0.10-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (363.9 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARM64

toml_rs-0.0.10-cp314-cp314t-manylinux_2_5_i686.manylinux1_i686.whl (401.8 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.5+ i686

toml_rs-0.0.10-cp314-cp314t-macosx_11_0_arm64.whl (337.6 kB view details)

Uploaded CPython 3.14tmacOS 11.0+ ARM64

toml_rs-0.0.10-cp314-cp314t-macosx_10_12_x86_64.whl (352.7 kB view details)

Uploaded CPython 3.14tmacOS 10.12+ x86-64

toml_rs-0.0.10-cp314-cp314-win_amd64.whl (277.7 kB view details)

Uploaded CPython 3.14Windows x86-64

toml_rs-0.0.10-cp314-cp314-win32.whl (269.9 kB view details)

Uploaded CPython 3.14Windows x86

toml_rs-0.0.10-cp314-cp314-musllinux_1_2_x86_64.whl (547.1 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

toml_rs-0.0.10-cp314-cp314-musllinux_1_2_i686.whl (579.3 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ i686

toml_rs-0.0.10-cp314-cp314-musllinux_1_2_armv7l.whl (636.8 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARMv7l

toml_rs-0.0.10-cp314-cp314-musllinux_1_2_aarch64.whl (540.0 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

toml_rs-0.0.10-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (373.2 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ x86-64

toml_rs-0.0.10-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl (386.0 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ s390x

toml_rs-0.0.10-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (369.5 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ppc64le

toml_rs-0.0.10-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (333.6 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARMv7l

toml_rs-0.0.10-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (366.1 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARM64

toml_rs-0.0.10-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl (403.5 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.5+ i686

toml_rs-0.0.10-cp314-cp314-macosx_11_0_arm64.whl (338.8 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

toml_rs-0.0.10-cp314-cp314-macosx_10_12_x86_64.whl (354.3 kB view details)

Uploaded CPython 3.14macOS 10.12+ x86-64

toml_rs-0.0.10-cp313-cp313t-win_amd64.whl (276.5 kB view details)

Uploaded CPython 3.13tWindows x86-64

toml_rs-0.0.10-cp313-cp313t-win32.whl (268.4 kB view details)

Uploaded CPython 3.13tWindows x86

toml_rs-0.0.10-cp313-cp313t-musllinux_1_2_x86_64.whl (545.1 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ x86-64

toml_rs-0.0.10-cp313-cp313t-musllinux_1_2_i686.whl (577.8 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ i686

toml_rs-0.0.10-cp313-cp313t-musllinux_1_2_armv7l.whl (634.9 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARMv7l

toml_rs-0.0.10-cp313-cp313t-musllinux_1_2_aarch64.whl (538.1 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARM64

toml_rs-0.0.10-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (371.5 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ x86-64

toml_rs-0.0.10-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl (383.4 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ s390x

toml_rs-0.0.10-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (367.2 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ppc64le

toml_rs-0.0.10-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (331.7 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARMv7l

toml_rs-0.0.10-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (363.9 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARM64

toml_rs-0.0.10-cp313-cp313t-manylinux_2_5_i686.manylinux1_i686.whl (401.7 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.5+ i686

toml_rs-0.0.10-cp313-cp313t-macosx_11_0_arm64.whl (337.4 kB view details)

Uploaded CPython 3.13tmacOS 11.0+ ARM64

toml_rs-0.0.10-cp313-cp313t-macosx_10_12_x86_64.whl (352.6 kB view details)

Uploaded CPython 3.13tmacOS 10.12+ x86-64

toml_rs-0.0.10-cp313-cp313-win_amd64.whl (277.7 kB view details)

Uploaded CPython 3.13Windows x86-64

toml_rs-0.0.10-cp313-cp313-win32.whl (269.9 kB view details)

Uploaded CPython 3.13Windows x86

toml_rs-0.0.10-cp313-cp313-musllinux_1_2_x86_64.whl (547.3 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

toml_rs-0.0.10-cp313-cp313-musllinux_1_2_i686.whl (579.3 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ i686

toml_rs-0.0.10-cp313-cp313-musllinux_1_2_armv7l.whl (636.8 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARMv7l

toml_rs-0.0.10-cp313-cp313-musllinux_1_2_aarch64.whl (540.2 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

toml_rs-0.0.10-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (373.4 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

toml_rs-0.0.10-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl (386.3 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ s390x

toml_rs-0.0.10-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (369.7 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ppc64le

toml_rs-0.0.10-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (334.0 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARMv7l

toml_rs-0.0.10-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (366.3 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

toml_rs-0.0.10-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl (403.7 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.5+ i686

toml_rs-0.0.10-cp313-cp313-macosx_11_0_arm64.whl (339.1 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

toml_rs-0.0.10-cp313-cp313-macosx_10_12_x86_64.whl (354.5 kB view details)

Uploaded CPython 3.13macOS 10.12+ x86-64

toml_rs-0.0.10-cp312-cp312-win_amd64.whl (278.4 kB view details)

Uploaded CPython 3.12Windows x86-64

toml_rs-0.0.10-cp312-cp312-win32.whl (270.3 kB view details)

Uploaded CPython 3.12Windows x86

toml_rs-0.0.10-cp312-cp312-musllinux_1_2_x86_64.whl (547.7 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

toml_rs-0.0.10-cp312-cp312-musllinux_1_2_i686.whl (579.7 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ i686

toml_rs-0.0.10-cp312-cp312-musllinux_1_2_armv7l.whl (637.0 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

toml_rs-0.0.10-cp312-cp312-musllinux_1_2_aarch64.whl (540.4 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

toml_rs-0.0.10-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (373.7 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

toml_rs-0.0.10-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl (386.7 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ s390x

toml_rs-0.0.10-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (370.0 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ppc64le

toml_rs-0.0.10-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (334.3 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARMv7l

toml_rs-0.0.10-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (366.8 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

toml_rs-0.0.10-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl (404.0 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.5+ i686

toml_rs-0.0.10-cp312-cp312-macosx_11_0_arm64.whl (339.4 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

toml_rs-0.0.10-cp312-cp312-macosx_10_12_x86_64.whl (354.9 kB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

toml_rs-0.0.10-cp311-cp311-win_amd64.whl (277.5 kB view details)

Uploaded CPython 3.11Windows x86-64

toml_rs-0.0.10-cp311-cp311-win32.whl (270.4 kB view details)

Uploaded CPython 3.11Windows x86

toml_rs-0.0.10-cp311-cp311-musllinux_1_2_x86_64.whl (546.8 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

toml_rs-0.0.10-cp311-cp311-musllinux_1_2_i686.whl (579.3 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ i686

toml_rs-0.0.10-cp311-cp311-musllinux_1_2_armv7l.whl (637.3 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARMv7l

toml_rs-0.0.10-cp311-cp311-musllinux_1_2_aarch64.whl (540.2 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

toml_rs-0.0.10-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (373.0 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

toml_rs-0.0.10-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl (386.1 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ s390x

toml_rs-0.0.10-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (369.7 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ppc64le

toml_rs-0.0.10-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (334.1 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARMv7l

toml_rs-0.0.10-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (366.5 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

toml_rs-0.0.10-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl (403.6 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.5+ i686

toml_rs-0.0.10-cp311-cp311-macosx_11_0_arm64.whl (339.7 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

toml_rs-0.0.10-cp311-cp311-macosx_10_12_x86_64.whl (356.3 kB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

toml_rs-0.0.10-cp310-cp310-win_amd64.whl (277.3 kB view details)

Uploaded CPython 3.10Windows x86-64

toml_rs-0.0.10-cp310-cp310-win32.whl (270.7 kB view details)

Uploaded CPython 3.10Windows x86

toml_rs-0.0.10-cp310-cp310-musllinux_1_2_x86_64.whl (546.7 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

toml_rs-0.0.10-cp310-cp310-musllinux_1_2_i686.whl (579.1 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ i686

toml_rs-0.0.10-cp310-cp310-musllinux_1_2_armv7l.whl (637.9 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARMv7l

toml_rs-0.0.10-cp310-cp310-musllinux_1_2_aarch64.whl (540.2 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

toml_rs-0.0.10-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (372.9 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

toml_rs-0.0.10-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl (386.2 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ s390x

toml_rs-0.0.10-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (369.6 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ppc64le

toml_rs-0.0.10-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (334.6 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARMv7l

toml_rs-0.0.10-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (366.7 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

toml_rs-0.0.10-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl (403.2 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.5+ i686

toml_rs-0.0.10-cp310-cp310-macosx_11_0_arm64.whl (339.6 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

toml_rs-0.0.10-cp310-cp310-macosx_10_12_x86_64.whl (356.7 kB view details)

Uploaded CPython 3.10macOS 10.12+ x86-64

File details

Details for the file toml_rs-0.0.10.tar.gz.

File metadata

  • Download URL: toml_rs-0.0.10.tar.gz
  • Upload date:
  • Size: 84.4 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.9.6

File hashes

Hashes for toml_rs-0.0.10.tar.gz
Algorithm Hash digest
SHA256 1fcd81ef2b27bc102f3e8af23e8d0b7076f43fc3620914bdc81e8985e1500c7a
MD5 05da0e76481beaf7ffe445f4dacc510f
BLAKE2b-256 8dad4b4019e572578c1213ed7d5cd5b64a28e5c6fb3b1666091b9e45e30dacb4

See more details on using hashes here.

File details

Details for the file toml_rs-0.0.10-pp311-pypy311_pp73-win_amd64.whl.

File metadata

File hashes

Hashes for toml_rs-0.0.10-pp311-pypy311_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 484dc27928aba03b67e855a7f23bdd539d45da3a7fc745a06ad0bcb9d8913ef1
MD5 626b2d59f97a263bec0e449307441fbe
BLAKE2b-256 97f988d1287c742ec88b9378986e9740a6d11032d3e74ddf56fd173f2114c098

See more details on using hashes here.

File details

Details for the file toml_rs-0.0.10-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for toml_rs-0.0.10-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 07e6e8ac0675e164f5a3ebf7d8943acde3c94e26c8eb3856b1794ca0c0746b76
MD5 2e70acb11c21c29791bd896ad1e559e6
BLAKE2b-256 13c8fe725fac947a15579bd074d5edda271c53e33e82a9b264fba24a3793c8b8

See more details on using hashes here.

File details

Details for the file toml_rs-0.0.10-pp311-pypy311_pp73-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for toml_rs-0.0.10-pp311-pypy311_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 52ebe28e41f8d76804a41de36a417da1660bf521d0adcc2e40232a45df4d6539
MD5 499efc5746fafdf20269c1e76bebf3c9
BLAKE2b-256 3bc1ffb8ee5766163ec411f3058cb365ccd51483facb3b8d547b055a23a6e6dc

See more details on using hashes here.

File details

Details for the file toml_rs-0.0.10-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for toml_rs-0.0.10-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 12ac601c72fbe8b044a0f5d2ccd36e099dfcee719f8532903d5e57d523febae9
MD5 9d8ffe988e2d6b98a2ce6860bc3ed23f
BLAKE2b-256 a856aa0bfb0d2bfefd09bf671e791f9a16855d068b934005b96524e10e805da7

See more details on using hashes here.

File details

Details for the file toml_rs-0.0.10-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for toml_rs-0.0.10-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 0a0bd73af4b0293c26b4fadc0f6a09978860a05f1bb8b1946e3d49409d4d08b0
MD5 7a5d3d692ea0e695226dd0fdd64b6b79
BLAKE2b-256 63e211d492fdc3711da5a1016deab1775e7c5f11ef804446a6bc4ed9371c177a

See more details on using hashes here.

File details

Details for the file toml_rs-0.0.10-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for toml_rs-0.0.10-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 69ba9c77b7db5dfe741e56afd80a387d8965f96918c262c77673f298ba3b6e5d
MD5 09f2358182e127a07b3b5ae72d2c4043
BLAKE2b-256 511ead6b4c62411e4486c1dfcbbb9e846500abebbf4e0e7f806aa4692e9c8985

See more details on using hashes here.

File details

Details for the file toml_rs-0.0.10-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for toml_rs-0.0.10-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 0091aa3e727ac9cee341f1b75078cad3a240fc8bbffb77003c56d99aff0b62c3
MD5 4b49c65a6a38b281280912eda779bc1d
BLAKE2b-256 a49f462f73873e80d7adfd811e21f435cc0f59b7994f1bec700bae0db05363d9

See more details on using hashes here.

File details

Details for the file toml_rs-0.0.10-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for toml_rs-0.0.10-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 1c05cc48bb920a059de4e72a5d50a8484e1616e3d3e592704a570dfe36c4d5bc
MD5 648f6616b540f234716be6b641a04ed3
BLAKE2b-256 096480261dc405b8f92846cfb9e71809d5a2bb94d31b81818a766eff58b85516

See more details on using hashes here.

File details

Details for the file toml_rs-0.0.10-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for toml_rs-0.0.10-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 ab2fb32eb260f25e91a02ec5020d34f40101ba154c1ab5746fefb65699f46bec
MD5 7cbb99ba2032667c99a3d83e89d511cd
BLAKE2b-256 b95066aebac67c9e0119564d07cb5246e55cb15b92dc504764ebbe322f0aedb8

See more details on using hashes here.

File details

Details for the file toml_rs-0.0.10-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for toml_rs-0.0.10-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 43b7b933af4e527ce606fb642efcf22409a44a42d36b6c6eea871db30500c959
MD5 cf644b7e54be29395a3ddda0733aabdc
BLAKE2b-256 7595860dfed26eb4b2b752ab4be53183ed509bae451b86b7a7662f01fa6b4228

See more details on using hashes here.

File details

Details for the file toml_rs-0.0.10-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for toml_rs-0.0.10-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 8b2e8dacc6be3569047644c1f80b678f78aa016549f16f1e510f97ed2ff94c9a
MD5 3f84ddd8c465f2c3d3f2e1df746e1a89
BLAKE2b-256 2bd65cc7c49bc770b0c89ed51247f0cb4aa80a92ab845b1f91c009b7aaed921d

See more details on using hashes here.

File details

Details for the file toml_rs-0.0.10-pp311-pypy311_pp73-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for toml_rs-0.0.10-pp311-pypy311_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 35d46e596d7b932263e25c862e7386cf2515e160f36d1be8b667dc0207ea913e
MD5 f2640abb27a7571a071afaef25fd5d87
BLAKE2b-256 7bfa96ce37a797aa3d7e1a4b3fa1048e1bb414fb4205006ccb6ca4582612f562

See more details on using hashes here.

File details

Details for the file toml_rs-0.0.10-pp311-pypy311_pp73-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for toml_rs-0.0.10-pp311-pypy311_pp73-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 5c248cc97a6204f293b5f537d317cbece4a24c1c3e78a2c5e6c86e70fe46ce51
MD5 9c0cc47963ca2cf0978cc15f7a350036
BLAKE2b-256 bf3457e2113bb7398068eeb52eeb9cfa5fe3631dd8d96d8a749e35ae82f4d07c

See more details on using hashes here.

File details

Details for the file toml_rs-0.0.10-cp314-cp314t-win_amd64.whl.

File metadata

File hashes

Hashes for toml_rs-0.0.10-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 5b6c5e0fcee1cf8d1d191e2219c933c4ee06ec7f881664aef7c353cd3266fbed
MD5 c831f64283e6534df7dc660cb3cd6455
BLAKE2b-256 c2ece8a556c2478a8d16ae951f02949a4ab0b760aa2da9018a73d97039a671d2

See more details on using hashes here.

File details

Details for the file toml_rs-0.0.10-cp314-cp314t-win32.whl.

File metadata

  • Download URL: toml_rs-0.0.10-cp314-cp314t-win32.whl
  • Upload date:
  • Size: 268.5 kB
  • Tags: CPython 3.14t, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.9.6

File hashes

Hashes for toml_rs-0.0.10-cp314-cp314t-win32.whl
Algorithm Hash digest
SHA256 7807a0ba8ad7907ce080f7bfe730ba8b10b4c132c795cee35db2ea8708263329
MD5 37ad7a4972391ab229f5ba01e2339253
BLAKE2b-256 1b3d6d8383fc9e64f68a87045191527f52cdfd41017d2c40edc8b57f897ebc9a

See more details on using hashes here.

File details

Details for the file toml_rs-0.0.10-cp314-cp314t-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for toml_rs-0.0.10-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 7ef4f3cd5b879e8c5afe236a2a827f1292583087ee851296de4bb8e6ee674d41
MD5 bfdc46f25ea0275f355040c5402d0673
BLAKE2b-256 373a34aa1b09d50725ba6844ec6a05935f8bb276a353e6483b5a4348d3538966

See more details on using hashes here.

File details

Details for the file toml_rs-0.0.10-cp314-cp314t-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for toml_rs-0.0.10-cp314-cp314t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 bc571be23bc0f2943ce6dc09ba67ee2583cbb26c2c1fa1a7c1cd8924e3ae7800
MD5 b7211d11e30a496dcbe6094ca59149c9
BLAKE2b-256 88d6557ea1e13c625f67bd468e3636b442341c4dbde64f3feaccb09d640a6925

See more details on using hashes here.

File details

Details for the file toml_rs-0.0.10-cp314-cp314t-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for toml_rs-0.0.10-cp314-cp314t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 6b4c6f800dbf9024b9b55acfae97dca71593762b40542768ed979f8ebf70d53d
MD5 d7bdc00c5f497bcb978f776ec0ee41ed
BLAKE2b-256 999ee500cbdf3fa7ca9251926b9da6f52e41fd6259bc7a2b4b05e0ff63bcfb45

See more details on using hashes here.

File details

Details for the file toml_rs-0.0.10-cp314-cp314t-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for toml_rs-0.0.10-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 35d24a4b1154d3ff9cc1e4fc3f7c4fb6b78ccef053bad26e72fe5beeabc27bef
MD5 2c63563c7e12b8272fd136090234dccb
BLAKE2b-256 8132f427fd5f096f082987aac303ac6e90b64d01b5311d887b54418dbd750edc

See more details on using hashes here.

File details

Details for the file toml_rs-0.0.10-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for toml_rs-0.0.10-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 27007dbd9698d58a9788e933d05733f1af1269d28189daa7fd131ea25605f7b9
MD5 66b64e342caadfca6be93590fcb93b92
BLAKE2b-256 7c962bc740c6a82054c3c8d649acfb428297be7dd5933b9040c37484d5a51907

See more details on using hashes here.

File details

Details for the file toml_rs-0.0.10-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for toml_rs-0.0.10-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 441735eba761635df11c98f08bf302391cc8e42d9fa34fb878ba8ff803a3b193
MD5 ae93e091b1cbb786f506f8d8cd257281
BLAKE2b-256 2caf420a1b81e7145c8f9d28ae59b885e2b6738bd68c014d3f11812fc3ff4216

See more details on using hashes here.

File details

Details for the file toml_rs-0.0.10-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for toml_rs-0.0.10-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 90dddcebeab58c3b2ed854dbc62b992424203b8a044945f3cd2da5b38145c797
MD5 475191a2b825c6fa3c66a1585f4bb941
BLAKE2b-256 e7057658de7363577fba029d37e7dbeea30abe864d9ab72f6cb26be762108afe

See more details on using hashes here.

File details

Details for the file toml_rs-0.0.10-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for toml_rs-0.0.10-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 d8c05840d9cf1b9594ea41d19566597a222414f091c75b69febeb1a55d3016e3
MD5 a752d34e10d20b7089e85142bf0bb433
BLAKE2b-256 003540aeda4ade2909a83cf6191c51957f8bc77fa37e3df293d46d26f2835f61

See more details on using hashes here.

File details

Details for the file toml_rs-0.0.10-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for toml_rs-0.0.10-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 8074508d926cb240f31766fed90cb4f2f71c92f93658cb4330793fb7aab92d44
MD5 dd9c434289dea3f2938c15bd3717ed6d
BLAKE2b-256 e5cb504c695b9a46042aa7fcc8cc5aac9f6f8f6eefd566f959c0f014c4a4edf7

See more details on using hashes here.

File details

Details for the file toml_rs-0.0.10-cp314-cp314t-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for toml_rs-0.0.10-cp314-cp314t-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 8cd75e4402f0a29ad339460f46694e78744ab3dcc21cfdd188568e24c2bbb591
MD5 d32e0c485d65e579d9ec13d4200db64f
BLAKE2b-256 d11d84835a23c6d7bfff797cfd2a13e27a35b61ef5185f6e06d8dcf2f5be068d

See more details on using hashes here.

File details

Details for the file toml_rs-0.0.10-cp314-cp314t-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for toml_rs-0.0.10-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 df12a28f679211551ae2f786ec0a16083773ff6424f8d4ddcdd9589ad5e6fdc9
MD5 4ab5b2eadb97075e48e545099021758a
BLAKE2b-256 5f19c214cd7c872fed5c19ae0fedf89737d9fbbb3b24dde6712d306d98154981

See more details on using hashes here.

File details

Details for the file toml_rs-0.0.10-cp314-cp314t-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for toml_rs-0.0.10-cp314-cp314t-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 3bf6bf5598e3be52546db9c04f3aa6f421d5f10e7e57d57cdfb5f2c7e1acad79
MD5 01044df17d008ba3e22167579af6e030
BLAKE2b-256 7023f1d94511306fdeee863cb17ee8a441e085f0d2ed0af4b17a1a053cc2ab83

See more details on using hashes here.

File details

Details for the file toml_rs-0.0.10-cp314-cp314-win_amd64.whl.

File metadata

File hashes

Hashes for toml_rs-0.0.10-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 19338914d5e71bf2889f40c7612ff6650c2605f072e95874c2f02ba6a277851f
MD5 c11a88ada4ee29885a964dedef23a97b
BLAKE2b-256 5c135332b1ba5d308b2a0b4316dba97edb1cf5d8a964f8c6fc5eae559b10ee36

See more details on using hashes here.

File details

Details for the file toml_rs-0.0.10-cp314-cp314-win32.whl.

File metadata

  • Download URL: toml_rs-0.0.10-cp314-cp314-win32.whl
  • Upload date:
  • Size: 269.9 kB
  • Tags: CPython 3.14, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.9.6

File hashes

Hashes for toml_rs-0.0.10-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 f423047fa7d8d049c1723cce8bc32b8b9705d587e94242ef74277f028870dfa5
MD5 effe6ade21a9257578cfc66baea22420
BLAKE2b-256 8a2e0b84e50da7a8aaf22418d9592829455f499a39748ffef9f0a296564ab316

See more details on using hashes here.

File details

Details for the file toml_rs-0.0.10-cp314-cp314-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for toml_rs-0.0.10-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 4ebeb42a688a9dac2a85882e41508d528e8e6280a41009069bdd5542805acbdc
MD5 cfc3fe5243788098cf55a3219b274caf
BLAKE2b-256 e4f090a327df63049641de3ea80c97e92bb5d4997f6a28d3f378f5c9de9f1e29

See more details on using hashes here.

File details

Details for the file toml_rs-0.0.10-cp314-cp314-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for toml_rs-0.0.10-cp314-cp314-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 41e5988364e71f078e87106afc5b449cbf25300c7d4cf8d49eb7e8a1fc6b569b
MD5 b170ab4108b9788ad82ec0dbfce28910
BLAKE2b-256 9ee5912ef8c39f8a38dcc8c0440f157665f092cc62ad4816e222405132853a0e

See more details on using hashes here.

File details

Details for the file toml_rs-0.0.10-cp314-cp314-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for toml_rs-0.0.10-cp314-cp314-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 2bc568586abe6d2fbdd03f5c85d487ca71ddbaf65c4bad21fa17e0ea581e3015
MD5 b8d78a08ff237db80407510888729844
BLAKE2b-256 16e9068e6afca7e9674df36bba676c1285199c64e2138b182ebdddfcfd7b731e

See more details on using hashes here.

File details

Details for the file toml_rs-0.0.10-cp314-cp314-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for toml_rs-0.0.10-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 b0f6a06af9c6363570190bf8da5aaa892d616a586b85d9e9080dd8fb6d592e7c
MD5 c8ee5c5e20d8f67428ef8e3ce892b6e1
BLAKE2b-256 39cc384789ff3e319f1add9ccbc432087424effe74759f26b2d252cfd74c0e09

See more details on using hashes here.

File details

Details for the file toml_rs-0.0.10-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for toml_rs-0.0.10-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 d94594ad8901e9c93502d417f190ccf4a3263cb49934d425d0e153ec072d85b3
MD5 634122d42dbb81f9c94a0334a4f7ab95
BLAKE2b-256 fbf260752eba0611f4ca0a6c707f208812cad213e2453119bb3dcf51bafb23ea

See more details on using hashes here.

File details

Details for the file toml_rs-0.0.10-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for toml_rs-0.0.10-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 3476015636c46860b9a06a46ba4b30218c912485d92eadb96f52731993876d21
MD5 85d1972ace6bad7f58d40356588f018b
BLAKE2b-256 2f6d6bdfa68a0fb6966a139fec6c1fcfdf9b0a93f87d98e071181c78ed783548

See more details on using hashes here.

File details

Details for the file toml_rs-0.0.10-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for toml_rs-0.0.10-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 7124498ebfc8ae4837e08a518b1cc06ab75917a2c54dda281a0c2b0c3802effb
MD5 bcb617e77f6278d167770f4fb1a0e84e
BLAKE2b-256 c8878ba5856c1128f452a677822a68e521afe063ad8c4aba61842e5abafc082a

See more details on using hashes here.

File details

Details for the file toml_rs-0.0.10-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for toml_rs-0.0.10-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 8cc45025a9c32df67fe93581f4a7d3fdd9537bc498d8ccf5b5decdccf6151fef
MD5 f3c6e8e1f971121bc03fa906101e933e
BLAKE2b-256 100edaf05560ec6f3235a1851b44e41ab0dfc9a31c48f3ba6d2cbdf03070c40a

See more details on using hashes here.

File details

Details for the file toml_rs-0.0.10-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for toml_rs-0.0.10-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 dd60f823a8eecc210e73c669f59b79f3b5aad38f0a18afd18f510d9ef0e9b910
MD5 934dae4763971975ed5d417276712e30
BLAKE2b-256 c59694e97647b88e15e38c6f2ff52eb8c76c97ccb5831ac364bb6ac34c744b8a

See more details on using hashes here.

File details

Details for the file toml_rs-0.0.10-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for toml_rs-0.0.10-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 a67218488a2e0de8465f1fbce24741b4712759e6c31c20b214299abf46ee5a4b
MD5 9bd770f3817faac575908865f0da30b9
BLAKE2b-256 11478bd8c97c00b09b2bdb4b126a09ffb161208c281ca22fab1a0c7e378c8963

See more details on using hashes here.

File details

Details for the file toml_rs-0.0.10-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for toml_rs-0.0.10-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 21af41a517b5cab3ba7e75f0a689459bc478b4f2ee82905b4232f3d444c56cf1
MD5 0e678ab0e13886d2f02d9aa757e4b1eb
BLAKE2b-256 a14875ae885297e5ae6c3e0f05e03d6dc69932a4226360230662f39f1a48b439

See more details on using hashes here.

File details

Details for the file toml_rs-0.0.10-cp314-cp314-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for toml_rs-0.0.10-cp314-cp314-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 28292de61540bb5d84a2f71a31f238f3ce4792b3c9a7b122bad3c083b2a74b02
MD5 aae0d4ecf46569284db891b5fb7075bc
BLAKE2b-256 0a3b2ad384c519ce82c6bc48aa8b6553c695e3174c8bb3ce16af09a769571678

See more details on using hashes here.

File details

Details for the file toml_rs-0.0.10-cp313-cp313t-win_amd64.whl.

File metadata

File hashes

Hashes for toml_rs-0.0.10-cp313-cp313t-win_amd64.whl
Algorithm Hash digest
SHA256 4ff9dc983698a919d9e526894cb4f6cee17a08d7e94c73dd81bcc034b2b774aa
MD5 06e3eba496f67b7e4abe47f51becd1a1
BLAKE2b-256 3d4279ae90bd68b584d8e489a14fcf6ab2c63083764805b3782f80fd58aa1854

See more details on using hashes here.

File details

Details for the file toml_rs-0.0.10-cp313-cp313t-win32.whl.

File metadata

  • Download URL: toml_rs-0.0.10-cp313-cp313t-win32.whl
  • Upload date:
  • Size: 268.4 kB
  • Tags: CPython 3.13t, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.9.6

File hashes

Hashes for toml_rs-0.0.10-cp313-cp313t-win32.whl
Algorithm Hash digest
SHA256 7471149c1e7cf76311e4c9973d14c8f496b1921646b143300b15ee99e09ba4f8
MD5 7d3a35bf97401b74d87fb880246569de
BLAKE2b-256 ba37e471510b5904760a4144d588c10e13e4f0be1360c23ebde84508bdeadc8f

See more details on using hashes here.

File details

Details for the file toml_rs-0.0.10-cp313-cp313t-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for toml_rs-0.0.10-cp313-cp313t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 ca0ff7c2b580ada0175f15fb6ac73fdaa7765d3a79777fa25ed444ba8a4a5bcd
MD5 80cbcfab4f1dfddb02bec05e6b676f11
BLAKE2b-256 fd7d9e99332c170387b296d945213fcf766195b38ac5d459a8bd154297ff9b0d

See more details on using hashes here.

File details

Details for the file toml_rs-0.0.10-cp313-cp313t-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for toml_rs-0.0.10-cp313-cp313t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 1dcf651310238dbd2f982f1f1c0333e59fbd969243bf54e58e906decd55a0e19
MD5 a79c91c5db630a9399bf32658132d6d0
BLAKE2b-256 b57c7f046e3e0b422f9aaadf7b5c5cc741ac942bc42caa08d6755a347b03b41a

See more details on using hashes here.

File details

Details for the file toml_rs-0.0.10-cp313-cp313t-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for toml_rs-0.0.10-cp313-cp313t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 e9238b06fb7561d19b93ad27d4375ce3f24980d186b197f7fbbbf92cce47c31d
MD5 4215e5587fd079bf0c5563059af135d7
BLAKE2b-256 b5ab9be2dec98830064ce391629f998ed1b4c98abe6d070ff3354ef8e6e03959

See more details on using hashes here.

File details

Details for the file toml_rs-0.0.10-cp313-cp313t-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for toml_rs-0.0.10-cp313-cp313t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 1e1311259ceda69b2944341ecd801c6610c5732393d51587c9c50f6b3190d4e8
MD5 a35f7539ef0fb0a65bc2c581c31bddf2
BLAKE2b-256 c22fac85a75050a6ecdeb2c2ae237704c612d19379de24a17cca82285396e9e0

See more details on using hashes here.

File details

Details for the file toml_rs-0.0.10-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for toml_rs-0.0.10-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ec97cc54c769799336c1016afa5172bed9915f17e2a4306634038bd4c9501ec1
MD5 d6251775d104fd0af4539c8d50b40782
BLAKE2b-256 326e5dc7d2aa9600bbadf85a050f21edcad11f3ac5bbb9a3e57192f2c8df6273

See more details on using hashes here.

File details

Details for the file toml_rs-0.0.10-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for toml_rs-0.0.10-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 4694a8187a0aa5d31c18d2cd8e21fdc257f1a023025880f942747b02c6956cf4
MD5 977c069b19740de3bc0937f9ea2b2ab9
BLAKE2b-256 37b9c5e77dccdbf51908e14b67dad29c061d3432a39890b5f56e2caa5510ddaf

See more details on using hashes here.

File details

Details for the file toml_rs-0.0.10-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for toml_rs-0.0.10-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 ee8e366921979fe3c2a513226ebdce08281c5420264e6d5158d9fac020b4448e
MD5 5ebd8399b90f7bf308036eb6e3e60d25
BLAKE2b-256 f281f89469d876ebdc5fa40d6ac294bc3497bd01a455b1700abb858de32fa31b

See more details on using hashes here.

File details

Details for the file toml_rs-0.0.10-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for toml_rs-0.0.10-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 295cf2015f4572ff581c7c276e0b83e8408575b5b51bdab6704d85e82e38cd9c
MD5 fb69ea233b57788cb39718784968ceaf
BLAKE2b-256 ea2b0f6d641903e2ff2a468a4869a10eaa65bc8e6d55bd1738f347cc2fbc9b0c

See more details on using hashes here.

File details

Details for the file toml_rs-0.0.10-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for toml_rs-0.0.10-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 978fce0ae095b12fa745ce3a96d6ff90153640b55f9f5533fa1341839bf3d8a3
MD5 0103572fece8b8a8131a47bc599a49ef
BLAKE2b-256 29b4d89bcf7a9c8eedee964307757fa55d28eb8c8f26dff55542adf39b54ebc5

See more details on using hashes here.

File details

Details for the file toml_rs-0.0.10-cp313-cp313t-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for toml_rs-0.0.10-cp313-cp313t-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 1390309c4eabf2582028e5b9e6d72994b8211bf3826c0fe80c9c97734cf3fef5
MD5 c79538037d7d246bc683bb9e8bb5d61e
BLAKE2b-256 bf4c6a7e41a547198942df6b8c2388cbd834a33d54c394ea517678de09e42677

See more details on using hashes here.

File details

Details for the file toml_rs-0.0.10-cp313-cp313t-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for toml_rs-0.0.10-cp313-cp313t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 fa36d35c46d66144bfe2d805051639b193466a23580adcec469a730033021b18
MD5 c24617cbeede661e161ba900731f79d0
BLAKE2b-256 2c70e3e5e60ff76775025811ad8d906859c818ccbea52262e3a1855074ac83f2

See more details on using hashes here.

File details

Details for the file toml_rs-0.0.10-cp313-cp313t-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for toml_rs-0.0.10-cp313-cp313t-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 a27fd257e52c826562f18d4c7ee35b19f553e8ae3c3317a299b6ed3b7eaa70fd
MD5 ae2cd4be670d6255db46245fb4e9d30f
BLAKE2b-256 35cb769288a90099a5b78ada105dc1ffdd4d8970efc44b28a955f72f98c2909b

See more details on using hashes here.

File details

Details for the file toml_rs-0.0.10-cp313-cp313-win_amd64.whl.

File metadata

File hashes

Hashes for toml_rs-0.0.10-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 e0661f25a52ff95ebe61572c37d5b9d755ce17827a9cf518f08d03f3f53fe1ca
MD5 92884500fa26d07dab2d1a2f155be547
BLAKE2b-256 d4c04e7d40465f860847a34f2c4a0d89ccd68ba9c8a62e7b30caf8b106feb154

See more details on using hashes here.

File details

Details for the file toml_rs-0.0.10-cp313-cp313-win32.whl.

File metadata

  • Download URL: toml_rs-0.0.10-cp313-cp313-win32.whl
  • Upload date:
  • Size: 269.9 kB
  • Tags: CPython 3.13, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.9.6

File hashes

Hashes for toml_rs-0.0.10-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 d636f3c0d3aacab93154d7959a594a1f38e6fe25be067083571c012e827782da
MD5 abc4a7d610e8a3cb47f6640648ad67aa
BLAKE2b-256 184b3b94cb2727d533b4871093601e3bc24688a9e3e3a73cb1c09873c16ad60b

See more details on using hashes here.

File details

Details for the file toml_rs-0.0.10-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for toml_rs-0.0.10-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 7852c24f66e3cc6332f5f3974a371292536da7668a81e1c5aead1725ae16648e
MD5 32cc4ed59c3559306720cdffd5247e96
BLAKE2b-256 7e15fc2d4b6465626021ac76ed4e428f14ef69bf19bb36523b861f036ea3990a

See more details on using hashes here.

File details

Details for the file toml_rs-0.0.10-cp313-cp313-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for toml_rs-0.0.10-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 22207aa8f30c82e9f5da8e5881324760c1a79b36987603a11ff3b79c07a5818c
MD5 fd1e6456ccfb7736fdefcb7e430bbba7
BLAKE2b-256 9ac1882f17ffb23974656d94cfdc4640b592b76011c9f5f438d0e12249e125c9

See more details on using hashes here.

File details

Details for the file toml_rs-0.0.10-cp313-cp313-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for toml_rs-0.0.10-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 e0a3291e694a8b5ec77fe7fc1f1614e8038001653b16fd341c91afede40860d4
MD5 6e45fc897b6e4c1b392df39d9fc21620
BLAKE2b-256 c2f751ea814e97e29fd603970464d1ea129e698b6fd2a1d4672f585159258321

See more details on using hashes here.

File details

Details for the file toml_rs-0.0.10-cp313-cp313-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for toml_rs-0.0.10-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 bdb02ad671f133058fc10d347857f62738a691311cb05e484cc36c84cbd23634
MD5 a27c199edb85de18ecb93c6ade3001ac
BLAKE2b-256 e62971e2e0d80c6d766c914298ef50d1eb576a3aee04c00bf5ecf8fb896b52b1

See more details on using hashes here.

File details

Details for the file toml_rs-0.0.10-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for toml_rs-0.0.10-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 b3a64b6b61481fd07e6ccc0db6b3351e8dc5bef6693481e550026644e84431ba
MD5 4a0474b60343c2d9603040025262c2c1
BLAKE2b-256 79c47e32a58736431a07edbff3420aab0ad96ef3fa1299f4541b937075054eea

See more details on using hashes here.

File details

Details for the file toml_rs-0.0.10-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for toml_rs-0.0.10-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 3d4cab94272344cd44592743c0c602b0c8591c8961d3114c641bf06e84229e5c
MD5 073ee12ab3fc9de965e5ac7acb8f7bd2
BLAKE2b-256 8301b796a7cbf0a43c48aa7600187acd4796f9d20c0db21d62d625798bec63dc

See more details on using hashes here.

File details

Details for the file toml_rs-0.0.10-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for toml_rs-0.0.10-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 e313bb79a0f2a9dceb21daed7e7abb667c2b3aaea8c06c2a8fae7a14454b7cd6
MD5 c23563274153e78117186cbcb4f0b1b2
BLAKE2b-256 cca926913465e50b2f168ab6f8e7d33a10278d0a4b4773d99c3b55096418ad8b

See more details on using hashes here.

File details

Details for the file toml_rs-0.0.10-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for toml_rs-0.0.10-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 51c5a5926050a73cedabbb78b2d89766513b6fe425013ea57cc250560213d38d
MD5 3f6dfac51704d3cea27d9c136f9b2b83
BLAKE2b-256 7888f279daf9640c350a9009e663765ee023661dbc31a54373cdc0b8bb16e289

See more details on using hashes here.

File details

Details for the file toml_rs-0.0.10-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for toml_rs-0.0.10-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 8887507439e9ff55cd314bf86081a7a10bb7fae194f0f7b85ea9343964c9019e
MD5 1669fcef4eebc822dd2c27b22209171d
BLAKE2b-256 9b50d9211f83cebfea6d80f3f5cc167eee947efdfdd0038610cf69fdc76412a8

See more details on using hashes here.

File details

Details for the file toml_rs-0.0.10-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for toml_rs-0.0.10-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 bc70b1efc56325d467b0fe4df0b54011ae603fbd74692f5424fc210dd2ca2c55
MD5 162d1db2a4a2f23903a934eeaa7176d7
BLAKE2b-256 c9f52a3aafc63d056d5e0d955127d2e19b713f6db8165dada26dfba9e1d9c90f

See more details on using hashes here.

File details

Details for the file toml_rs-0.0.10-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for toml_rs-0.0.10-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 0bfc4843f42a4e604ac69029d303f8c79da1c6a0c167cd59829f9904dfa8cf93
MD5 37528574355ac12e394a945fc14f9736
BLAKE2b-256 756fef08d2582af53ddd2c4a3e11d7d8c4c78b3d2deb9aa6aeb4e943ef2f1a8f

See more details on using hashes here.

File details

Details for the file toml_rs-0.0.10-cp313-cp313-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for toml_rs-0.0.10-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 5a68d9faaaf66b3a2629c5ccea0638c199935f8f2b893ed448c643f00896da2e
MD5 7af0b6850a161c802e4731dda58c5fcf
BLAKE2b-256 632b6f7e273eba7c98f969d4428223e4b7518ac17d778e0c99f682982d5dae00

See more details on using hashes here.

File details

Details for the file toml_rs-0.0.10-cp312-cp312-win_amd64.whl.

File metadata

File hashes

Hashes for toml_rs-0.0.10-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 79f21ac428b381fe2e1f1b5e1fe52a27185ba3992882fad8a76abce12bbd9a71
MD5 954b37468c533518197b56c2998c052b
BLAKE2b-256 9a6a9f16a69be35977df738be988a089dd0320dd04d9a5ad73db8d5ee2fbb175

See more details on using hashes here.

File details

Details for the file toml_rs-0.0.10-cp312-cp312-win32.whl.

File metadata

  • Download URL: toml_rs-0.0.10-cp312-cp312-win32.whl
  • Upload date:
  • Size: 270.3 kB
  • Tags: CPython 3.12, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.9.6

File hashes

Hashes for toml_rs-0.0.10-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 ed91810720cbfb91eee152c313f1e9072869d0cefe44558eb8b4b576a3880a6d
MD5 f7a87cb2a12051ad655021d622fb022e
BLAKE2b-256 61b32ec1b59175dc115126dfcb05bfc0f6dfdcd49b2754f0e12bc395eea1863e

See more details on using hashes here.

File details

Details for the file toml_rs-0.0.10-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for toml_rs-0.0.10-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 ac3889620846181f285e8ec1ddb25147d718224ed8b758897a849cad5506f2bb
MD5 1f3deb962d3b2a18f4c0c03a4a88030d
BLAKE2b-256 4a2a53c210fa3c58767d6afd9ba0459e258c53f36bd49575b22ce67b15a2d4ff

See more details on using hashes here.

File details

Details for the file toml_rs-0.0.10-cp312-cp312-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for toml_rs-0.0.10-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 b7728b7036f73ec7b95e67f33fde6fa8c7258fe9826eddc1351013235b067751
MD5 44d53f3a3fe8ec462cdf9c49a9ccad2f
BLAKE2b-256 b3bd3230165bc351cd7acf461b90c27abceb49e1a81f33c1e234d842fb9c00e7

See more details on using hashes here.

File details

Details for the file toml_rs-0.0.10-cp312-cp312-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for toml_rs-0.0.10-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 ebed12fedb4a2ae8079b385d51378e4e7829487b1ed799ed4e97bba7b5ae37d2
MD5 415c285c25a74738b4878821f8cb15eb
BLAKE2b-256 9a5b56123795e7fa804e6b39241e615fb1dfcd4969f425d81a5ef6f6cce4adc0

See more details on using hashes here.

File details

Details for the file toml_rs-0.0.10-cp312-cp312-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for toml_rs-0.0.10-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 fd34f85a1e8d9466353886f610cf0020b0a93eef56c101101b0f400a5a3ceab4
MD5 d3984fa37c2ae0758149e314822fc82a
BLAKE2b-256 e9e71851a8126a9c41751a6635d45dad5807c55193e9570affb5bab79e7c617e

See more details on using hashes here.

File details

Details for the file toml_rs-0.0.10-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for toml_rs-0.0.10-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 542b4c65fcb4beaffd16b54969bb826b9897292936fd33d15ae256e6e5ac111f
MD5 40a6226feab07f42f0672b5f9e8f2c74
BLAKE2b-256 cbb34e71ff732b6eea79e92a60117f3b65bb5edfa836648172f7a0a6b5d4f539

See more details on using hashes here.

File details

Details for the file toml_rs-0.0.10-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for toml_rs-0.0.10-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 9f18bc8bf9ce4c279ae4530cd36017729d3efc359b223b9cfc9c60a1c7996a6f
MD5 f85a6105caafee970f9fc5fcc2885e71
BLAKE2b-256 93d06d121765bd4365166311dc47c53c784b9421a53a5197a96d35f308c38388

See more details on using hashes here.

File details

Details for the file toml_rs-0.0.10-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for toml_rs-0.0.10-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 eb7f6089494f152ed6bcd8e0f483b3b4a740fd1364c45216ade96921d71cbba0
MD5 1452b899109304e3b1cbbef3b2541982
BLAKE2b-256 e559538ce747eeef1a762c04037dfb7c6e993d81e3fa5f4ee0ac752d66634953

See more details on using hashes here.

File details

Details for the file toml_rs-0.0.10-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for toml_rs-0.0.10-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 7584c40679a83eba63b417f0ed6dc51a9a561ea3242ee52f791165593a4658a7
MD5 0550bdae246d3465639a00c7f3326bb7
BLAKE2b-256 5cdbf1d8b1a2ad8307c234d036b36b07d8190e875d21ba4727bcb76e8291df1f

See more details on using hashes here.

File details

Details for the file toml_rs-0.0.10-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for toml_rs-0.0.10-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 6665406af81ddf8acd50583b0f0c95ba1a7d22e0ee57a12eb0fc3a693d7b6bfa
MD5 a33b833a54190611242270d329b2bbdc
BLAKE2b-256 2c58dd7d94ab98821977fc4cbad2325678d36630c5effad49a22ec9dec3e91ca

See more details on using hashes here.

File details

Details for the file toml_rs-0.0.10-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for toml_rs-0.0.10-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 f03ed12240642e9642bc8a29f3c9dccfc179cd3a3c0d066de4a9d32db74c6d28
MD5 1f4a81c213558c011165be4c41b7a9e6
BLAKE2b-256 8aa74b5d17ed98b509f9b78992a43cbcf65cb6d2e9d8f84e5e466a490533b0a8

See more details on using hashes here.

File details

Details for the file toml_rs-0.0.10-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for toml_rs-0.0.10-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 68f01c3fbe80474298c387235822a5b06a5bbdbbf24a484e5176812893271e31
MD5 dcf5cf16b1c64542b213ab532ae9c0bf
BLAKE2b-256 a02b835dbf428a8fcde30c3af93527f7e2b7a9dcf762211bedf08b8f463de57d

See more details on using hashes here.

File details

Details for the file toml_rs-0.0.10-cp312-cp312-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for toml_rs-0.0.10-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 ea7ce82f88986bacc0edbf7d8ec178d6e3f76d56e8502f0e19537e5a66a70c7c
MD5 0afb8629d05d5971984a7fd889c1ef12
BLAKE2b-256 02ec3f51478253b132178aec88b62c774fbb04204d550716940594ae7f571889

See more details on using hashes here.

File details

Details for the file toml_rs-0.0.10-cp311-cp311-win_amd64.whl.

File metadata

File hashes

Hashes for toml_rs-0.0.10-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 e8eb1a8904951122717bf8cc9c856d23b3f6876b56597361ec8428f5493b32bb
MD5 62d8f2de6cee522f2a6b9788a5c16156
BLAKE2b-256 7de7e533e0a63075e0d7e0948f753985b59989b85556875995699451201805a5

See more details on using hashes here.

File details

Details for the file toml_rs-0.0.10-cp311-cp311-win32.whl.

File metadata

  • Download URL: toml_rs-0.0.10-cp311-cp311-win32.whl
  • Upload date:
  • Size: 270.4 kB
  • Tags: CPython 3.11, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.9.6

File hashes

Hashes for toml_rs-0.0.10-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 158a11fdf4b454794084a9ade8d968c3199ca461583843a6e176238d717aa679
MD5 3f7bc144f76a4d6db304c2270ab76720
BLAKE2b-256 8b82a9d03c1893539ec2670717b4b0aa90fcfab33f0e6a22f3e324148f5c3b15

See more details on using hashes here.

File details

Details for the file toml_rs-0.0.10-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for toml_rs-0.0.10-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 7137c1194b537a6fc464e384d3a5cef26577cc4c211afd46010df2bf1cd7d16b
MD5 8fe40d51d3fb964f4699aa5b5ecd0f2c
BLAKE2b-256 7f4b0791fbe7e3d277b302a1b362a390283ad74f25484f25cff416857a5dee68

See more details on using hashes here.

File details

Details for the file toml_rs-0.0.10-cp311-cp311-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for toml_rs-0.0.10-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 c6fefbe6e4b950f73d25056df0833068c1f2c7f285e1c6ef86dcbf41ebb0d752
MD5 cb0548fb2d3e08a14d156f8da9848a03
BLAKE2b-256 f1a3eca54b1076f9d49114517960681601e18d4e75d757d365c2db28280d5a4d

See more details on using hashes here.

File details

Details for the file toml_rs-0.0.10-cp311-cp311-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for toml_rs-0.0.10-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 1b7f408364e4a0aff25d94869dfb774a5d6597c0395653fb0724e1b94341dbbd
MD5 8d39b6352c9c509f399ff82bb22e1a91
BLAKE2b-256 aed5d9627baad832595ba5d0938eb78215bb5b05bcc8f87a899e50b009c9cc46

See more details on using hashes here.

File details

Details for the file toml_rs-0.0.10-cp311-cp311-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for toml_rs-0.0.10-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 7aef61328eb4171ae0bfae92a70c27833adcefdaadf658fe605a3f850012b4d6
MD5 d46d6f5797dbf342f553401cda5378fb
BLAKE2b-256 0125fd25b476b510c9656899cdc5c8d558658a6603310f44ed5d4d017fa6bf11

See more details on using hashes here.

File details

Details for the file toml_rs-0.0.10-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for toml_rs-0.0.10-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 675d15a5e5a64d1d55231cfec5c86acb12e1f6dd7547a21c23f75121225e2f10
MD5 bbabf4a687d6d89a030a511e7beacdcc
BLAKE2b-256 b24ed8e0147ac4652b966d060d9b7061180da62af01adf1aa0e47fc7684212e8

See more details on using hashes here.

File details

Details for the file toml_rs-0.0.10-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for toml_rs-0.0.10-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 9f55f1f9f1e99f5f67493fb439d6409be0dda1f86c9052830c13b8cd44e161dc
MD5 20fb295c5a33dcf71af0120513301ef3
BLAKE2b-256 a77a4b12e889750100a4c46bd83d34905ba7e423cc9c7887e74fe8dc8b6bb571

See more details on using hashes here.

File details

Details for the file toml_rs-0.0.10-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for toml_rs-0.0.10-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 5a6dd9e65f940aeb89f67d86649eb7b09c364b9054980cae98d4aa372ff6ab57
MD5 091c39c090655abc5b7178675ab6a11c
BLAKE2b-256 63426e1b1e072681d63e778bcdcf14cae191bb253845924d7cdbd1afc5130d3e

See more details on using hashes here.

File details

Details for the file toml_rs-0.0.10-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for toml_rs-0.0.10-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 7d8179cce43c62854ffd3e0fd2e3979bbface7ed6b26f05986abfa5af3b945ab
MD5 e874fe9af57c3c8fe1413906fb6ec181
BLAKE2b-256 66d3a9c7704f5d92946975ced4ccfbc697bab0ac07f560db53029ad8ae9592b9

See more details on using hashes here.

File details

Details for the file toml_rs-0.0.10-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for toml_rs-0.0.10-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 c6b4510cff4cfa32f0117079378b36b0dbfb31042df6126fcbd4240a11c4582b
MD5 55fed8313f71472e125d27e759889cf3
BLAKE2b-256 726aafd380711d748456a47ee41164b5a9490123694fbebb292839aeaf280331

See more details on using hashes here.

File details

Details for the file toml_rs-0.0.10-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for toml_rs-0.0.10-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 3278ea2cf7ba869cb31936b5b11b61bf6bfd091e37992d44e8364dd1eb196dcf
MD5 abf96a19447bcdec38416c5bff89c931
BLAKE2b-256 e1500eb00284039779608199e3e990540d427ac1f8fe5e593d658021a2f7bbdc

See more details on using hashes here.

File details

Details for the file toml_rs-0.0.10-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for toml_rs-0.0.10-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 328fa6b5bd9d5b332438d165e63bb3ab62030b5678584f403eb22de298869b36
MD5 23c0406916538ad9e3a93ff62ace38a7
BLAKE2b-256 24dfad84417228178f26eabbfaf64267a68d9237398811ec1857376b856b4328

See more details on using hashes here.

File details

Details for the file toml_rs-0.0.10-cp311-cp311-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for toml_rs-0.0.10-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 823a525677fac358b72910432b81b1bdba83fc0c8f01ebd803aa037e144f1fd2
MD5 a82e0f7cf31a71ffca6cb1dfbbb4c8f7
BLAKE2b-256 a970d5739a2eff8661d8b21cd28a7fd3fc8cd458543765f496babbd18aff6eb1

See more details on using hashes here.

File details

Details for the file toml_rs-0.0.10-cp310-cp310-win_amd64.whl.

File metadata

File hashes

Hashes for toml_rs-0.0.10-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 17ba7eb26ef312bb61af1a294c387614b9cbaaec3da3cf85bda57614d818dfd7
MD5 f3b58aea36cde47b30128f9d03d5d87d
BLAKE2b-256 e9091b851b5152a2e3191c2f07061073522783ea176c764c6ef051413fdba607

See more details on using hashes here.

File details

Details for the file toml_rs-0.0.10-cp310-cp310-win32.whl.

File metadata

  • Download URL: toml_rs-0.0.10-cp310-cp310-win32.whl
  • Upload date:
  • Size: 270.7 kB
  • Tags: CPython 3.10, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.9.6

File hashes

Hashes for toml_rs-0.0.10-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 2ee4cd203bd0ce14ab78bcd3fd4f25eed2b64a6c741723c71ce997d346b8f44b
MD5 06bcbb1340d9e8684d4e83cfdadddbc7
BLAKE2b-256 645cabcd5760ff40032f233d5028d117bf8b30d4fb5ac444fc78eb89b4b04966

See more details on using hashes here.

File details

Details for the file toml_rs-0.0.10-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for toml_rs-0.0.10-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 a2eb68a1ccaf6a165ddb52dba407fa3016cf59cf0f4814ba02d468a21f48b012
MD5 147cbef30dee1f2ba040180094eb6930
BLAKE2b-256 a96c39a604258eac0f30397070f069aae028033cfd201110cb9cca6c3237bfa0

See more details on using hashes here.

File details

Details for the file toml_rs-0.0.10-cp310-cp310-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for toml_rs-0.0.10-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 6351ac8f37d4a6f76a8209bd1ccb520056704047fd2cc2dcb8461c4a4e1afc98
MD5 c8533bfe04ec068f32e8cf261bcae24d
BLAKE2b-256 c1823d2aea5ccc02ca122ab288c5ff1e0547ea7bd556699bb15ab23d0e736603

See more details on using hashes here.

File details

Details for the file toml_rs-0.0.10-cp310-cp310-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for toml_rs-0.0.10-cp310-cp310-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 4bd720719203a6fb12b37211fd07bc712abb9412f244aca618fdb0e21f9a07e2
MD5 554ac5eee0a8b06a7ceed2c66eddc746
BLAKE2b-256 dbe715ef6b3d1dc09ea009c10a697cbc7582eff41505d314ee2224c1fc3a5b80

See more details on using hashes here.

File details

Details for the file toml_rs-0.0.10-cp310-cp310-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for toml_rs-0.0.10-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 1115365dde7e3cd7754bbc8d491050f528f662d0b64fae2ac260a516016c3d89
MD5 955cdb59925e9cc3857495ab453bb4fe
BLAKE2b-256 6cc72cb69bb2e74d59c3c9acc4fd94b272c4cc5970b77447681cad93b9545c03

See more details on using hashes here.

File details

Details for the file toml_rs-0.0.10-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for toml_rs-0.0.10-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 38513e2e41063ef83fa70765e7e5844754d260414cfca88c1fb7844dda4402ec
MD5 0641f40983fbddff5cfdf63544c6929d
BLAKE2b-256 a33ac2968e1210c333c450f7f83e64057e6ae0bc9943b5de378c046b95bc8bf7

See more details on using hashes here.

File details

Details for the file toml_rs-0.0.10-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for toml_rs-0.0.10-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 ef99279f9a8eeb3d9a6e25121a2ad188458987be6388a966dbc15c79797bb9c1
MD5 6f4ede601ebbac38c4b6be316f182a2c
BLAKE2b-256 1f822baab5c34b46819882b53a8b968361fedf34a80df52679b7ff3b35ca243f

See more details on using hashes here.

File details

Details for the file toml_rs-0.0.10-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for toml_rs-0.0.10-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 d5b9f060dca8957f1ee8c8188207a8c9cca5a850bfa82ee6929daf71d7d74e5e
MD5 4cd1a25982a1b0ff10ec59c1f0f2a017
BLAKE2b-256 a2bbe7012bada9533a19b3d148e5c1682351c3a76c4a4f1701ee3b6f47bc63bb

See more details on using hashes here.

File details

Details for the file toml_rs-0.0.10-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for toml_rs-0.0.10-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 7b7efd3b191f27356a03078a62f0014836b6e3e8b1a04dc8be84c1917bf2ee29
MD5 939554ec7ae94ba92e13cad2ab01ddce
BLAKE2b-256 65597c9c8bdd38cd4726eac01408fef44dcc5cedafb4510bd89c8b2b1e1e306d

See more details on using hashes here.

File details

Details for the file toml_rs-0.0.10-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for toml_rs-0.0.10-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 c925143c37e62bb4b6e176658afb16752fd876168d8dc21404ac6985dc96e111
MD5 053926699462b12becdd622ca2f4c7a8
BLAKE2b-256 cca29e60e2d4e7c356c0f962994631c1cf2d98068c0378276ba2400f39e99547

See more details on using hashes here.

File details

Details for the file toml_rs-0.0.10-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for toml_rs-0.0.10-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 b599eb8782059b77d735b4cd34fbd63bd296cb31ab766d5a891e8ffaee370ec4
MD5 8c8fb8972a2bc88a5429009c472893d8
BLAKE2b-256 94fa5452e9ee159e1d0fe25dd8ac8ac235f7579f2608f65108a6ca412ebe7d0e

See more details on using hashes here.

File details

Details for the file toml_rs-0.0.10-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for toml_rs-0.0.10-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 7d54b4f86e2d0543abd8e02cbe247c7da13d049517202a4d352f138edeb2f946
MD5 778eb6fa4ccd5e519f2aeab9f25c3a8c
BLAKE2b-256 dd6d64460805e0a65199e131e64dc694bd4a89913d1d3f88d4af9867b49c94c1

See more details on using hashes here.

File details

Details for the file toml_rs-0.0.10-cp310-cp310-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for toml_rs-0.0.10-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 c6f157a34a6b9b526c2ed717c364c0af19a4075ef47226ba2bf6dca4e1bb21ec
MD5 fa972e348325a517925ab32fe440d2fd
BLAKE2b-256 d0a8351945bb29975d873d09160f49143ff8511b0ef7b730ef2454faec7742ea

See more details on using hashes here.

Supported by

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