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 v1.0.0 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.1.tar.gz (91.4 kB view details)

Uploaded Source

Built Distributions

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

toml_rs-0.2.1-pp311-pypy311_pp73-win_amd64.whl (396.4 kB view details)

Uploaded PyPyWindows x86-64

toml_rs-0.2.1-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl (696.0 kB view details)

Uploaded PyPymusllinux: musl 1.2+ x86-64

toml_rs-0.2.1-pp311-pypy311_pp73-musllinux_1_2_i686.whl (724.1 kB view details)

Uploaded PyPymusllinux: musl 1.2+ i686

toml_rs-0.2.1-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl (742.6 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

toml_rs-0.2.1-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl (643.5 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARM64

toml_rs-0.2.1-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (483.7 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

toml_rs-0.2.1-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (520.1 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ s390x

toml_rs-0.2.1-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (490.8 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

toml_rs-0.2.1-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (431.7 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

toml_rs-0.2.1-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (467.9 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

toml_rs-0.2.1-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl (509.3 kB view details)

Uploaded PyPymanylinux: glibc 2.5+ i686

toml_rs-0.2.1-pp311-pypy311_pp73-macosx_11_0_arm64.whl (437.9 kB view details)

Uploaded PyPymacOS 11.0+ ARM64

toml_rs-0.2.1-pp311-pypy311_pp73-macosx_10_12_x86_64.whl (460.7 kB view details)

Uploaded PyPymacOS 10.12+ x86-64

toml_rs-0.2.1-cp314-cp314t-win_amd64.whl (392.9 kB view details)

Uploaded CPython 3.14tWindows x86-64

toml_rs-0.2.1-cp314-cp314t-win32.whl (366.1 kB view details)

Uploaded CPython 3.14tWindows x86

toml_rs-0.2.1-cp314-cp314t-musllinux_1_2_x86_64.whl (692.2 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

toml_rs-0.2.1-cp314-cp314t-musllinux_1_2_i686.whl (720.5 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ i686

toml_rs-0.2.1-cp314-cp314t-musllinux_1_2_armv7l.whl (738.5 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARMv7l

toml_rs-0.2.1-cp314-cp314t-musllinux_1_2_aarch64.whl (639.0 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

toml_rs-0.2.1-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (479.8 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ x86-64

toml_rs-0.2.1-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl (514.3 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ s390x

toml_rs-0.2.1-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (485.6 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ppc64le

toml_rs-0.2.1-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (427.8 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARMv7l

toml_rs-0.2.1-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (463.1 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARM64

toml_rs-0.2.1-cp314-cp314t-manylinux_2_5_i686.manylinux1_i686.whl (506.0 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.5+ i686

toml_rs-0.2.1-cp314-cp314t-macosx_11_0_arm64.whl (433.5 kB view details)

Uploaded CPython 3.14tmacOS 11.0+ ARM64

toml_rs-0.2.1-cp314-cp314t-macosx_10_12_x86_64.whl (457.3 kB view details)

Uploaded CPython 3.14tmacOS 10.12+ x86-64

toml_rs-0.2.1-cp314-cp314-win_amd64.whl (395.0 kB view details)

Uploaded CPython 3.14Windows x86-64

toml_rs-0.2.1-cp314-cp314-win32.whl (367.8 kB view details)

Uploaded CPython 3.14Windows x86

toml_rs-0.2.1-cp314-cp314-musllinux_1_2_x86_64.whl (694.7 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

toml_rs-0.2.1-cp314-cp314-musllinux_1_2_i686.whl (722.0 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ i686

toml_rs-0.2.1-cp314-cp314-musllinux_1_2_armv7l.whl (740.1 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARMv7l

toml_rs-0.2.1-cp314-cp314-musllinux_1_2_aarch64.whl (641.7 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

toml_rs-0.2.1-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (482.2 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ x86-64

toml_rs-0.2.1-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl (517.6 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ s390x

toml_rs-0.2.1-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (488.3 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ppc64le

toml_rs-0.2.1-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (429.2 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARMv7l

toml_rs-0.2.1-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (465.8 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARM64

toml_rs-0.2.1-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl (506.8 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.5+ i686

toml_rs-0.2.1-cp314-cp314-macosx_11_0_arm64.whl (436.0 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

toml_rs-0.2.1-cp314-cp314-macosx_10_12_x86_64.whl (458.4 kB view details)

Uploaded CPython 3.14macOS 10.12+ x86-64

toml_rs-0.2.1-cp313-cp313t-win_amd64.whl (393.2 kB view details)

Uploaded CPython 3.13tWindows x86-64

toml_rs-0.2.1-cp313-cp313t-win32.whl (366.0 kB view details)

Uploaded CPython 3.13tWindows x86

toml_rs-0.2.1-cp313-cp313t-musllinux_1_2_x86_64.whl (692.1 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ x86-64

toml_rs-0.2.1-cp313-cp313t-musllinux_1_2_i686.whl (719.8 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ i686

toml_rs-0.2.1-cp313-cp313t-musllinux_1_2_armv7l.whl (737.8 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARMv7l

toml_rs-0.2.1-cp313-cp313t-musllinux_1_2_aarch64.whl (639.0 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARM64

toml_rs-0.2.1-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (479.8 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ x86-64

toml_rs-0.2.1-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl (514.4 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ s390x

toml_rs-0.2.1-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (485.6 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ppc64le

toml_rs-0.2.1-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (427.1 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARMv7l

toml_rs-0.2.1-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (463.2 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARM64

toml_rs-0.2.1-cp313-cp313t-manylinux_2_5_i686.manylinux1_i686.whl (505.1 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.5+ i686

toml_rs-0.2.1-cp313-cp313t-macosx_11_0_arm64.whl (433.5 kB view details)

Uploaded CPython 3.13tmacOS 11.0+ ARM64

toml_rs-0.2.1-cp313-cp313t-macosx_10_12_x86_64.whl (456.9 kB view details)

Uploaded CPython 3.13tmacOS 10.12+ x86-64

toml_rs-0.2.1-cp313-cp313-win_amd64.whl (395.1 kB view details)

Uploaded CPython 3.13Windows x86-64

toml_rs-0.2.1-cp313-cp313-win32.whl (367.8 kB view details)

Uploaded CPython 3.13Windows x86

toml_rs-0.2.1-cp313-cp313-musllinux_1_2_x86_64.whl (694.7 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

toml_rs-0.2.1-cp313-cp313-musllinux_1_2_i686.whl (722.2 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ i686

toml_rs-0.2.1-cp313-cp313-musllinux_1_2_armv7l.whl (740.2 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARMv7l

toml_rs-0.2.1-cp313-cp313-musllinux_1_2_aarch64.whl (641.8 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

toml_rs-0.2.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (482.4 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

toml_rs-0.2.1-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl (517.9 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ s390x

toml_rs-0.2.1-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (488.5 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ppc64le

toml_rs-0.2.1-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (429.2 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARMv7l

toml_rs-0.2.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (465.9 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

toml_rs-0.2.1-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl (507.5 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.5+ i686

toml_rs-0.2.1-cp313-cp313-macosx_11_0_arm64.whl (435.9 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

toml_rs-0.2.1-cp313-cp313-macosx_10_12_x86_64.whl (458.4 kB view details)

Uploaded CPython 3.13macOS 10.12+ x86-64

toml_rs-0.2.1-cp312-cp312-win_amd64.whl (395.5 kB view details)

Uploaded CPython 3.12Windows x86-64

toml_rs-0.2.1-cp312-cp312-win32.whl (368.2 kB view details)

Uploaded CPython 3.12Windows x86

toml_rs-0.2.1-cp312-cp312-musllinux_1_2_x86_64.whl (695.1 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

toml_rs-0.2.1-cp312-cp312-musllinux_1_2_i686.whl (722.4 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ i686

toml_rs-0.2.1-cp312-cp312-musllinux_1_2_armv7l.whl (740.5 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

toml_rs-0.2.1-cp312-cp312-musllinux_1_2_aarch64.whl (641.9 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

toml_rs-0.2.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (482.8 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

toml_rs-0.2.1-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl (518.2 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ s390x

toml_rs-0.2.1-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (488.7 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ppc64le

toml_rs-0.2.1-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (429.4 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARMv7l

toml_rs-0.2.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (466.1 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

toml_rs-0.2.1-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl (507.7 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.5+ i686

toml_rs-0.2.1-cp312-cp312-macosx_11_0_arm64.whl (436.2 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

toml_rs-0.2.1-cp312-cp312-macosx_10_12_x86_64.whl (458.7 kB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

toml_rs-0.2.1-cp311-cp311-win_amd64.whl (394.7 kB view details)

Uploaded CPython 3.11Windows x86-64

toml_rs-0.2.1-cp311-cp311-win32.whl (367.8 kB view details)

Uploaded CPython 3.11Windows x86

toml_rs-0.2.1-cp311-cp311-musllinux_1_2_x86_64.whl (694.2 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

toml_rs-0.2.1-cp311-cp311-musllinux_1_2_i686.whl (721.8 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ i686

toml_rs-0.2.1-cp311-cp311-musllinux_1_2_armv7l.whl (740.7 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARMv7l

toml_rs-0.2.1-cp311-cp311-musllinux_1_2_aarch64.whl (641.6 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

toml_rs-0.2.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (481.9 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

toml_rs-0.2.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl (518.3 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ s390x

toml_rs-0.2.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (488.7 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ppc64le

toml_rs-0.2.1-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (429.7 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARMv7l

toml_rs-0.2.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (466.2 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

toml_rs-0.2.1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl (506.9 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.5+ i686

toml_rs-0.2.1-cp311-cp311-macosx_11_0_arm64.whl (436.5 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

toml_rs-0.2.1-cp311-cp311-macosx_10_12_x86_64.whl (458.7 kB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

toml_rs-0.2.1-cp310-cp310-win_amd64.whl (394.6 kB view details)

Uploaded CPython 3.10Windows x86-64

toml_rs-0.2.1-cp310-cp310-win32.whl (368.3 kB view details)

Uploaded CPython 3.10Windows x86

toml_rs-0.2.1-cp310-cp310-musllinux_1_2_x86_64.whl (694.3 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

toml_rs-0.2.1-cp310-cp310-musllinux_1_2_i686.whl (721.5 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ i686

toml_rs-0.2.1-cp310-cp310-musllinux_1_2_armv7l.whl (741.0 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARMv7l

toml_rs-0.2.1-cp310-cp310-musllinux_1_2_aarch64.whl (641.8 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

toml_rs-0.2.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (481.9 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

toml_rs-0.2.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl (518.4 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ s390x

toml_rs-0.2.1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (488.6 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ppc64le

toml_rs-0.2.1-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (430.1 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARMv7l

toml_rs-0.2.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (466.2 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

toml_rs-0.2.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl (506.6 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.5+ i686

toml_rs-0.2.1-cp310-cp310-macosx_11_0_arm64.whl (436.4 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

toml_rs-0.2.1-cp310-cp310-macosx_10_12_x86_64.whl (458.7 kB view details)

Uploaded CPython 3.10macOS 10.12+ x86-64

File details

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

File metadata

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

File hashes

Hashes for toml_rs-0.2.1.tar.gz
Algorithm Hash digest
SHA256 ec67194448314cfd34f84746aaf6754d842017bb1490bd6555c1feb82e663fa3
MD5 58a09d998d28e8107fd35193bc3edc10
BLAKE2b-256 8763276b345da3a0b0939379a69f9bdd9a8238e7ce79cbdf6bbf5f2a14b6c02d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for toml_rs-0.2.1-pp311-pypy311_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 8e8f2fd5380ba3b69559d3852244e7f991857fd24919f820cdd6cea4c9c66e62
MD5 441890d0ea48bdfac9f04f1c2b0e8bb3
BLAKE2b-256 699656f963f80e46731fb66a59f7db78624af50aee0a47e3929b276af49bea28

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for toml_rs-0.2.1-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 567ec0c5afc14cf22a8ae79fa92cfdfc81ded700fe2c3c186648fa4315693e2c
MD5 29c932ea0395d45bbf65032adb552dd1
BLAKE2b-256 385e76146111358bb70c71b01d71f81771209b159f4c74e6b07e6b77d9d3cf75

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for toml_rs-0.2.1-pp311-pypy311_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 052bdbfef293bb07e40045a9d1ca9fdf1d6cd6a4d49f1a28cbf8c0fc2027e3ce
MD5 402704d5cd1858a30b1b884df43512f0
BLAKE2b-256 d9bf28cad8ee4fc20980f2d6a1151cdfb05284e20400c3975421e26be3671bc6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for toml_rs-0.2.1-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 3d7296adf4397c594b06f74477f29ea90d04e140b5e63ee7d7a07c5ea189b110
MD5 036d10459dba019ccd07707e70a54596
BLAKE2b-256 de9353bf8ac3bce6cbd8e03912518326a9156653d32b201ea00d7dc4e08ea2bb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for toml_rs-0.2.1-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 bc8886ce08431e196bcc30ffeb70e811461dcf032df917e4b6bc11763bea6a66
MD5 875a25342160773404276147766b86c6
BLAKE2b-256 f4bf865b96084918b5778f61a680b55b659b4b4988aa95260b7115085881b287

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for toml_rs-0.2.1-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 5efb37935a84442e1d2352ff5a7eaf1f20dbaba050a81b352bf867a3dd1b7265
MD5 50115eba6f7bf5f078d9f1c258036e42
BLAKE2b-256 dce456f2885ad7b1cf22f00f68557a91725e79ac78a67e7b2288acd59de76304

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for toml_rs-0.2.1-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 f5b3f7587ef8daffc9a446534c996db58d70cd6a5571d0554924549333b82e6f
MD5 2db035d6f1d2dafe2e9644463077f597
BLAKE2b-256 88e9c2823a11a77e61215106202ee735f3605f3599e01fff79a50268b28543b7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for toml_rs-0.2.1-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 6d907ab098627adce15d87e2f913622022de634da087f3545031d6c4271a0f15
MD5 85ad01e0ea7d736829ae886a6a627948
BLAKE2b-256 d4f822dfcbb21b75283f23f7e0c60237daa9ac68bcd7c424ffc131dd8cb72035

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for toml_rs-0.2.1-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 e084e901ed912f3ae210f6d7a71aa7678da5a00ac6d6b843d88cac872f642c63
MD5 c57568f60fc34021a435b2834e9e35d0
BLAKE2b-256 127425b76ac8e2401a37f8a02a9beb1803c14b6e9500550839a7cd5c5f23d20c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for toml_rs-0.2.1-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 fe083ddb808cf7cd42a761697c80ee69be9d9163d8a3f29432a10f68decc2de4
MD5 63df1b9aa8ef916e1f2c1fbfe8513029
BLAKE2b-256 6ef8ac3e38eed4fe55a9c442939ff0c57e9ca32bcf5dff68519b03458418a871

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for toml_rs-0.2.1-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 ffc46aff236a738aa7360aa0457dd18997aa8b547079efba6ffb0faf28bbbc54
MD5 22a1edf178c625cb82f39249911a6e3d
BLAKE2b-256 399596f27a0cf27a90251f7db61443011d379f470f4d2b9ffce43bd237f1c3b3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for toml_rs-0.2.1-pp311-pypy311_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 433921eacf6be893ade6a0f43c6f12a75756c55d7ddc856dd61e49f5a93266cd
MD5 1df6a050d494ccbcd6276a23d1e16bf1
BLAKE2b-256 57f397aecec4dab9d6286110e8fecdf7b9ea48f187fd4ac3f94aca9519334ecf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for toml_rs-0.2.1-pp311-pypy311_pp73-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 df52444dd46c44d7edf87309b2c1b5f61f3311a06af2d0ae9ed62dcc6b71fdc5
MD5 c7181f17ed7514d2ae2b8d3ad0428aae
BLAKE2b-256 7a1d5b0aba50439c4d08e6ed3d5f52431a0776d7ea5f2ecbcd5ad1d9a4c7015c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: toml_rs-0.2.1-cp314-cp314t-win_amd64.whl
  • Upload date:
  • Size: 392.9 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.1-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 a5761d89da8ac3aca1600a3f478c773e3e58cb4d4ec68c8a4eae5ea64281f98e
MD5 b76714b020a716f2bada46c63aeaabb3
BLAKE2b-256 c1581afe88c4310319f026fc0dce4dbf498512cece4b76cf02c404715ec3eb0d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: toml_rs-0.2.1-cp314-cp314t-win32.whl
  • Upload date:
  • Size: 366.1 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.1-cp314-cp314t-win32.whl
Algorithm Hash digest
SHA256 b059912bb5eec81c2258c5432b36e1410911b93dafed099cea9804184ee24738
MD5 4e052779761773f2b3f626a0df7d4a63
BLAKE2b-256 f84b339817756239486fb9136f63596040922fca8e4e885e12c312892fe52772

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for toml_rs-0.2.1-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 4170766912ffe487afc187212e97be2c84c11bb1d0e30b0dca4b2e5762232ecc
MD5 a1a8ea0a519882bf3c8d0da865d5dfb1
BLAKE2b-256 d4fea338e82ebd1ee1b3ada4f7c91f0dbac31a45be64845b47910d88a6fa72a1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for toml_rs-0.2.1-cp314-cp314t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 ab9c9c4cb7f90a967e1a9576dfe2dfcf8ef54d24d69a810c2ddd43205a599364
MD5 1e5c8d9c221c9350ddeb1cecb6eed4cc
BLAKE2b-256 574e9c5ffca612746f56c8ad8a41866be83734e0dc326a3549a68dc1c39eb795

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for toml_rs-0.2.1-cp314-cp314t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 5e0444e5eca79df581f676b065d9c52bf12073c151b3ee9491ec2d22d7ac095a
MD5 8f8fcfa3929721c001ff45119ee47f2e
BLAKE2b-256 254bfd130e744dc68a653decff18a1e078d96bbcb615b1d3d1e4f54edd777e51

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for toml_rs-0.2.1-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 e123b31addcdfa812a2fd9c203619c7cdb454a4174c3c0b6040a1ac16873b3fb
MD5 c7fa20c55232ee471701ba658b2b1f60
BLAKE2b-256 7d9e99b81c52f3c72ffd0babf6a6b02525604f33f61575cd6a864e7fcd403b1d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for toml_rs-0.2.1-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 59c02657b9e6890948d4d4697c549094d13b47eefe99444f9408f41d8244c6b1
MD5 bdec2af869f9145dd08e165380e6ccd5
BLAKE2b-256 ec13daa4a8dd333073eccca62ca6752f50c47f5b06e19c49375e20ea51b5cf3d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for toml_rs-0.2.1-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 5b2032df43f60c0e33c1cd6e79a9e560b4a83e1a559b6e634feaa75e2ffe2d4b
MD5 5eb7ba1f0b11b9090b4352c2177b3232
BLAKE2b-256 ff296bad6810b592b02e494f9cc66723e52efdf5e53508f69857bfedd512bf41

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for toml_rs-0.2.1-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 230e1dfa308fe1ceeec390ab462c4e1bf7fecc77ef98fec2523da786d3677743
MD5 6f6bc046cd05630cf850ef2e1ac9ab84
BLAKE2b-256 2fb552f355323cc6808330b51661bac9829425247207c2fca1372f7ee0488ef3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for toml_rs-0.2.1-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 168388fa6fdc26f03605a012fdf0de2d4ce9564daa24d2cb0cc00a90981a7c94
MD5 bef292d4700a08775124878e59e731aa
BLAKE2b-256 1c2f892129539c72328da8ce627b7fd4b798d05a832dcba404c87bc7e7e17067

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for toml_rs-0.2.1-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 42ef6b06649cb3ddd7e91ec33219c46ae154db34611f96cf2428d883afb90320
MD5 44fd8e8a6130b045aac495acb3ccb173
BLAKE2b-256 358f70438848943413184828e21414fa29300d312a5bbabcc64034ae2545fe40

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for toml_rs-0.2.1-cp314-cp314t-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 0e14fae8c697ef1292a38324de9df8d7018f3b7acea9455931a2691df0fc505f
MD5 1d5593bd27556fa8779525dcd8146ce8
BLAKE2b-256 6e69cc53821f5361b908554063295b367572d2cb1fc2f0ae5a15a0bdbe76f458

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for toml_rs-0.2.1-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 58d259dd398b237571d042fb217a4743697384c44910a9e2898585b4c8cf7504
MD5 b6109830297e6db738281d3c050bf468
BLAKE2b-256 6a5785e105387f14a0f3bf7ca5a74480a0b5d5231094986b6bcc94b37c32d068

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for toml_rs-0.2.1-cp314-cp314t-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 5a625f13f174598f025b5d034cf6a7fb7e490309703f821989aaa866c154f72f
MD5 b4dd505204a60aea655de21013f0dc53
BLAKE2b-256 0a4cf4b982e8463c1f1030a6db07c3891a330c645b2e20707a51bafc282d9740

See more details on using hashes here.

File details

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

File metadata

  • Download URL: toml_rs-0.2.1-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 395.0 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.1-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 e84200325bd683b1a6b25eabdcd89d3645a1cef35b482e70247b02cf654a1470
MD5 7893a0c7c82af8d7ff67609ada76ebbf
BLAKE2b-256 3884001c80ae8aec4c463bcd1a68ff2a5c8107b0e8484183b8fd750f138b9638

See more details on using hashes here.

File details

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

File metadata

  • Download URL: toml_rs-0.2.1-cp314-cp314-win32.whl
  • Upload date:
  • Size: 367.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.2.1-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 8013822e5fbce7aa329f3101358886b67846a315a80a44d1e66c18f7c70d3efa
MD5 d327cd311f8ee03409a82f108abd1164
BLAKE2b-256 738b102684c6da7c42cb32beef0ec008ccbab2725c274ceec0b21776fceb8938

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for toml_rs-0.2.1-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 dc643f797bbf6b203f8a41489bfb54a406d12100595e7afaf98df1a438b5eb0d
MD5 fd5f736255aa9d51291c7f9d005026ae
BLAKE2b-256 b8f778dd16d3e6e914d6398d50a8ed643bb75e4f7cec09415178efa4b98c551e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for toml_rs-0.2.1-cp314-cp314-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 2e308d0890e7345bcdf2fb2c9efb5b4cbf830dc5a1b96fbaa47722eb2f0f56f2
MD5 0990469cb439b0f235473e109e22ddc0
BLAKE2b-256 969868c2bd0f1eeacac09043bc6f2d6c08b123e619ea088614214ddb4b726805

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for toml_rs-0.2.1-cp314-cp314-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 5b0ad1e292857d9f5d9966f2461d2038a32303cca7019b2111d1d93656efb155
MD5 7b49fc7098d0c9d36c5c19b7ccabf180
BLAKE2b-256 70c7e40396c58e4841f8bb2b9b2bbb1ed386a34038ff9d76ce79ef9820dd2f23

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for toml_rs-0.2.1-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 c4f1191794041d626e45f8f15d94d1efc533bdfecfc02cabb066e2eb32fba8ec
MD5 d8de838b754da0d920dd091778370ce1
BLAKE2b-256 06d88df5d7d76192f1736663f66f2c2e2cbdcc578bd2ffaf40f5a425fba69c92

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for toml_rs-0.2.1-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 8a9e07b6d975640db787e4bd17c9d3db9867ab23f73a73a41a16828d74126c74
MD5 2fd49cf298b718976daa84a925977a01
BLAKE2b-256 8630a41efb419bb5872c56ebf89894c7c2f614091844714d887300e38425f53c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for toml_rs-0.2.1-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 9917126c1425ea5a812a57fc66429dc8021fc7b6baf75058cc2329eaa52c8916
MD5 5cb156b4dce9d216e83cd1a84c300b86
BLAKE2b-256 2b977890656925e0e52cf717c364204b022090515858d4123fde8f632896b0b8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for toml_rs-0.2.1-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 17742e378f6b49c8d933045d31de8fe40652bdb928c3525bd1b35acfc891e9c6
MD5 efa199c1f8020f080b32a381e72222d4
BLAKE2b-256 e7eb6cd61062b7353caed4697cdab183ae14f1e61c86a517c3e8d635248c3e95

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for toml_rs-0.2.1-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 fb4af1a2d7a64c309bef839fb9404b1eefcf10b72bec376b1c7c3ad094070d57
MD5 f444e58d04400da182bc54704b0dae39
BLAKE2b-256 89a6ca2e7f3b7f06e590c3a23a2e65c7ba86569356b8bd12272848cbb77570ff

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for toml_rs-0.2.1-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 c645d50737823234cae2a491c7aeab4863b018baf3e99ca1534529350e0e18c7
MD5 e4eae7946e8f4bd66e90d360fbe12a49
BLAKE2b-256 666a198502d9cb4d5097103ff6e31f2f09673a9ca08b70f9c4905f7e2a52f3f6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for toml_rs-0.2.1-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 4bc00fc86929343b407326fd98ee7478eb5e04167ba9d6ae5c918c0fa3e9f307
MD5 589d464962ac353b813ccaec1adb4a76
BLAKE2b-256 272969ab8231f9c6f8cf42a897ef14ed1bd2ff10fbf0255e2f49aa744e1ce338

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for toml_rs-0.2.1-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 1ed7060fe1866a97f33789779dab6dd9af34cbbabbc151475bd861c026167f45
MD5 85bf7e8d13fa8218ebec15fdcf80a419
BLAKE2b-256 c34edb10355754151f43904425ff32ab58a3653562de674922c16a4719ce6f82

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for toml_rs-0.2.1-cp314-cp314-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 ea8e81556984174c779944390de1b6166cdbcb07d5a5b31c95a2f760114af7d7
MD5 75a9185962bc80b7a6b7d4257c907a90
BLAKE2b-256 1495465440054d1c803e9cc147922f134ff790f850dbb45d280cc3e8af31778c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: toml_rs-0.2.1-cp313-cp313t-win_amd64.whl
  • Upload date:
  • Size: 393.2 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.1-cp313-cp313t-win_amd64.whl
Algorithm Hash digest
SHA256 80ee209668345e472afa7fe7351b517139e1d9b0ad089c6b0c84c3f6d8e4e3a3
MD5 dc0131e22964efabbc36372bcb9f61f2
BLAKE2b-256 bc012db01f7a8468d2d29af549490bd03670cdbe5603e889389b00a2e3cbfa90

See more details on using hashes here.

File details

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

File metadata

  • Download URL: toml_rs-0.2.1-cp313-cp313t-win32.whl
  • Upload date:
  • Size: 366.0 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.1-cp313-cp313t-win32.whl
Algorithm Hash digest
SHA256 faed84cc547edcf1bd64748e3db4e2f4dc97d31189609cb27fd94e4e99a5ac0f
MD5 88d30d38e95079a32fc2069379c37bf9
BLAKE2b-256 8447feea9945313179b699a9d63bfeb98fa757bc8e9c9f564ebc21e733b99f30

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for toml_rs-0.2.1-cp313-cp313t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 7d029882fb4810094f630b9025d8660276a71dc5d164dfbc332c81e7688f7388
MD5 9bf511ea3cd6388c75f4e288425b1d6c
BLAKE2b-256 f2f234a058fe5de333bb30cba3be28c734a1b87810ebbd79c2251f619255bac1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for toml_rs-0.2.1-cp313-cp313t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 3981fdedd57f3203f3a95a0b272adf597ccfb3a2ef5c07e564d4ad628b3bc966
MD5 077cdf437ff0ea5cff762eea522fcbfc
BLAKE2b-256 185d5b484e9f8208a5dbceb8805e7545a046b8413c19a3314b219e00bcc590b6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for toml_rs-0.2.1-cp313-cp313t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 4f91cc6c5a320b1db596eccd2ff15ca7343f6d75f5d31e9f21fc8ff71d61df5e
MD5 3b79c22f5186a306cf614eca4cedbc78
BLAKE2b-256 aba8f2cb6706c0ae32128283ba9c3fe406091b6bf9e87bf725620f2ce6cfed2f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for toml_rs-0.2.1-cp313-cp313t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 f5d112f7d3e7ce67af05b876a2c498363584c0f78dd2d4ff5ffe995525893b55
MD5 93740901e9616045a2759997ae217e00
BLAKE2b-256 f739419b64455c223a45b9c04125503c0dd8de6fa775ccb0b05af38899c9d3cd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for toml_rs-0.2.1-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 4e7a33bbc408d4ad83f7488007b6bab1c25eba314e8961bf8cd0d8023e32e61f
MD5 75f56fc79d539dce3bf1e076c95ede18
BLAKE2b-256 a324c7740996770cdc17e8afb788dec452cacf8049ed9ed444f9cefeec832448

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for toml_rs-0.2.1-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 f497fb8c07e6bee26c07b9a0d146b3f29e02203a72abef09f8a86532826e0b22
MD5 090bd6cc53da210a96cb8f015863c24e
BLAKE2b-256 0e5d075b644daf4b98da04b6eb7461dd7c2b25fbd2c712a52ccdf9bce53b6a4e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for toml_rs-0.2.1-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 39101e544e7d9acab77199d9b0eaa4464f24fb7fb12d56a0e7732e098989a759
MD5 5ea5407c4d07825ec1dd7dbfdee82d9e
BLAKE2b-256 9374c10d67a1181714f12691241b47981c9fe420c9777736830084e62ad2026f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for toml_rs-0.2.1-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 d4080c17bac9b2d8ffdf0b4f2a130d319a72724ba5d8973bf8acc55a593c2a78
MD5 41061385cb06351a346c9479cf61ecc3
BLAKE2b-256 88d49896d4c25df4e1af09b4c4133bfd531c899dbb3abf8711e2bdb68cc9c54c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for toml_rs-0.2.1-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 2878f506773a35cc44eb8b97dd9493b3af1f4154f90c73049c709b6d102c10f3
MD5 f1daad510b628e3f5106d2a272dc5b0e
BLAKE2b-256 7e850e8262e76474b24d3a286c9f81a2793b588af829b971c057b4eec29308e5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for toml_rs-0.2.1-cp313-cp313t-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 7e6bdecb89eef43858348838288d40f9360d88c638ebad1e7e17dfe04fb09c67
MD5 d88083ee9928b4740a4a9681df6ed201
BLAKE2b-256 f3f66aa1ed21d2b78968cc06051f7e47a16f394ad65dd8dd3c4e7bfa8c512102

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for toml_rs-0.2.1-cp313-cp313t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 8ce4c217a3b2033d567080c0f98ab28d7be86c5bc57630aaba292b6c0a8c5c59
MD5 248b6299416ff97b481d8a1df660152c
BLAKE2b-256 bb30bdd81310733aa0d5ac258467617019da0a5ba04d403d550fe751691cbd9d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for toml_rs-0.2.1-cp313-cp313t-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 fa7007b24819b1775e4f83c38d64999048c7df4cd15e1818541a945702999396
MD5 a851a94fa4a15173376487c13bc91531
BLAKE2b-256 d9cf5488cd01c3fce6a66af1849981b760c02228e067b46d1bbfac819097c40d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: toml_rs-0.2.1-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 395.1 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.1-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 21228bbede797ce555bea3a571702c7fc049a8f419e4ffe1dfcb6b964fa1f9db
MD5 3539618147b36a819c6364d58e2eed3e
BLAKE2b-256 800b3ac236db880023757438f298ead7d5aad917f534192f22487400ec028d48

See more details on using hashes here.

File details

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

File metadata

  • Download URL: toml_rs-0.2.1-cp313-cp313-win32.whl
  • Upload date:
  • Size: 367.8 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.1-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 0c4bb94b5ccc27974fa4c878816e746d9feb7f06a95695ab238c1f27766a7377
MD5 43aba6313723a48e610f1a5d1e2a45c1
BLAKE2b-256 d08a795aa350ad9fa5b947dc9cf5299909b8d7f4ffebb0b6454c58ed602a5f00

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for toml_rs-0.2.1-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 52e45a91de2e11c00f46d767f1327069c8b8f48b071427f9a524e71df2161122
MD5 70d357adc011b4a7de8f0f1d15f776e9
BLAKE2b-256 6d577f2947eb4afef6fd525842abd110dbb7b26f928d2af90024de91c5de6a1c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for toml_rs-0.2.1-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 53730b8bec96dade20a2453e3d0b380550c31f0328aabf09acc29643eedc8684
MD5 dfb5591190c76dc1c3c107a4c251da3b
BLAKE2b-256 661b51fd90210c17fc5926143a4ba5e78c7f38fb99283c0fcd4d9d90b9013db5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for toml_rs-0.2.1-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 708cacad2e8722bfd49050aeef521f034de89106a21498f86198dae5ac6350d4
MD5 1c620014b9db9e4c477ef2a9786b9b55
BLAKE2b-256 66fbfd2a6e211c9245c0ad5b4c25f52e001d6aa00f9c329671d1fe505e5e116f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for toml_rs-0.2.1-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 c825b3bcaf0ce48b4c2fe29cd1b7a0f22f7f14f0dec8edd5b8233629e9b486fe
MD5 c6e80af6b1cb870d49eb57ba85c0eb74
BLAKE2b-256 9b3bceefd4c7c1754b8c36fde3c622cdf82ae4aca8a601d1d10f9b1265a4fc48

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for toml_rs-0.2.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 695b31d9651fd6c78830b1197c65ded568ce1122a7dc04edb47968c1f877d5ff
MD5 fc91c88173c71a5a699c48687d69c070
BLAKE2b-256 94398b4a3e5d54eef0b0e9b04a6010e25b0b3e6be4513a007b971676f6797528

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for toml_rs-0.2.1-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 735c27e7587c655ca83d2f0a09f53a81f2c0e56b6aa76b8ae6c8c772bf94e7ed
MD5 2fafe1f9661e3d6f95d16d14ed93c3cc
BLAKE2b-256 d243bc911af989c7fc8a39330c56feef91b1a201f569f765a4df0df336cc35ce

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for toml_rs-0.2.1-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 71f925fd8aee8e1b0dac2e00bd60af6e70e374d7f3f5eedea73eaa1d4811ee6c
MD5 a126dae1c3e4c61694952bb4a94d965e
BLAKE2b-256 b611256ef9cbc4b0dd1d1dab924f6ea96e63078b202e2ca79236b67b46c46393

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for toml_rs-0.2.1-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 e4aae6fe69e15855f8b7478968c78b1ebc4d64904c9f766e16db6d3fc910689b
MD5 3fe100ef854e776d0e13894557a444f5
BLAKE2b-256 f75609e7b8d5574b6b47e1b7a1f2497131ca0e5eaeade905b34f210e169eb21f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for toml_rs-0.2.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 470918ea48e34711b829b550785b6cdf2e8d59e4bac9189248b3c066e63943f1
MD5 4fc2c617878f8f1d3f27700ee6e10959
BLAKE2b-256 395035b2d32ef864281405f52d1850e543906c693ead0c8dcbfad390cdd15023

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for toml_rs-0.2.1-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 70d261a21d6cd2ec50ad53f52c753a4cb5da4fcda3c5b20dc71d932ff7496136
MD5 ae4ec615443fb2c240d1775feb58fb27
BLAKE2b-256 6ac8b96e342627e88db8c5f1f4b37f8029b1bd5fa284b7e3f3f74fa64a75022b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for toml_rs-0.2.1-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 3f1e2979333a869bd26a3e93218c73a4af00b1fadec80cd85c1e2271b3470b5b
MD5 e1a6fe7220b6a875ad95aa273e006878
BLAKE2b-256 5f6041072edab7ebb999703735863d864aab91a7750a5229b9bd15a3e889cb5a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for toml_rs-0.2.1-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 3393640aef2ba69e3eb48e9d2701dbbc28ebfd30085f5f0eeec0a1164c00e4f5
MD5 562514a1c203da25bc71883ba8302398
BLAKE2b-256 7e1d34de06e0a3253dd802914fbb656bf26abf35aeb46e1db8e7af11f9b5d6dc

See more details on using hashes here.

File details

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

File metadata

  • Download URL: toml_rs-0.2.1-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 395.5 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.1-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 f77620ad2f6f8bda57c3c1967ac592e2af4be988613ae536353a3dc03e4f58e5
MD5 a0316a01f87adeab414d3e779e7af228
BLAKE2b-256 7469a70059b8fbf24b9bc20543fac69eb62b4f6589d93a85f2b4d661dd4a3b8e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: toml_rs-0.2.1-cp312-cp312-win32.whl
  • Upload date:
  • Size: 368.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.2.1-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 93838bc41f4f080b5ac79b9c0057c3e3b7424750b4a995596cd02fe49fd6c480
MD5 bbaf82620b48ba05c8cd15fb9d4386da
BLAKE2b-256 6619902d9733a2a8793926937f50cccd951343a6092468fb0135a7512a3aa524

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for toml_rs-0.2.1-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 7ceea7922e999e1556e5d23ce8bcf0230d29f8d910a5fc7069f87ffe0725c873
MD5 712de75e1a0b9a49360a7bd95e664186
BLAKE2b-256 49770e6d154eacdd9ef6d7dec8dfd61cc31b9d3ef6f0250c1d2cfac1ee727c58

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for toml_rs-0.2.1-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 3f6f2ad66933b03ca99b50ae3f4e74d131549b7348a3b47d3a3ce9a90d72eafe
MD5 1f62460cacc08f9800146bb21fa04fef
BLAKE2b-256 2aa31ddf149e3218e9bb6a49c4e03da8c514d79d451b5c707d0505a2d61b2d6b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for toml_rs-0.2.1-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 698649cd7c89dd681a65d67f3ce131ab86ac1adae64be9ee289a778a36eb31bf
MD5 2cfd6bc91c39e77643fdd90b69179171
BLAKE2b-256 85d9defcd1e616c4bd9af7bb086e232d4139a33f09367b88fee03767c630d8f0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for toml_rs-0.2.1-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 5ee3865efea5f09d98fcf1518f5455e36af499246331e0cea157ec2ade69c2ff
MD5 b8f6b865d69d7b2ca2f0b5b3a01519b3
BLAKE2b-256 5a7e0d82a55384d3ba7134f8ff8e9d04b964b91dda9cb5f487731450097b9723

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for toml_rs-0.2.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 9390bc0825ea23f2c225b52f635f90aefb9d5cca4b2f79d3d6a66c2ff97d9d48
MD5 5a0d9631543b7386f3f06580bcad2029
BLAKE2b-256 8098efbd551f03bbbc38b634f4e6199b24dfae5b4682d6a7bce4e7c5bc5c30c1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for toml_rs-0.2.1-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 6c51ed34fdb0607d48281b3ce056ef8103206e400ae53856c093296c107ca6c4
MD5 e6252cda581dbf58a8fb2f80482fb316
BLAKE2b-256 959e01915d85a17b716392b17b788a8cc66256a978b9fc41bb173b167ea6bf1e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for toml_rs-0.2.1-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 0caa627d8a68ba29e1a57e09319a130c08aa5069ce446f3e6b54bb2a9bd9c23a
MD5 8055821dff4be3928a3b874ffdf09516
BLAKE2b-256 d81705a776db2b28c684f47d1faed30da3656205caac880f48ceefa873e4defc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for toml_rs-0.2.1-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 443df9f7217cfc546bf808a39b77d2c49d6d88fcc88c37619aea3dbb91c9c246
MD5 288ab741c22297ddaa0da99c0082a9b2
BLAKE2b-256 ac984b5a96ae05597a06ec7cb7c7d2c242efacb109e489ad32606971980797f6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for toml_rs-0.2.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 56cbee3adda9d9df67bc3e1c6b96825bb2e024329c4e772cd840ec024523a680
MD5 3610fc622c13189ff5f3195bc1e23102
BLAKE2b-256 e6f7e0ce13177f4073e4088cb94b8dd28bd80fbcef95d7ff01ba41cfbe8b7940

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for toml_rs-0.2.1-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 69175452046afa35da13644031270b7d30d3c07d2c7930855ae7ffa7b7154941
MD5 8d04a7550c2ac42800e3ce967eea59f2
BLAKE2b-256 ed9be7d89ba12f13e045bd408373d661c7955962181765e47fdb1beb04a39771

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for toml_rs-0.2.1-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d80474d50ea74acd95fd8d2701dc782258c230136ad9359b2d02d4e3f8933b46
MD5 64fa75e014d639e52a29e8d9d90e00bd
BLAKE2b-256 3caea3c960d3859c4a89797652bde888f122c4b08c4fe145d983df5643815b65

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for toml_rs-0.2.1-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 1ac7b378061879f8078eb66b33b0fc76726541b715e591e10de4e630d69b6ed5
MD5 78af6eb58bab4bd999bd24b6f246c513
BLAKE2b-256 b27320b92357c55bdd3a458f022871ec252561e4e75dbc8818a68492ab8205d5

See more details on using hashes here.

File details

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

File metadata

  • Download URL: toml_rs-0.2.1-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 394.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.1-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 342ab72d9b2a2468a68b6918f73b34d19594ad0b798576d40fa0e36528acf2d6
MD5 dca62bfae837d87e9f8e3e86a38c4d22
BLAKE2b-256 3d0a42645775693e3a555b7e4800d6cb67157405652d767f1d84b3327abce4f1

See more details on using hashes here.

File details

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

File metadata

  • Download URL: toml_rs-0.2.1-cp311-cp311-win32.whl
  • Upload date:
  • Size: 367.8 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.1-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 b1df082af23152a39c0178997f8c2893095113fc2429fa2971ec897ee15af9a2
MD5 0176f457e93bade4362f5a8531ffeab7
BLAKE2b-256 f60a6488db21771517d648a9549f206d2048bf6925c7b807588c995eaa89a4d3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for toml_rs-0.2.1-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 acd500fa848a11dd3c2bde58f7f0f4ad03b31d402b4b735f4482169618053a46
MD5 7ac205abe21e9b35183a1f563345cfb4
BLAKE2b-256 ab0889cf73a52140bb61c96c41c01f72c70e2f48a959b92d036b1cbc8a654ee6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for toml_rs-0.2.1-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 3498bbf2c75774cfc48bd52d3b0df578b68726716187513fd94e1ebb81c46f73
MD5 c97aca79aacaed9b4a7dc4dca29d1e5c
BLAKE2b-256 734bc5318e8889fceaec8942730f448f07d213a96ee70eee33dc050edb1aeb02

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for toml_rs-0.2.1-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 5115e68efd25729a53240771e748fa2566719a2c8521115e5083e825fcd5d649
MD5 6362c45da68b9d403a6bd1d8a8e2e97e
BLAKE2b-256 c57676c086810c05f3b3d0834af2bf56a9d9ced47b886d88f4fbd840108722b7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for toml_rs-0.2.1-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 45d0483125d0548bb856316e12acaa2b315908081569973cd817a565a0e11f4d
MD5 8f2a12ef8031f219c9f7e00a12955f92
BLAKE2b-256 9e5d2996ea8604519270a9ba72227904202b12f0c0301da90bf3f0edb99b1704

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for toml_rs-0.2.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 a65371f87f7661a467a91bd9476c0b645fad144ed3d63fa72b48b65944e34803
MD5 72e9a07dd9862dd988681e08a5ca9b35
BLAKE2b-256 76ded7b188cd70fe15e5d45311b695059387da892ff2d11a7a016855b98b7249

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for toml_rs-0.2.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 d0676076bc6a0356c5763329f268eaf68ed1ff2fb2324c9924513c328d9bf863
MD5 c7eccf63a234242e24bcfb868e8f7a65
BLAKE2b-256 512162d43bfb573ad7856cc0d720ab865e6089881a8ed1498b0f9e216c39c1f3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for toml_rs-0.2.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 cbb1c66e07d1957534208ab8550cd512d175b3de26b481d59905be43599160dd
MD5 44fbe965d3605fb0a0fd9e0dad63d632
BLAKE2b-256 ed71f8ce4699104b8d0eb4322ac664b44baee1f045e8519eff7b914e1d029ee7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for toml_rs-0.2.1-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 e04c5397f29a28931379f984d5b556caacf9df4285fc5c5475d87b3d6e7946e3
MD5 6bfcb1214001dbea2ecca79bbc813da4
BLAKE2b-256 7fb0ed8a10589909bb89852e85daaf75a86701d73ab9c70cc166497a36a1d9c0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for toml_rs-0.2.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 0a230e49650771ccbcd2ae8f3d35e6a2f1d8bd2bc57c32b0e93a8c2b6e016390
MD5 fb2bdb3a95e934dad79f186fdfee4c68
BLAKE2b-256 ee96d2530d4b46019e2870ddca88bdb71bcbf7c29f15740670bcf9976ecd3360

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for toml_rs-0.2.1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 7b1821c634623d752340f4019557d88b9c77f39f097bdee5e6fdc8833c164461
MD5 0ac53f697089e1baecb34246aee95248
BLAKE2b-256 642efebe5b41e2e61c46138abe99d845888a60c85ff3a73e81ecef3d562d8315

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for toml_rs-0.2.1-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 4f1616c12d59b29ba6b08a94a9b665f54a2204d653959e298377af95b39d0ce9
MD5 88c74890f7564819f79f397fe1ecb7f0
BLAKE2b-256 0187bfead4298d34bdf5c2f96ca7abcc3359243d6f516f6cb3f6182f0fdc2d82

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for toml_rs-0.2.1-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 d5d8904ef7a210da6243562e1176c07ad7a4fbfc7345341dcafc37f345bb7d88
MD5 7dee48c90e61779cc153da2fd59a33dc
BLAKE2b-256 d6a232fd81f05f1287c03bfb118c3f23a1be82fcae256d4c601207db959de5fe

See more details on using hashes here.

File details

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

File metadata

  • Download URL: toml_rs-0.2.1-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 394.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.1-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 38a8ad3fe5010d81d820297c30d345c3a6d6ea5c078e320ecd1d72e8773633d5
MD5 3d28234cae146c98278895633e31d559
BLAKE2b-256 b0ada2ee8ba81f71bcbca6cebea10d55013636be09ddb770ee59daea43f6c2c2

See more details on using hashes here.

File details

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

File metadata

  • Download URL: toml_rs-0.2.1-cp310-cp310-win32.whl
  • Upload date:
  • Size: 368.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.2.1-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 2648a9dba93b7831ce9e5ada26e33e36e214ecdbd04870e4f7aaa2949e43e50b
MD5 0c74c869628b8df6707f57b66cea9ff3
BLAKE2b-256 70099c5dc3b0f3bbbc65dcc98fcecf652434418042133cbff859c009dcf3092b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for toml_rs-0.2.1-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 dc458e8a683aeb8dfd9a54db65773b397475a2527405f874b2fae0e94dd9d83a
MD5 12de29b0c309120259e976d189c15a87
BLAKE2b-256 a3ab41fff7955a81c2e61de75136f757b6dc06aafd0fa0648a2bdfd0b54791af

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for toml_rs-0.2.1-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 f8c8bd93e9a0af30aefabf6399f4d10c84053d17b13b9a3efb64585ada979a65
MD5 a3c5b717fcd9b648215915904b66f501
BLAKE2b-256 ce5ce01aa42ee19d386e1910059c0c3540ae35ba1fcc68aa1d032a215197e840

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for toml_rs-0.2.1-cp310-cp310-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 be6d4dfea20177c6771833caa50535f7f85248ca98fee621168b973a89ee578a
MD5 518682df81ff4c5a89c7acc91abe553e
BLAKE2b-256 11f3f038de29b3f5273168bb3399f8682571e8b134b146470c10b95bd3a02086

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for toml_rs-0.2.1-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 4116156b48feacc1f05680733a1181453cf110e8851498871180153ce236237a
MD5 8ef29b6da6cf430438dd50d6454871ef
BLAKE2b-256 d7475dbb8ef1d06c2356c249d7c2a74b5dabc8da566672ae1a6f23acc8c61f66

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for toml_rs-0.2.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 218c7a78d86a60b65b3486ac7c54bf0e2ebb6ef02a20e5575b5f77b45382fbda
MD5 fa83fbb0371b792cab9f4fc03b45acff
BLAKE2b-256 3d968c64f7711dc15369d2f70dbc7744416cee4be205bacaca7b21211e7f9081

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for toml_rs-0.2.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 1fdca08a36f306409d651337d54801ec222645f88c267fc19b8ef96ec1f817ce
MD5 15ed1039e0f87860d9670b0343cedfc1
BLAKE2b-256 62b5621f1aaec53db18097525e22c59ac2f10589b4c8c9d0147842ccd1fc6798

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for toml_rs-0.2.1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 7b87c4b9db6a0f8813dc6f93a26f49c9baed32c8ca1efe3f7fbf5b0f214003a7
MD5 4dbdd422d611fe719451ff8605db8fb5
BLAKE2b-256 cc884124e654b245b6ee1e89e65d704648d79169ecd56300a11448085438c4fd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for toml_rs-0.2.1-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 e41cad6ab4144772dc18a349a02ec49f7e84a9900a61233700f3f55d0c6e2016
MD5 0f497d2532325f82ef005e22528b75f1
BLAKE2b-256 69285ba6d193a07779952b7037bf3617cb3576e5d826be806f5ca9deb62a56e3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for toml_rs-0.2.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 bd73dea977fd612222db8355a8769ec5b551a48c84cd7f0de22a279c8db152c3
MD5 739eab7a0f407fa613212825835ff7ad
BLAKE2b-256 5e18a2ea6ace6c20a7b59158ed606798cc77bf0f8958714feaf6b5a89403b118

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for toml_rs-0.2.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 61ebfb07cb9770b34cbd5f9b0155c4136d24f0730e68ba257cfd973614c74c99
MD5 b7d760f20e99008d5af0538e52958f34
BLAKE2b-256 709483faf2742c0ed2b17db06707cfa184b904d142e15256168ea006093db3de

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for toml_rs-0.2.1-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 cfff84f91812bfc4d7c70f76bb03fa44a34d1f2c4e42f5caca5163d65828846b
MD5 9639937eecb214fca8eb4f4c73cf94f5
BLAKE2b-256 55c0245696c86238b3a10ffdd4c28d18cf060358e0e80d08391383f2f0d8556a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for toml_rs-0.2.1-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 8f371f0371336e0198f0f6e0520e5e4826e17ff1063a7f0f696fc26cf43f3007
MD5 b047c1e6633242947b32c4e8b95de927
BLAKE2b-256 16ececa80466c5a2f69f196775aa4f3c84b9d8a45c32cf1d3e29fc6080301286

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