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.11.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.11-pp311-pypy311_pp73-win_amd64.whl (278.9 kB view details)

Uploaded PyPyWindows x86-64

toml_rs-0.0.11-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.11-pp311-pypy311_pp73-musllinux_1_2_i686.whl (581.3 kB view details)

Uploaded PyPymusllinux: musl 1.2+ i686

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

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

toml_rs-0.0.11-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl (541.2 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARM64

toml_rs-0.0.11-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.11-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.11-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (371.0 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

toml_rs-0.0.11-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (335.5 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

toml_rs-0.0.11-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (367.6 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

toml_rs-0.0.11-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl (405.3 kB view details)

Uploaded PyPymanylinux: glibc 2.5+ i686

toml_rs-0.0.11-pp311-pypy311_pp73-macosx_11_0_arm64.whl (340.8 kB view details)

Uploaded PyPymacOS 11.0+ ARM64

toml_rs-0.0.11-pp311-pypy311_pp73-macosx_10_12_x86_64.whl (357.7 kB view details)

Uploaded PyPymacOS 10.12+ x86-64

toml_rs-0.0.11-cp314-cp314t-win_amd64.whl (276.1 kB view details)

Uploaded CPython 3.14tWindows x86-64

toml_rs-0.0.11-cp314-cp314t-win32.whl (268.4 kB view details)

Uploaded CPython 3.14tWindows x86

toml_rs-0.0.11-cp314-cp314t-musllinux_1_2_x86_64.whl (545.0 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.14tmusllinux: musl 1.2+ i686

toml_rs-0.0.11-cp314-cp314t-musllinux_1_2_armv7l.whl (635.2 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

toml_rs-0.0.11-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (371.4 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ x86-64

toml_rs-0.0.11-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.11-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (367.2 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ppc64le

toml_rs-0.0.11-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (332.0 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARMv7l

toml_rs-0.0.11-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.11-cp314-cp314t-manylinux_2_5_i686.manylinux1_i686.whl (401.7 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.5+ i686

toml_rs-0.0.11-cp314-cp314t-macosx_11_0_arm64.whl (337.5 kB view details)

Uploaded CPython 3.14tmacOS 11.0+ ARM64

toml_rs-0.0.11-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.11-cp314-cp314-win_amd64.whl (277.5 kB view details)

Uploaded CPython 3.14Windows x86-64

toml_rs-0.0.11-cp314-cp314-win32.whl (269.8 kB view details)

Uploaded CPython 3.14Windows x86

toml_rs-0.0.11-cp314-cp314-musllinux_1_2_x86_64.whl (547.0 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

toml_rs-0.0.11-cp314-cp314-musllinux_1_2_i686.whl (579.1 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ i686

toml_rs-0.0.11-cp314-cp314-musllinux_1_2_armv7l.whl (636.6 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

toml_rs-0.0.11-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.11-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.11-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.11-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.11-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (366.0 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARM64

toml_rs-0.0.11-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.11-cp314-cp314-macosx_11_0_arm64.whl (338.7 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

toml_rs-0.0.11-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.11-cp313-cp313t-win_amd64.whl (276.4 kB view details)

Uploaded CPython 3.13tWindows x86-64

toml_rs-0.0.11-cp313-cp313t-win32.whl (268.3 kB view details)

Uploaded CPython 3.13tWindows x86

toml_rs-0.0.11-cp313-cp313t-musllinux_1_2_x86_64.whl (545.0 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ x86-64

toml_rs-0.0.11-cp313-cp313t-musllinux_1_2_i686.whl (577.7 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ i686

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

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARMv7l

toml_rs-0.0.11-cp313-cp313t-musllinux_1_2_aarch64.whl (537.9 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARM64

toml_rs-0.0.11-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.11-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.11-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (367.0 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ppc64le

toml_rs-0.0.11-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (331.6 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARMv7l

toml_rs-0.0.11-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.11-cp313-cp313t-manylinux_2_5_i686.manylinux1_i686.whl (401.6 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.5+ i686

toml_rs-0.0.11-cp313-cp313t-macosx_11_0_arm64.whl (337.3 kB view details)

Uploaded CPython 3.13tmacOS 11.0+ ARM64

toml_rs-0.0.11-cp313-cp313t-macosx_10_12_x86_64.whl (352.5 kB view details)

Uploaded CPython 3.13tmacOS 10.12+ x86-64

toml_rs-0.0.11-cp313-cp313-win_amd64.whl (277.6 kB view details)

Uploaded CPython 3.13Windows x86-64

toml_rs-0.0.11-cp313-cp313-win32.whl (269.8 kB view details)

Uploaded CPython 3.13Windows x86

toml_rs-0.0.11-cp313-cp313-musllinux_1_2_x86_64.whl (547.1 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

toml_rs-0.0.11-cp313-cp313-musllinux_1_2_i686.whl (579.2 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ i686

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

Uploaded CPython 3.13musllinux: musl 1.2+ ARMv7l

toml_rs-0.0.11-cp313-cp313-musllinux_1_2_aarch64.whl (540.1 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

toml_rs-0.0.11-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (373.2 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

toml_rs-0.0.11-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.11-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (369.6 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ppc64le

toml_rs-0.0.11-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (333.8 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARMv7l

toml_rs-0.0.11-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (366.2 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

toml_rs-0.0.11-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl (403.6 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.5+ i686

toml_rs-0.0.11-cp313-cp313-macosx_11_0_arm64.whl (339.0 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

toml_rs-0.0.11-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.11-cp312-cp312-win_amd64.whl (278.3 kB view details)

Uploaded CPython 3.12Windows x86-64

toml_rs-0.0.11-cp312-cp312-win32.whl (270.1 kB view details)

Uploaded CPython 3.12Windows x86

toml_rs-0.0.11-cp312-cp312-musllinux_1_2_x86_64.whl (547.5 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

toml_rs-0.0.11-cp312-cp312-musllinux_1_2_i686.whl (579.5 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ i686

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

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

toml_rs-0.0.11-cp312-cp312-musllinux_1_2_aarch64.whl (540.3 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

toml_rs-0.0.11-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.11-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.11-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.11-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.11-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (366.7 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

toml_rs-0.0.11-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl (403.8 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.5+ i686

toml_rs-0.0.11-cp312-cp312-macosx_11_0_arm64.whl (339.3 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

toml_rs-0.0.11-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.11-cp311-cp311-win_amd64.whl (277.3 kB view details)

Uploaded CPython 3.11Windows x86-64

toml_rs-0.0.11-cp311-cp311-win32.whl (270.3 kB view details)

Uploaded CPython 3.11Windows x86

toml_rs-0.0.11-cp311-cp311-musllinux_1_2_x86_64.whl (546.7 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

toml_rs-0.0.11-cp311-cp311-musllinux_1_2_i686.whl (579.2 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ i686

toml_rs-0.0.11-cp311-cp311-musllinux_1_2_armv7l.whl (637.2 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARMv7l

toml_rs-0.0.11-cp311-cp311-musllinux_1_2_aarch64.whl (539.9 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

toml_rs-0.0.11-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.11-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl (386.0 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ s390x

toml_rs-0.0.11-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (369.5 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ppc64le

toml_rs-0.0.11-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (333.8 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARMv7l

toml_rs-0.0.11-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.11-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl (403.4 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.5+ i686

toml_rs-0.0.11-cp311-cp311-macosx_11_0_arm64.whl (339.6 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

toml_rs-0.0.11-cp311-cp311-macosx_10_12_x86_64.whl (356.1 kB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

toml_rs-0.0.11-cp310-cp310-win_amd64.whl (277.2 kB view details)

Uploaded CPython 3.10Windows x86-64

toml_rs-0.0.11-cp310-cp310-win32.whl (270.6 kB view details)

Uploaded CPython 3.10Windows x86

toml_rs-0.0.11-cp310-cp310-musllinux_1_2_x86_64.whl (546.5 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

toml_rs-0.0.11-cp310-cp310-musllinux_1_2_i686.whl (579.0 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ i686

toml_rs-0.0.11-cp310-cp310-musllinux_1_2_armv7l.whl (637.7 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARMv7l

toml_rs-0.0.11-cp310-cp310-musllinux_1_2_aarch64.whl (540.1 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

toml_rs-0.0.11-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.11-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.11-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (369.5 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ppc64le

toml_rs-0.0.11-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (334.4 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARMv7l

toml_rs-0.0.11-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (366.5 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

toml_rs-0.0.11-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl (403.1 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.5+ i686

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

Uploaded CPython 3.10macOS 11.0+ ARM64

toml_rs-0.0.11-cp310-cp310-macosx_10_12_x86_64.whl (356.5 kB view details)

Uploaded CPython 3.10macOS 10.12+ x86-64

File details

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

File metadata

  • Download URL: toml_rs-0.0.11.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.11.tar.gz
Algorithm Hash digest
SHA256 81b235cf5a70951cb3f63d4b7f1150f6cb4d819dcad725f0b6d62cdeba1c9b7a
MD5 0c6e0b80fcbe52c72403f5c55b2e7f13
BLAKE2b-256 f022f5704581f9dde161bfa51714f9697b60535821a6b32ed12a7e50b1739932

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for toml_rs-0.0.11-pp311-pypy311_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 9038f6dc10930d4d123b376530752c03bc3a254c6897d6ac2148c24a344ec836
MD5 32fddccfc3b2771f218ec17e387a1f4e
BLAKE2b-256 3b8d8a2e918ac46c3c86f1d65786054bf85597df6f4d45063506588057e3abd7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for toml_rs-0.0.11-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 01ccd80a656a321a159d439bf64550b9898e1e23c91477ef913263cd4bd996dd
MD5 2af3be4416e9cd75977c43471673a7e0
BLAKE2b-256 f3cabc99e8b8755076055b8492a5f253d6678d31499500eb791bf458d3bc630a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for toml_rs-0.0.11-pp311-pypy311_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 5b1b0863d660a12fea3f6e98fc07b20ae90d1e9088b76063bf67640840c9b8fd
MD5 3c09796608d088a936f60ba4716f5c65
BLAKE2b-256 3bf78677c0a2162c42cbeab0e1954d8cdfff39b668bd201f92ff751d366cfb78

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for toml_rs-0.0.11-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 f769ac5e4788dcc5f5a2184163524155149eb7d27f464374e822bff2e1b488a1
MD5 55011835b7ce6a3ea31a58fb34b6850f
BLAKE2b-256 1c12ba59c85f756f9f9601b63eb9a40b816c59ccc4d8d339d39972f3bf2eae22

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for toml_rs-0.0.11-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 d401638fb5bb646cd8dd324b7b4b900d5ce9de891753ba27c19cc7e1aa5210e7
MD5 ab81f374ebf66829bdc24fb98212bde9
BLAKE2b-256 db1c358750ba271c60eadbfd317d1bbb5a7f32c716931377ad974b40a3896739

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for toml_rs-0.0.11-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 57dcc609bf17ce75c69223136a06831dd15a8dd97ac81798225b7f254b102f2d
MD5 d9fd6c1a681b2addb2abc9ec1c52c821
BLAKE2b-256 dc7d6e5605dc0289a4d1109bce2c12bc0e9fdc49d4c743d6ea54c8dd5e17d94f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for toml_rs-0.0.11-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 255012bb0c49256688c84ac4726df68dc5d1af0241a3e83044bbfd5f2b2fcf7f
MD5 565865952ed4a3a056c7270de6a45c35
BLAKE2b-256 3d02d97995f5b862d3945598c4288b00a8c0463d557683e72b2008807ebd7068

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for toml_rs-0.0.11-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 4aa69b86c8be7720c47c2612206d6d7bac846b2bfb1f42514dc474750f21857f
MD5 bd84eb065ff298989bc3643fe2d60cb4
BLAKE2b-256 44b37838a60f2cb4c141fa24f103ced3a50389e28678e0300a4a460ae4f69559

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for toml_rs-0.0.11-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 50ce0fc900744293541ed1e5667e76bab54b2f7c5853c92a4be6797fcc18b1eb
MD5 a8a865274a034f8866891086769b033b
BLAKE2b-256 fbe9841cf84b2ca8120b17430d848da13889046b30328e3f3e484ed0be30f560

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for toml_rs-0.0.11-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 71d8002f1f4841a4e94c969fcf9c67dca5b4f1bdb2ce510da9856a2f34c5a25b
MD5 5f44256d829b00487b885cbb1b0d7674
BLAKE2b-256 6d01eae96eddf714c54a8afd6d266fd7ef4ae1ac7e7eef634b8c95b9acf919a3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for toml_rs-0.0.11-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 21c7921f08ff0535b8af0ee0ea0877fcaffedc10112339045a1ffd1c15e3389c
MD5 5028d420cd5d595b927f17d8c43150e7
BLAKE2b-256 9c40173a8ae2656d56b1fa767e303f054acd91c4083809bc915eefed37addc15

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for toml_rs-0.0.11-pp311-pypy311_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b82ffa25c6e8bc6da984697a9c8f685f2064b51b0dac9b1cfe7f077cbe3c76df
MD5 8e2a67a5c1a8d3b81905dea87f344f85
BLAKE2b-256 6325e0ae4096b75bbaaebc00d678dc92f51bc1ce78389084f7cad580c166aba7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for toml_rs-0.0.11-pp311-pypy311_pp73-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 35f27432c045a60591ccf66aaded25b349ac6c27703af66205c74e636d9697ff
MD5 b5edf71fb1f88f3cf39efbc3be1d396c
BLAKE2b-256 f0d7e3362ce4553f61aecb473f96b0af74462db0513fdf97598656fe48ea70f4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for toml_rs-0.0.11-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 28effe4b87e7c785c2cd749c5582a323f082c4a1c6fb951cbb463a04348d88b6
MD5 abb8b21dcc00fcd113c006419d7c7212
BLAKE2b-256 d44914cf352b0c5b5b343d3bf9523add831297a595ef11294eeceadda4b0793a

See more details on using hashes here.

File details

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

File metadata

  • Download URL: toml_rs-0.0.11-cp314-cp314t-win32.whl
  • Upload date:
  • Size: 268.4 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.11-cp314-cp314t-win32.whl
Algorithm Hash digest
SHA256 5d502a455733abc6217348c0733fc169f4e332f38a7087ad0a142ccbf6fdbc5c
MD5 47ef35e2f162be12eb9cb19fb434ffd8
BLAKE2b-256 80624a1778ae09cbbf1cf13aef189bbedba46ed7c57324599cf1bab6d76a5e28

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for toml_rs-0.0.11-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 723a97343528b9817d5155ba5fdf1d0b420cdbfd783e037dfbf688334a0908d4
MD5 35c37e4c36bcacddb1c71ef97d12ccd1
BLAKE2b-256 f407963132a7290f38e9cd98c2a25b936e60893aa0b06d783a88c1fce4ab2d68

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for toml_rs-0.0.11-cp314-cp314t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 4e2c03377748b2149c6fbdfd375e4de2ffba23d40681ec518bc1fdabbd7d60aa
MD5 f578c2c3a633ff3e5358fd0745f84a42
BLAKE2b-256 877d037eb82be0cf626e3916f28ce5c6612ecd921c640c4b501b5597018f3d80

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for toml_rs-0.0.11-cp314-cp314t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 87f02f5440e19b8aea300f15fd7ea2f1dc417bbf000d4dc33ff1d10e205f569c
MD5 4819c0a407771436b4d8876926b9981d
BLAKE2b-256 15269ed0aecab0b27a107d609dc085ad87a66725852bbd84de61d67c91437ed4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for toml_rs-0.0.11-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 769ccd7e8d176c398cf2d0fda6af00cd567a75bfe117bc8e23f6e8a18bb7b63e
MD5 10dda92053558ee2116bfff340d99928
BLAKE2b-256 8f4bb1864541465bc448276b0ec90e577255102f26b61072e1907c2229e7167e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for toml_rs-0.0.11-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 10d33792227b880f8f5570f01c84d7fccdf734cca4f9471b2f72914740ad1cf5
MD5 60a6e287ce0aa28d3add5d2e9d1a1694
BLAKE2b-256 adc8d4f67267558e03e993d4885922d14f33c486f8442b2c0ddf2772d74f0434

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for toml_rs-0.0.11-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 8aae48a26de8f4e4b5c88564b8b2cc6fe04581f7d327981387e86d812cfc5b3f
MD5 56adeaa4667e6022466d37fb34189df2
BLAKE2b-256 8c4b0d236fadce638e85286fd14d8278b2c827d6147b071ba8edf4c909a59c20

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for toml_rs-0.0.11-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 b98b8cd9308652a45deafde84dd50c803557d6cfd54d6d22b7aeb120cc7a8bf8
MD5 054885042c2315b83352423b8cc07871
BLAKE2b-256 89c5d10f756e7d7865df440088b4f5aa32db6455cc1f6b24670b3d257bd1c4a5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for toml_rs-0.0.11-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 2c99e169ec498449dd3affeddb776d7e9082b0b507b0176302469fff1640639f
MD5 a430bd696cedb58f449cb8ebcaa7f099
BLAKE2b-256 e7db1314894e178e9f26f32900c0b22f8b10b2dc43a56ef01bda42833bd8b82c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for toml_rs-0.0.11-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 6b65ac6c342ab914b67444e4cb8612aa58123ae353b9f0625dea5a107791a66a
MD5 7468378e3b6e542da0213f82053a43eb
BLAKE2b-256 260b4f9045f7340316684c5fc6d6d129cb0ff0084c4828f1b6719954bd1ff02f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for toml_rs-0.0.11-cp314-cp314t-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 1a5246d0c69ee9d15be44d8ea2f8dfcd6b37a0d104a0d738e1dfcec958fac06f
MD5 953f44cacb40f7ef7179dd3886fbe2a2
BLAKE2b-256 467aa87f7fcd834992e2364f7601d2322fa7f567f6721cfd0985e7c656bd3516

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for toml_rs-0.0.11-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 dfb705380e776b5e432e75c799095ff3cd6bf4993e53e1269a59aeb32835e8ca
MD5 1c1d214b62cb59f91f1ab7acb10ddc8e
BLAKE2b-256 401dea8336c391f7fa8b2152c16d39063155a5471ddfcecc0fd2bfbb086156a3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for toml_rs-0.0.11-cp314-cp314t-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 4ab4929fa650fbe9d6115f3f1629e6a0dd1431b5a70616de8127db045dfefef6
MD5 f8850d50a4f826649cee791944e36741
BLAKE2b-256 0766ccc27c31c864a6be7829cce34322d380b5ecc4c2e94731b40a3626f9f16d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for toml_rs-0.0.11-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 944aeec925a99de2284510f45277b599dd180ed38dc3177a3614d9ecec73565a
MD5 f906b8c2e7ada486d1a2663670e5c028
BLAKE2b-256 db9651531e3f4cc95a8a8517d68625a63a10c7b9a6e8aed7019cb64085a6f474

See more details on using hashes here.

File details

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

File metadata

  • Download URL: toml_rs-0.0.11-cp314-cp314-win32.whl
  • Upload date:
  • Size: 269.8 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.11-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 37b847edfc5a118deb3fad51b04dd365ae8a2b8841503f3e1a317fc31320976d
MD5 50417f6c93f9437f38b9b7d72de04fc5
BLAKE2b-256 1f20ab559c62fe7e3f808767571d9ed59870752a628654456148e81b4a762afa

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for toml_rs-0.0.11-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 8978d62c2ef14687d3bfcef7b8ea5796fb10e843f39f5f6d7e60045eb6c748a6
MD5 32f952c7fb3f2f76c445a4fbfd1b5136
BLAKE2b-256 9d9ad8a70ebd4b20d1d7500c8900ec8d6f92cea91e6088381b31a5b7ff282afd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for toml_rs-0.0.11-cp314-cp314-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 7b454d6f121f8a5b9a89670971ddbc2c0475f5c12b9a52b322d9bcbe4db88251
MD5 a9f9a4087465aa1e0c3f7f1018aa67c2
BLAKE2b-256 505d5d4958290f35b73f20c09725e809da27c432ff2fa4263b44217cf637b003

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for toml_rs-0.0.11-cp314-cp314-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 73be759e672cc0b8bb979a65c159e8f1194daed406d4a8f26dda4dd97ed35ec7
MD5 2a6caecd0b15aad1a96ddf1adfd9f24e
BLAKE2b-256 18a691003f9db128f0a037ba193216eeb5034f364be86d2f3d51ef8321b79a82

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for toml_rs-0.0.11-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 042c415684bf7bc59284cb5fbb99ec4575077c2880d11748636eb62df57f90e4
MD5 d8fb8d9b8bc4467b217666b42bd22f61
BLAKE2b-256 5c52e1cf0ddde0d1bb576a16e47b42913b3d2a8e7a196f2b1f8a45d06e9c6b24

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for toml_rs-0.0.11-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ea25ceefc1aaefb6da68970409e2f85f11b7f1653aa6648f946fb5ccea68b902
MD5 673d09b2ea45c6786ea7f584b6530cc6
BLAKE2b-256 2e41d35c10af44faf7f729575292de6231cecff93564d088ce80f1ab48cc239c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for toml_rs-0.0.11-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 ba5b3c298870e3658097e9051f6c7398b9161685e3f7e378411ab9315d0f5593
MD5 37dc5fdc0c8dc817d0417ee4a9bb6334
BLAKE2b-256 97244107162cec1b754472fb01e324b7a803544284ed5a762d7bff149be9f2b7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for toml_rs-0.0.11-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 ac40d81c236b2c2f08c76922863b99e526e043e78e834aa926d44e814075e71d
MD5 b90ad0361ea9275129723451048a3d5c
BLAKE2b-256 946f5347c00d5f077f9974f0a9d144c6f9ab6a38c4c99a0aa4f51c152b156461

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for toml_rs-0.0.11-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 06002cca91879d027941a7e85a5a13ccd9aea5654157e1cfc473deb9d4b06648
MD5 0b46574e9f1b72d78cfeccb511c4928b
BLAKE2b-256 96eed8a94bd08936482d4d3b34c1e2ed1a974ee443d9c33e61dcbc485712c998

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for toml_rs-0.0.11-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 2f664fbd0ff0c335e9c5086127f1edf3f2f665196e20d670051c56b48bb4edc4
MD5 11d4a8322202295384f549bf18eec3ec
BLAKE2b-256 05e3f1646c60f8119a524006449e3f2ee35cc1888cbfd5b0dfb343e1f88df073

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for toml_rs-0.0.11-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 44cf521eac7af72b78759c0c80f86342f542e9f2112706dece4d460133328387
MD5 9edf88ee890ffc750715e899c37d05b4
BLAKE2b-256 a92ff539fab9c395dc3229745f023a8a5e52c44d5801de9f8ea0e99239b80c36

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for toml_rs-0.0.11-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f49894dd6176abe5ee609cb01c71f6af151c2f9967036baa5cd046433b508520
MD5 43a160b92657b4c28ebc4a0586d9e71e
BLAKE2b-256 85aeb2d30f0b97e960d67af05b43a6c7c82d4f688479237bf90e2958e0790300

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for toml_rs-0.0.11-cp314-cp314-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 f1d95e81f39ba6010a742f2b5168475e4c15e8da5b2de8ac594d6ead0ac4cfb4
MD5 7d7d3f5dc60839722a15008a3a027d35
BLAKE2b-256 63a1ce87c81d9d084f577b2ea75118310ee764e84a11c271a32b51477e04ee4f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for toml_rs-0.0.11-cp313-cp313t-win_amd64.whl
Algorithm Hash digest
SHA256 21da6df390caa954b87d87ffeec2dea279cec64a469a3421c020b7e426382d8f
MD5 5b312de10b17d618cc285dccdb595f75
BLAKE2b-256 69ab1b4cbd61607a4091472e7e107617dc065891f680e61c2431687c3e3c5926

See more details on using hashes here.

File details

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

File metadata

  • Download URL: toml_rs-0.0.11-cp313-cp313t-win32.whl
  • Upload date:
  • Size: 268.3 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.11-cp313-cp313t-win32.whl
Algorithm Hash digest
SHA256 30a69103bf3a0918083e2c54434576003ce09340b629887a690f48eb5cf88e2f
MD5 3d14986e65d9412f078b7ba1eb0b3d22
BLAKE2b-256 5b8578370b4ae6190154d3be6b6a97626db1b50ecd43e45c93736d4ab819c88a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for toml_rs-0.0.11-cp313-cp313t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 c5e12320fb60c5e086b987cb7120519250d741a0c74cfb7a116023c916b0ef12
MD5 063e88e7587b516e71426c9446ef9aae
BLAKE2b-256 fceb91246939e34dc83c5e55a88271d37660ae7f6dd2b485457e5cb313401352

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for toml_rs-0.0.11-cp313-cp313t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 8c3e9afc87afdbab86cb4f1a8e6303fce2cf2a5b73d50423d4ed976de8726822
MD5 918695e4fa74acbd72218caf8bbc5b16
BLAKE2b-256 266fc32d1f9075f0b3fc9903ee093fe61969d78885558c804e938f504b9b0b56

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for toml_rs-0.0.11-cp313-cp313t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 8456b732306e97fc895935fb1c2e53f6ff80c6125f469f037e098c02aba6be38
MD5 4329446d58f8e1a985bdacba576c98da
BLAKE2b-256 cedb3db8fa4f10610d50d63fdc257208cc93442548bcc6825f376fa0f86e30cd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for toml_rs-0.0.11-cp313-cp313t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 cafd029a77c9ba1a1aef0f8834f1419ef51cf1c676c9566253356e639308d9af
MD5 1bbaefa63bed94c6f45a2a59e6688860
BLAKE2b-256 9f237658c6c47996e4bb28202e5cd23940a6c0868a5030c578822c8ba5d37931

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for toml_rs-0.0.11-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 6c8d8411f615b3ed47b251342e2f8db1128bf20eaf21f0c6a151282db1f1a66d
MD5 cb622fe8a93f12ed813fc205b99b85fd
BLAKE2b-256 37da00fadae74c0b530735d9863b1e9e5cdbbedabb3d306ce7c277a5da29f4f4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for toml_rs-0.0.11-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 c53c66837a28df4e5d15f186932745353e3fa345c3849d4f7dc30313a771c482
MD5 3e0fecd08c418e30ca104081837a8b52
BLAKE2b-256 eec4789dd04541690c9202f3d4df9bdfa5f7f51a77c4af45983aabcc8ca5dc6f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for toml_rs-0.0.11-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 4dec65bcc8c8793fcf7a9c857468f322c264b684fbc85b2c7d16ec0a6d0be6b8
MD5 6dd9f7cc037997f1e46fe0a192ba0a48
BLAKE2b-256 c168361979a4cbeb5d1dfd81bbb586c707528b44b37d3238e6d943271eaec696

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for toml_rs-0.0.11-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 b1a2bb718d43242c3d1a50a9e9bf706c0b459c8800c0156818358350b5545aec
MD5 4043a0083b4adb903983730924e26f5d
BLAKE2b-256 1cd4ee3882149c427b0349b9bcd5681448ae5ce1a65ab2de7d5d849bd8e91f97

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for toml_rs-0.0.11-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 2cac8f47c22d48928c2ffe7c8e6d2c394999752d98d14d16fcc4ac16efcd7dc7
MD5 7419973275c749ac453b5c86c05d739f
BLAKE2b-256 c535af6625901dc2e6cea04a0b5ce9f4e1c4ab4bcbc2fa5d93c26349449541e9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for toml_rs-0.0.11-cp313-cp313t-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 806a2e6aff9c1d1d5bd41820305a885e5e9bcb336a9580f2d4cb87012c91eb49
MD5 e869eeb057676f164b96e5795bb29788
BLAKE2b-256 5602735264ca6b7ee0bfda7462f2df9596665c07c7660c30a7420d1439f715a6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for toml_rs-0.0.11-cp313-cp313t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 1ca4101f9cf1773acd65ca5f1ade8c00135497d78f01c3cc64aab4c2462ef281
MD5 5c682b6c470cfd8b17b55dacdf5545cb
BLAKE2b-256 03f99c2cfc399f5e2f8f77bc27aba9f987c2cfa5dbba9f9530f4eada7629fee7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for toml_rs-0.0.11-cp313-cp313t-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 a3daf0ad360ce499c5877d6c6671a80a7a4264cfb78dc872c30c08dcab07b6dc
MD5 bc68a6d8080e8f7bf857178cbf95091f
BLAKE2b-256 db56c575d024b9b1ef4b1217855fdfc8261ac554a5c10a21c6b97f236980d7a1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for toml_rs-0.0.11-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 67c56f30be4f32cd18288317cf7086b4f6201f2545e315e333e562f6a0d80de3
MD5 afbaee796030b1da7492e6ea740dad85
BLAKE2b-256 8bbbdc255f01b53f27e14830f9860fa0b0e8c99644879b418610f52bf3e7a162

See more details on using hashes here.

File details

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

File metadata

  • Download URL: toml_rs-0.0.11-cp313-cp313-win32.whl
  • Upload date:
  • Size: 269.8 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.11-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 45dcbe4ac3b4ec312522e375501eb6e3a163870354ab68eeeee60035b0ceabc9
MD5 0c3c67413ce172cdd2651f5cc0aba6ab
BLAKE2b-256 44e1110cfb48aa2504996e567060a3f526e1f1c5ed8179614122b85dc4174d57

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for toml_rs-0.0.11-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 1f0bef731a118c190557dddf2d769c0d5761e923a4d0a3216dc6e41440da595c
MD5 29260684346425ee528a68de317b665e
BLAKE2b-256 2ae01fd186859dd9ddffe0eec7046bd915becf6af45af59383ec20aff7f2dc1b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for toml_rs-0.0.11-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 3fc130776688bd1f536ea310e15a657995dfac6b2d46c94b5be6c6a76fec2adc
MD5 d801107adc9451e45e0cc7b6aae41636
BLAKE2b-256 905863fa2e0e984fc7d3103af0b9674d4ca361660bee83e57e58b5911ddfa971

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for toml_rs-0.0.11-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 84a883ec652b4ea794b7ac4ecdb45dcaf9ec05ffa96ed9ef2ce5f48933562e1d
MD5 fbc8df9a2343ff7c8b60fdf912516567
BLAKE2b-256 c3530da00430e512fd194ed973548bcf93998794198228020ebea728e9e04b7e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for toml_rs-0.0.11-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 0f1374fc46dfbdb4bcd039ed588d932c15da0ea8c554c442f1bfe45438c013eb
MD5 3b034fcdc983b9365599e95849ca3918
BLAKE2b-256 4e219570a4be5992ec47a402809f07db936cb1af25197e0985f83f65dc557199

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for toml_rs-0.0.11-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 bed8589c95e6c152f5c476e0a1cc0713b6c8e765fa04d0d55f5bcca1a6a427b6
MD5 b526d759fc58bbd689fd5d35671db35f
BLAKE2b-256 d0bf4632ebbfb7953e970a7ffebe73c100cae2178a7029892e6aad82b45307e8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for toml_rs-0.0.11-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 f3efd4a8df0d5b702f2c3b2413ea230eba6a26e87844ab159ab39e6daf43bf8e
MD5 376c563721f0242c6ee652971c5815a0
BLAKE2b-256 1fc4cff47018b9c5e644248fa49283d1fbab94869744e82b53f565996f60111f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for toml_rs-0.0.11-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 b3bebf22b4d6e3d26573acaad7446fae32bce87eb2ba2332aa32d91f09d79259
MD5 e1082b77b02c0668f5591abd3b299115
BLAKE2b-256 3ed3ec2e82cafb1b9eb9074262854ba0cb0b87bd8c485b5a417a7258a1cc2d4a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for toml_rs-0.0.11-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 5bdf643ded1ff9a6e17a5d568f405ee20fe3af0ea4f2b0daada2815181dcb854
MD5 d9d73f7626500145e6d53f0a161b51c5
BLAKE2b-256 6f62c483aa63c87a150499ea4b163e9c02e5abc123a531766ba4272e3ab5ef46

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for toml_rs-0.0.11-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 36930d8e74fddd41aa6121651acb5bfaa6e6fcfc4993e3938300c7a7ef04f124
MD5 00079297b366160dfabe777c19b1eb26
BLAKE2b-256 24c579b1a346b8d02cf64f60b2e77789dde082e71a3d7cb058fc6a0a0187ff93

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for toml_rs-0.0.11-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 fb7e8432ad70ded1a68e82b9865f0443af2e57e498ce58f5e75e37384434596f
MD5 ed60ef3e9c1b7480fad6f2ad5aad95db
BLAKE2b-256 941d4f0b18f6fbea833febf2dd0acff36896fb8b122e999bdf26683d3b9f2fa3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for toml_rs-0.0.11-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e353490faa59be3b6ce48a61407480f547657204574d81fd13d41b7d9808dbf7
MD5 2e0a17a4447a45cbd86897fc0082f319
BLAKE2b-256 4c64ea1e41ac7514615fc56eb0184e285364e34945a40887788b95410f748c84

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for toml_rs-0.0.11-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 9516be94ec23fa1107f4084f9de7c2d56171423858344dffeab7a92ebaa500e7
MD5 da9b3cfd31f24f0e7d9f1408f4711a09
BLAKE2b-256 ffc2b045f569e874cb14c908fb79823a63d98e82e39687a384b61127bb212a27

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for toml_rs-0.0.11-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 453c9ef99c71efc56043ec0539973d428c3e6f314d993fb154239cb7c8b1412f
MD5 71eb7e158fd44f7322e5179382c33102
BLAKE2b-256 343f04335fecd9483ea4092314745827e3dc7dcab86a1a46118fd627528005bb

See more details on using hashes here.

File details

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

File metadata

  • Download URL: toml_rs-0.0.11-cp312-cp312-win32.whl
  • Upload date:
  • Size: 270.1 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.11-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 c36e3f3d67cdbaaf1eacb12eedb40499ddaabc32366467d04225d0de095595cd
MD5 970c5dab12226028cce87ba9217cfbac
BLAKE2b-256 cc5b12e00a8e745653196ecda6b62a59aabe367f363d33652dc5469e200a9753

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for toml_rs-0.0.11-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 74866d808946cbb07d7e3b93b1d120a3bb5ac501559b42e722623940aa8e40c5
MD5 49b86edba338cab3c555dfd926a94c8e
BLAKE2b-256 fd56c6838ea993e02bf103e61cc6b5a0d640be3441ab88a46b3e9dda916b5cbb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for toml_rs-0.0.11-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 c4c24f09fea573ee23bcbc90ce9daaab2e75e9cf5af3a84b157aa2a5c512f2f1
MD5 e058bc7e6bd284b3b38b4b412ff788aa
BLAKE2b-256 6a0f00088ca2038c987ff073505611c8cf8ca9fdb44bd9799e98f44acf1ae2da

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for toml_rs-0.0.11-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 ef96a057cbd3af234ce3e7428e6ffbf7a8b98f65d01675998e9c169a41b471c0
MD5 a26c4331a94e3db74461775a2ad68139
BLAKE2b-256 88632698fd35219763c063e39f9bfbed1fa9b4a2f82ac3cd340fc7d6c7d6cd4c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for toml_rs-0.0.11-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 50216d7ab16d155b0c74eca2a5d40e90ffd741f7305df46ec35afe70f0492293
MD5 493261778ceeb84f2acb0b03355d39a8
BLAKE2b-256 6b93638ad1855de0c3714ec7a3a2a3786753f9913b09d323697f4b245951d7e0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for toml_rs-0.0.11-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 405db338336fedc4b73c73902c3cd3877e043454269d71c63195816258325464
MD5 fd1a7e76efc2eb997a6edb6abbad7b71
BLAKE2b-256 d92ca89af4049819820046aeeb302536c7ed74de32e9fc24f567a710c8c72d4b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for toml_rs-0.0.11-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 a5d15932af1d84000334af65007bc71f4f921bf7b9f500accda928b0a91a5d79
MD5 79d41cb6f6c4a09e56405824156ab00e
BLAKE2b-256 1e96a760dafa80f6b5dd9f41b8e7062b549c7c07674b53042fea5dca9d95ebc8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for toml_rs-0.0.11-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 c3ba70918beeb1f83f1580cda9972c789eb818713371482eaf084c826b133f95
MD5 619ab9d188009b744886d1b5b35a81d7
BLAKE2b-256 c9983aaaa358596198e5b973ecb1fb68cb60010b1dcb5bb9e8c7ba9e8182d33a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for toml_rs-0.0.11-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 993c9339e220f9d5a9a4f2417e13df8396e3a0d61d28a5d7b2217f62998fe108
MD5 b9bcb1f1a4caa29cb7b7d022c15a580d
BLAKE2b-256 055033e2012f0cf31ca433131bf702b689fbf75414c0bc2b0cf858e1824a3e49

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for toml_rs-0.0.11-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 578c2c801869fc6b974a5b167052579dec21e6796576f15516a03bc95bf34bb7
MD5 c27ef1a65c73db226a05e820ea1d0314
BLAKE2b-256 6b5aef1ea8fb22dc7ac6d8baea03ea51f4d7d83990756ff7497e83bb93a235b4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for toml_rs-0.0.11-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 6473847951752c2a3281f6705f31dd1ce25ba985b3e2820fd6e29bac83a8ddca
MD5 81c341d844b41c63ab9ab6cc593aaf1c
BLAKE2b-256 624c5131f0ef0f04f222ea972893e49a30cd47325caeb46ae8c2c6aae2483253

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for toml_rs-0.0.11-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c1e648f356f7dd9dc8431950a79361f8d9e7db84f09be4dc64d79854841ed9c6
MD5 667ef616ecc94baf5ef96889511b58d0
BLAKE2b-256 16b4d83ac33929677cd29da8d64702cfeba44e97cc48d461f24f5453e84275ef

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for toml_rs-0.0.11-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 ad29a098e55e7f0bb28555a1bcebc27eb1c75eee61772a8f359334862296e561
MD5 471582111e7b37ece8f8eeb6a723e3c5
BLAKE2b-256 9ddfe4f7eac53aa69dc0b9fd2b24a1ee37de6cfefa59a02876595ce5225221fc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for toml_rs-0.0.11-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 bbb09c314ec49014f1851c3476d4ae056cfbe9d9bb2eb140db6bfb8a11849fb8
MD5 5104884206e7026ab8e17c09dc90e6f3
BLAKE2b-256 fe573d8131d9485a3c10b5d67c0427afcc21067104386f64ba2ab7c1a4dcc5ac

See more details on using hashes here.

File details

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

File metadata

  • Download URL: toml_rs-0.0.11-cp311-cp311-win32.whl
  • Upload date:
  • Size: 270.3 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.11-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 25b2fadab13b1512a5c78bff48eb21915edc2cdd0b354654a5d3c46e17436e58
MD5 8936d37dde0ce8b4c13a81c169fc3e38
BLAKE2b-256 9068c7b00d9811df3d0b7f73a853dbc1fcb294095a6ddebc4d6b91a0c5629cd9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for toml_rs-0.0.11-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 25cc1dcffc315533054d4bdede774c361b5dd9255c91c7e2df624d6a7a0ac0ac
MD5 fc04876f791127fac26c0e87ce7dd93a
BLAKE2b-256 7b366eede317dcaf9d95243597e7ae24430a6d812c8cf75e326a05b649a2070e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for toml_rs-0.0.11-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 66e881c351db648c338695777d24d6a7e8c827396551b51cd743c1eaa262bc63
MD5 bc62c68876cfeb5ffba9016eb722f1f8
BLAKE2b-256 365434cb8989fd0512b83609f17871aebd2d02aa68ee08961a7573f71136b617

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for toml_rs-0.0.11-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 886e38bda4c6bdd2159fc7fc33ee3f2449dd961e9a7a10b5c2e165d89dbaa830
MD5 0d11f9e155265541cbe6b3d60f39458a
BLAKE2b-256 10c8aa03573a1fed123af461d1789a6833b64f836a2aafe19c91204e3002da87

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for toml_rs-0.0.11-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 83c85ef4af5a84e75434bae5768e5cdad2ec6f5f3b04ac481cc12fde9b3df3db
MD5 1a3af3079a83f3974b422b432e76f07a
BLAKE2b-256 a2a77d1ddd7ebc25007c235d4a6f07f5e9538acee36539c50d0fa02f13a82df7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for toml_rs-0.0.11-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 99c695163655711f61a6f4a7607a88e10b1a0f7082b00d4363ba156ba11fc329
MD5 f815ff0bfcb5c5b60c807b72fc8e8916
BLAKE2b-256 5cb026c1f40b8341f5a5db7acd6af6b109318fe11cb35f3dc274fdc9341c908b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for toml_rs-0.0.11-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 c64438682efa0a27472c02213ad705fe99fb899f0f4e7035895a220469bb62d2
MD5 37388aa75a2502d1f7db86b9de7301f7
BLAKE2b-256 799ccec5aa032c746b2387962b2755a12719f54691a0860aa4951b22be510785

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for toml_rs-0.0.11-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 efdb0db923fa6aef8941a039d984b88ed069dca83b61653d669c4a622bcaf05d
MD5 e00f8749ce7f5b1ef53285410b9c7248
BLAKE2b-256 25adff2d62d3527f882419952ba18657778bbc86eac5861fad8a6723869ef720

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for toml_rs-0.0.11-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 aa1406cc935cd2f6b68d309401e9e12b3f5ad5d2921fbc0157c3ee0dd8fc25f7
MD5 f24e9fe8b70f7a1a5abd47dc81e6f603
BLAKE2b-256 ed43bb2ec0997dd7612563d314a07e97fec3cac98c8ff534234ba34a21fb631e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for toml_rs-0.0.11-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 1190d0cec1fe65a4fee86cb5cf14630f475e1f08b88c9bb392eb1d0bf2ff59d9
MD5 2dd3ff7188309180a5e69b3fee0e214f
BLAKE2b-256 e62c23df8d9daee62f99a99bb8acf63f0839b9d7663038905d6f0f2615869f44

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for toml_rs-0.0.11-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 cf3f17f15bd7cc3e46f4aec74cc5cf6869e1667a872a0967cd4b54e191619186
MD5 f4ed83e449da0cb1028dfc11f8b81cd9
BLAKE2b-256 19f26219efa85db135ad21bfbb66a7ee4dc7146f47755a5409c772f6863bf69c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for toml_rs-0.0.11-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a4ade481dd0ba930d98c4e09ebfbd01f0566b62ac1a7a2a3527eb3772698a7c8
MD5 5a28d2865c2615fdb674ee6a0633c6cd
BLAKE2b-256 443021ad8eff35663178a0d10330e60e5fb830777f012a575882bf80dc3c99f9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for toml_rs-0.0.11-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 56ebd23694b81c99a7b3d07cf0a61f51078be24cb9bfd3db5c4f6ac9eb6f3128
MD5 ee9fb977141c4d2f130869ebeedd59e2
BLAKE2b-256 a1de9938f39732612d9e998e90cf863ae44a95ea7a4ee4f6a24b1abe1a973153

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for toml_rs-0.0.11-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 48c88d9cb4eb1920b6e1a53d4519c90c8af62746600fee9ef4563ba25e2f567a
MD5 c9a642a4ae02b7eda1134b9d6cc116c2
BLAKE2b-256 4dc90fb41a06fc28c1892ef03fce0d0bb022a274ebf6d4d7fc1fa5803fbfaabe

See more details on using hashes here.

File details

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

File metadata

  • Download URL: toml_rs-0.0.11-cp310-cp310-win32.whl
  • Upload date:
  • Size: 270.6 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.11-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 8e8ae9b3b29a8b25f0e446d6ec532f0107dc808cd9377ccd93af07dc6cf2df58
MD5 5fccf2de2e75b4c636da6f22985b0484
BLAKE2b-256 2faacf0a32fe67339d8b45bd9928f8e76a2e54b568da5ce2f755f917c8a81993

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for toml_rs-0.0.11-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 3fd060f1c6792192e1f9d41890cb4dc64736081ae272f77f2035a38b4475223f
MD5 7651510a1b4a9232822369c0461017d7
BLAKE2b-256 f5df9060f276f1ba9de095c433dc5a13969a78583f66c7a18121ced28ddb2e3d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for toml_rs-0.0.11-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 8c8bf011d94399a53aaf8374a5513c5c6193c62ef095222ae60b54f0ae3de35d
MD5 da56c0e5130626abfabe0658094dd432
BLAKE2b-256 ca04b4b907ac108266525e01a7960e65ad743fd152298f8b1e583c5615966f81

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for toml_rs-0.0.11-cp310-cp310-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 640445c3f6e7a908af5ac3a8f7eea64779922ae8074eb43a28a536ae50788842
MD5 6b26c13e7490267619404f26bc5eb221
BLAKE2b-256 a0639c0bc5f097a7d9a9f2afaea40814aa72c867170d76061168ca8fa9de4579

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for toml_rs-0.0.11-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 9f22aaeb8c04bef12c6466f6af1b3b378ed3ed08d54defad781f9ab29ac42c1f
MD5 3e1669879a3a504c4f567ed2e03e638d
BLAKE2b-256 7a965c49a260ae8f68cfe42e0cb0d3c0eb160d65a94752d413be1cca9a7ab92d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for toml_rs-0.0.11-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 87c48a0817f19f6c26632bc9074dc352e45f8a830cd3b94e88eb87104d6b6a55
MD5 dad1abc7caf71ff619a288c567db82f0
BLAKE2b-256 6b50ebe35937a2305af93ed7638f77cd657d44e40f583e6ae1f17a5d9cadaaf8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for toml_rs-0.0.11-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 b90692acb8ed44412172a0fa4cfb106f4d0fde1f6d86577d743aa60740d69590
MD5 d835ea91ebf093ddc17e4db8cdd427b6
BLAKE2b-256 d9be5e1623bf8b594b9c58469610b317a2316114737ac87dec896623cf60840c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for toml_rs-0.0.11-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 2a8813dcb5687467a46e01a904c410176e6cd5e79d2f9a34dfaa60d266ab9bee
MD5 056edda3e0088661a88778545c6d90c5
BLAKE2b-256 b2d78a155a8d9b74f965f8813083d89a92fa9b5ef9c2a91b28c478523f859600

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for toml_rs-0.0.11-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 f404944d882102fbb6aeef4434c2d6968fae665b98ed183df3288335ef93acc2
MD5 af0b3af5bbef442ec6d52f8252c47792
BLAKE2b-256 2441e13d1bfb89644c1523b5c93b8f4adab9b0e55685b2e7250040202ceb22be

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for toml_rs-0.0.11-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 c4a8adefa9456f1d8a9cbb41dd94ddc914faaf46a462b9edfad283b886256321
MD5 11b20e5b2351635cef77e33dfb637435
BLAKE2b-256 11ce083af7ed28e6014e5c19f9b66a28112be6e71319460b411791e228f6bcb5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for toml_rs-0.0.11-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 0cbbbc194646b3bd24247ded82da25905240cd752c0500811b4862b96e4b7a7b
MD5 3065cbd8913f7ce15d6a492afa0ac3e8
BLAKE2b-256 14f18512cce6b61023e35ddc9320d3b002111d493ef6fa98cab556f02eb3b932

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for toml_rs-0.0.11-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a308e92e5ad5ed0e9c0936b35fcc28c80058e1acd6de7ea272215f662f0e0edc
MD5 477fce70202a008186b846d2831a6d1e
BLAKE2b-256 157e6a26a2794f388659f8a93189c3ee123b523852c76e97cac799456e30be05

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for toml_rs-0.0.11-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 ebce3ffd43ffe1f0d9567528dc1f0dbe7e560bcd40c1dd0d1158581564a64fc9
MD5 e8991a84c6f7e3759cd16fac135e54af
BLAKE2b-256 9f841fb7be0d3fc03ef8d0820bc8cfa60c2fd58c8d11ed6d6aabe88f08e57551

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