Skip to main content

A High-Performance TOML Parser for Python written in Rust

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.12.tar.gz (86.0 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.12-pp311-pypy311_pp73-win_amd64.whl (279.0 kB view details)

Uploaded PyPyWindows x86-64

toml_rs-0.0.12-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl (547.9 kB view details)

Uploaded PyPymusllinux: musl 1.2+ x86-64

toml_rs-0.0.12-pp311-pypy311_pp73-musllinux_1_2_i686.whl (581.3 kB view details)

Uploaded PyPymusllinux: musl 1.2+ i686

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

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

toml_rs-0.0.12-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl (541.4 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARM64

toml_rs-0.0.12-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (373.9 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

toml_rs-0.0.12-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (387.2 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ s390x

toml_rs-0.0.12-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (371.1 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

toml_rs-0.0.12-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (335.6 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

toml_rs-0.0.12-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (367.7 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

toml_rs-0.0.12-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl (405.6 kB view details)

Uploaded PyPymanylinux: glibc 2.5+ i686

toml_rs-0.0.12-pp311-pypy311_pp73-macosx_11_0_arm64.whl (340.7 kB view details)

Uploaded PyPymacOS 11.0+ ARM64

toml_rs-0.0.12-pp311-pypy311_pp73-macosx_10_12_x86_64.whl (357.8 kB view details)

Uploaded PyPymacOS 10.12+ x86-64

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

Uploaded CPython 3.14tWindows x86-64

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

Uploaded CPython 3.14tWindows x86

toml_rs-0.0.12-cp314-cp314t-musllinux_1_2_x86_64.whl (545.2 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

toml_rs-0.0.12-cp314-cp314t-musllinux_1_2_i686.whl (577.9 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ i686

toml_rs-0.0.12-cp314-cp314t-musllinux_1_2_armv7l.whl (635.4 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARMv7l

toml_rs-0.0.12-cp314-cp314t-musllinux_1_2_aarch64.whl (537.9 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

toml_rs-0.0.12-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.12-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl (383.6 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ s390x

toml_rs-0.0.12-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.12-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (332.2 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARMv7l

toml_rs-0.0.12-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (363.8 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARM64

toml_rs-0.0.12-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.12-cp314-cp314t-macosx_11_0_arm64.whl (337.4 kB view details)

Uploaded CPython 3.14tmacOS 11.0+ ARM64

toml_rs-0.0.12-cp314-cp314t-macosx_10_12_x86_64.whl (352.6 kB view details)

Uploaded CPython 3.14tmacOS 10.12+ x86-64

toml_rs-0.0.12-cp314-cp314-win_amd64.whl (277.6 kB view details)

Uploaded CPython 3.14Windows x86-64

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

Uploaded CPython 3.14Windows x86

toml_rs-0.0.12-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.12-cp314-cp314-musllinux_1_2_i686.whl (579.2 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ i686

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

Uploaded CPython 3.14musllinux: musl 1.2+ ARMv7l

toml_rs-0.0.12-cp314-cp314-musllinux_1_2_aarch64.whl (539.9 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

toml_rs-0.0.12-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (373.1 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ x86-64

toml_rs-0.0.12-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl (385.9 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ s390x

toml_rs-0.0.12-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (369.4 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ppc64le

toml_rs-0.0.12-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.12-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (365.9 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARM64

toml_rs-0.0.12-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl (403.4 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.5+ i686

toml_rs-0.0.12-cp314-cp314-macosx_11_0_arm64.whl (338.6 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

toml_rs-0.0.12-cp314-cp314-macosx_10_12_x86_64.whl (354.2 kB view details)

Uploaded CPython 3.14macOS 10.12+ x86-64

toml_rs-0.0.12-cp313-cp313t-win_amd64.whl (276.6 kB view details)

Uploaded CPython 3.13tWindows x86-64

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

Uploaded CPython 3.13tWindows x86

toml_rs-0.0.12-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.12-cp313-cp313t-musllinux_1_2_i686.whl (577.7 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ i686

toml_rs-0.0.12-cp313-cp313t-musllinux_1_2_armv7l.whl (635.0 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARMv7l

toml_rs-0.0.12-cp313-cp313t-musllinux_1_2_aarch64.whl (538.0 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARM64

toml_rs-0.0.12-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (371.4 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ x86-64

toml_rs-0.0.12-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl (383.5 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ s390x

toml_rs-0.0.12-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.12-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (331.8 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARMv7l

toml_rs-0.0.12-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.12-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.12-cp313-cp313t-macosx_11_0_arm64.whl (337.3 kB view details)

Uploaded CPython 3.13tmacOS 11.0+ ARM64

toml_rs-0.0.12-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.12-cp313-cp313-win_amd64.whl (277.6 kB view details)

Uploaded CPython 3.13Windows x86-64

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

Uploaded CPython 3.13Windows x86

toml_rs-0.0.12-cp313-cp313-musllinux_1_2_x86_64.whl (547.2 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

toml_rs-0.0.12-cp313-cp313-musllinux_1_2_i686.whl (579.5 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ i686

toml_rs-0.0.12-cp313-cp313-musllinux_1_2_armv7l.whl (636.9 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARMv7l

toml_rs-0.0.12-cp313-cp313-musllinux_1_2_aarch64.whl (540.0 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

toml_rs-0.0.12-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (373.3 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

toml_rs-0.0.12-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl (386.2 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ s390x

toml_rs-0.0.12-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (369.5 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ppc64le

toml_rs-0.0.12-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (333.9 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARMv7l

toml_rs-0.0.12-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (366.1 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

toml_rs-0.0.12-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl (403.9 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.5+ i686

toml_rs-0.0.12-cp313-cp313-macosx_11_0_arm64.whl (338.8 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

toml_rs-0.0.12-cp313-cp313-macosx_10_12_x86_64.whl (354.3 kB view details)

Uploaded CPython 3.13macOS 10.12+ x86-64

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

Uploaded CPython 3.12Windows x86-64

toml_rs-0.0.12-cp312-cp312-win32.whl (270.2 kB view details)

Uploaded CPython 3.12Windows x86

toml_rs-0.0.12-cp312-cp312-musllinux_1_2_x86_64.whl (547.6 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

toml_rs-0.0.12-cp312-cp312-musllinux_1_2_i686.whl (579.8 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ i686

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

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

toml_rs-0.0.12-cp312-cp312-musllinux_1_2_aarch64.whl (540.2 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

toml_rs-0.0.12-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (373.5 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

toml_rs-0.0.12-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.12-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (369.9 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ppc64le

toml_rs-0.0.12-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (334.2 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARMv7l

toml_rs-0.0.12-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (366.6 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

toml_rs-0.0.12-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl (404.2 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.5+ i686

toml_rs-0.0.12-cp312-cp312-macosx_11_0_arm64.whl (339.2 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

toml_rs-0.0.12-cp312-cp312-macosx_10_12_x86_64.whl (354.7 kB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

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

Uploaded CPython 3.11Windows x86-64

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

Uploaded CPython 3.11Windows x86

toml_rs-0.0.12-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.12-cp311-cp311-musllinux_1_2_i686.whl (579.5 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ i686

toml_rs-0.0.12-cp311-cp311-musllinux_1_2_armv7l.whl (637.4 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARMv7l

toml_rs-0.0.12-cp311-cp311-musllinux_1_2_aarch64.whl (540.1 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

toml_rs-0.0.12-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (372.9 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

toml_rs-0.0.12-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.12-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (369.6 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ppc64le

toml_rs-0.0.12-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (334.0 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARMv7l

toml_rs-0.0.12-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.12-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl (403.8 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.5+ i686

toml_rs-0.0.12-cp311-cp311-macosx_11_0_arm64.whl (339.5 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

toml_rs-0.0.12-cp311-cp311-macosx_10_12_x86_64.whl (356.2 kB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

toml_rs-0.0.12-cp310-cp310-win_amd64.whl (277.4 kB view details)

Uploaded CPython 3.10Windows x86-64

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

Uploaded CPython 3.10Windows x86

toml_rs-0.0.12-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.12-cp310-cp310-musllinux_1_2_i686.whl (579.3 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ i686

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

Uploaded CPython 3.10musllinux: musl 1.2+ ARMv7l

toml_rs-0.0.12-cp310-cp310-musllinux_1_2_aarch64.whl (540.0 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

toml_rs-0.0.12-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (372.8 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

toml_rs-0.0.12-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl (386.1 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ s390x

toml_rs-0.0.12-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.12-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (334.5 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARMv7l

toml_rs-0.0.12-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.12-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl (403.4 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.5+ i686

toml_rs-0.0.12-cp310-cp310-macosx_11_0_arm64.whl (339.5 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

toml_rs-0.0.12-cp310-cp310-macosx_10_12_x86_64.whl (356.6 kB view details)

Uploaded CPython 3.10macOS 10.12+ x86-64

File details

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

File metadata

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

File hashes

Hashes for toml_rs-0.0.12.tar.gz
Algorithm Hash digest
SHA256 60ded3839c2979db80a232e171977f84397514264215018ac584004293eea8a9
MD5 472d933b159bd8eafefc542c0b840b31
BLAKE2b-256 aadc6328927771ca0c6cea0b38907bd4d276c630a068ad13b9e34e4757eb4efa

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for toml_rs-0.0.12-pp311-pypy311_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 25c02753b4918fa3e44bb9c6ab8ad50516722c6195b15d82f2118c4cde3ddd42
MD5 175aa95e5f940ffa7877e62f52a52a19
BLAKE2b-256 aab6715a77dc8787334b43b68e543cc7986f3dfcbf0258eb6dfbd572b7cbda0e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for toml_rs-0.0.12-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 d3a75c2fa24aa2432646eb8f01a965ed9967696a020ffa6bd0b873f0375fb2d1
MD5 1cd01e2890c5d126dcc7a3d9a80b7410
BLAKE2b-256 03718b1fd174b18ee45cc4155c45ab41bbdad9a016e836ae1a0e1faaba0e62b0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for toml_rs-0.0.12-pp311-pypy311_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 17043e30340f9ed9c2f5093b70be7482a18a772d81d1bad930dc2e2d3f5a459b
MD5 ae2bacbfc12938038ddf075c511a4850
BLAKE2b-256 81c5eb8c4777a07b21eaae6fda9aa33c0ae14488a2911b00e8710b98c03e3f2c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for toml_rs-0.0.12-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 df072c3ce7726bde6437ac558b7d509fed514f9fbd946c00aa9860c10915c714
MD5 190e65d504f82393921ddbb70d753eb8
BLAKE2b-256 52b17552a542699de101066defef71541ad4e4b7420e9c51a4fac8620247d877

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for toml_rs-0.0.12-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 624f25c1d11d55358e9c4a37bf3650848c007783f1e15f1395039448d10291f2
MD5 859eff4f7c90556a4f511c86c7847736
BLAKE2b-256 93350e6ba2c22815ee16861f1b52e4662432439e7afad09f7757f6a38864b736

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for toml_rs-0.0.12-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 0b054afb7e5b118d11b0a334184ea74aeb0656bbc2b5b4804fb435ebbd7c518c
MD5 8a77c9bc04d23068526b8d8dfd77f8dc
BLAKE2b-256 548134ef2356154cf336bddceda6a8dc5a70a3fdbce171cf9c6395a1071d7601

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for toml_rs-0.0.12-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 a2bd937e5cd635ca52706f6ed25bf1518f17ac4b4f3513ca1203cb727e0bc250
MD5 6a47f0ce2e83a81958d7a9d58954ec3a
BLAKE2b-256 1b8d976f4671a05e2c9351532280acbeff4f4e2d2acaa277530c65bfdea5c259

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for toml_rs-0.0.12-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 3d037d0116884975967e96953d4bb465254557564e07ee4fe947f75881ad26f0
MD5 ae2db8ea39fa92a4259c36da68cc733b
BLAKE2b-256 fb57bdf9062a0ac22c6d49ca67f0e4399fd63564de02d18268ea8b7e0d8f30c9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for toml_rs-0.0.12-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 fc73febe80a4f5ea7ce8761a6cccbba6d4b146127b790a3071a7effa9fd0d474
MD5 c014c37b9084b8012f1bee4db89cb87c
BLAKE2b-256 b8ffb76420f1a792974caac9b93bc4c5e051be35e45dd7b09c1671d959fd01a6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for toml_rs-0.0.12-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 8e07d90979fe89f879d73fdb1db641a2460271e03bbaed44129a122868b09b9c
MD5 0d30e5cc0fae96ee3329a4a239ed2967
BLAKE2b-256 f609a089903a733e3a8ff5a1e47a263096ecb5e6ea046f0f69c82d33cd257557

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for toml_rs-0.0.12-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 80c2a69c49c4a0a0382622ea3f0a3dc33806cad3f0ee956a726191c7bc924392
MD5 263f0b55739cecaf8c3f2e1ffe30225d
BLAKE2b-256 89a62b2ef328cb1bf368e8291b46631a3467ace81c45b8f1c20ae251e9f67b1b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for toml_rs-0.0.12-pp311-pypy311_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 0619e332074f1b32eb9911d97ac1451dc51207b1654dd7b4b401fa85cb2c2952
MD5 9e0e8381b58e5a88484ea3512a306ab7
BLAKE2b-256 0ae104efbbf6bb9a6d722017a2398d97e0ece671e082e3d2d7e6a15425f10574

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for toml_rs-0.0.12-pp311-pypy311_pp73-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 365970f9ad152b61d6c23bf04fa4665adaa95c059b4f7910ea908e27590ed255
MD5 64fe8cf577f4af85137bf0fcb73602b1
BLAKE2b-256 73076989f9258699a6d56bbb4a6fcc54f8cc2eecd9da11dc5b4160da04946929

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for toml_rs-0.0.12-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 1e076172e0a604c549a46c1c55f29c6da5d68a97f97e6608d646e92fcdb02b1b
MD5 2e83d405c1c07c617d0f293729cee135
BLAKE2b-256 9d137bebabc61224c6df0afd103085954ed81f06de157dc23f2b1a5444438e2a

See more details on using hashes here.

File details

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

File metadata

  • Download URL: toml_rs-0.0.12-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.12-cp314-cp314t-win32.whl
Algorithm Hash digest
SHA256 e2b6608079eb0d5ee0b73a8663bf247cbd55a1f246a8b3be23a9ce8563195354
MD5 5e50df98a4e9eee5b231adec16d1b340
BLAKE2b-256 d7698ad4665a2d3d9af980cd364a75a72761e39606e2ec62ec4d9ca9a802da98

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for toml_rs-0.0.12-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 7c653e4cabbf436e59fb2cb7a260fefffe2eeeb4f44223ae8a11d173f0f8bb71
MD5 abf4d3acba7d437a2dc4642dcc8f9aeb
BLAKE2b-256 34afaad93d59ad22ea3719a73c8dbc5da0aa467e80f853e53469fcc2af975557

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for toml_rs-0.0.12-cp314-cp314t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 afab2fb8df5e6c19da0322562f594eab5cf27c85cc38e56fd5753e9a4394a5a3
MD5 fb432ad3966bbed3afe5dea8466c7a4e
BLAKE2b-256 8414f5ef5f1921896bc4b326ea2880492663628ddc26704342340af791c721c9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for toml_rs-0.0.12-cp314-cp314t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 2633c966133e3ac8f3a8cd7bfa2245ef11d0065f353cec22aa0f201a1ba99456
MD5 ebe40e2bd907f00aa956463e2587d757
BLAKE2b-256 99cbe6f8ae211170a0b76fe21280642d7a9971cfcfe95053e9f5d5425bf836f0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for toml_rs-0.0.12-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 0b25f22597cd4e91cec398f12d1e28e3fce406100829f41c026091fbd68595af
MD5 ccb2bfb1f5ed3bdafffa5c65c3f12e82
BLAKE2b-256 7b6ac6bfe0176d09d9d8ff88b492ae5b88daa033a3ac8b274368a0a81018cfcb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for toml_rs-0.0.12-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 938861beff27fae1d972a5c5041c489d9d6cbc97c51ef946071f61e4efb98d8e
MD5 dd3072dfb36cdfa063f32ebf9de82031
BLAKE2b-256 1d0bd4fe0f7d125f1d182245d11b232fab4a6510c03b62700632721b67154e5e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for toml_rs-0.0.12-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 5ce13e52be2a7c9fe8e5f2be55ec01d7e1448a0859e8774f1d663d3ac03b8f93
MD5 0194c5a410cf60d61700593026fda5a9
BLAKE2b-256 10a959185bda9414ca3904c6b8bf5537c8c4b24a2709518b78f226ae2ffa57c0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for toml_rs-0.0.12-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 fa52525b0e2a66f7060ffea36c5147305c0ccb15ccc95a48198c791106c1ef33
MD5 6dd7c86abe476aeffe872d3ed86cb3f7
BLAKE2b-256 d7fffcf4b640d27bb404e83b8934b730f81e53410154941fb3774e96db5f65dc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for toml_rs-0.0.12-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 d6317a8f8d2da0b4c3fde26da3ec972a955678bc6f2fcc02dab8f037f05be34f
MD5 bff5b7f7fa96328904064e550befd512
BLAKE2b-256 0165fb30eaabeac5c749488d76843e5d0267a572517cc2f83e8b859d51ef15e0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for toml_rs-0.0.12-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 de2a5c51a8070a9435e40dc4a77ae6428c741cda80431dff75582f19bed36e5c
MD5 9513d829ccab4196e2169fe34b87208c
BLAKE2b-256 8d3411e8603bbcb75d4e3d871ea0d3c5fae3f430b475a0535d9c42e9d2ad90a1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for toml_rs-0.0.12-cp314-cp314t-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 8fd278615cf7a98636f7515bc1ddd51c0ceda25e49184679df4f24847008698c
MD5 567bddc271783fd345a15c99718f4750
BLAKE2b-256 c67fb25f75a9ac1552327e3205e128e064270b170acbdfe29ec26deb8f455a61

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for toml_rs-0.0.12-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 af3d60fe91baef5f013503ad0d17fedeb25d2a7d1fa79196ab9f62e3436a63e3
MD5 ef5243ea42c6bac87fbe761d4be139c9
BLAKE2b-256 97a168bb0e0f50a8ec60bb72dcee65848073fa7e0cbf014922c6fb912cfc7609

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for toml_rs-0.0.12-cp314-cp314t-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 6fcf95e900bb5982abf76146414b46f27dfbb14270c7828dd6062bf43934fa39
MD5 5610d9bf44b11d582ddd260d1ac66332
BLAKE2b-256 5dfe9c2eef5234a9f85e0453d18b805ed1f3d35059e9a0b1af1698cdc163dd9c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for toml_rs-0.0.12-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 52fbf1bd25d7544134301d02efcdb4ca41a68b907b410563897ac1b440177154
MD5 f040f10d41608f853f73551a29d7a7cb
BLAKE2b-256 9ea020186aeb0ba75efc1d84ef7c67fe85756af39f1852d6bca88d6df4fac607

See more details on using hashes here.

File details

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

File metadata

  • Download URL: toml_rs-0.0.12-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.12-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 eef24035d6094ec4d7587504497329f9253261b3529a94385c5a181b174491b4
MD5 4eec08672eee54a06c6465846a2a664c
BLAKE2b-256 d4ba26a25f97a2cb3a92f8334e58bc525a1a09627560a15bfea47608319cec90

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for toml_rs-0.0.12-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 daf0d84541e553abb49da351de647c0af8e2bff8e0d906c741b34ab50b0eb06e
MD5 633325410302bb02017e21a418af8338
BLAKE2b-256 61170b31dc602f929f0fc20bd7f73ec99b38fa91cc46f7f26e6e8af726aa1ec4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for toml_rs-0.0.12-cp314-cp314-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 e0e4bed59d312889f9ab4cd6a8980c97929ed2b54d31cc4069b5d7c241daec5f
MD5 159582a51a16056bfe700b9815dc1634
BLAKE2b-256 4016dc5f7e5087562dd2d1a57227eeb01f835ce60a4fe8d2a8b0ff1c8c6ee607

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for toml_rs-0.0.12-cp314-cp314-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 de57c3a242931d784f50b4896b12ea5e4da2215b8a21abc71fb13b15e9c38ece
MD5 bf9d2c2820a87e918e4fcc43f22cc031
BLAKE2b-256 061ee8f844dd596408c8dce50eb8e1c432f835a51a5cde68823e247e71090133

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for toml_rs-0.0.12-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 4774e046a50f7de0ab2769d65e0f1ca3b23237f5ecf367a0f29850637722689a
MD5 c4a0ed161bef65ee2e119e52a8a2b346
BLAKE2b-256 121fb72b5da15f6e36d466087b66276177956c8d64189c1a9d468b9c92e8b822

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for toml_rs-0.0.12-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 c560a3448e618bd464c9ce2b51ee3802e9e6989497aa269aaa7b3f877d7705dc
MD5 776a9a4fc47eb6383fa1b985e68d5841
BLAKE2b-256 43f7ecfde67759de70a3bd4ae700aa5f27e9d4fc90a651e888e97471fb8ed115

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for toml_rs-0.0.12-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 fcca998d0aff019272faa61ac7379b841e98e66378193c658e9503bd8f0d5e02
MD5 83322300743642a101dca289b5a398f9
BLAKE2b-256 2dab7f918defdc576039f3368bef96bfe2c0cefd0f7d7046d734662e028eda59

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for toml_rs-0.0.12-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 66075eb9c3f0898de3791ac0d7c91dbab6183c1b44b1f48a4fe63097faa922f3
MD5 d15da8e95380514044261badf3ff5281
BLAKE2b-256 d269d7ba6773ab14fd530fa3419a6129a63982c37f9ce057e41dcc56bbd2fb42

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for toml_rs-0.0.12-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 3ef5cbba70b70cb02dda09485691f95473ec71f4ec075de0b86c43316524a105
MD5 21e6c0478c27d153b356d84e4d9e832c
BLAKE2b-256 23557dcafc55595e4266a91ac6029f0d0c3ca52dc413f381bd08465e55677d55

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for toml_rs-0.0.12-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 3cc374d81fbaec3219a7bfcbc91a4df58adb2d592b6377b549a1717bcbc0cd3c
MD5 683731231f214c124972cbad8e99c463
BLAKE2b-256 b512dce866a88e4905f2f3ade56bffae8d89fa59d426810895a096e83bcf8507

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for toml_rs-0.0.12-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 68eb1dccc79eb00d8de2fc0c5438d367fce7b6ca594d7374f44f18c5ab766211
MD5 24db64febfcf6ba08eda67f58ce36df9
BLAKE2b-256 c5f7c4be09bea61c8083f6f49e71928dc1a2c82c037bbc46da6abab3ff4eb236

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for toml_rs-0.0.12-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b8220b08fd56800c80bb3a0ed3033b4dd9844eda3a09dbcf125cf0ce982c29e2
MD5 69668ed36531e88262ae2f47b3d4edea
BLAKE2b-256 e3c0c2a4f184a8592545c7225ea99b069ba46cd994021101f29f8a9b0a385eaa

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for toml_rs-0.0.12-cp314-cp314-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 b947ff0e64404a2a2b49ff244b0ebdeb263789cbd2cd4b44fa446f4c7e59b554
MD5 3c539857c13ce10ca5a9d3d31d604847
BLAKE2b-256 d2db02d9c288061288c91928180de7881ec92ca6090a675e73ca8e6677c84fcc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for toml_rs-0.0.12-cp313-cp313t-win_amd64.whl
Algorithm Hash digest
SHA256 22d23be5d06df13682c5da7d58f0827c36f10a86401fa37a6a18b441696ce38e
MD5 f933ad14a3dcab6f6101cbc08a04250a
BLAKE2b-256 ea07ae0769f47e38684282be3181fce71e31cc92555c826dbb188d16dc68d728

See more details on using hashes here.

File details

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

File metadata

  • Download URL: toml_rs-0.0.12-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.12-cp313-cp313t-win32.whl
Algorithm Hash digest
SHA256 bc072aaef1a8b0b3ac8edfdec31600c822d512e0d1cc8a66a5dfbb7def4a49cf
MD5 447086e4fd2e4719bb14857a873c78f1
BLAKE2b-256 25c9a2c295646f55d41b28edc946cc1ee471b97d3179a2f601493b87b0e3608b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for toml_rs-0.0.12-cp313-cp313t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 3930d8c3d2fba4308847ef37549144d93c1b634454de0f5dc5d703446f87c4d2
MD5 9891c0e7f8f3a6b356a3d8fdb8f9fa12
BLAKE2b-256 3fc2104192bc2c194ac6e83ff90cbf832b50242da8be1bf93593e936995ad785

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for toml_rs-0.0.12-cp313-cp313t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 995cb2372d5019231f5316a4735e5aca685912313baa131579797d393a41087d
MD5 3a316ece784a398653937965a0b7bda3
BLAKE2b-256 5ce0e6a1078e75ea8a62a45991ec84670b201a9d6cc77846b96a191e0d439e44

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for toml_rs-0.0.12-cp313-cp313t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 68345ccabca459599ff6081217b4500579046761ead41c6f9a9c7d4b64db27f6
MD5 66a0e7a03e3c692280f6eddd63d2e268
BLAKE2b-256 a8cc9b0b9c7216defd0b36e59aa875d320d2e8e0fbc289f2229a68e2a3ebfa05

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for toml_rs-0.0.12-cp313-cp313t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 a6285595c5aa470f557a4ec131b1b579a117af207ea2948a0fcddc9822323249
MD5 70fcd6c219b808e8557d5040e8741025
BLAKE2b-256 482b0ba40434d0f154fe4dad1de8c54d63a7845796f5ea8f4e3c851ce05a9041

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for toml_rs-0.0.12-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 6c17e6b14d45388158006c9bd838983077012fe36dfb56436685d4100a7a0e6e
MD5 670a5430e479e844d894dea3e2bc5cc4
BLAKE2b-256 eaaa32c742ac947a1f2d8bbea07f3aa79b745ddbe1cf031fd772568e6b655351

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for toml_rs-0.0.12-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 101493225234b2f644fcb0dfc700bfd3488a238c47ff1bc29e4e45842b45f193
MD5 cd03c2eb8b2602f020487279d838bfbe
BLAKE2b-256 3e0335d1ea96a547bfce82872265e7d3c0c8d6324c81e2384659eb47fdc3ac11

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for toml_rs-0.0.12-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 4fef6b430bc6d8b3d8cfd4b3a0d97f06f34728b4f7f20108115090efdb70b134
MD5 ca77631f290caddc99b9391f19caa7e1
BLAKE2b-256 c00804eb86593de88bac923bfc6b22086d45b4aea8547b62e0dbbcac9e4de5d9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for toml_rs-0.0.12-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 d13d27129e3cf2bb827e953913ef8ea931c2b190a8c3c4481f9aa37e4194528b
MD5 2e230645983d44cea3b77917eb375182
BLAKE2b-256 3e8f51c5cd46e0810dc7871aebc11965bf7361578848060d741295f1c35643f2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for toml_rs-0.0.12-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 becd98b8319be6bc78300ca84f7402d7cf382b0c5e23e20fbd09a1243baf2ffb
MD5 278bd9eae9203c1486b64faecdf2d2ad
BLAKE2b-256 59bd9d3165b647dd5b286eaeb6e96ae4b69c667947fb9515169f14ea12652c63

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for toml_rs-0.0.12-cp313-cp313t-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 2a35f94433bf64d0c4ad494a37f1395471874178d6db73d858108572659ab4b4
MD5 a909169152408ad5813426710722c54b
BLAKE2b-256 f9acbd838944f7b5f84ad02bf8d482b43c23c5a8e569d35b1dc6adad5f1701df

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for toml_rs-0.0.12-cp313-cp313t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c0ecd6c30bcffe0b74db748ed3c7a103ea1cf140c68ef8ea91eb54245962b132
MD5 d7ecfb6e1b61f0d34e3097d346c3c01d
BLAKE2b-256 7d307586a0e52ddfe21086b8f07cfcbec92ad76d6405ef90caf38a2b80fa17ac

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for toml_rs-0.0.12-cp313-cp313t-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 6450f43706df29770d969dfcf1cbb8a64c3edea2e410435b7148b425faeed3e5
MD5 e6100163b180087842d6c3626e2e88c9
BLAKE2b-256 417f45c2149c767d77baafdf74d69eed90c7d4c52a4db5a1330129d8b0a43b33

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for toml_rs-0.0.12-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 0161be7eb79f02ba18253cc262ae9c3db3caaaebe3ccbd8fd8b95e72ac6be788
MD5 f09b047bfa487c490deda5239013fc80
BLAKE2b-256 9928c7ad88da4a79c8c1ed36b819c7fcb97e6df8d27bd0f960d7e12a8fb3050f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: toml_rs-0.0.12-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.12-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 76c17c64e3d5603dd1bfdfd5c75651f5f9ac0c2ee8e2a36b97117bf997d6a604
MD5 57b3326c943660e192e5187b87f864c3
BLAKE2b-256 4c75f10dcdcd8fe4831834f53af441bb05a7d27d3738f34055c575f5cc71ce9c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for toml_rs-0.0.12-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 a3764f2097f4e8530b940b7f82d5a8bf2ffd2eae27adb472c5422318264c29ea
MD5 244e438d48927c062a4d77603700a351
BLAKE2b-256 f785e561469781ec8bb205df60824a7675b09adf806ab4d42bda08648cda4bda

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for toml_rs-0.0.12-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 2abd0605ded152194059954b1a4b516c9d406bf027a5cbbfa1e598c40471a13b
MD5 4272364531c1af837cd3e438ae58c8fb
BLAKE2b-256 56cb5834fbde53bde651371fed9cdb2623cdba9ca8cc913949d95d6b5881e994

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for toml_rs-0.0.12-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 669b6c796654be54732a51841e7c4f1441b4c49a88629ac9fe84e0aee83a06b6
MD5 b3e131e339b19309a20bedc5a2a2f8b2
BLAKE2b-256 aac62af0618ac3e3e0f3f26130002f52b8bd4b03fdea3f00e9b679471cab9ce6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for toml_rs-0.0.12-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 b38e0da43c1b1d3fc512c4d1f4858ce6444829594e309bb861db2f796488b29d
MD5 849094bfa2c47a1d80343ce0168599d8
BLAKE2b-256 e3fcb5da37428c6e75903e89ba8933dbf3e8d6b83dc20eb2450f023fe0bd6b60

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for toml_rs-0.0.12-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 06d9f6bf0867f4909d31892e2dd9f85773250d6fda14b6eea1d9b399831e7cbb
MD5 9bb18940e746a41ddd373824a51ae211
BLAKE2b-256 13029e05d17bd2dd44678bf34e6b9427d04903ebb20ca963af765bc94ccea4ad

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for toml_rs-0.0.12-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 8315f1d0b6830e3eb185342ca81e9c37658dac64fb3ab81df07bd997959eea83
MD5 3afa1d694eae4761b2691bbc2492bd36
BLAKE2b-256 c4ac409f0d8570684e2b1e67b21b9d0aa45578e16bb445cbdc6deda32fce9a42

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for toml_rs-0.0.12-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 31170ce5622edaba0ae4ac076805cbd6fb9348e948b156fb0fcbbbbf007bb6f0
MD5 f33be6ae687f2ea63d6e242b5c26dfe0
BLAKE2b-256 a0835ab4555d63d2ac2ce3d12710b276240d0f4dba8e38ea07833940a21d1833

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for toml_rs-0.0.12-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 9baec0cf83d5130a20cbaabe600caa2ab5a75840e0413c6a29564dc2cd2b73f9
MD5 3ca1ad3399664d8bc65799772d6459dc
BLAKE2b-256 0f74c10a63216a37bd5eb36b085a80bf555896bf6c58f8c5be23322cfc164314

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for toml_rs-0.0.12-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 0c4efa3352097e18b6ab5138f8a7a085e486e41cd893cbffaf5f431e2eea9513
MD5 6bb1e67e9be9fe29201b87f8e813af26
BLAKE2b-256 17107551521a5bb0c95eb64981bf76965dac3fed3d6408886dbf38cd3787d68c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for toml_rs-0.0.12-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 51cbacba278d4cbad07565f984037dcbdb7c240d20b72ef46f5215fd35c8209a
MD5 57536ccc9c9bcf394d4d4c578c158f1b
BLAKE2b-256 b2f49e73870f1a97356c501fc5b41971fbe7a6291c95a90fc06dc737604f3242

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for toml_rs-0.0.12-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a01103ad374cc82a14255947f34e45e0bf6e84d754f1c5a2d5575b65fb9ff9ee
MD5 2cbad59837d9cd977048cdd81ea2effd
BLAKE2b-256 0b54c81989aeddb77aa7579e237c3f9c46e53ecf8199ee9a35eb5af353ad732c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for toml_rs-0.0.12-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 ec14af880765b2f8a9cb97d59adfd7c9b1eb47a50f9e3ff900341d2007be809f
MD5 95ef9a96863b10e3eee94d411f51e721
BLAKE2b-256 ab488a98a2b4c00d4f591495687a05f4631b4a7b6955f82c427e8d9bcd1d6a25

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for toml_rs-0.0.12-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 861ed71ad3b16f30601e1764bbd38627e80fdaffce10ff3b85a10a5eeaf8c622
MD5 6e72d0f426ba27dafeb8855275474d68
BLAKE2b-256 860274cdefa29bdf5825ba153a16f590ec38a458415e9c62911bf7ece2274f9e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: toml_rs-0.0.12-cp312-cp312-win32.whl
  • Upload date:
  • Size: 270.2 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.12-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 7488c4a2e20c80ad5703d2c310e7c30a0707b637d8d53cda8af6f094a5e6d42e
MD5 16ec88b6b158ceef0996bbe00e8a200b
BLAKE2b-256 8a0902e4dad9ffd7c4cf0ec68f9ad2b3d3bbc13552e3d352cae1c9ef7155ca22

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for toml_rs-0.0.12-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 4a8d2eb6635eabd9c68f28fc3155e35fe160eaf4758384be7db7a52b2d4d3bb8
MD5 a31c6f4d8c6799507de114ecaafa6615
BLAKE2b-256 7a71011b3f7920307a26b55391a2265505e9ce6ffefec35d4afe6f31dfdc337f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for toml_rs-0.0.12-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 a1e82d2312e8acf8df3ad4f41a43c12ab3794343c70c0a78aa14925bdd72918e
MD5 7d93ac42fa455e8b801ded5524584e89
BLAKE2b-256 92b8c6742f67e823aedb1455ee737bc76877cdfde262bc6ef1246f31314d4c54

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for toml_rs-0.0.12-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 033711440e4a8aeb0cfb6ce67a004fd5ce88489950347341bb7f0ba87705adf5
MD5 5fd6f49df9f39a9b994fac1ae4dc995d
BLAKE2b-256 838626ea71f0e8cb51ffa519b30b9c8e1a0cf21e28de757a7e967b613617a724

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for toml_rs-0.0.12-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 6305cbeec8faadc3c69959169ea717f1d715448e3ead9270f649c6a1a8a01f97
MD5 769d93b009773725cb38aa18074a063f
BLAKE2b-256 8ce5f7b9bae22fda915eaca62fb835638c45fa64cb5b70907be97301bb21e5c6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for toml_rs-0.0.12-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 1be76196166374f8acfbac964f23042828123ace001ea02fdd1d8ee4f048b271
MD5 8fef718ecde6b97a3110f00dedc52df8
BLAKE2b-256 b27f35dcb9585f8002d4478a01ffc656d2887e89cf6c506e0c677d0632ff0900

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for toml_rs-0.0.12-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 6340b90ca1a04e34e7455ad485f66257ce34732b1e45a9762fad3792157eed1b
MD5 b101ff35324f5262e4d4c6e088ffada4
BLAKE2b-256 ea3b311fb9f0d8b3137cd0bf5f425b14a13d02be847b535359020645f7b1c0b1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for toml_rs-0.0.12-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 360c1d57c77695d08584086b87028b2458ce954228e88aba7e42e82968ae7a30
MD5 6128983c7b901910e796acbb18dd7505
BLAKE2b-256 5992bb3781f363226927c9bc9e4a0443239eb0ae53d9f104a667a6c10d512f9e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for toml_rs-0.0.12-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 ef9d8f6c89539e10ce3236fba441fd03982a4aed60f0b12ada6b7c9a9c124cd7
MD5 21923196e56efa388897bea85c0c6c50
BLAKE2b-256 b6016024bf3dd84c4d7ce25929912db02b3a74714eb79fc4af4af05d13e0e6a2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for toml_rs-0.0.12-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 487df31024edc3a143256b522f29ceb5e7c357b0735edbe0c0ad60f0ab588ed4
MD5 39daadf93b8c506af3a1a3cd98d4499e
BLAKE2b-256 371178d53110044c7c37c3cf0f7cfcb87f3efa3f658e9253fe59867ee14f4f95

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for toml_rs-0.0.12-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 446ba5328c0a7887efc2767d790d3d92f185e9c60f45e81198bf972da5dffbea
MD5 3f1271a8df9cf30ad99542d90ea76db9
BLAKE2b-256 7546a3db0de8ac1d099df83121f5db68d263bcc817ae8c6d647b4d242e2216a4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for toml_rs-0.0.12-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 6b5c05a3fc6d445164c4fd66a819d61deee3185eb2d001d111cb7ed868368630
MD5 1772003f2f837906f033d6d6b1c96c82
BLAKE2b-256 0ec8817da305b4d097f4f982adcbeeeee3f75a05d4caed125101b3fcb13a8b59

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for toml_rs-0.0.12-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 66d2862e1d5ceeea7aa0524eec8ec3892451f90b214e505fe54dbf04ce920bfc
MD5 779105b2853673b25fa9c771934f1667
BLAKE2b-256 1e2f4de9439297b04e9cd35364d10e8edfa893dc6790fff46dcbc0c18e459dff

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for toml_rs-0.0.12-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 83c4e71336f8200dcfc03d876e932ee7280331e8422320a65762c33897903b36
MD5 8ffa78a3ce20ca5fc04e278325511c49
BLAKE2b-256 2f9a3780889876e116621a6e5e0fb635fd190d813aa3dbada14731e85045a9a8

See more details on using hashes here.

File details

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

File metadata

  • Download URL: toml_rs-0.0.12-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.12-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 ac5ffb33fecd7e724ead0849b6dc50a816c7bb32485c05140843f0a4aa2d835a
MD5 0bfcb6e84bf1cc22f6b194d9d1be88d7
BLAKE2b-256 41fbeef194ad890881134a5560cb656fb6fb57d3f2eaa9469da41400ffb0290a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for toml_rs-0.0.12-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 faa3b793a881059378db0e84fd495aa4a5e093e9e5d83e68fd1a16d59356b34d
MD5 f52e1911b6458b107e39a31a02eef5a9
BLAKE2b-256 ea4545a41e90a51f97db05e3726692005cd567d4460414d0b3dbc7953bc953b7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for toml_rs-0.0.12-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 5daa1b3b08166f050a09849dd5f30ae4e00edd124c9a6ef9bca07265a4404361
MD5 694770ebaadadab8dc9e49576a694bf6
BLAKE2b-256 7dc76b3803c0cab8cceeb1009ed372157bd267a9692ebd7421b4a6dedaf89edb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for toml_rs-0.0.12-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 c6e8394c6d6b1e3c42f8b8d9e51ee58da287330a63cc935edaed5a43a5cf0c8f
MD5 8bdef9a5b8e87207b0ee33adf9b11e50
BLAKE2b-256 862cac1a9677cbf61038d678967edfd8180c79740fef0dc2432d6c3ae40aabfa

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for toml_rs-0.0.12-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 444f92faecce3d2c305e566faf068e66e34e1be1c0c5675d54e6296bed8bb46c
MD5 22a3d32cea0e5549b8466b3eec2cc730
BLAKE2b-256 602ad923d6d3bca6a0198f73b34e26ada3e8773dea50de6c58862c80b70480dd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for toml_rs-0.0.12-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 e6d1b7b183ac75d9829d8a9b626742c4b8b3e901f117ac6eb45091a6e52834f9
MD5 30d9a84c6e9d6eeb92eb391ee68d939a
BLAKE2b-256 c545812bbf0e138d040b625eae517515afcd50d3b18077d0e55dcf2b99cf152b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for toml_rs-0.0.12-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 07b42f2c5de4b5fe78f3213c542a7237ca8bb299fcd4ca67f476a390c378db97
MD5 fe1042a84e2581528394336808f60f3d
BLAKE2b-256 db581aa9d48defa5d5b932340ff3e40b64927d1340eaad29961c3ba11b8d02db

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for toml_rs-0.0.12-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 40e76efd34126b770d771ddda1b47222d3194245a617f8f79d3972d001a38676
MD5 f2b83fb6daf8673b4f92bf063a0668f5
BLAKE2b-256 8e8bf4811909dc243490bdc8f30db95b1e95e9a993460d8959cbdb1924c400a7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for toml_rs-0.0.12-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 8be06a3b4b1d34971594c34cf64d3461b43ad6be367c07ae4d96d32545d81c88
MD5 79f8b0de68b1fa832f3392ec8222cc9b
BLAKE2b-256 26f0c01f6934fdddded632276d43c8b6711923085d255bbfbe69c7591487a4b4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for toml_rs-0.0.12-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 9962e374f4d0587f1a8f2d952167ecb89a9caa270e926bf759ab33d2c50a7e0c
MD5 5b2ab38c68dff0b69051eab36ae47b1c
BLAKE2b-256 9c51ff8fbc0bd7e5834f4649e4d78d380409b86e69d569fc291470020dc87902

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for toml_rs-0.0.12-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 61424184bf623fe2f02e585aaedab0344a92545804b223ad296485c01a2ea246
MD5 00aef59bcf8172edd394d57520e619ec
BLAKE2b-256 05e24d69baa6253abf1882a0fe0542fb033d7306acb13e66e2ce00262349e114

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for toml_rs-0.0.12-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d9e7c1836252b0fd382f0dbc5f2e75145359d34637ba36f3ac8aad699890c7f8
MD5 36de28c3d5abd1a6f40b2921400b7cb1
BLAKE2b-256 16d3961434353684dabae766165714c1dde65fe7d5f02ed7f3f2e66767043db1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for toml_rs-0.0.12-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 7245cc04e9e7455be28058a11a1139c2239feb5c22b84a84dd8cae2fd7eed48b
MD5 c421cc0268e377121cb11987f8388edc
BLAKE2b-256 22370781470367badf0fce38ce26ff46c05716099ee458e0c438222a5ee07449

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for toml_rs-0.0.12-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 5a725cec73727db01202e83f51f5fba915908463a727c0783333c1f6ea1e5366
MD5 c0fb51b9852f2b660a049832a5930f96
BLAKE2b-256 358fd60d76a7c8933d0d3af39f226cdacee096a5cc854d3b2ea77a5e6d57e934

See more details on using hashes here.

File details

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

File metadata

  • Download URL: toml_rs-0.0.12-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.12-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 ba9ed066b6eb1193f5d889974da50bb50b7be4d6f2c848e5dca50a39d6dfa1ac
MD5 f8788a5a9b6fe6e6277379e3b2948970
BLAKE2b-256 3769b072b29d0c13380a7ad2e76f9a677f6f3917bea959e9dec7e3c89d052f4d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for toml_rs-0.0.12-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 0f22c767ba8cc458d786095c3838bc955411e990fc34c696507432e2bb5587fc
MD5 051544d3d02e78b891f0d30eee31fc77
BLAKE2b-256 511d960a641303a5e5f287b023c2d6be3868483364179ccc056b775e9e4b554c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for toml_rs-0.0.12-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 98ed39a5c54f2f655a38b422d8ad3499ed72b14be80ffd2af0531656e252cb7f
MD5 6c30bd1af81b752e9cd429c288fc54a4
BLAKE2b-256 0726dddcd919c0b7bf2fbcc20c8664492bf56d1818f4bbe59b01275fb7a7fb4f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for toml_rs-0.0.12-cp310-cp310-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 764260e9657aa48279e967063236d344f042d78b8bc63cb649a4f9f03b6cd693
MD5 f27a268f7a43886eca78fa7464f292ce
BLAKE2b-256 7635638fd74c57a9355764bb9ff973ee17b8e37f79ab6f4c3869fba5d617e868

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for toml_rs-0.0.12-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 7e35d447b361446122ba24a94aa258be12e137da0422f9db0ffc3cf226eec0d7
MD5 37e1bfbdcc3a17ed22896123a98e276a
BLAKE2b-256 7a3667f09fff906f8696cc35d5b99fb17e072e2e58849d4e63067d83554b2e2a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for toml_rs-0.0.12-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 8798c4e87ab2e87ce05380ef5da47becab133df0e482102966ad427407b0238f
MD5 677d2172d846afea544af4dd9fb53382
BLAKE2b-256 4b2c7b370dcfa5a74ceae6eff59de93502f1df19d01fcad2df34ef6c53e32daa

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for toml_rs-0.0.12-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 9737003b7eb53956e679f605579bbc5ccd623a231b8070016f63e466a9b5c833
MD5 52493519bb4c550a83e7c5b09edfb840
BLAKE2b-256 2a03901cbc7c01bacf3a2fc40b39ee37536ff7d5fc6eb8ab0969bbdf04ec7dc1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for toml_rs-0.0.12-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 ba493045267dc30126572c566f0cb1343daa88e8e6af2066aa90416c32871390
MD5 c5e4fbf66078de3f2c9c52bf600e8bfa
BLAKE2b-256 ad5c1310db3cd7aee442eab0ef3c5bcee3e69d6bc3c3d6e83f1c49958bd874bc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for toml_rs-0.0.12-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 10fc63913a9d83da1df31272b58b59a12c41d083e5d488641dac11ef2166657e
MD5 49afea2d42578e1b3bf22881823cc6e0
BLAKE2b-256 960f735c2ff17429534c62307bbb23b3627d6694c3f79a28fcc4cb189c3f2ab5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for toml_rs-0.0.12-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 770ff4c152ba1ab700561a6f35957eda98bdf58402728a9681f8eeee4ef3c4c6
MD5 7cbf96974af5ded269490a5d1e036351
BLAKE2b-256 6ea43925128d6bbc81676f1a26030e80c254b31bdcd807a10e63053f551cd93c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for toml_rs-0.0.12-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 6238c976adfe27b36fa1b00cc7824739fc665e974d0b06ecf87962e884424df0
MD5 d52f0fcd433cd9ef1725750724495580
BLAKE2b-256 dfe61ed6353985f2eefeb50cb9dab54fe1d6c75e538ef089eef7c8e6d7cba4da

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for toml_rs-0.0.12-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 35d37398574572cb55e5a92dd45734539170ec4353562c0f264b6fe38db05359
MD5 4e17a68dfad9ac81841bba3410c11b9a
BLAKE2b-256 435f6eeb45f64fe3a362d4985a790a9b1188f1ebdad1f9d18de75cdbf08f0d69

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for toml_rs-0.0.12-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 3e828b8acb7740eb84e893260597f857da7d7bbdffc8a7cffbeb4c09432ef658
MD5 f47078990948f3beeb7c4b4a2d26b8df
BLAKE2b-256 1484e04040b42fbc17901d57eac1ed17d7f53e2a90a026a006c49cb566ee2702

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