Skip to main content

A High-Performance TOML Parser for Python written in Rust

Project description

toml-rs

A High-Performance TOML v1.0.0 and v1.1.0 parser for Python written in Rust

PyPI License Python version Implementation

Monthly downloads Github Repository size

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.1.2.tar.gz (89.6 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.1.2-pp311-pypy311_pp73-win_amd64.whl (372.2 kB view details)

Uploaded PyPyWindows x86-64

toml_rs-0.1.2-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl (679.8 kB view details)

Uploaded PyPymusllinux: musl 1.2+ x86-64

toml_rs-0.1.2-pp311-pypy311_pp73-musllinux_1_2_i686.whl (710.1 kB view details)

Uploaded PyPymusllinux: musl 1.2+ i686

toml_rs-0.1.2-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl (731.2 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

toml_rs-0.1.2-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl (629.3 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARM64

toml_rs-0.1.2-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (467.3 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

toml_rs-0.1.2-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (493.5 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ s390x

toml_rs-0.1.2-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (477.8 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

toml_rs-0.1.2-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (419.4 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

toml_rs-0.1.2-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (453.6 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

toml_rs-0.1.2-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl (494.6 kB view details)

Uploaded PyPymanylinux: glibc 2.5+ i686

toml_rs-0.1.2-pp311-pypy311_pp73-macosx_11_0_arm64.whl (423.6 kB view details)

Uploaded PyPymacOS 11.0+ ARM64

toml_rs-0.1.2-pp311-pypy311_pp73-macosx_10_12_x86_64.whl (444.3 kB view details)

Uploaded PyPymacOS 10.12+ x86-64

toml_rs-0.1.2-cp314-cp314t-win_amd64.whl (368.6 kB view details)

Uploaded CPython 3.14tWindows x86-64

toml_rs-0.1.2-cp314-cp314t-win32.whl (340.9 kB view details)

Uploaded CPython 3.14tWindows x86

toml_rs-0.1.2-cp314-cp314t-musllinux_1_2_x86_64.whl (675.9 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

toml_rs-0.1.2-cp314-cp314t-musllinux_1_2_i686.whl (706.4 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ i686

toml_rs-0.1.2-cp314-cp314t-musllinux_1_2_armv7l.whl (727.0 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARMv7l

toml_rs-0.1.2-cp314-cp314t-musllinux_1_2_aarch64.whl (624.8 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

toml_rs-0.1.2-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (463.5 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ x86-64

toml_rs-0.1.2-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl (488.2 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ s390x

toml_rs-0.1.2-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (473.1 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ppc64le

toml_rs-0.1.2-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (416.0 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARMv7l

toml_rs-0.1.2-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (449.5 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARM64

toml_rs-0.1.2-cp314-cp314t-manylinux_2_5_i686.manylinux1_i686.whl (491.4 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.5+ i686

toml_rs-0.1.2-cp314-cp314t-macosx_11_0_arm64.whl (420.1 kB view details)

Uploaded CPython 3.14tmacOS 11.0+ ARM64

toml_rs-0.1.2-cp314-cp314t-macosx_10_12_x86_64.whl (441.0 kB view details)

Uploaded CPython 3.14tmacOS 10.12+ x86-64

toml_rs-0.1.2-cp314-cp314-win_amd64.whl (370.5 kB view details)

Uploaded CPython 3.14Windows x86-64

toml_rs-0.1.2-cp314-cp314-win32.whl (342.8 kB view details)

Uploaded CPython 3.14Windows x86

toml_rs-0.1.2-cp314-cp314-musllinux_1_2_x86_64.whl (678.6 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

toml_rs-0.1.2-cp314-cp314-musllinux_1_2_i686.whl (707.9 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ i686

toml_rs-0.1.2-cp314-cp314-musllinux_1_2_armv7l.whl (728.7 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARMv7l

toml_rs-0.1.2-cp314-cp314-musllinux_1_2_aarch64.whl (627.4 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

toml_rs-0.1.2-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (465.6 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ x86-64

toml_rs-0.1.2-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl (491.2 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ s390x

toml_rs-0.1.2-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (475.1 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ppc64le

toml_rs-0.1.2-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (417.5 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARMv7l

toml_rs-0.1.2-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (452.3 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARM64

toml_rs-0.1.2-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl (492.0 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.5+ i686

toml_rs-0.1.2-cp314-cp314-macosx_11_0_arm64.whl (421.6 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

toml_rs-0.1.2-cp314-cp314-macosx_10_12_x86_64.whl (442.6 kB view details)

Uploaded CPython 3.14macOS 10.12+ x86-64

toml_rs-0.1.2-cp313-cp313t-win_amd64.whl (368.7 kB view details)

Uploaded CPython 3.13tWindows x86-64

toml_rs-0.1.2-cp313-cp313t-win32.whl (340.9 kB view details)

Uploaded CPython 3.13tWindows x86

toml_rs-0.1.2-cp313-cp313t-musllinux_1_2_x86_64.whl (675.9 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ x86-64

toml_rs-0.1.2-cp313-cp313t-musllinux_1_2_i686.whl (705.7 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ i686

toml_rs-0.1.2-cp313-cp313t-musllinux_1_2_armv7l.whl (726.0 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARMv7l

toml_rs-0.1.2-cp313-cp313t-musllinux_1_2_aarch64.whl (624.9 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARM64

toml_rs-0.1.2-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (463.5 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ x86-64

toml_rs-0.1.2-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl (488.3 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ s390x

toml_rs-0.1.2-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (473.1 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ppc64le

toml_rs-0.1.2-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (415.3 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARMv7l

toml_rs-0.1.2-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (449.6 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARM64

toml_rs-0.1.2-cp313-cp313t-manylinux_2_5_i686.manylinux1_i686.whl (490.5 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.5+ i686

toml_rs-0.1.2-cp313-cp313t-macosx_11_0_arm64.whl (419.8 kB view details)

Uploaded CPython 3.13tmacOS 11.0+ ARM64

toml_rs-0.1.2-cp313-cp313t-macosx_10_12_x86_64.whl (440.8 kB view details)

Uploaded CPython 3.13tmacOS 10.12+ x86-64

toml_rs-0.1.2-cp313-cp313-win_amd64.whl (370.6 kB view details)

Uploaded CPython 3.13Windows x86-64

toml_rs-0.1.2-cp313-cp313-win32.whl (342.9 kB view details)

Uploaded CPython 3.13Windows x86

toml_rs-0.1.2-cp313-cp313-musllinux_1_2_x86_64.whl (678.8 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

toml_rs-0.1.2-cp313-cp313-musllinux_1_2_i686.whl (708.4 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ i686

toml_rs-0.1.2-cp313-cp313-musllinux_1_2_armv7l.whl (728.8 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARMv7l

toml_rs-0.1.2-cp313-cp313-musllinux_1_2_aarch64.whl (627.6 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

toml_rs-0.1.2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (465.8 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

toml_rs-0.1.2-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl (491.3 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ s390x

toml_rs-0.1.2-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (475.3 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ppc64le

toml_rs-0.1.2-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (417.4 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARMv7l

toml_rs-0.1.2-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (452.4 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

toml_rs-0.1.2-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl (492.5 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.5+ i686

toml_rs-0.1.2-cp313-cp313-macosx_11_0_arm64.whl (421.6 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

toml_rs-0.1.2-cp313-cp313-macosx_10_12_x86_64.whl (442.6 kB view details)

Uploaded CPython 3.13macOS 10.12+ x86-64

toml_rs-0.1.2-cp312-cp312-win_amd64.whl (371.1 kB view details)

Uploaded CPython 3.12Windows x86-64

toml_rs-0.1.2-cp312-cp312-win32.whl (343.2 kB view details)

Uploaded CPython 3.12Windows x86

toml_rs-0.1.2-cp312-cp312-musllinux_1_2_x86_64.whl (679.1 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

toml_rs-0.1.2-cp312-cp312-musllinux_1_2_i686.whl (708.6 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ i686

toml_rs-0.1.2-cp312-cp312-musllinux_1_2_armv7l.whl (729.0 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

toml_rs-0.1.2-cp312-cp312-musllinux_1_2_aarch64.whl (627.8 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

toml_rs-0.1.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (466.1 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

toml_rs-0.1.2-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl (491.9 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ s390x

toml_rs-0.1.2-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (475.5 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ppc64le

toml_rs-0.1.2-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (417.7 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARMv7l

toml_rs-0.1.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (452.6 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

toml_rs-0.1.2-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl (492.8 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.5+ i686

toml_rs-0.1.2-cp312-cp312-macosx_11_0_arm64.whl (422.0 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

toml_rs-0.1.2-cp312-cp312-macosx_10_12_x86_64.whl (442.9 kB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

toml_rs-0.1.2-cp311-cp311-win_amd64.whl (370.2 kB view details)

Uploaded CPython 3.11Windows x86-64

toml_rs-0.1.2-cp311-cp311-win32.whl (343.0 kB view details)

Uploaded CPython 3.11Windows x86

toml_rs-0.1.2-cp311-cp311-musllinux_1_2_x86_64.whl (678.2 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

toml_rs-0.1.2-cp311-cp311-musllinux_1_2_i686.whl (707.8 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ i686

toml_rs-0.1.2-cp311-cp311-musllinux_1_2_armv7l.whl (729.2 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARMv7l

toml_rs-0.1.2-cp311-cp311-musllinux_1_2_aarch64.whl (627.5 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

toml_rs-0.1.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (465.6 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

toml_rs-0.1.2-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl (492.0 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ s390x

toml_rs-0.1.2-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (475.6 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ppc64le

toml_rs-0.1.2-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (417.7 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARMv7l

toml_rs-0.1.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (452.0 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

toml_rs-0.1.2-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl (492.2 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.5+ i686

toml_rs-0.1.2-cp311-cp311-macosx_11_0_arm64.whl (422.9 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

toml_rs-0.1.2-cp311-cp311-macosx_10_12_x86_64.whl (442.9 kB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

toml_rs-0.1.2-cp310-cp310-win_amd64.whl (370.1 kB view details)

Uploaded CPython 3.10Windows x86-64

toml_rs-0.1.2-cp310-cp310-win32.whl (343.3 kB view details)

Uploaded CPython 3.10Windows x86

toml_rs-0.1.2-cp310-cp310-musllinux_1_2_x86_64.whl (678.3 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

toml_rs-0.1.2-cp310-cp310-musllinux_1_2_i686.whl (707.6 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ i686

toml_rs-0.1.2-cp310-cp310-musllinux_1_2_armv7l.whl (729.6 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARMv7l

toml_rs-0.1.2-cp310-cp310-musllinux_1_2_aarch64.whl (627.6 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

toml_rs-0.1.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (465.5 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

toml_rs-0.1.2-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl (492.0 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ s390x

toml_rs-0.1.2-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (475.3 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ppc64le

toml_rs-0.1.2-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (418.1 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARMv7l

toml_rs-0.1.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (452.1 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

toml_rs-0.1.2-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl (492.0 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.5+ i686

toml_rs-0.1.2-cp310-cp310-macosx_11_0_arm64.whl (422.8 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

toml_rs-0.1.2-cp310-cp310-macosx_10_12_x86_64.whl (442.8 kB view details)

Uploaded CPython 3.10macOS 10.12+ x86-64

File details

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

File metadata

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

File hashes

Hashes for toml_rs-0.1.2.tar.gz
Algorithm Hash digest
SHA256 af4eb16ffb47bbbd540685d4924e3a9673bb8c02a11ccc9fbe9f95f7b2087e04
MD5 371bf35f779d2598417367f6b0a6e111
BLAKE2b-256 c019763b5dd6a721210885bd168b07b4cd6cc221b698117c7341ccb8facf3a74

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for toml_rs-0.1.2-pp311-pypy311_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 69d7c8471da5e1f200310262eebb573a795cde70bcb2afb8bdcbcaa88e7c9d67
MD5 f0eae6317b8779733dd07cd2358b4535
BLAKE2b-256 9554341335140c007eb1706df80ca9576c77c6825b585879b6e80a71ebc2ad30

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for toml_rs-0.1.2-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 beec57e2d085282ac94d4d892a8cf007f44ca7cbf401758544d64932bb0de7b6
MD5 a3a683cf41d587232316d010a231b1f8
BLAKE2b-256 579051b0e0a0d81b5cc36804aded4a48dd31d501a9e2b23ed4fdc722eac2fec5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for toml_rs-0.1.2-pp311-pypy311_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 b8889a31a49a077cf365cb0cd43b690cf05c0ac55f1244440ab6fb0caa323d7b
MD5 2ecb4a65f84b03bb18026bff99dd4003
BLAKE2b-256 c8103d06f363cf94b12d3b66e36a762b94fed6b1a8f9f1b48305deb63e18d4c5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for toml_rs-0.1.2-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 b3b639b60bcefe7a92cc290c6eae907fa8da15e002c7e5ae249adfb7bff09cbe
MD5 bcf00f50b4ad7eac4ce665c846fec0cf
BLAKE2b-256 eed949abb05319a3fbed9b31ae8fdff0d7146aa193c9de516661e2efc4f61cf6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for toml_rs-0.1.2-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 caf476cddff3c392b1b0f447a8c3938ef2aa41ea074e48a843d4dbf0dab657c1
MD5 90e8708071d490d4c362ba58e93b3b1a
BLAKE2b-256 0f7a22b338860f92d5d46785192ffcce1d7feaf805d7c3a37e51c075949b8d1e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for toml_rs-0.1.2-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 a1928fb02ce0f2677b85d1a0a7965159b143e31afed6f71f202d1ee569ae6f42
MD5 3ab940cb3008582b57c2bb927b206cc0
BLAKE2b-256 7b3d07e463e6b8e991f622d13a1c26d160c14d36e879fdb3e81e34bbeeea2a05

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for toml_rs-0.1.2-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 e84f54641f04628a251e6a0006484ac56521b458b5199c2fb30b0cb0e7a4f2f7
MD5 20ccb5d390479447b572958e7ef4c186
BLAKE2b-256 9bff40a2e00959d6531b6eb2f2bab9a35c62e73e7c3915ac96dcb347c1959d8f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for toml_rs-0.1.2-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 305c8f3f911a3dd4c5281ba818948ab4533b67cf6fcc5c0dd573e9a274b6da42
MD5 f08c40bfe490e9952e83d606f28508a9
BLAKE2b-256 19961445b4092f5bc84cefa76454e8335ef627ae3c5e7625296955d21528d3fc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for toml_rs-0.1.2-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 f121519040a5c6b8e5bcd95f4a1ca9cb8ef12124788480e524a5f570836d80e8
MD5 e307093b45b2153c759a237424707d57
BLAKE2b-256 8585ba0bd74329f1dd41ed637a317be4a35494ab92910c3264c300ebcf5cce75

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for toml_rs-0.1.2-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 8424485c5a72531d504a36de3b69f087457acd7e57598399d779e18bfe1ccaca
MD5 d14734b19980d9f6a1ebea2aecb51dde
BLAKE2b-256 77dd0e2262336871d3696d1f0df366eea50138c12487af8f4fa2c8242938258e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for toml_rs-0.1.2-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 ad1e3520ba42785e06acacedd61900e7a1a1ef03fbe3e4eac64b7c8546163572
MD5 02fa27371d988837774ece14e839f5a4
BLAKE2b-256 ca8c4c0f0fa8d358bdd57b9dfafc1d1cc6b46b4aca4f27cebdacb8034992eb02

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for toml_rs-0.1.2-pp311-pypy311_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 617616c0a08668d19978b8b0f658509f0e5bce22550e7d05b662c14273d37a5b
MD5 c2ea471554a65f43c2acdbc4591e7b41
BLAKE2b-256 985f5d790b58434afe02d318807207c434508bd88d6b2650a590f77a56baa2e6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for toml_rs-0.1.2-pp311-pypy311_pp73-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 dcf202978303a7107efe9b8e2d6fdbbcf7fc8328b6de583bbc04b2870f9bcb08
MD5 1a08adb71ce7bfb8e48bbaaafea16b86
BLAKE2b-256 e106aa12de811d17b1da609397f87112408f72f444a26415fe24831ff334c7a3

See more details on using hashes here.

File details

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

File metadata

  • Download URL: toml_rs-0.1.2-cp314-cp314t-win_amd64.whl
  • Upload date:
  • Size: 368.6 kB
  • Tags: CPython 3.14t, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.10.2

File hashes

Hashes for toml_rs-0.1.2-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 605eba9e3e2531d8741b6d528781ab24856e9d92d8f7e028248523826fcc7aaf
MD5 c7fc8e33f369c0f7694a0e3e8689f358
BLAKE2b-256 c916f116bffb457f81986cc5b66380d5ef2acfe0d9c43814ce18e3e4d71f4f38

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for toml_rs-0.1.2-cp314-cp314t-win32.whl
Algorithm Hash digest
SHA256 5579bf1d543018cd7f6639dc2700fe08624308fb7f73bdd4042f7686e0184a46
MD5 b8eed28e97a1075db98e9492acec5171
BLAKE2b-256 05684ccee72c6d626059083f2096ff8a5b3e654744e02e4827320f4e9e4a73ed

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for toml_rs-0.1.2-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 7ed831e57f41e157e6ff441381cc532d0b105c4095c182f857b38e0016b1af77
MD5 a13a3d503383e53709ba8e8438b671d6
BLAKE2b-256 417d68e00ff192fef0336352963f409d654702d2f3145011fdb6923b1826301b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for toml_rs-0.1.2-cp314-cp314t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 5a2193959fa49ebda448a09d1f3e62810646737129c086cf4d6422cb4003edc7
MD5 f710149061f035efe9d68f22bc079b46
BLAKE2b-256 2b3166da01d373d3590eebd15201452ab4704c499523e18ef2bcdaca5009f36d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for toml_rs-0.1.2-cp314-cp314t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 6512856936c5d4d6c9fbe574249090fdb57116c7a86ae9de7e061953a096ad6a
MD5 0a668874c87e0b79bb190a5abd885ef1
BLAKE2b-256 c25f216feb3a8c3305a7cd03b9739baa4ea37aef8226105a0d7e6871b83c443d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for toml_rs-0.1.2-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 da22b3df9ce9b4120d1434d788224d89746e318d8547931b40196f177172bcf4
MD5 cecab9b3ba4e40a2fc0a1481fff06509
BLAKE2b-256 a360e164d5e8ce1cf3630098baf001b05af930c1ce9adbea5d0014b0f70cfedd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for toml_rs-0.1.2-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 06beb091271cc3897b5f5739618a61385cbcfa69923d4bdd3fccb15a54c67206
MD5 8bb46a5e70cc67f7632cdcf868f00981
BLAKE2b-256 1ce702e522f8f73bfb5683073c845efeef80760c8f38378fd4d4f10138973fbe

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for toml_rs-0.1.2-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 c181bfe54cdf9f9102515ff86ad51d07792bb19b810dcf3603963016d27b823a
MD5 3a24233e4202856a390970dd2d4971a6
BLAKE2b-256 b61b835e45c1802b1570aaf5d59a39df15ec86915940c51bf3cc9798300e4125

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for toml_rs-0.1.2-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 555e807f8924ae15997bed3aad43e177fabbab2f8f6af9dc1eac794471302098
MD5 ec8be1a81ea58b81a1721d7333c257bf
BLAKE2b-256 47875c58c1066099564f75988490c3a1de2c691aa1283ce49bfbcda7c0858108

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for toml_rs-0.1.2-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 bdaab84d0d602a6193729d9d7ad0ff2d4251c89185546344b498fb32846c8868
MD5 ec69025feb1baf04097a2bdce55b65af
BLAKE2b-256 f07061b4ce2ed77459fa1f3cbea65dc4ca7f36a2846cd2d7aa3bd9a68d09007f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for toml_rs-0.1.2-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 55f86bbd70e8b624579edacb20fcef1b5197646995763ad7dd8035adaf0c7889
MD5 f96c5ee4035e3cb21473ab5433f90657
BLAKE2b-256 4bf891e301b5cd493915b54e6e92e89a98e1e8f4175a2d1fab4a2e5259bfc9a4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for toml_rs-0.1.2-cp314-cp314t-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 acc580da53a603b7ab95e753a4af9e4cc943769f1f1b8882ed1af11fbae276b5
MD5 d1706f80e836242233808768c29e96c0
BLAKE2b-256 87f07766f9fd2e5a66df5f40bc1a6f1f77479d62a2756ac6687103c5a062d189

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for toml_rs-0.1.2-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b2035f5f50ef7485b0dd49f5b7b678b59b7bd12034bef1f6a5989f9ef68dfe15
MD5 d9ff4498b28c74396052caae633ccc62
BLAKE2b-256 a4347ce4df78296fc21ce7033a0ae7344d84622d7fef59459c81045311ec0b25

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for toml_rs-0.1.2-cp314-cp314t-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 97627ff684ef2e2fde44bd662e9a8a56ff6237fc3a8edcce0771d4a426095789
MD5 008ca2cb7857e8e7fc074f46de5d5250
BLAKE2b-256 547f2c2152021b1ebb2aceb780ead6aebe2d36ad45ed8b85610c913f3f37f480

See more details on using hashes here.

File details

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

File metadata

  • Download URL: toml_rs-0.1.2-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 370.5 kB
  • Tags: CPython 3.14, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.10.2

File hashes

Hashes for toml_rs-0.1.2-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 118f04010b85817db773b0e2b1348b36241cb3195e0c0e1e097e0fd9b6da78e4
MD5 62c282a94a3f805573dc061d698fb35d
BLAKE2b-256 0d19399596d70dd5fb5652599dbf7acf9579523ac0ab2bfce9b0e06b7fa73332

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for toml_rs-0.1.2-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 c3a1d9c613af55dd8d78d53e2fede2789234b2f5d5a78f1365f8d147484c9a6f
MD5 54c3ab60896920bacce956e5c7dae735
BLAKE2b-256 890e1fe82a5cbcdf1973c3954ab08e4e680de4e5e9c909f5d332d78d9604cb22

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for toml_rs-0.1.2-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 abf63ccee2cd1f119d3776e24b440085a5e4905ea2a211e10c8f07037b53c86a
MD5 6518c632c7715cbd3c1ea40445d8a81d
BLAKE2b-256 740528ddf3f8a296d82bdeb80ddc3cd8765079d55dda4065f78611042eb278d2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for toml_rs-0.1.2-cp314-cp314-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 131427cbd959648fddd4fa21eb6a28c1d81262f23c5779bbdb694997d603f6a4
MD5 c642d93a59bff8b094ce83087f77b1be
BLAKE2b-256 11f4bb8f8d7af73fef4693843c10e73df7e12e48c0668a9a3bc42d3e7ef0d518

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for toml_rs-0.1.2-cp314-cp314-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 f5503bc6db5b268ddc47c9e5d15567af92d18a7beecaa09b7cbdbc96e3fd574f
MD5 9b297773fbe7502266ed8df1eb2a2167
BLAKE2b-256 e9d6a7309c01b79d33d88b19546b1b748484c9ea431fd23a6d8f8702a4739f46

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for toml_rs-0.1.2-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 de53a1d112c3380c7bfe548aab2225288f22ad60e531e81af5dce7305ef11cfa
MD5 a8f61d28c738b88f9e08b402ecc32230
BLAKE2b-256 86320fe5b1ad19a4d3c373c1f08e21df217312af97806a20f138fe7852c53a42

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for toml_rs-0.1.2-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 1df742c21ca4d2632e0a21b1628e8a06572b6a6859e877f7cce6db3ba49696fc
MD5 f06ab471dd97b4fd88be04413fe44f45
BLAKE2b-256 9248ad0d4cd22b45b2925fd87a7b176d4315e2ad826309f5a498e0b0a29b1298

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for toml_rs-0.1.2-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 4e73596cb520d86e1b6f427b7a0ed971b417f1c143ff79b77d6e627a8d3b7cc4
MD5 e670712b6dacd7ac6e69dfd5435c7cf0
BLAKE2b-256 b900b9eb62659c56922a88a168139f223461dc576644e5307170be36a9dbf0f2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for toml_rs-0.1.2-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 59ef3fd97a629724466d142a076ec3374a4c9900184ca26d424d767d2183e9c0
MD5 0b9e391ac870f3ddab9e00d19535d4b3
BLAKE2b-256 da5a23926df95bf1aae83cbde77ac50899c9f66cca2a0c11e4db0058ddfff22e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for toml_rs-0.1.2-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 5ca98c612a5770a6a59fddfbb318e9d22dc223f94ad73227ca96151071586977
MD5 de5e914125aa6c45bdec1a3b8684dd1e
BLAKE2b-256 b0b1348dc15b4c0506698b5b998915f6ff8edffbba13766f74cb9287c3d4b382

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for toml_rs-0.1.2-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 9dde5bce1f6f521809295ac27139287d0f950e2614dfbef2547b0c9960330a81
MD5 c48a75ae785548552ad65a3eab7a60ee
BLAKE2b-256 63db6ac218e7d507e659e62931eb091974df2eb2e2689797869a9489f0afda4d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for toml_rs-0.1.2-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 462c19f6bdebede0ebc83d92ed122f80ac8d85d27b9054a1c2d833445781f8ed
MD5 8b3f3a87c854c5f53f505ae137dd760a
BLAKE2b-256 e40ebcbf8a3e22deea850a45ffc30b5dafff26a94d70592469d8a78aca79002f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for toml_rs-0.1.2-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 712606019cfbf4a832a8221b66bca4630e2d779243fcfe2d477f5845a21af236
MD5 a3684e0841c9931ebf5a892dd6c6bc44
BLAKE2b-256 0090fb075452e0cfc6cc94605daa7c78cbcabc184305603481db512228ed266b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for toml_rs-0.1.2-cp314-cp314-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 5f796ed6b689825348e283af226542303759be75ac5d9e8bb141db2f736b5d5e
MD5 8011a2922a45e466785faaf8f1cf3718
BLAKE2b-256 420984c5ea15beb851025e1d9f926e442955fb497ce232e51752154621e3194b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: toml_rs-0.1.2-cp313-cp313t-win_amd64.whl
  • Upload date:
  • Size: 368.7 kB
  • Tags: CPython 3.13t, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.10.2

File hashes

Hashes for toml_rs-0.1.2-cp313-cp313t-win_amd64.whl
Algorithm Hash digest
SHA256 e16259433982cc901cf1fc887085a477aa5c1c3ac989f75ac9e63e96168163b1
MD5 0b3a772a2120881c9a2628d469bf25ae
BLAKE2b-256 2d1e121e728333c5be50173f6c38dcc266f4a06c3be3c9f6ee46001a141790da

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for toml_rs-0.1.2-cp313-cp313t-win32.whl
Algorithm Hash digest
SHA256 e1d18ced140a43b88f702d1989fa6178328c69e24e3f20eaab858a0f724fde29
MD5 05f528401cf6006c50fda71fd15789ac
BLAKE2b-256 4c9c3761df5989037c806889456df53a49c8efe24c8220c4c7a4c5a22b371548

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for toml_rs-0.1.2-cp313-cp313t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 40164504ee823ac37dfda1f9c10377c186d9b51be39e8e19046e8e416294249d
MD5 e19617bc88b4d5ba90564d800fcf7109
BLAKE2b-256 9790cb46c27289d8856e8db49d36fa47cbdf4147b2cd26f9626b55c7ef8d49ee

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for toml_rs-0.1.2-cp313-cp313t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 09323f8e5caf13dfcd0c4cf8abc52f49f9d4a2ee2cc3fdc8fdb2487aeedfbfb9
MD5 ece912db9c3f5115b4228231a354f339
BLAKE2b-256 11588a637b5778e662ecec4344976c0ed429d4d8092f7af64ef0110d0d997852

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for toml_rs-0.1.2-cp313-cp313t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 2ea4d039b99415a6447c67e117f4b0ae39b78c1f73546512f5058707fefdfcd9
MD5 4977d6d8e23b2ca7a47dc9893b6a53f3
BLAKE2b-256 d91b6ea049ddc11fa53b28c43d3aca18ffe7abdc9fbefa7a60b0706cb0630dce

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for toml_rs-0.1.2-cp313-cp313t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 0ab5129d066d4477af08fe4f06218f9a351afdd6c9325334bf8f3dcbb65ba19f
MD5 6a5a3c5399298170e6c8f3aee8424692
BLAKE2b-256 8e43ec956c06e67602e64df2ee7f709d90586015951ddd4a4b300c41de3567f3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for toml_rs-0.1.2-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 dcb4eec93fb20ad70b83326635179d4060220266ecddc1201dd809c4e53423f1
MD5 d76e7a4faef8972998daed78dbc38abc
BLAKE2b-256 336d1ec74d02286b58ba671aec95c483393a6080a96a9f8e7bd7057782d7d666

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for toml_rs-0.1.2-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 33522db98b49bd93bedadea5029c775f68eb2e19a35a50519b7e36ae9e79b468
MD5 a3bcfaf2a030e53ade66d1ec4a925cc3
BLAKE2b-256 bdfb96bbf95ad9a367458f3ff2353a671a36ed2c63c40d2b52438604c519cde5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for toml_rs-0.1.2-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 c0b2710bee76d07264b0b69f380399578b7a8b40a0a363c401f3327cd9228352
MD5 70ae47bc8ac3de966685a9918a265e3d
BLAKE2b-256 fc5c23cc04184bfd14c50c77c8a6a366f27cc60778e75cfac43f7388d5b80593

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for toml_rs-0.1.2-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 ccb77000f7b55c5557e53cc74bc060e928993c4cbe73b78ee7750a350a0d5c64
MD5 3a9f91602f3afe7b3eabe6fb35af2d48
BLAKE2b-256 6a2e98ec4fd0e1478a1f83fe48ab0f249b0e714d411a4de6c5f1009c0f39d46b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for toml_rs-0.1.2-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 8bcdd936a451c1592f5a8b73d270c0a95aebebeb5a9725d63402244892f4e7c9
MD5 7ffbeb2ac0ac61bf98816c1b72c25661
BLAKE2b-256 54aa780cfeb63011883c9cd0244329615ce1e38c6e550e4de96d4edbb5ce9cf2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for toml_rs-0.1.2-cp313-cp313t-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 4ada0c7a5136b4012e178fdb6e5266a160f52d6a8895b463a530b23a956d1802
MD5 ee4f81ec827511fe7b48e52ec63e9389
BLAKE2b-256 161bfcca6e7721c92940fcf0a30fd0ba9d157bcc2d156423ec885b473603eb35

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for toml_rs-0.1.2-cp313-cp313t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d9f2d0bf7dca5206691ec8f7fce7390b21de74eb39762259e15c79939eaf45de
MD5 e7581802473d613f35eea1bb2fae7b4f
BLAKE2b-256 479f345ce46e875fc3039372e046a13ba6e85ffa2c0e279fa4cf53af209947dd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for toml_rs-0.1.2-cp313-cp313t-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 ec03d7d6569fc5649ecdbca4c7858cbe7712c1435c5dec314d1b186d21a36e40
MD5 281d4912ad4ad78601692ad20c42cc67
BLAKE2b-256 7dfa68b5c284125e83b5c889ce819654a1a59ce156100942c105ebba25bb3068

See more details on using hashes here.

File details

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

File metadata

  • Download URL: toml_rs-0.1.2-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 370.6 kB
  • Tags: CPython 3.13, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.10.2

File hashes

Hashes for toml_rs-0.1.2-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 94121ef55889e5a89d805208eee11f2a5214f866c9782f121e2d9e0998fb4cb2
MD5 228b7b0cde67ee8ef97fdf35687a2056
BLAKE2b-256 fc847e12e7029ce9e746f9488c37fe1d262ce0cebe76f5214e160eaaffcdfe35

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for toml_rs-0.1.2-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 d28d037d6cb1a24f4a2a1b16dd92de25a0759499feeadfc290242416ed9ae7f4
MD5 d74bd29af8ca53f21a4e8a79fd515203
BLAKE2b-256 0c5c87879b5de0db7a6122e86d69684529365a7fd267fc22307b77683f50ed07

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for toml_rs-0.1.2-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 c09fed09a62b851e7f411c296d4faba82985335c35c96084b7c8f76476447b82
MD5 73685cd9121593b8ee6b6600e6260f05
BLAKE2b-256 be71c69a4a0107311cba12012518f8c6a5dd15ab8e9b5142e8eb41fa3504c001

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for toml_rs-0.1.2-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 93c8407cd6617c7ece013eba53655a2566e36420bb03806c041636beb6ecbbca
MD5 791cde2fc5504a91b25609e1b8f8a5ac
BLAKE2b-256 99d40bb8b215490fdee18c496b156106ce45090a9c03d6f7ef51890bbfd95565

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for toml_rs-0.1.2-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 c2f5d4142f331da2a09f2a5c42761b7c753eb49e88bbf6533814abc6be03c056
MD5 8cf6451360a9ba778cce78c98b968a7e
BLAKE2b-256 a5853275b32dc512f579ef2fa5264d57e867a8d8f25bcac16fbb507c9c7d6bec

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for toml_rs-0.1.2-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 9fd615cd4907eac5c7fa7825c7b53b956c993bcabefbb32f1a366a99c3fb2ff4
MD5 4cd69c749a2580ed4f29a5b10dd8ba05
BLAKE2b-256 642ed90852e81eb61ed803c5f13003c71a5f3d29410a579638f51d9e102e6aec

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for toml_rs-0.1.2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 87faec04170f3b62b58debd5b06adfe2a307efaecbee47f35b567d8fbab7aeac
MD5 e29d39ed0ebfa8e3ec8e5922f4987ef4
BLAKE2b-256 816b76fffe894744d1334c3a6cfaf61e2ac2cfed3c8634b13c5cdb65da83a97d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for toml_rs-0.1.2-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 dabc6656ac1cd6649c5b283adf6fdfcf24e41be4145ddff9e0fe0e57773c67b9
MD5 c1b97f0b7c103bab9fb7f1bf92ecad8f
BLAKE2b-256 a406bd3eec48ffc2aacdf2ca0b7533a797b64498bbf826ed9359885a2da403bc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for toml_rs-0.1.2-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 c1ad5e4a3fc8a5d2e1caa9274046b28a37a1837f7df5cbf30496bbeb58a5fbd9
MD5 9ab0f7e9e9e989032552043e97e03ea6
BLAKE2b-256 200d5abe1376b749f5b6de992b829db66f3860e409bcc5333b3b2dcd64ecb42d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for toml_rs-0.1.2-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 fa3f938eb73eaec2fc39a7bf1d73917d034edf91d0831a33d6a533ce10870843
MD5 57270b75a358e19a9a29efec2eb620a4
BLAKE2b-256 ff68e35bde6289463a285653ad452150301824321b80415d1c2a0b70d50e0bc8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for toml_rs-0.1.2-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 4fa53885efcf247bc1d08a83cb31ca1d69aa071120475ed86ebd4187b231e9fd
MD5 8fe8be3701cbcfef9557f6440b3c21cb
BLAKE2b-256 e3d5ac7cc1a2aa8c302d8f23612eb1eaf78e79eb889d0413078dd45f86420e7b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for toml_rs-0.1.2-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 9f730ca382e7dc7d9e8ef5992e4bd2abc4f5ba828950ea2dd9c264272b36f8ab
MD5 e00b959640f05fda2009de2cc518cb88
BLAKE2b-256 1bdafa7ed29bc349e6b9e3dfaee72544755ed856efddc7687c8e1176abab9b83

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for toml_rs-0.1.2-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 6fbbcfc40e3e464b7cdf992659652f0447b30a4804626de4f7a9d572a488c30a
MD5 7bd93c6dbbc9c87e32663ccc92eaed72
BLAKE2b-256 40e8e61ae588d6124351a2b3c809decef0a4f37f9b469cfc168c054a5f7c81d4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for toml_rs-0.1.2-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 14c576eb80d69519c07103c3e27c1c9fafec02b439833c48cec39d9b2377893c
MD5 fa0e78af774cd051e55a6e7efdc1a031
BLAKE2b-256 cd194197b13cd80247a333648777097062b1700eed789823f2aaa515b9b1ffb2

See more details on using hashes here.

File details

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

File metadata

  • Download URL: toml_rs-0.1.2-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 371.1 kB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.10.2

File hashes

Hashes for toml_rs-0.1.2-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 0884e1b7113e1afe941cab22168f6753d9df72af8ce3756c16992d491daff502
MD5 f15987240106d14430de6b95626826a6
BLAKE2b-256 a597a9b46c0f32c29f2ccc7a7dc9111e8ee65d2a022a1203a742087c0bca94bf

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for toml_rs-0.1.2-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 efc81983122b5994b15872909407ac4d7ecfcb7b6f17d0cb4546a529533a2394
MD5 ff865fd194cf922263d143cd14cb549d
BLAKE2b-256 0897bea607521f04a54e1992bc64c1733ec5d9ac61edfa8968872876aa0c6127

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for toml_rs-0.1.2-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 7efaf407e0c75cda22eb486037de6b9bc4ea78e89a1958d8dac49caa496b516b
MD5 de068b7767bbc4679e477e4b74cecc73
BLAKE2b-256 dac166c0d90f33e07aa8c780ca8794e14356ccb1e93a723038998893589073b5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for toml_rs-0.1.2-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 77628d9d10111d1a9f6f0de4b0d5e9d1b97b28316b643620aefa0ad91b53d283
MD5 d0876aa6428487932722975a9086adaa
BLAKE2b-256 79e1e1f2c610517609173cc476138ef27572df2f504b98d89cf262ac75efbe48

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for toml_rs-0.1.2-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 aa0eec2b9b72280d6791c21d08707859cede3837e2c278151b085326380d5269
MD5 ac4272282ab68161765ee26acda06d6d
BLAKE2b-256 e48e2784a22a2583cb28c290865b9073543b7acaa0dba56814e6282a5fdfce5d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for toml_rs-0.1.2-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 b8ef33cf662c835a23ff8a89543923cfe4d16278ec638d18eb3022e2048fc166
MD5 4a4e56c9d02c0ab8b81fb045b504f612
BLAKE2b-256 33eefeaeabe3a9ed1ac4fab145b2342bdb506f8b7fb9a1a8e3cd5a5a06181d1e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for toml_rs-0.1.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f66d934bd16986275993c06138660c931dff657aa68d8db2fccabf43dd826e07
MD5 1ab60ff5fd1ea2ed7ee8c9f533a5a8e0
BLAKE2b-256 c0889ecb147c7ca9bc241a79cbe661c425b8bbca795fb31ae5da45ed261e2dbc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for toml_rs-0.1.2-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 44a56c1f701e58fb6105f9cd77a44c51ca4c89437242bd9489ea90c56b545ea8
MD5 1c29128af156a543ed05c0bf360b2324
BLAKE2b-256 184c9089d24a82b24b46e87e88e48f8f44a213bfa119ad26c54f583ebf770fef

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for toml_rs-0.1.2-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 54dfa75a963ee064e4c515bb5f390e620fed331d2e8098997f23e8f99af5d09c
MD5 ddb0c5009081dc18e1f90660cf5616b9
BLAKE2b-256 d05f62b9318c06fc659c3c940471ace374118fa29c611da75f4ece5ef146a410

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for toml_rs-0.1.2-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 a66688f36d64f613469fb592d587ee9ea1fedb4b9d50ae491bcffa17bff813b4
MD5 fe74240897defb2f51e6004763d196b3
BLAKE2b-256 b02aa2ea8908c5f77a2ae3bcaab216943efcb3fbb70dc717993c108adc44d078

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for toml_rs-0.1.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 a80ef724d4f32c26a1e94461145ed7af489cdaea16bacbc5c37ee7968a0bcae4
MD5 4f5e035c9735d239778307a08874d6b4
BLAKE2b-256 a84b9ac745dc5ffc74136440dde8ab66bc50a767ad55b6ae6d50f262d966169b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for toml_rs-0.1.2-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 8f4cf1257be4db6ca9e89c21861d9cc57fa785dc8336b210ec75c24d33d22c35
MD5 b813375299b4f7cf6ee4810bddd15734
BLAKE2b-256 6d6e3d11a2b6bdcc22679f888f82c42ebe49cabbd445c9f2fdbc934159ee29f7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for toml_rs-0.1.2-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 1bbe72799f4cd23b8ca2a66a2c4cd4f681be01370b0e7ea8e09da0a77665a83d
MD5 6e54ad885fa5b746e6714ee8b9c416a4
BLAKE2b-256 cef949092e0f14decedbce15408937891efcb903d0131b74b60a4d1404da01f1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for toml_rs-0.1.2-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 4db8c6a27864309d308139694073e9d3036552e092f2f9268652831de5de0503
MD5 16ed7fcecbed749b7437a2fff5d47b60
BLAKE2b-256 0583014123c691d433ca49cb7badc703b91d4d24b26c1d13c2c1bab22dc7ffc6

See more details on using hashes here.

File details

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

File metadata

  • Download URL: toml_rs-0.1.2-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 370.2 kB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.10.2

File hashes

Hashes for toml_rs-0.1.2-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 6dc37abce541923863285807ba8c32606b18b189161831aa7dbe39134126da74
MD5 91ba351249b9f395526c5eb2095fc0e5
BLAKE2b-256 9924d6d3787574448ecc5f208f03774a2384b73e9c0d4b6ef41c0b558bcc42f8

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for toml_rs-0.1.2-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 66a8f1dd80667a91fb983242fa919d64f06318a7d838903e666ec60bbefcffb0
MD5 41436c12aac9235ba3cf9e6b1c685a78
BLAKE2b-256 a28ae9d31212d233e632e87427ef8c0046727ba065b4fa84677792eae0502736

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for toml_rs-0.1.2-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 2bb0c19cdb0d6971bc2b8766f2117898ff3796d8ac796216a76e9ea560cf8f39
MD5 cefd1bb716190f30e63ec1adba4201ab
BLAKE2b-256 6ee008b7623bf053f0f2ec618d6319103c86a1b6c423365d5ce43100b808cf94

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for toml_rs-0.1.2-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 0f4b0dd2d328033b8b2f870fbdf431d59f6b286db8c8a0abf61c6580ba6cecca
MD5 34169cf46ce0d26c08982dfbd637582b
BLAKE2b-256 a33ca5f5b15327238ccd3fb494e8197701dcfd19b0a96e9908c1c64527144877

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for toml_rs-0.1.2-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 246b0d0f8ff141fd14501801f8124c3eb8fa39bb78f721c42ca8c684cf40fec1
MD5 0e35aa403dbb566b481974a9cb51d86f
BLAKE2b-256 24c82cb31dd1d3d383f39440930f19c1603072db8a341e9217f94155e9273717

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for toml_rs-0.1.2-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 0b1341a4b2b09578668307d2edd47cca545638b2a5117565801b9f504b6b83da
MD5 0b11a11f854fe3c89719db8649831a29
BLAKE2b-256 1224369f5f8bfb44b6aa716ab040722f587682e1f45a19540c9ac34c519f444e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for toml_rs-0.1.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 528a19cf9c0314d9451d91c72e63ed7ff8b464080acbc86d8a34696f3be867d4
MD5 1c4b6169d64a171c2784275dc884e9b5
BLAKE2b-256 c0d2d5f070a87009a34b5468f9206b2f74de76f3b62ac8887dbbd9b45aaa11e0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for toml_rs-0.1.2-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 446cee34b70e66492adda0644b483f3bcdf4b8fd6a484ce950e033ffc6a09a26
MD5 1c3a091ec5c6778bf5cc994f95684ebc
BLAKE2b-256 96d63ff84a513b83fdaa0b741b0b4caa6ff089164a266ce85e55cab21f7e60aa

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for toml_rs-0.1.2-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 a845f3ce5a7c79552cb1542d7d5215e7f586083ccbafcb8bbdcee93ff3c6cf63
MD5 1cf117e70701766331b60645794533c3
BLAKE2b-256 4a872f02ea8d9aae2d28902489404c5b58f401c52c44cf94b0f465c623710c46

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for toml_rs-0.1.2-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 5cfafbb19f8f30a7c398e34d8afac5b0206649fa7a07e96170f406f9b7529522
MD5 4f6a43c9d30a69e109d18b0090e84f40
BLAKE2b-256 7c33eaf5c7c8807832323fd899b39ee9371ee8f33b4ee88354ebb1cd81f40a8b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for toml_rs-0.1.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 83fdc672d6f8b182c9461ddb2ba1a9f56e85d2dccff7bd87361188018bc840f9
MD5 1ff8ceeba7d9563388e7847555437f0a
BLAKE2b-256 e326ee67a5f685f94ef29a75fed3422ca82867e8b6af5dd160f650c205dab8c5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for toml_rs-0.1.2-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 558cd338c0539deb1a89f0e50b6733e6deeb382eef4535f3f948e98c01f3db22
MD5 b1638399e4151ec2ee9f8d528a067229
BLAKE2b-256 86897042e81da0f5a3d7f6030ce492b51b0e203b8d08bef6f0243f84d5ba378e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for toml_rs-0.1.2-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 99ce38b3fa025bc04186001da926a73e3498058e350580d9fab33c61002c0816
MD5 f74a5a57bb0a3ffb65a7cda8bb6da90e
BLAKE2b-256 2919fcafe8bb0f9c1c6713bceb818930dbcae5700bb931833897dd28fea3895a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for toml_rs-0.1.2-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 5122fd9c9d41432098c9e97732826aa21ee96250840bd55a6da54df2375e1664
MD5 98a5cac3ee151169a99c22b68649997c
BLAKE2b-256 d12a47083ea39d56b2292ce81244cf74ae9163d8e23a279823cb85ade8c09746

See more details on using hashes here.

File details

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

File metadata

  • Download URL: toml_rs-0.1.2-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 370.1 kB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.10.2

File hashes

Hashes for toml_rs-0.1.2-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 e52549b2fc8bdd33f0ca441ea82db319b136f71665f7f0a5a7adfe08f54b5aa2
MD5 92b79b2678662aae0910e671a52976dd
BLAKE2b-256 930c5d4d5eb7c1b07531cdb9d6fae0e7f057d083e3f5914dceacaea44df942ec

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for toml_rs-0.1.2-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 ffadc2b790c4fb5e1603be6e23a4ec319c1a9bddb435c45eea6cc52fbd2e105e
MD5 a5afa930fea813f693ff316b0a724c7d
BLAKE2b-256 8fa16260d6b8e1050ff1e57a4fd0cc32e000ac97975c1f4fccf30b222b2ab61f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for toml_rs-0.1.2-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 81e342a6f43b19c8920ec4ec452c344b5e826106c14676fbca0486a7a85bbb55
MD5 03e41e58684aac3da565fdd92c4598b7
BLAKE2b-256 2f4844e3feff879d1a38aa1760e696b7bf7260261f288456e0bce95a5a026c7a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for toml_rs-0.1.2-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 2c144ecb4cd1bbcb0269a98c7864d977d986f323bc9753613d01a89d328f142e
MD5 4f596de1513277695606f45bee2a7908
BLAKE2b-256 344aac25e9c38592f79f4256d0d1654df3465d47c09f6cadb5cab433fbd1e623

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for toml_rs-0.1.2-cp310-cp310-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 8b55ddbb767f1161d828d30fffe21afbe9d6c5e3f5493cf7151c1fd48ef91e2b
MD5 61285532821d94b768df9681b125b82c
BLAKE2b-256 08bdf3bb29ebdf3ed07d55d2d10cbbfbb952bf058dd70231d3002b3943fe566d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for toml_rs-0.1.2-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 88cc4e8c6d2178ce567eb5d2342dd27d4277b0b6cd85f66a56fffde7f25ebe73
MD5 6c35967222917bb8719a6a824d9e6db6
BLAKE2b-256 a77d1cb328a9b09d12f897bc912f9cae14216ad203d4b4a403bcb33380b08432

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for toml_rs-0.1.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 d01afe5fc5d16f5c12c851680aa2ad7f8a2ba1ffb1b76911daa1443fd1ed3684
MD5 bccac6755247ed94a763c4e4705a9d9d
BLAKE2b-256 2dde35e70e4e2981ce46e02e4bfd67dc1a532778faf7de2168d7224e42876341

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for toml_rs-0.1.2-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 3c2b4e8da71d5bb0ad1b3d3f1fab5593a4df4b638d11ccef4f17b1fa3025aaba
MD5 a44bfc3d7d4d7ab48c51d99f8715f2d4
BLAKE2b-256 3597c50243ec2d68ca19de58dfed17598c04bf43df6545a696c1d1111de98562

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for toml_rs-0.1.2-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 09db75954fd5ab7c044fb809539ea7e049653080d651bfd1851431ab681a7a74
MD5 d5812d33b3e1a8d699fad62b4fbcd5a8
BLAKE2b-256 eb8f58ebee735821dcbf17edc86354b0e822f56f298f6ea1e1ffa8f752677d66

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for toml_rs-0.1.2-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 167d7eb16cf5b42f00e804272b42ecaf81cebd8ea5f9b798ebe4ca48efb6ce31
MD5 5f66510f30fcc792f856f978c53044db
BLAKE2b-256 6fb93f94339b3037da7a9b5612250bdef806f32dad90e41a735055ee5f826eff

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for toml_rs-0.1.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 b61f0d8ae6264b005de58b16a18db58b6132a09d80dd8666c74ba598bfcc0347
MD5 7a59bf5005474284bcf891b1760b9f3a
BLAKE2b-256 7bf9a6f07244c2d76fc111fd6560ea7cdfd90665f3fcc23e4892f15946f1c65d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for toml_rs-0.1.2-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 45cf832c53313d2ba24596e4fdf51e617e02bde6ecc10efe71dddfffe6a6f19e
MD5 e09a34fca67cd10a5946f62a26a5a1a9
BLAKE2b-256 9b26f5608962d4c5ed0bbf0fd86008c3c61492c9962b1a056b43ba8be1e6cc2b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for toml_rs-0.1.2-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c679c698a6ac4026da2f55221af0b96df776a4a527afca3bf4034d86dd72f55d
MD5 5bc218c1d15229f2c7984d6c46c5ecec
BLAKE2b-256 7d45adce4605ec8b8415eff1e55127d51275ff78b613ef0482091dfb52988a25

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for toml_rs-0.1.2-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 a9838efa99f8df81a7ce584b30393c2f34079066dedb48dcd580d0c23885234f
MD5 fe5ce871b8aee4c9e81fc4f46ed483cd
BLAKE2b-256 2008a1c728c570141d394d2d267d37d3a0e0e79e12af3791fc1092cc34448cad

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