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

Note: TOML v1.1.0 allows parsers to support integers and floats beyond i64/f64 limits, so the behavior will be the same as tomllib

  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.2.0.tar.gz (90.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.2.0-pp311-pypy311_pp73-win_amd64.whl (390.7 kB view details)

Uploaded PyPyWindows x86-64

toml_rs-0.2.0-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl (700.5 kB view details)

Uploaded PyPymusllinux: musl 1.2+ x86-64

toml_rs-0.2.0-pp311-pypy311_pp73-musllinux_1_2_i686.whl (728.1 kB view details)

Uploaded PyPymusllinux: musl 1.2+ i686

toml_rs-0.2.0-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl (748.0 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

toml_rs-0.2.0-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl (649.0 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARM64

toml_rs-0.2.0-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (488.0 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

toml_rs-0.2.0-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (522.0 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ s390x

toml_rs-0.2.0-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (494.6 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

toml_rs-0.2.0-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (436.6 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

toml_rs-0.2.0-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (473.1 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

toml_rs-0.2.0-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl (513.1 kB view details)

Uploaded PyPymanylinux: glibc 2.5+ i686

toml_rs-0.2.0-pp311-pypy311_pp73-macosx_11_0_arm64.whl (442.3 kB view details)

Uploaded PyPymacOS 11.0+ ARM64

toml_rs-0.2.0-pp311-pypy311_pp73-macosx_10_12_x86_64.whl (464.4 kB view details)

Uploaded PyPymacOS 10.12+ x86-64

toml_rs-0.2.0-cp314-cp314t-win_amd64.whl (387.3 kB view details)

Uploaded CPython 3.14tWindows x86-64

toml_rs-0.2.0-cp314-cp314t-win32.whl (359.5 kB view details)

Uploaded CPython 3.14tWindows x86

toml_rs-0.2.0-cp314-cp314t-musllinux_1_2_x86_64.whl (696.5 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

toml_rs-0.2.0-cp314-cp314t-musllinux_1_2_i686.whl (724.7 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ i686

toml_rs-0.2.0-cp314-cp314t-musllinux_1_2_armv7l.whl (743.6 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARMv7l

toml_rs-0.2.0-cp314-cp314t-musllinux_1_2_aarch64.whl (643.6 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

toml_rs-0.2.0-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (484.2 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ x86-64

toml_rs-0.2.0-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl (516.7 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ s390x

toml_rs-0.2.0-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (489.5 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ppc64le

toml_rs-0.2.0-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (432.8 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARMv7l

toml_rs-0.2.0-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (468.1 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARM64

toml_rs-0.2.0-cp314-cp314t-manylinux_2_5_i686.manylinux1_i686.whl (509.9 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.5+ i686

toml_rs-0.2.0-cp314-cp314t-macosx_11_0_arm64.whl (438.4 kB view details)

Uploaded CPython 3.14tmacOS 11.0+ ARM64

toml_rs-0.2.0-cp314-cp314t-macosx_10_12_x86_64.whl (461.3 kB view details)

Uploaded CPython 3.14tmacOS 10.12+ x86-64

toml_rs-0.2.0-cp314-cp314-win_amd64.whl (389.2 kB view details)

Uploaded CPython 3.14Windows x86-64

toml_rs-0.2.0-cp314-cp314-win32.whl (361.4 kB view details)

Uploaded CPython 3.14Windows x86

toml_rs-0.2.0-cp314-cp314-musllinux_1_2_x86_64.whl (698.6 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

toml_rs-0.2.0-cp314-cp314-musllinux_1_2_i686.whl (726.0 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ i686

toml_rs-0.2.0-cp314-cp314-musllinux_1_2_armv7l.whl (745.0 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARMv7l

toml_rs-0.2.0-cp314-cp314-musllinux_1_2_aarch64.whl (646.7 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

toml_rs-0.2.0-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (486.3 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ x86-64

toml_rs-0.2.0-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl (519.7 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ s390x

toml_rs-0.2.0-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (492.1 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ppc64le

toml_rs-0.2.0-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (434.2 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARMv7l

toml_rs-0.2.0-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (471.0 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARM64

toml_rs-0.2.0-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl (510.9 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.5+ i686

toml_rs-0.2.0-cp314-cp314-macosx_11_0_arm64.whl (440.3 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

toml_rs-0.2.0-cp314-cp314-macosx_10_12_x86_64.whl (462.6 kB view details)

Uploaded CPython 3.14macOS 10.12+ x86-64

toml_rs-0.2.0-cp313-cp313t-win_amd64.whl (387.6 kB view details)

Uploaded CPython 3.13tWindows x86-64

toml_rs-0.2.0-cp313-cp313t-win32.whl (359.5 kB view details)

Uploaded CPython 3.13tWindows x86

toml_rs-0.2.0-cp313-cp313t-musllinux_1_2_x86_64.whl (696.5 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ x86-64

toml_rs-0.2.0-cp313-cp313t-musllinux_1_2_i686.whl (723.9 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ i686

toml_rs-0.2.0-cp313-cp313t-musllinux_1_2_armv7l.whl (743.0 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARMv7l

toml_rs-0.2.0-cp313-cp313t-musllinux_1_2_aarch64.whl (643.7 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARM64

toml_rs-0.2.0-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (484.2 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ x86-64

toml_rs-0.2.0-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl (516.8 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ s390x

toml_rs-0.2.0-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (489.5 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ppc64le

toml_rs-0.2.0-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (432.3 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARMv7l

toml_rs-0.2.0-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (468.2 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARM64

toml_rs-0.2.0-cp313-cp313t-manylinux_2_5_i686.manylinux1_i686.whl (509.3 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.5+ i686

toml_rs-0.2.0-cp313-cp313t-macosx_11_0_arm64.whl (438.0 kB view details)

Uploaded CPython 3.13tmacOS 11.0+ ARM64

toml_rs-0.2.0-cp313-cp313t-macosx_10_12_x86_64.whl (460.8 kB view details)

Uploaded CPython 3.13tmacOS 10.12+ x86-64

toml_rs-0.2.0-cp313-cp313-win_amd64.whl (389.2 kB view details)

Uploaded CPython 3.13Windows x86-64

toml_rs-0.2.0-cp313-cp313-win32.whl (361.4 kB view details)

Uploaded CPython 3.13Windows x86

toml_rs-0.2.0-cp313-cp313-musllinux_1_2_x86_64.whl (699.0 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

toml_rs-0.2.0-cp313-cp313-musllinux_1_2_i686.whl (726.3 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ i686

toml_rs-0.2.0-cp313-cp313-musllinux_1_2_armv7l.whl (745.1 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARMv7l

toml_rs-0.2.0-cp313-cp313-musllinux_1_2_aarch64.whl (646.7 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

toml_rs-0.2.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (486.7 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

toml_rs-0.2.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl (519.9 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ s390x

toml_rs-0.2.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (492.2 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ppc64le

toml_rs-0.2.0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (434.2 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARMv7l

toml_rs-0.2.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (471.2 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

toml_rs-0.2.0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl (511.5 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.5+ i686

toml_rs-0.2.0-cp313-cp313-macosx_11_0_arm64.whl (440.3 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

toml_rs-0.2.0-cp313-cp313-macosx_10_12_x86_64.whl (462.6 kB view details)

Uploaded CPython 3.13macOS 10.12+ x86-64

toml_rs-0.2.0-cp312-cp312-win_amd64.whl (389.7 kB view details)

Uploaded CPython 3.12Windows x86-64

toml_rs-0.2.0-cp312-cp312-win32.whl (361.6 kB view details)

Uploaded CPython 3.12Windows x86

toml_rs-0.2.0-cp312-cp312-musllinux_1_2_x86_64.whl (699.5 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

toml_rs-0.2.0-cp312-cp312-musllinux_1_2_i686.whl (726.6 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ i686

toml_rs-0.2.0-cp312-cp312-musllinux_1_2_armv7l.whl (745.4 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

toml_rs-0.2.0-cp312-cp312-musllinux_1_2_aarch64.whl (646.8 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

toml_rs-0.2.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (486.9 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

toml_rs-0.2.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl (520.3 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ s390x

toml_rs-0.2.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (492.4 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ppc64le

toml_rs-0.2.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (434.4 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARMv7l

toml_rs-0.2.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (471.3 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

toml_rs-0.2.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl (511.8 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.5+ i686

toml_rs-0.2.0-cp312-cp312-macosx_11_0_arm64.whl (440.6 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

toml_rs-0.2.0-cp312-cp312-macosx_10_12_x86_64.whl (463.0 kB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

toml_rs-0.2.0-cp311-cp311-win_amd64.whl (388.7 kB view details)

Uploaded CPython 3.11Windows x86-64

toml_rs-0.2.0-cp311-cp311-win32.whl (361.5 kB view details)

Uploaded CPython 3.11Windows x86

toml_rs-0.2.0-cp311-cp311-musllinux_1_2_x86_64.whl (698.5 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

toml_rs-0.2.0-cp311-cp311-musllinux_1_2_i686.whl (725.9 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ i686

toml_rs-0.2.0-cp311-cp311-musllinux_1_2_armv7l.whl (745.8 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARMv7l

toml_rs-0.2.0-cp311-cp311-musllinux_1_2_aarch64.whl (646.9 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

toml_rs-0.2.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (486.4 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

toml_rs-0.2.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl (520.3 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ s390x

toml_rs-0.2.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (492.5 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ppc64le

toml_rs-0.2.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (434.4 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARMv7l

toml_rs-0.2.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (471.4 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

toml_rs-0.2.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl (511.2 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.5+ i686

toml_rs-0.2.0-cp311-cp311-macosx_11_0_arm64.whl (440.9 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

toml_rs-0.2.0-cp311-cp311-macosx_10_12_x86_64.whl (462.7 kB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

toml_rs-0.2.0-cp310-cp310-win_amd64.whl (388.6 kB view details)

Uploaded CPython 3.10Windows x86-64

toml_rs-0.2.0-cp310-cp310-win32.whl (361.9 kB view details)

Uploaded CPython 3.10Windows x86

toml_rs-0.2.0-cp310-cp310-musllinux_1_2_x86_64.whl (698.5 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

toml_rs-0.2.0-cp310-cp310-musllinux_1_2_i686.whl (725.6 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ i686

toml_rs-0.2.0-cp310-cp310-musllinux_1_2_armv7l.whl (746.1 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARMv7l

toml_rs-0.2.0-cp310-cp310-musllinux_1_2_aarch64.whl (646.9 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

toml_rs-0.2.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (486.4 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

toml_rs-0.2.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl (520.4 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ s390x

toml_rs-0.2.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (492.1 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ppc64le

toml_rs-0.2.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (434.9 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARMv7l

toml_rs-0.2.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (471.5 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

toml_rs-0.2.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl (510.7 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.5+ i686

toml_rs-0.2.0-cp310-cp310-macosx_11_0_arm64.whl (440.8 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

toml_rs-0.2.0-cp310-cp310-macosx_10_12_x86_64.whl (462.7 kB view details)

Uploaded CPython 3.10macOS 10.12+ x86-64

File details

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

File metadata

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

File hashes

Hashes for toml_rs-0.2.0.tar.gz
Algorithm Hash digest
SHA256 ef35a3d1e41c6fadb494eb9707abc110989565eba9dd180cccf0dcabb271ec81
MD5 b73437362388063f75fe279e0fb0423a
BLAKE2b-256 da1e89bbca28bcdb23f716afe5cdbb499340813535eb925d74ace5df13b771c5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for toml_rs-0.2.0-pp311-pypy311_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 0ad817ec8aa4560022a724037d86a894a534c7f194a6b19383a10f3488a5091b
MD5 67e643604f132d6916ea273509560bea
BLAKE2b-256 8d361b5ba9ce1049a57290ab528da6f18b5b31fbe866769743878068890ef2e1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for toml_rs-0.2.0-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 0bd4df6402faf005753c6d165f0920f065d312578ca1a248c816009440d1126e
MD5 c466fc602573410eeb33dfcd240c7af1
BLAKE2b-256 316b46e1c55395fa8703c7e9befa8e4262a843e191957411d68fb0f554c54f57

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for toml_rs-0.2.0-pp311-pypy311_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 5f68942405b2b8e246b484a6879e045d40eca93699ad84418244bf4a35bdfce2
MD5 19b78f032b33b2e91332fdad4a2a7598
BLAKE2b-256 8daae98782126c52f16e41754ef9f2089e2e9e2ec9031224c59c76102dea979c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for toml_rs-0.2.0-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 5d60ed23682ad224e54e3066467a7ac94bfd1d044bd6d30bd903e89376ad3ee4
MD5 3375c0df47f020c2f50fd09a7d2aa520
BLAKE2b-256 7334ad561e45eac79213aebfb484688a98b7c9edf9a361234d4460ab1ff9479d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for toml_rs-0.2.0-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 b99099e2935626879eb0a3ebbd1beab9ffeab8c422bea413fe65ed453bcffc8e
MD5 1dd7ce02c0bfbd0dc5c2754a846b5870
BLAKE2b-256 5dfc3ae823c9b247b6d92400be3d37a1fa66b74f4aaf50956efb002ade637bcc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for toml_rs-0.2.0-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 c1eac2c2649547539421cf3d914df9fa62ff88a3637b1ac151565e2ff9dd5bc4
MD5 86035044a80ef47b90a9a604a1e49817
BLAKE2b-256 59adacaddb76fd26fc7cb6dcb6b8808ed7a7618e213ae38621b8445c4c938cec

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for toml_rs-0.2.0-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 b0de308a80593969fc7510de2f397d8e718eca8ea313c295725e2ed684238699
MD5 e22530cfdc508bc36154287bf7018a4f
BLAKE2b-256 2d589b512e9f1f91a0518586e67625fe2c3872e089e93c285f173f1d8d87dacf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for toml_rs-0.2.0-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 9fab7c46a5fafe0c6449bb9fb955fe072236b48d25307a9c881509570d410655
MD5 469bff7c98fc92d1dca4f42d7432aa58
BLAKE2b-256 aae0f5d5aba5d17a74f1b26103a122c6002e75f2affe2e34d64f65b7ff121d1f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for toml_rs-0.2.0-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 61aead7ca73317c842701131a21bf12e83237d0ecd43c7d1893eb2cad21c0dfd
MD5 94ffbbdc5e643aa3884f758c5e2ec8fc
BLAKE2b-256 42da0c2dafe95c4e2bfebb1ce9e7f5fd7fcfeda3ea9b051af8c7fd24f5229f74

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for toml_rs-0.2.0-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 029626ad92eba7476714bcd35f905235a6d7ab140c93efaea4ab0e09dc7f3802
MD5 a266c8ca3ef2b593b62bf6d4327eb6b1
BLAKE2b-256 91796d777787094db84ab80e494db34b3da3cd37fe5dd1a1f3e323a7b81e145e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for toml_rs-0.2.0-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 d74b6b9c443e6f008913572f4dc85a53d4de5177be47a62ef60481db8a1566d5
MD5 2bf79d5d0425b666f31b96ce55b19bc5
BLAKE2b-256 b4fab7be244311eb21f936192f6785143457d8305e896101da87c055a3677456

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for toml_rs-0.2.0-pp311-pypy311_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f3014a488deb2c2dfaf501c6fcabe4c5ea629a9c5391195a58d1cf8df433d854
MD5 6d5834716a78fbaeef1095f82b934281
BLAKE2b-256 1bd9c6d46c529899236f478298e2ca47ee43ba68c519bb31fc73d33c96bb89a7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for toml_rs-0.2.0-pp311-pypy311_pp73-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 c0f5bd8752932cd78483ddbc36c08a0e57749072165b07e1fdd20bbfa29a4410
MD5 d580dda1b7360d44b52d2f623f19241c
BLAKE2b-256 5123340ded4669bde19abec4fb29db75b4addbe528a28fbb0caf615109982056

See more details on using hashes here.

File details

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

File metadata

  • Download URL: toml_rs-0.2.0-cp314-cp314t-win_amd64.whl
  • Upload date:
  • Size: 387.3 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.2.0-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 b0cde923c4b0dd579466f6fb869b504eb3fb58bad59809347e98d8c8625f3be9
MD5 3d029b0cf17eeeba4489c5a977726d65
BLAKE2b-256 b6582527c097e0306287c6c2e215afa232b33d2df5edeef8928c4623df79f983

See more details on using hashes here.

File details

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

File metadata

  • Download URL: toml_rs-0.2.0-cp314-cp314t-win32.whl
  • Upload date:
  • Size: 359.5 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.2.0-cp314-cp314t-win32.whl
Algorithm Hash digest
SHA256 e0b01d848b06a03289afa86fafa4b2abb7122dda9aba4384e3b062add153ddef
MD5 4493815add0483cdfd0cdbaae324b45c
BLAKE2b-256 73a7335947ee50df6ea3cc4e7f55a7ffee44d8664ca8820b36c84ce894e78494

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for toml_rs-0.2.0-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 f0995dd94563153a4e70d419c445b804a9183029357b53f90c9ba70b2f50fe08
MD5 7bf66900d861d40f5473111aa5e7c928
BLAKE2b-256 44204877265dc3d0ea9771e79a7dbb83f68bef1ce8fa139f6c4193a49c9c2cc4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for toml_rs-0.2.0-cp314-cp314t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 6d6624a88eb145987f20f445f7a555488cef4c397fa3e89ac19d3312b102d168
MD5 5b234322d6ea55fa6f693fc1c7b23696
BLAKE2b-256 89c8f62e5963f13abda6e58802042e8e221fec5576a41a1e652a5cf10ac569fb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for toml_rs-0.2.0-cp314-cp314t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 b54dc43f5a5ccd1a2e117c56c31347dd088543b2a2e948bb8b48de93c183a573
MD5 49f4cf5c7463628291a20ffcc21e2ac0
BLAKE2b-256 98c4ec86282bd332e2a1ca8b19d3722f681a6157c1d3f171ee58cd97d557a47e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for toml_rs-0.2.0-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 5c295053bc8e73719520fc2d8a81d23d8c19ac0796f95d1cf6c9f4fe602ebc1e
MD5 71c9a431b0813ea8b74167bd35867f10
BLAKE2b-256 8fbeab3a2ebb6c29161691fd9bf8bc775888c4e973f7b440a2ee7f39b62d60fd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for toml_rs-0.2.0-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 4d404529244daf902d9ddeb552965b9982f0eba24e518157eb865af2dde65c94
MD5 7baa7806a6d0f3396b9f13aaf3335cb8
BLAKE2b-256 beec0f27152dd12f4d256aecc9a83bf798937d3a2e7539c9992c1a4cd8c60399

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for toml_rs-0.2.0-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 331d2ccd9199b275e3ee7b865c2b8552a761be6c0afc52af90a3f181d0335673
MD5 25962f64b46fdde455eed2bab5427acf
BLAKE2b-256 e59120e21a2b30d5c5dedce0ee92297349a4f11a301f3ab892ce4b571721ba1f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for toml_rs-0.2.0-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 8000a4e62b1bc3acc895930b9bb0cd39d8597080f1a6c8f3f95e3739a3e80968
MD5 bf0a26970b6356d56334e80562009a09
BLAKE2b-256 9140fff2af538dcd1220684e66ea3b5459672797933e288404fb270c14218111

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for toml_rs-0.2.0-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 8da38921651d110f4b2c0abf621142a90964a6e1e1d8d2dc150418fb2043017d
MD5 e8638cbfe206099d9ac6094d0881cd68
BLAKE2b-256 b246dfae1ebe16dc553b85703388c84310c03f5e1f5db88dd7d7a313b4e22cc7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for toml_rs-0.2.0-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 42d40a7d40d8f15a516b0fabe7b9b4846e8839a515ecaf25f93f6a85fa6ffdff
MD5 400458a474cfd86c7c8872e34ea3b25a
BLAKE2b-256 f66a862aaf06681c38441ef37c70b2c20f4badab0e37246bd4e2f483f8ce13ae

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for toml_rs-0.2.0-cp314-cp314t-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 cfac96c42e2547e90fc4e53d9b927c9be31d0ee30647d1e2b632eca85c55f02d
MD5 e71fe2ff406a50ca1b443fc36f4d223b
BLAKE2b-256 6bb5de240156ebf14b2954eb8a77bd9f690ccbb15273c346bed530822085c8d3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for toml_rs-0.2.0-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 004f4e5d3620f7984d47e5465c355645e48e2e8cfceb8fce60637d6730308fec
MD5 fe88d738ef5d182cd8b6b8eef1957ad1
BLAKE2b-256 6c43c9f469c4248a8e819238583a4d37a6a351b6cf70a7c3fec8cccf44ac9d50

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for toml_rs-0.2.0-cp314-cp314t-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 792f1401101e847e88f6f7823114fa6eff76e299ab1030332c7203245ef869f0
MD5 525bc350572d92d16d4739b0ed1df1f1
BLAKE2b-256 df429030368faa679373710558a9df1cdcd851ca3a07aa6f7f7f34e841b0b349

See more details on using hashes here.

File details

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

File metadata

  • Download URL: toml_rs-0.2.0-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 389.2 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.2.0-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 acf7d45077933d7508068c3bb3453876cb7831c2c14a92b2ab831d208e608d8b
MD5 5d14711c44887e6ed929a9bae919349b
BLAKE2b-256 9c5d288fa05c7aa1b2617160463e0bbdefd2613f2324250a4fa53756090e9a81

See more details on using hashes here.

File details

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

File metadata

  • Download URL: toml_rs-0.2.0-cp314-cp314-win32.whl
  • Upload date:
  • Size: 361.4 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.2.0-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 90891845ab426dec864357f8ec083e2c79e718a20f04e4e081c5c9817be81397
MD5 efce6fffb4c01b99466e48d020c2b85a
BLAKE2b-256 34df21fd282b459b082ebd4379ef80122da9981a94cef13a4ecad786057a09e6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for toml_rs-0.2.0-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 ed09cbc76f05bc3812de49e0b4aa8811eb6f19e9a65d4062246289fc63a7f629
MD5 888074b37d259da195ab707ca7a9944c
BLAKE2b-256 b86c8434c62c17d19dc274e07a29cd631ca95b7e996d3e8916a7569609c02200

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for toml_rs-0.2.0-cp314-cp314-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 e47d0575146afb8f87f645d309c08328111b8efa94357cd706dfb0473f085abe
MD5 9aa03ff2a50419be5014fc19f1c6adea
BLAKE2b-256 4204735dd7fd866fbf2a433f29b6e4c0d323139c3a939659a8726511cacb453d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for toml_rs-0.2.0-cp314-cp314-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 b0a724841fa4d0cd976de0b96b8ea2b22ee10d3b380c40637fe7989340bfa8b0
MD5 e785e1f6556df24c5ad667a18c866758
BLAKE2b-256 2837af2b33cc015ef052faa84944994b117008465312cfb2af95d5c21f6e4ea1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for toml_rs-0.2.0-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 8aed4f2b04233296f7e6da68bd50e6ac4201bde14afed843dd3256c57cec4722
MD5 b9a0bcbc47da4596118231d7ed9f164d
BLAKE2b-256 93fbddaf12ce5a4d367a6465fde4e0af9fc67304f936c239b1811c9734a0eac7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for toml_rs-0.2.0-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ca912b808dcbc3052aec5076e1d549e09304560553066b04a17bd035ce5b3688
MD5 44c70fd56c3bb85986aa725fd7667596
BLAKE2b-256 3ecff4d59658a673af9b821250feded8bc49a554f8bb3d698cca1b10a906dbb9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for toml_rs-0.2.0-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 0e6a3117d721037cf5d2f7ab12b63e9539d7d57581d6f170a985ac0d21b46eb4
MD5 9d4e959a850a1cc426edfffd60132cfe
BLAKE2b-256 23b35534e15b98db0d6f1ef141dfb7dcc0bbe42104dec9ae5149a2b7ee1672ce

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for toml_rs-0.2.0-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 7b8bfe819b1d5b6ffd759ae6b27440faaf0fd7fb22197fe72373f87290d96c5d
MD5 d6660334224bc70c7965fa02e5a80655
BLAKE2b-256 88159120a9b5b3d1f680e663a4751bf5b5f6b595e1b345e59f7ef8dafa0a674a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for toml_rs-0.2.0-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 99fbdd4b4c69ac9686a61b5a2fa235c59f0a52cb3c9b7dbf20b8166822412cee
MD5 130106abb94adb6c38bd63d59271544f
BLAKE2b-256 a67e1ee5a4f9c879296ddc352abab86bbfdbefe3545aac3bd966e7bfe402df94

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for toml_rs-0.2.0-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 497f8f3d07bfc28edfcf976a207f6018aebf3e7f46109365326d9c080771622c
MD5 bcf17012720ffdbe2a9e50f128f8a053
BLAKE2b-256 0b2bff5d2e249b52b1076e6bc52800f2b5552968779d88ff6f40b5afa0f52fa2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for toml_rs-0.2.0-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 0371e534385090094e6bf002baf0cbf7fb720d13067d66b510b3e8cba5cf0633
MD5 e17cdc152d0fbada64ee9242eac239ea
BLAKE2b-256 f0c3d245fbfa1ca559d78e3ea4740965a77fbc318963df725f82bba7e354d5bd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for toml_rs-0.2.0-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 141f6345d9b85551066226e0f9614911054b0dd99cacbf4a0942df7399cd90f5
MD5 a3e52da3d692d4b6194ea84c80edbb22
BLAKE2b-256 1e96a3cbaa492e4ecc2f3478078ad5b452fd0d7ebc2ebfed89ab3ae1efd0a603

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for toml_rs-0.2.0-cp314-cp314-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 02b85f83d0ffe5ae8665c94aa265dea6029441ec5c3ece78fddc01af0e238d27
MD5 5c8e3a874d385cb6b9633ab82e9a1bca
BLAKE2b-256 66115cb962e4496d1ba84859fe0508802e05c08ff94ba84b089b814f92bb604a

See more details on using hashes here.

File details

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

File metadata

  • Download URL: toml_rs-0.2.0-cp313-cp313t-win_amd64.whl
  • Upload date:
  • Size: 387.6 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.2.0-cp313-cp313t-win_amd64.whl
Algorithm Hash digest
SHA256 b2f8df28753abf32cb885a99e93b5d6a90fdc7a8055f6d849e19da63a1717b4b
MD5 3e669c17cfa32fa3c09ff54c3b2d3c15
BLAKE2b-256 9e2eb8e124d08766662aa7c6b54e392cd1bbcf4469eb9d1fc21644ef5860fc9c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: toml_rs-0.2.0-cp313-cp313t-win32.whl
  • Upload date:
  • Size: 359.5 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.2.0-cp313-cp313t-win32.whl
Algorithm Hash digest
SHA256 f248080a22a56e4479b71e52f37647c13b88c2a0c7e4a1a94ae200a6789110da
MD5 3bd20951415f145994a293b222a40be3
BLAKE2b-256 cf2225996137ce8b01cdf99667fa0e11ab5e77cabcf05823659fe3aa508d7387

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for toml_rs-0.2.0-cp313-cp313t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 e452ca26b12c2ee7411d0fed9fe6439e907c20824821f6290d9f5d5e041d7811
MD5 c45c940a9d88dee17b0d6604f59c21cc
BLAKE2b-256 87b4ea62e9b4ee10a751d6d5ac4d8b286defdde1cbfaf5e6973ee0d24db9142a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for toml_rs-0.2.0-cp313-cp313t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 d706835e6d20016ca48872ebeb08b4ab071773febb4251c2551e463d69d4f2b1
MD5 959b4aae2dd9ac543c3fe568896c136a
BLAKE2b-256 82817d34c50c4b695e87889dc40b783d60cafad133156512d8e47d5d7b819556

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for toml_rs-0.2.0-cp313-cp313t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 0798b21d9aa4b0fece4c1f0fa261ae7aff336ce82ee3d1224bc1355ba7e85766
MD5 e5e7d5175f2844c78c8b4c8302fb2d9a
BLAKE2b-256 d579c38ca5973b790763a1f154c06d1ba173603d5e2f89bd194512bc7552680c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for toml_rs-0.2.0-cp313-cp313t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 7c6657740e0b2401982ac28586c4a599850212aee3f7f054c6a635618ac28406
MD5 a9cc10526526a6bed95def05277185b3
BLAKE2b-256 6e49bb19a763695fe74cc6a0616d3abe79451f7d41b66bd8ef52d357d9b976a3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for toml_rs-0.2.0-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 99f7cc3d138a4c4fc49085b28407c6b18ef0a74618b2cc258079477fc7e2573f
MD5 b71c1040c08b6ce0813d39c52207241f
BLAKE2b-256 a780dd1e990602910cdc6a2fd4caa0159ffe97a42bda9ee49234d18820800e00

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for toml_rs-0.2.0-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 82357d814a193031323c79e4da00f2280af4daa63030e442a85dcc0ebfe52489
MD5 4d83d8bb097bfad530212ac0de7d1ec7
BLAKE2b-256 4b782e2153601526cd0941722436310929ce288162660feb76f80744197f28a3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for toml_rs-0.2.0-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 f6924929041889f981923c7d46a88b18647b40ebbb4431bfcd43b9025304673c
MD5 ba292b2db5d00010ba99bdf0ff18ee6c
BLAKE2b-256 441a692aecdfeadc2d2044b70d79c4c052bf9fc293197d336d64ca83a906d799

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for toml_rs-0.2.0-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 7620dd8e1f3e15bb952fff0c833a6b34a1c4abd7674a1ad1196e3f8b2db3a244
MD5 a2ab6cf86b88b5a9bc0544d2ed007620
BLAKE2b-256 cdba0281dfa0e7f357948ffa292b192211c814035e6287966afed3fbf51d588b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for toml_rs-0.2.0-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 a421fd1e1cb0e3867bcb17bdfbf97e1d8dd370071478d759e88ac888c8e872f8
MD5 f9cb291ffbf8709145afbf57d6fdaecc
BLAKE2b-256 66f2a08a0febbde50de58f5c5e3c321bf8c2561cdaa11896d76fe2fff6187f51

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for toml_rs-0.2.0-cp313-cp313t-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 69903037219065efa83bae250aba7df9c5334f95a40d3928f462234811ad4139
MD5 2955a88ceae042479dbdcc9126a9a609
BLAKE2b-256 54c20f296b412a7e4da7e1553a7b63b75e9eacb3e33ab39b1881a22a0b10e4ea

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for toml_rs-0.2.0-cp313-cp313t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ad3fe23e885602d0d0bff975aa418f3a42287e60bf75edfbe0ce599c8d9aff19
MD5 bf3cf2f76c827970eacd569605b5e719
BLAKE2b-256 c09f886f77cb7a8a729223984b052693f0e651390cc84ff04f63a9acd663bf6f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for toml_rs-0.2.0-cp313-cp313t-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 254a182d173a9ec74034971b505594464b076841ca5d76c380dd55e373ddce49
MD5 82387811327201ffc41e1a51fb600e16
BLAKE2b-256 6d3079d9e1ad5169d7bf13841157324d0a37990914b39826de3fcb26c2939866

See more details on using hashes here.

File details

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

File metadata

  • Download URL: toml_rs-0.2.0-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 389.2 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.2.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 bb370292525442a540dd60e1f16f87f3dfbb5ce719538bff287255d46838895f
MD5 90513b46b87b336b455332c6c35c8225
BLAKE2b-256 fd446d577d2f784ada062399d859e72f3aa2349c0f963bc6c12f88ba14da436a

See more details on using hashes here.

File details

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

File metadata

  • Download URL: toml_rs-0.2.0-cp313-cp313-win32.whl
  • Upload date:
  • Size: 361.4 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.2.0-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 a76daec6572a0d9326a7e8ba61f04ebd53d1a632154a25279bf31a5640eae1d0
MD5 6a068a6d4781c5318de5dbd4283b85cc
BLAKE2b-256 6722962410e347019ed37cdcaf8a8fc81badb85907d72a8ba9bad0ba4be46be2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for toml_rs-0.2.0-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 4c6fdc2ed6f48feef898a1e1a58a8a3e2a673f7205c8f6d8e4dcca4114fdc4b5
MD5 6326991216b9494721a18b78bb54484c
BLAKE2b-256 0877af616e3ca591ee8eb0c3518ea27937cded5545673581b9c4b21463801896

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for toml_rs-0.2.0-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 b920d18b66e9dd7c2bf8baaba7bba78d0aaf3b730c2d953304b7e4f61f9938b9
MD5 e8834ed076580b693ac27cdb4a43878f
BLAKE2b-256 9773322b35682de06b4a16d5e5a17c7e7e84ee9db104d6e2305dbf2c20e7009a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for toml_rs-0.2.0-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 66d9ea8b88f33795ba1f629959aa53a1816cbd39c03d8119d5ad385cfa383b7d
MD5 a3439b0b2532f70c48caabf55247e96f
BLAKE2b-256 eaa94f024cdbb1f589b2da59569666a6a4dbf0a943b3452385be184406dd9f33

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for toml_rs-0.2.0-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 e51ffe73648e47d7b2651b6153a25195005c859c3940e3c80b05fd6fa24e453f
MD5 ed43c83e4c86d103bfa1fd0855abbdf4
BLAKE2b-256 82d3cd5df7dbe8c777b7e60124dec16e9b4a79ae56116da44d8edc3c1195f55f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for toml_rs-0.2.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 8dc0c9b986ed55f1f109690cb0b09621e2e5b341a25c5c3b875ee32038c634f9
MD5 277b0783498b7945af5139cc4f95c420
BLAKE2b-256 5f3392a5bf2bce27e55167f5748742d40a8186a6931cde99e6a0ad9c6262a8f4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for toml_rs-0.2.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 666d2f8563ddaceba642a338608907d0f1fba0ba3faf184565cb327a060d549d
MD5 127a16349a2e394619b71223d73d9f94
BLAKE2b-256 6f45734c5c60a0b916b9d3d00a98643bd3f0c3638010fd2a2bd852bc6265ffec

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for toml_rs-0.2.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 aabfbb248fcccd48b5d10b9d029c6fee914fc8b5a0d9277c8d49f4d69f645044
MD5 46577da769fa2790f20810da6131ddf7
BLAKE2b-256 d94953c6926b66faf60601498c1d6aeb1490bdeac377b71403e8ea1177f86273

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for toml_rs-0.2.0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 545c763f6c0cad2f0f68bf901765baac5aef97f1d1dc5232572718ace7183b68
MD5 477547c57113ed477d79437b4c1658a7
BLAKE2b-256 388b4ce67ccb6c779826fcfc7f5cd1a078d5930c7abdde191ccc619ed5073b68

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for toml_rs-0.2.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 895526526b482bb8471e1d25649d2dd2620ebe437ccfac7ec1d4265e27ee9a81
MD5 2353d50bb43beaa26e1735f3c9cb4b68
BLAKE2b-256 9bd73aea574127947a88961c7c25f46e72198c08db2615b581e004f5edeaf1d0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for toml_rs-0.2.0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 865c4a2d39929969478d16a0dd770254ce96fde60d08531ca6ca02b81171726b
MD5 0723793456a3474568e8de10141fac68
BLAKE2b-256 56c77a98a9eb23fe6db9e0c54e61914faec8c64c6f1e61f4eb922a18851d0cf0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for toml_rs-0.2.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 3ea10c86aa0dbbf530a5eaf5f77a9a0fc214da08c81b8ac3a8a2657dc0d70708
MD5 6be2fcb59ba3bce828d406e9f81bd5ef
BLAKE2b-256 ae22e339665c3d9eeef65a19e9afaec11e36cbf3e944d407a47bdbc69b80e0c4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for toml_rs-0.2.0-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 4c9283362f7fa6324a9fd5a6fee5287078eda2533c8147c7f5f8eb3cb6275515
MD5 91f76ca98752dafa9bb5821409a5eea5
BLAKE2b-256 05cc3a8b6cd1681d4f4930ecc95603d85735c0e74dcf54a558dff527acfdd014

See more details on using hashes here.

File details

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

File metadata

  • Download URL: toml_rs-0.2.0-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 389.7 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.2.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 88101b243856ebbadc0282626557cbdf094974a3a920d672298a5c7a795a9521
MD5 25db1953287e4c9a7ce57649ba0d8f70
BLAKE2b-256 6664e75a1a9669ec1437e5c0511945a9c587f368518490aee8be24200961a179

See more details on using hashes here.

File details

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

File metadata

  • Download URL: toml_rs-0.2.0-cp312-cp312-win32.whl
  • Upload date:
  • Size: 361.6 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.2.0-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 a3dde23beee63bd2f595c8bddbb6509b410aa7c7f34c5ddf1c6af2c86272a694
MD5 0d24ac046ed5532cf56fcd248cf0a346
BLAKE2b-256 ff3153d671eecdfd3edbe4dbd3065a31386baba15811d38e7d413b2b47fd7b6a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for toml_rs-0.2.0-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 cce38b5724d71295040882e0efcc8b4ec00f37035453dfe2db4da750525f9f91
MD5 52325a269e53d832ea50e78f238b7c63
BLAKE2b-256 1bb982add94da9c4f2c89df56af36acda13824d62fe2cf5b9285e77ba4415814

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for toml_rs-0.2.0-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 1f285a4c18b2152b31c20afdf655be79c4e51b4a90fc097aeb330493781a3099
MD5 9c42465bb72452edae40064fea58113f
BLAKE2b-256 69e47a54b038f378d42eef3d219a63bbd56e1b652995e35b03f42a5e17d93bb6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for toml_rs-0.2.0-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 ec9a365efe78a0a74dbdb26e9dba5d88c8d7418e269d365ac88f04d7f1d93a66
MD5 bb8fe4a839b4e4326d49ec8ffc8c6e0e
BLAKE2b-256 34031ce1f3b97badb5868a0b5ba1e7db7d09ab7f365d5ce9585d1d368784b26c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for toml_rs-0.2.0-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 734b5bd1ee7cdbc6533a3156e1e336f86b41110aedaf055d27c5a7a52aaec433
MD5 97dfb8de634625dd3353d9543da5aa9c
BLAKE2b-256 22ffc0f37edf873fb8d05ffa129603fb0b2f86232d6b7c9a1621e6fa6bc5cb52

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for toml_rs-0.2.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 779fe7bce4e3ed47c24e89bc25e6e1f8e97f82ca44af7a8fb4f9a3abc1a2d0b1
MD5 d44525b98c98844b3f9da199570f5c79
BLAKE2b-256 40a3240807916fa1ed44502af50acfb959c09fc6415cbcac8733e80eb294aa30

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for toml_rs-0.2.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 e18fdc43d2b126e71c8bd118ed2adf6083fe65623eb5d8d1443682610aac3eae
MD5 7c087a4d420de759319d45659a27bdc9
BLAKE2b-256 b0239382c3a59b6bdc4fceece9997be594ab21c6b418452062cf39c03d047b70

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for toml_rs-0.2.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 4c46d56e6ea9711def1d29f1234f1f1f20d72d3de6074718410c59953faa2adc
MD5 d495bb9b03bcf22c5932fe76e8e87bd4
BLAKE2b-256 22d5660aa35c188bf582044c08243531859ec9bcf75b99fa222a6355a4c2f81a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for toml_rs-0.2.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 7abc427084c12534319f04cd4b1038a4cee7bf50647ddd6de7aba477909f4ec9
MD5 628ba2c2947045d71eecb82e5eacf2fc
BLAKE2b-256 69c49252079d7c5d705322662d72f8b040f5180d6e970eb1952a7d0ecc61ccca

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for toml_rs-0.2.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 560daa4d93cb398cb0d3ec398115c3088dd8f64da96f1b034420138e4fe2b2a3
MD5 b833bff8cd05ea0d3d63c43ba1839bd3
BLAKE2b-256 bcf3747b4b11698d6dbba5ef58b22fa14d2ce01193a8ab25c8ba4c5438e73832

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for toml_rs-0.2.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 9d9afacabc35f778074da7a9c491f5d19d68280239a12700ce514abba9d63a1e
MD5 51b8507267057452c29dce72bc62df46
BLAKE2b-256 6b0cf49cb77accc0a7746ef0d1598c65ff6a5ef446f499dd3ac044934711708a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for toml_rs-0.2.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 0f9941b281a80baed0802476c87dbdb7f33a6b46a6d199fe4f7cf2813961872b
MD5 b95119220168d64ec94500843ad31897
BLAKE2b-256 4aee11e0b28c9066ffab574cae2b9762c7d1066d9f39ed5445d2072131998015

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for toml_rs-0.2.0-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 804df1120dfc9d1160794f332477c5e20acb6c66cc10a25223bc50e401e20a99
MD5 dbb47909221a0de55cd3ad7a9f570ec4
BLAKE2b-256 3d98a1b6c48ac684661a2b93af46c0ee5858101196afa1e3b168be6e6606b453

See more details on using hashes here.

File details

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

File metadata

  • Download URL: toml_rs-0.2.0-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 388.7 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.2.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 1ddf0d12fcd3351a8fe934041ea1370719819cd1492a45a3004efc2a702abf2b
MD5 84636a1e4097f0e7451d196ecdee672f
BLAKE2b-256 70396fbce8c7b1f87724d9728bddc3b39c1543ee4820ca372fd8cf5ab483e235

See more details on using hashes here.

File details

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

File metadata

  • Download URL: toml_rs-0.2.0-cp311-cp311-win32.whl
  • Upload date:
  • Size: 361.5 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.2.0-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 25aecff63f92598be717ddb14623c3a083a39ea66b3282600852c12baaa15f14
MD5 3d4d5096296ce5a4153e95c68dd0cdc7
BLAKE2b-256 2a530841250b92cdcd6454873d17a1e55fdebe1c011dca7f65287a38a81214de

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for toml_rs-0.2.0-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 8307342b9b610cff23830b4ba998d819b5640e16311c3295fe35a29b262b4cb3
MD5 fa904bac62b15a473b0093974c75fb92
BLAKE2b-256 f6c16f877fb67141f920bf15ce400ec663695aff3e7f7b03ca63edda4cf550ce

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for toml_rs-0.2.0-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 472788c7ca9c8e4827c246196339c5fd9f656b567104f9fa493b8d2af95785a1
MD5 e73cf48de415332d23b6da9cd10730d2
BLAKE2b-256 adcffa45eaba05510eeb3a30cb10c357b60c7c7b69f1dede903dbac79b2ef4cf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for toml_rs-0.2.0-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 a7f9edd96b888caa9b823fe40115ef559e0fc954be68946c5e46f53e03c5ba0a
MD5 dfe9d51b91a288454548c71bb55d218b
BLAKE2b-256 e1e5ed0831f6cd3f4fa625b2a606fdc68ae2ecfdc1a50e6fcbbff9344a9fe86b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for toml_rs-0.2.0-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 0e4a5a1679b58668d5421b100a7187daa61a4b476f97d03314e8420de3546cd7
MD5 aea658b580669566b22d4f0be25e5e25
BLAKE2b-256 5478e78ede0ecc3482f9e6d4f8d0259033651db9c135a3238774ee20b6510621

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for toml_rs-0.2.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 2a805abd12dbe194e50445f17b25492fae7b236dccc0b160bc6aadf86dcfd573
MD5 45175464dae6afa4823024e4e8cf7977
BLAKE2b-256 9400e4a05c7910ca75121e1ec7e5832e142baa866c9cb1bca2ba2c25e84dcd1f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for toml_rs-0.2.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 d9c1d812ed9497c4bec253c8dc4ddfaeac85ae0e7658efe79f14d154ce49c6cf
MD5 bcb9457d1560a0e0f2caacb6e3070577
BLAKE2b-256 6d2d9e6e695b4f47bc8ab30d9ad9459c793b791d838b89fb013b0a5b99e0f986

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for toml_rs-0.2.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 df8680b746bfc6d380a11f3090c6a6e88262bdf2c46d326aaacf9f89fa56e446
MD5 27edbdde47a1d3339250c684a42285b6
BLAKE2b-256 1e10964603120bb23c60d441dc2f44c0dd4d032b8a137e7a0fc84977280fd17c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for toml_rs-0.2.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 1d48f61cd19b3b9c98e6c22da05e83024b7f5191c36f1bcdc226aecc96bb4414
MD5 f91f20efadc97eaf026dcfec3aa2d49e
BLAKE2b-256 2a7ffa725f6dd9bcf7ee1913a34733eea76dd65813f35eb0acf6c17547be5233

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for toml_rs-0.2.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 95a8463ffd23ec7e00eb22f8b2042911e7e68cb422e73c5d23129afdd1031150
MD5 1638941a6cb9cd84f7e1e10a51b56be6
BLAKE2b-256 b949755e13da40a45b4461c883d7b7fef4a7c8a10a26dbd7b7b7daf128704eaf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for toml_rs-0.2.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 f62d81270157a5da06ebfba95acf804582ddbc2137ffc11e201a44926220a20f
MD5 5474491ce63541040ebc6df667eec42f
BLAKE2b-256 be41cbdffe1f1e0dc7edd0f45e476292bc8c624a971e11262fb93a93a42d12af

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for toml_rs-0.2.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 8edb39a6605d4e71d3805309b883848c79dfafdc25dc4f809d70bef78f473df3
MD5 cc3a4a7670a48f0612ef701939e1d8be
BLAKE2b-256 e37c839997d00abff3dbf7dd80ac3eb6bf38908e582aebf4e7722a346fd7e5bf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for toml_rs-0.2.0-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 91e801daf2b6c1d08d8c5df9c9390b7383c51be63d02dff19995386371b6c566
MD5 1853df05c8a589bac5144917b84a5a63
BLAKE2b-256 b9d4e2f022473aefb52e94387afa96867c966a0cb77f6b563dfecf9170304d6c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: toml_rs-0.2.0-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 388.6 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.2.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 40d3041403741053b099f6c4f0395db5d4e8862a75a75fe95cda20ccd4933c9f
MD5 430302a8df6ff50e0d06ff7a7cfb884e
BLAKE2b-256 630895dfbd8f9829e48ca696dbf282a92cde2f029aa911e1a2761c5a5db61f1d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: toml_rs-0.2.0-cp310-cp310-win32.whl
  • Upload date:
  • Size: 361.9 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.2.0-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 a572153abfb435496b049e0da80c6477925bf92294e39306d88c3e432d353703
MD5 55e648410fbd46ccae3c3c725b2768ae
BLAKE2b-256 fe61d1ad5b39c3448d918767c387e21ed344ce2b09edb8d7090c5a2230f5271a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for toml_rs-0.2.0-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 62741cff6951d404017efbc367ce67ae0c309e73a056745d9dda9c154ed4e4e2
MD5 a3ce1f31f8bda642532762411ee7d085
BLAKE2b-256 13c73c3a90d12e7628c5314c4262188a6b498950458cb2a99c5e5b887c47125e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for toml_rs-0.2.0-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 40b246384075b7cdca64774e22692ee6fec904d8acf52f681c7a65d722aeeaff
MD5 081a15d13bf856f429a8af1f1ce905ce
BLAKE2b-256 2ec6e8c55c20aefe4d620119b11edf290fa1f6d5fea41de956d1218b47f2d845

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for toml_rs-0.2.0-cp310-cp310-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 6f9e570891a8e7ef1a0c77cba7cfece23ca08a8d0b186a2e05ded0071bb6c892
MD5 143e7902dad890098764004f95b14946
BLAKE2b-256 2b7b4244762f22c21546d96c407a27f84f896ec8efdb079d2b6e6f1615607d1c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for toml_rs-0.2.0-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 74dd2b079066ee48f444fd27edd873b13340856a2db063ace76350f19bfda694
MD5 5726ebf2641179c141ecc1e776c503b6
BLAKE2b-256 92e87b414d99c9c524b14d52bf4a952c6bc4a453210e59dbcc5d482cf5f2d065

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for toml_rs-0.2.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 19800905c64b95cd8b67d840f58d8d181328ce6421417863dfce05ea66234231
MD5 7c5dfff62d46023b55e1240e6047dce5
BLAKE2b-256 82f9e3decb1005b5b9c96cdf2e2f03598f386ee454759e1e53d43f637c94b745

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for toml_rs-0.2.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 7bc596f288f841d1830ead34ad069db5c766dd1bea1248fe1298db5a2968d4d3
MD5 40fe4688095decf15dd9e49f0501e1b3
BLAKE2b-256 32367425a15adefcdecacc63b00bc3dfc7468a310d583843f874f6a31c57e2f5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for toml_rs-0.2.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 f4ef3f7faa1f40ac811013313dcd0feb6c3b28a746e2d307aa45eeef26537cab
MD5 a64b701cd70310f77353e7a8cc6b3291
BLAKE2b-256 346da3893eaefb9a05efb7eb49c5d5a9733131e93989b4c4696cdcb7910efb20

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for toml_rs-0.2.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 e273f0b8f119e9e94a46f175b17e1ac08bd5c171fcad33250e648efb2f24fa06
MD5 c97badf67bfb9752f083601249142102
BLAKE2b-256 dfde5538b614f6ee4f2346029432d309d3d0610893442fefd2582432838b5671

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for toml_rs-0.2.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 da001b45911d76d9d9e3a926d4b19093e2f7819a72093607ab6e9090a68e2f89
MD5 1e7344b49f202150351ec40503b6ec0a
BLAKE2b-256 1ba8638d6a123a0e31685d0458fa9dfa239b3ea2f45ea83e4a2ff3289cda0778

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for toml_rs-0.2.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 9cae05e0a83f723e10993e903ddbc761a2c3816d9b56537f2fc906a421f50832
MD5 13cf254cfb5b6ce3f49f9a092cf7078b
BLAKE2b-256 3ace5fe419fac02763284ea36fa46d103440e5cebcb65f0e7e362aa67c15448b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for toml_rs-0.2.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 178c2117189aa5b953b197a71ee75ff699ad7b7f835f6cfe5a2a27ec6a73e52c
MD5 a8acf2ba181594b8510906315d243868
BLAKE2b-256 6f6e32ca68161e38ede422dc0f88f621fa4212a88a6a156ca728dd3ee3b6f1a1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for toml_rs-0.2.0-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 6617982c5d0e43d52236bae6e6f13ffc52092bc05c7c139688cf403620d7d11f
MD5 b28802d68ee65507c47b2bec48e0a6ee
BLAKE2b-256 be96725453f7bdfa699662a98e39a20813009ba70467faca012c2023eb96467e

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