Skip to main content

A High-Performance TOML Parser for Python written in Rust

Project description

toml-rs — A High-Performance TOML Parser for Python written in Rust

Features

  • The fastest TOML parser in Python (see benchmarks)

  • Drop-in compatibility with most tomllib use cases (see below)

Installation

# Using pip
pip install toml-rs

# Using uv
uv pip install toml-rs

Examples

import tomllib
from pprint import pprint

import toml_rs

toml = """\
title = "TOML Example"

[owner]
name = "Tom Preston-Werner"
dob = 1979-05-27T07:32:00-08:00

[database]
enabled = true
ports = [ 8000, 8001, 8002 ]
data = [ ["delta", "phi"], [3.14] ]
temp_targets = { cpu = 79.5, case = 72.0 }

[servers]
[servers.alpha]
ip = "10.0.0.1"
role = "frontend"
[servers.beta]
ip = "10.0.0.2"
role = "backend"
"""

tomllib_loads = tomllib.loads(toml)
toml_rs_loads = toml_rs.loads(toml)
toml_rs_dumps = toml_rs.dumps(toml_rs_loads)

assert tomllib_loads == toml_rs_loads

print("toml_rs.loads:")
pprint(toml_rs_loads)
print("toml_rs.dumps:")
print(toml_rs_dumps)

Differences with tomllib

  1. More understandable errors
import tomllib

t = """\
x = 1
y = 2
v = 
"""
print(tomllib.loads(t))
# tomllib.TOMLDecodeError: Invalid value (at line 3, column 5)
import toml_rs

t = """\
x = 1
y = 2
v = 
"""
print(toml_rs.loads(t))
# toml_rs.TOMLDecodeError: TOML parse error at line 3, column 5
#   |
# 3 | v = 
#   |     ^
# string values must be quoted, expected literal string
  1. Strict compliance with TOML v1.0.0

From TOML spec:

Arbitrary 64-bit signed integers (from −2^63 to 2^63−1) should be accepted and handled losslessly. If an integer cannot be represented losslessly, an error must be thrown.

import tomllib

t = "x = 999_999_999_999_999_999_999_999"
print(tomllib.loads(t))
# {'x': 999999999999999999999999} <== speс violation
import toml_rs

t = "x = 999_999_999_999_999_999_999_999"
print(toml_rs.loads(t))
# toml_rs.TOMLDecodeError: TOML parse error at line 1, column 5
#   |
# 1 | x = 999_999_999_999_999_999_999_999
#   |     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
# invalid type: integer `999999999999999999999999` as i128, expected any valid TOML value
  1. Supports serialization (toml_rs.dumps and toml_rs.dump)
from pathlib import Path

import toml_rs

data = {
    "title": "TOML Example",
    "owner": {"name": "Alice", "age": 30},
}

print(toml_rs.dumps(data))

toml_rs.dump(data, Path("example.toml"))  
# or `toml_rs.dump(data, "example.toml")`

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

toml_rs-0.1.0.tar.gz (88.5 kB view details)

Uploaded Source

Built Distributions

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

toml_rs-0.1.0-pp311-pypy311_pp73-win_amd64.whl (306.2 kB view details)

Uploaded PyPyWindows x86-64

toml_rs-0.1.0-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl (579.6 kB view details)

Uploaded PyPymusllinux: musl 1.2+ x86-64

toml_rs-0.1.0-pp311-pypy311_pp73-musllinux_1_2_i686.whl (613.8 kB view details)

Uploaded PyPymusllinux: musl 1.2+ i686

toml_rs-0.1.0-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl (670.3 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

toml_rs-0.1.0-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl (571.5 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARM64

toml_rs-0.1.0-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (406.3 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

toml_rs-0.1.0-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (425.6 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ s390x

toml_rs-0.1.0-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (407.5 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

toml_rs-0.1.0-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (364.8 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

toml_rs-0.1.0-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (396.6 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

toml_rs-0.1.0-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl (438.1 kB view details)

Uploaded PyPymanylinux: glibc 2.5+ i686

toml_rs-0.1.0-pp311-pypy311_pp73-macosx_11_0_arm64.whl (366.8 kB view details)

Uploaded PyPymacOS 11.0+ ARM64

toml_rs-0.1.0-pp311-pypy311_pp73-macosx_10_12_x86_64.whl (385.8 kB view details)

Uploaded PyPymacOS 10.12+ x86-64

toml_rs-0.1.0-cp314-cp314t-win_amd64.whl (304.1 kB view details)

Uploaded CPython 3.14tWindows x86-64

toml_rs-0.1.0-cp314-cp314t-win32.whl (294.3 kB view details)

Uploaded CPython 3.14tWindows x86

toml_rs-0.1.0-cp314-cp314t-musllinux_1_2_x86_64.whl (577.1 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

toml_rs-0.1.0-cp314-cp314t-musllinux_1_2_i686.whl (610.2 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ i686

toml_rs-0.1.0-cp314-cp314t-musllinux_1_2_armv7l.whl (666.4 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARMv7l

toml_rs-0.1.0-cp314-cp314t-musllinux_1_2_aarch64.whl (567.9 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

toml_rs-0.1.0-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (403.8 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ x86-64

toml_rs-0.1.0-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl (422.0 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ s390x

toml_rs-0.1.0-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (404.1 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ppc64le

toml_rs-0.1.0-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (361.1 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARMv7l

toml_rs-0.1.0-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (392.9 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARM64

toml_rs-0.1.0-cp314-cp314t-manylinux_2_5_i686.manylinux1_i686.whl (434.6 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.5+ i686

toml_rs-0.1.0-cp314-cp314t-macosx_11_0_arm64.whl (363.1 kB view details)

Uploaded CPython 3.14tmacOS 11.0+ ARM64

toml_rs-0.1.0-cp314-cp314t-macosx_10_12_x86_64.whl (381.3 kB view details)

Uploaded CPython 3.14tmacOS 10.12+ x86-64

toml_rs-0.1.0-cp314-cp314-win_amd64.whl (305.8 kB view details)

Uploaded CPython 3.14Windows x86-64

toml_rs-0.1.0-cp314-cp314-win32.whl (296.3 kB view details)

Uploaded CPython 3.14Windows x86

toml_rs-0.1.0-cp314-cp314-musllinux_1_2_x86_64.whl (578.8 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

toml_rs-0.1.0-cp314-cp314-musllinux_1_2_i686.whl (611.9 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ i686

toml_rs-0.1.0-cp314-cp314-musllinux_1_2_armv7l.whl (668.2 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARMv7l

toml_rs-0.1.0-cp314-cp314-musllinux_1_2_aarch64.whl (569.8 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

toml_rs-0.1.0-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (405.5 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ x86-64

toml_rs-0.1.0-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl (424.2 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ s390x

toml_rs-0.1.0-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (406.3 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ppc64le

toml_rs-0.1.0-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (362.8 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARMv7l

toml_rs-0.1.0-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (394.9 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARM64

toml_rs-0.1.0-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl (436.0 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.5+ i686

toml_rs-0.1.0-cp314-cp314-macosx_11_0_arm64.whl (365.0 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

toml_rs-0.1.0-cp314-cp314-macosx_10_12_x86_64.whl (382.9 kB view details)

Uploaded CPython 3.14macOS 10.12+ x86-64

toml_rs-0.1.0-cp313-cp313t-win_amd64.whl (304.2 kB view details)

Uploaded CPython 3.13tWindows x86-64

toml_rs-0.1.0-cp313-cp313t-win32.whl (294.3 kB view details)

Uploaded CPython 3.13tWindows x86

toml_rs-0.1.0-cp313-cp313t-musllinux_1_2_x86_64.whl (577.0 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ x86-64

toml_rs-0.1.0-cp313-cp313t-musllinux_1_2_i686.whl (610.0 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ i686

toml_rs-0.1.0-cp313-cp313t-musllinux_1_2_armv7l.whl (666.4 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARMv7l

toml_rs-0.1.0-cp313-cp313t-musllinux_1_2_aarch64.whl (567.9 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARM64

toml_rs-0.1.0-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (403.9 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ x86-64

toml_rs-0.1.0-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl (422.0 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ s390x

toml_rs-0.1.0-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (404.0 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ppc64le

toml_rs-0.1.0-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (361.1 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARMv7l

toml_rs-0.1.0-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (392.9 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARM64

toml_rs-0.1.0-cp313-cp313t-manylinux_2_5_i686.manylinux1_i686.whl (434.6 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.5+ i686

toml_rs-0.1.0-cp313-cp313t-macosx_11_0_arm64.whl (363.3 kB view details)

Uploaded CPython 3.13tmacOS 11.0+ ARM64

toml_rs-0.1.0-cp313-cp313t-macosx_10_12_x86_64.whl (381.2 kB view details)

Uploaded CPython 3.13tmacOS 10.12+ x86-64

toml_rs-0.1.0-cp313-cp313-win_amd64.whl (305.9 kB view details)

Uploaded CPython 3.13Windows x86-64

toml_rs-0.1.0-cp313-cp313-win32.whl (296.4 kB view details)

Uploaded CPython 3.13Windows x86

toml_rs-0.1.0-cp313-cp313-musllinux_1_2_x86_64.whl (579.2 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

toml_rs-0.1.0-cp313-cp313-musllinux_1_2_i686.whl (612.0 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ i686

toml_rs-0.1.0-cp313-cp313-musllinux_1_2_armv7l.whl (668.5 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARMv7l

toml_rs-0.1.0-cp313-cp313-musllinux_1_2_aarch64.whl (570.0 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

toml_rs-0.1.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (406.0 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

toml_rs-0.1.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl (424.5 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ s390x

toml_rs-0.1.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (406.4 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ppc64le

toml_rs-0.1.0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (362.9 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARMv7l

toml_rs-0.1.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (395.1 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

toml_rs-0.1.0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl (436.4 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.5+ i686

toml_rs-0.1.0-cp313-cp313-macosx_11_0_arm64.whl (365.2 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

toml_rs-0.1.0-cp313-cp313-macosx_10_12_x86_64.whl (383.0 kB view details)

Uploaded CPython 3.13macOS 10.12+ x86-64

toml_rs-0.1.0-cp312-cp312-win_amd64.whl (306.5 kB view details)

Uploaded CPython 3.12Windows x86-64

toml_rs-0.1.0-cp312-cp312-win32.whl (296.7 kB view details)

Uploaded CPython 3.12Windows x86

toml_rs-0.1.0-cp312-cp312-musllinux_1_2_x86_64.whl (579.4 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

toml_rs-0.1.0-cp312-cp312-musllinux_1_2_i686.whl (612.4 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ i686

toml_rs-0.1.0-cp312-cp312-musllinux_1_2_armv7l.whl (668.6 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

toml_rs-0.1.0-cp312-cp312-musllinux_1_2_aarch64.whl (570.3 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

toml_rs-0.1.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (406.3 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

toml_rs-0.1.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl (425.0 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ s390x

toml_rs-0.1.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (406.7 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ppc64le

toml_rs-0.1.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (363.2 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARMv7l

toml_rs-0.1.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (395.3 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

toml_rs-0.1.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl (436.6 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.5+ i686

toml_rs-0.1.0-cp312-cp312-macosx_11_0_arm64.whl (365.3 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

toml_rs-0.1.0-cp312-cp312-macosx_10_12_x86_64.whl (383.5 kB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

toml_rs-0.1.0-cp311-cp311-win_amd64.whl (305.5 kB view details)

Uploaded CPython 3.11Windows x86-64

toml_rs-0.1.0-cp311-cp311-win32.whl (297.0 kB view details)

Uploaded CPython 3.11Windows x86

toml_rs-0.1.0-cp311-cp311-musllinux_1_2_x86_64.whl (578.5 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

toml_rs-0.1.0-cp311-cp311-musllinux_1_2_i686.whl (612.0 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ i686

toml_rs-0.1.0-cp311-cp311-musllinux_1_2_armv7l.whl (669.2 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARMv7l

toml_rs-0.1.0-cp311-cp311-musllinux_1_2_aarch64.whl (570.0 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

toml_rs-0.1.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (405.2 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

toml_rs-0.1.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl (424.3 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ s390x

toml_rs-0.1.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (406.1 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ppc64le

toml_rs-0.1.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (363.4 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARMv7l

toml_rs-0.1.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (395.0 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

toml_rs-0.1.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl (436.5 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.5+ i686

toml_rs-0.1.0-cp311-cp311-macosx_11_0_arm64.whl (365.4 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

toml_rs-0.1.0-cp311-cp311-macosx_10_12_x86_64.whl (384.7 kB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

toml_rs-0.1.0-cp310-cp310-win_amd64.whl (305.4 kB view details)

Uploaded CPython 3.10Windows x86-64

toml_rs-0.1.0-cp310-cp310-win32.whl (297.3 kB view details)

Uploaded CPython 3.10Windows x86

toml_rs-0.1.0-cp310-cp310-musllinux_1_2_x86_64.whl (578.5 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

toml_rs-0.1.0-cp310-cp310-musllinux_1_2_i686.whl (612.0 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ i686

toml_rs-0.1.0-cp310-cp310-musllinux_1_2_armv7l.whl (669.6 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARMv7l

toml_rs-0.1.0-cp310-cp310-musllinux_1_2_aarch64.whl (570.1 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

toml_rs-0.1.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (405.2 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

toml_rs-0.1.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl (424.5 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ s390x

toml_rs-0.1.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (406.0 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ppc64le

toml_rs-0.1.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (363.9 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARMv7l

toml_rs-0.1.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (395.0 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

toml_rs-0.1.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl (436.2 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.5+ i686

toml_rs-0.1.0-cp310-cp310-macosx_11_0_arm64.whl (365.5 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

toml_rs-0.1.0-cp310-cp310-macosx_10_12_x86_64.whl (385.1 kB view details)

Uploaded CPython 3.10macOS 10.12+ x86-64

File details

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

File metadata

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

File hashes

Hashes for toml_rs-0.1.0.tar.gz
Algorithm Hash digest
SHA256 bfefd66b29a39e0272deac06c1b13fd195915a0ab395626c45799a5d7ed9b7a2
MD5 03115023881a94586e2e10862ed6e233
BLAKE2b-256 70b0c8adde963e6bc8f26a715cdc5ae9cff67c96f377dcbda6caf2223583d509

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for toml_rs-0.1.0-pp311-pypy311_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 1b14752ac0d0f2c96b36d61edf5ae5c1ef61e02a19a98ab9a253b9636e3ecb31
MD5 105b07673e278c03959a37c6134fb3a1
BLAKE2b-256 0249e4f7d04b9a15a9f40fd5a021eb19aee9d535eb43af2965f258a86c6da0ba

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for toml_rs-0.1.0-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 0a7b2846041b5d918142e76d57dd770825b51e7a9064b930b8c8055bba83a674
MD5 c8f7950ba821b954480b02d748b308b6
BLAKE2b-256 6f44e46cf83c41eb2447a4ffdcfc9d4047710113b502aa01ce58df19dd9c1b9e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for toml_rs-0.1.0-pp311-pypy311_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 90537f1169ecd9110a636990a7daa5ae02ad32f75031149699ce8e34dd891e17
MD5 7aea4d01e4969034728d465a0cc69dbc
BLAKE2b-256 1e6c1c637a2eda5a23d3ae6b9ec33011f46e25fce73526d061c0db4a47a5aae5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for toml_rs-0.1.0-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 4aa57a381705ea6c6dc0daab41f7387d34ba4e693109094cbd3ce259f3f02a03
MD5 c6d8837efdcd3aeb27b98d48cbcfd35c
BLAKE2b-256 b9f41dc3ce791c71b1b77378fbcb4f5fa767cf62ed9d5ebbe96ab48a2c7e43a1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for toml_rs-0.1.0-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 1a1714c6b0d0d2de05d059a0e9e6389540292d7ebc5c3624c79890c5793a335a
MD5 674deed01194116be403a724d57339dd
BLAKE2b-256 a6d033161fef4e261517d15f83ef35b173585e19dae34019ceca011631d86e0e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for toml_rs-0.1.0-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 269a83ff7155a8a1856c1ce7820338317a8a88114cfe00f175b4beb62952ad88
MD5 0551b1ca4faaa7b6bdd740259fd72d33
BLAKE2b-256 c628432e94eb6f132ad0871113c4dc254bdc9fc19ddfd99aed47673147bb02f7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for toml_rs-0.1.0-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 93619bd8ca89eb174412bcbdfe5b81c9f9bd625bf3c21d1df5e9bf325118fde3
MD5 259d36eb9b2efffbd05b85f0f8e133c7
BLAKE2b-256 e47eb07647b60f76a398de54f42458dd95ffb13f885578315bbe65d6e85cc3fc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for toml_rs-0.1.0-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 2c0147bd60070203876f60cc4427c08e2be9416d14499abe24f756dbd5c6b682
MD5 91913f38421fa3364d025d97387fee28
BLAKE2b-256 d356de005f38305b51f3ebb7f28b4a8204f1b6d3f85708c46fab50ae7ad5e824

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for toml_rs-0.1.0-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 5169315ebbf59b31c28c08a7eba74420ae5005eedabf358bfb65342091c5af8d
MD5 26605d2ecc4e3a2b497c2c976af6a163
BLAKE2b-256 e8be70a85c3d720c2502f0c05b7aab5d9f85e2f2f9e2447f595676f1e7d6012c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for toml_rs-0.1.0-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 0eb9815c19f93a2d1d96825e439efa1fe4687959193d3b98a0636327cf458f99
MD5 cbe73ed3d66eeadb8ff3fa5765c2a0d5
BLAKE2b-256 583c415b29d858540094f3d57333911e82458074b125ec81cb462c085df7f0fe

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for toml_rs-0.1.0-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 24e49e47209d421169ecd9f18f8babfab4803cb43d6fcecab9aded0a43dd0318
MD5 43a93ea510322604c4d2e9ec2497baab
BLAKE2b-256 6c43a908ee3590aa3ba5a7a8988ef02cad0c34875117bbadbc5ac79d2d658ae0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for toml_rs-0.1.0-pp311-pypy311_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 df86271d3ff5cbbf4fa618a5164434fec0a981f3bb60f968d88df78d93eaa83c
MD5 8c09c2a37c15ee1f7773359e22ce18ff
BLAKE2b-256 efae1635676d4d13fb7b2ccd37d757169db587465f02010ec87aced9bfa6dba9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for toml_rs-0.1.0-pp311-pypy311_pp73-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 4cf1d7c1c65a5a9d07a4c6a527314ba676931ea04624a78024abf1be43306c06
MD5 8c6a9d84b8a3641623f3f8eb7f8f192a
BLAKE2b-256 4838948c328318c9d8e4f5343fd71944ebaeee20a606542ac07834c4ea138e40

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for toml_rs-0.1.0-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 6f75385ceaa9f40363fd514d7c306d26167651b5ba444a9b499beb557481e102
MD5 b80f075e8c754ea4db195cd3d98f8a9b
BLAKE2b-256 9da3c61592045d2844d679c5f3e8faade44db0b9c18b98d9a2e1c0b3bfbbf25d

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for toml_rs-0.1.0-cp314-cp314t-win32.whl
Algorithm Hash digest
SHA256 71df5805c8e7c90c874c1f53f672710b159983cc1a71e85b7f006ff485a87fb5
MD5 fae9ae649c579b70b211099037c8a524
BLAKE2b-256 07d181943c2ee222e2d15d0aec1ce6256527a1f896e802216a6684abd85f38a3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for toml_rs-0.1.0-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 d165f513e31fe37e19e20da39981588e7886e6e21929997052e9e5baad2c483f
MD5 28a89109e01e76e2e71f869948106869
BLAKE2b-256 7ec859d7c36f0ffa96f42a56b09016c69accb8f5d943342674bf2e921f402e90

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for toml_rs-0.1.0-cp314-cp314t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 eddb9a100e9bde663957e5b1b68cc9e5162d2541c527ebd59357dea695a0b3c0
MD5 06c6a52018901e79f6ad33a1bc715896
BLAKE2b-256 b1a055e98c1417dceb319ade3749d70b135851f494d1c85dc257b7bc4a5b5738

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for toml_rs-0.1.0-cp314-cp314t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 6722975314ce30b66c9ff3c290e4e3d4b5a87f3af684cef9073af9d7ee8df662
MD5 82673ec04f1c8fd92ed907e8ea125725
BLAKE2b-256 f5477ad15214970ac99c3397b02e658c7322d8275c2c9172bdee1947254e8c62

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for toml_rs-0.1.0-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 0992e1255caf2cbfbe2f2bf898cddf379791b718e46b5832f5bf1fbd1c6e9367
MD5 71076ece4ca08600605f5e99af6925f0
BLAKE2b-256 5234d2454c2972ca1a753ceb89e89a6ddc7e8541c2d6c6e34cca741a0b623852

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for toml_rs-0.1.0-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f662fc90a9ccf22f7e8b3d8eb39a6b186ed50c1021b6eaec316dbb1b46f0bd3e
MD5 8b5b09e227bb1f557018c0c148444544
BLAKE2b-256 11d01d3f0fb3dd5956100ab27fb19a27064bdbbfe15c3e5f1509f07df0091e5c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for toml_rs-0.1.0-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 9cd480ffe5c74ccd4032578e4f4318a5209bc7f8d2873b666b9bfd2c4ea5058f
MD5 56ebaf67ec0578de87edf023d80195c2
BLAKE2b-256 408618408fc4b52b39617b27ebb44865072c442c4cc3fd085de7ef34adcbe511

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for toml_rs-0.1.0-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 71d68f0284e0cee08a1bcfd80fc8cb0b7a046fc5e99e5e8cf6ab20da406c53fd
MD5 44d64f982cff1edf5bac4764f177bfd8
BLAKE2b-256 9d9be8c0e26fe15cf113f5b6782b106a0bcd30317bd084db8ddd8eeefc277b8c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for toml_rs-0.1.0-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 137a2b99e1b925aa533ad940a676b2da832e24100f2f5a5c706e203386c911fa
MD5 af222ccdee1ebd42b3dff5c9f6928aaa
BLAKE2b-256 36ec535374c36e54c9b8c9f1a6fddbb2fe6f7de6ddae7434dfc215f3c304c501

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for toml_rs-0.1.0-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 7c2a8fd10eababe9526596771f0a499e222dce97fd97d34276bc7377fa975591
MD5 42d9d0c6a845c35074fc5086ecdf8e91
BLAKE2b-256 4bc99381a8d8f28c7b6829787ac9840abf7f4de3165d17f794458fc8292eb9a4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for toml_rs-0.1.0-cp314-cp314t-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 5e7cf2d89621362f62e36975c6d1e27c661bedbd4cd3667812c7314a8827a5df
MD5 8a50673fc240bf6c7ab7088e7606340a
BLAKE2b-256 0e6e2b1ee0e378557fcc03681b40574ce63579d91b54d84b19efdf802be148e2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for toml_rs-0.1.0-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 2ab2484e41252838b7cd928bef2eca3668cf9c5f804460ca92315cf405f9365c
MD5 5f18c1501a83f016193ba3b574dcd7ae
BLAKE2b-256 b8d88e266669e6bba293519468ccd06885e8b4b6c0df8d10a8dcbf551090f7a7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for toml_rs-0.1.0-cp314-cp314t-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 02eab058a183d87b65a876e0f85e8fc1773abc03a86954bf9ef85b548ce21213
MD5 19ff5cb76c25d3eb4f857fdcc39e052b
BLAKE2b-256 c73ca8c831cf2708542287049f38ef208cb62ebd49a1629d672fb785bea0509e

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for toml_rs-0.1.0-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 9a7bdf0ded657555acf22eb4e970264f36744d7b48cdc49a9abebdf84861d688
MD5 acd06c437c032cd531dc6d9e0f9cab14
BLAKE2b-256 b17a205dddf70299af091a35e50c08629c9ad78c70c08c9caad79c8783c33d04

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for toml_rs-0.1.0-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 b1cda4e5157c2b902552c75eb06ead5eabdb8bbf743f4a1382aaee06a3fa7bd4
MD5 63287a6d70f764a6ed532b0418884cf1
BLAKE2b-256 ce4d585cef6c45f67221336f4970615f09603d1d2a3fda4685c1760c5e68a917

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for toml_rs-0.1.0-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 700223918b65360948f4ebf7d6fa4c96347e4e9413182a9de93a3e9b9e6a8bc8
MD5 6e98d933f7e532d6860f6fdf10cb1b79
BLAKE2b-256 c48622c1066cc2b4cb60e8d51a434917d9c672bac00aa97511c5831786c247c5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for toml_rs-0.1.0-cp314-cp314-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 4c00f4a926b4627aa632e9755d3d3f1674dce6d0bdeaf93d2339c9c60d309b0c
MD5 24ff046b25a0cf7f346e1f9762caec00
BLAKE2b-256 9319634f91b351bcbc76284adfdb0ff62a6869f0bfa693b97bda208f76ab30bd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for toml_rs-0.1.0-cp314-cp314-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 fbce612f46d7dd8074b79fe336b81b1ac07b090750bf3695cba0c5aa82a1cdef
MD5 b02d87b5f3e383536449f0d0048e6b86
BLAKE2b-256 9068bdc5e8e25a5ada098c0a79046db7eaf35b593712a97b568d6ff853a96636

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for toml_rs-0.1.0-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 49e8dec46f9011490b496428684ab49c0bfa2737900014fd7b33175ac93acaf6
MD5 fcf502e4a6e4278a2d61810f97a5667d
BLAKE2b-256 a7ac18300c9eb531a02639c091354841946185513c1bc9bb0227746a30a6a4cc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for toml_rs-0.1.0-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 87b01f1bb205cf27bfa7638ed6af7fbf30f5151d681e241dd320ff77408544bc
MD5 0e709b9ac6cae6c84416a4f52106361c
BLAKE2b-256 764be1a9d59cee6a347dc61b93330f5c31d422545a0882ea6fdc64743e6bd375

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for toml_rs-0.1.0-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 a3a71ab65bf4257cf00637ed81694f6dfe3ad159967777318a0c55f577059118
MD5 cf27c2de91486a2cf2fd5af3c3cb3e8b
BLAKE2b-256 49011886b6f48e70682456bf3671f911f582cd2e11ec281a6adf3b6d68a282b0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for toml_rs-0.1.0-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 7e3e0168021d008370c09db36a34c7ef36979e5c299d4c9cbf1dbea34445ee2a
MD5 c983fa1e69e5ac447824e5234a541bb0
BLAKE2b-256 9f58d7f6530c165ddc8a94522ad8f25ed2625037d30740cbb40fbe730d931cd9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for toml_rs-0.1.0-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 8783e8d04bbfcc4f2edb714a1544f084f8d488d061ac079f1993501cad5ae3b1
MD5 cdea1e91ce013813f22544da14ebe0e5
BLAKE2b-256 06b7e2252b0407668f3945a2dc1caf0ca3f0b8f38b208b28ef1deb49e183e8d5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for toml_rs-0.1.0-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 7b6ac37308d53245a7a998d6e2c25d4441db392984060aa537b7459fa8150d4b
MD5 fed28b928f38c3b6f15daed2bb32f11e
BLAKE2b-256 d102fa0592c13f7ed9d1cca5dcae597f97ad70101246180c466936023ac63a06

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for toml_rs-0.1.0-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 2a72f65c40d75bc3ce2257e5a2b6e0a8dce67cc4fdc1fe39c57ca028ef0b01d3
MD5 ae2198c026be6df698e9f99247eade0b
BLAKE2b-256 07953716991a63cf5d8edb7d4d490adbb6195aaa38635644fe9f050617a862d7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for toml_rs-0.1.0-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b7c7a6e1b5e62d813cc3f235e9e32b7716cd751490a06b89572b84cf35d3ebc0
MD5 01d6a7024366e1409e46438eec1f299d
BLAKE2b-256 7f68ddaaebbdabf9adf78f234199fe5a6d99552d9172156467dcd7865ddca16e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for toml_rs-0.1.0-cp314-cp314-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 f40268ad748495f0065bf2ae319e27098bac5f0e7c97bf628f93f48b266321c5
MD5 4730b9267903f88709e28e6e06a1d43e
BLAKE2b-256 e42b7031903705ee5f0dc5d57733e09875208f17893f5f269bb109573cac7f01

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for toml_rs-0.1.0-cp313-cp313t-win_amd64.whl
Algorithm Hash digest
SHA256 404c98132dbc7a8979786b8b3b80368454f7866c11cbdaa19a11554bff200298
MD5 97ce8d627481bf918b9a738b687c5b92
BLAKE2b-256 83a880bf3491d0a2b476ecf188642f68e188c453da10e8c9e76de9bf4b35750e

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for toml_rs-0.1.0-cp313-cp313t-win32.whl
Algorithm Hash digest
SHA256 cdbe578440d31b5dab1ba69cc0c3326f2171956291785417080d3d85fe09dcf6
MD5 cc8ddf19ec1305361a881dd36418d756
BLAKE2b-256 f1a696c81d4ea6f23a69685a3b4a889326cf0b7709448ba90b3875597ce8e582

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for toml_rs-0.1.0-cp313-cp313t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 26b556b42b5bd2ba303342b6e08f37f6a472e02b3e3c91ef01a2b510aca429a2
MD5 20ca58072336cbca890f5247553b32dd
BLAKE2b-256 d0b8ee72df03496f069d4e9e48d339e1340ae8c29cdb11876769c6ff76abe412

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for toml_rs-0.1.0-cp313-cp313t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 9e853ee33abe469049d9d3607e7dd11dcf1269f3b3ef4ac1e008b32edee510b8
MD5 7adc8f3ce88aca0f2045e665f1e2fd73
BLAKE2b-256 d3cf2ad744152a7e7a14af4aadf431da026bf0e5e4f5a2d2d0b3df877deed267

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for toml_rs-0.1.0-cp313-cp313t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 51c9df63496717c678d9868c58b74a5ad7e53f28964f16608738b0ad6c1da6d6
MD5 424d603de0916bc2d3be86cb3f1ce8f2
BLAKE2b-256 ccb83b4bffbcf5180027ac577f6a72fad582f293436f6a5489c710814ec8136a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for toml_rs-0.1.0-cp313-cp313t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 8f953012fa0e57eac8fdb3701b9d74c13b2850520f93472990b77811bb9aad57
MD5 cdf45e2b1598612f3e19340e6f94a810
BLAKE2b-256 50fb67af7c171ba1fcc6152763ba00deb9bbc838c02aef65e68af6f3f71e2f3a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for toml_rs-0.1.0-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 18821f058877a627d04ca0e093306435e885508cca0497722b585688add216fd
MD5 2cb2dac3abeccf1f6ea36e2ab4361015
BLAKE2b-256 e4838f353be431251273e28df34ac84d7e3321fe67212b61fabb77fc5df7433d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for toml_rs-0.1.0-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 664546a4ac9f44983c01f097a059b22986ca618005b5ba2d3ed0699fd8535f8b
MD5 5d617a093a3a447d68b30dab1399bbf6
BLAKE2b-256 d22f36516812a505455cca5bcb2c151a798e7cc701f7ac3ca75782a05c33998f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for toml_rs-0.1.0-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 a5bf2cfed25fee0633c719f5bf75aa49f829a30e30b1646a32e2ecf3e8cf5370
MD5 ffc9ccecff6b2d0e2377bdca6ebbd46a
BLAKE2b-256 11e12ad1d398846d62728b687d93a0a7cd0677071a0dee1ea7857f6aac8a2415

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for toml_rs-0.1.0-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 c8bca4017984852ce30912daf3fe9aa8b8c8c7f5fa419fb9dd379357b8ce5aef
MD5 3c736213f23051dcd61f3f76522b9d29
BLAKE2b-256 51b50d838adaaec0f2966dd56c0127a3da3e7caf55cd568df3b2c3bc23462cbb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for toml_rs-0.1.0-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 8d3f2981915c0813f9735c742463d513151d847aab0c830419232a54f65167e4
MD5 7e4ac057e90268f5e8468d696834bf05
BLAKE2b-256 72d0de2e73aa9058029f9ab04274d648175b239f32e92f0be65258bd1b1b4e3d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for toml_rs-0.1.0-cp313-cp313t-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 a7e3e5247eb7ab369ece64f8f7b8bda1dde49783caaf5d11a266682bcf427436
MD5 fb5fbc2f850762a22787827f52c45ed0
BLAKE2b-256 377682e94af074e890df5dfcf8f568d14823c55b3889ae8cb0847c9f9fb57008

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for toml_rs-0.1.0-cp313-cp313t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 1b6462f68a1f3152903b5cba6c7c4c768a7e0b04dc86e6a82b1382928fe9df26
MD5 6f92d07c6b5687080b7fc01132c3c329
BLAKE2b-256 4da61d29d34ad5f9cd8a334b1b9fc0c508c903e5a2a3cc66fd9a2199e5a8e195

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for toml_rs-0.1.0-cp313-cp313t-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 d7746ef50b8e17837c35fe982a1f6a40e6e35fcd519dc0b932ab9a4e88202d22
MD5 6a2c449a3724da509220806cb4e4013e
BLAKE2b-256 581ef9ea059e8fca84cec2db89eec1b9a2d6949f67b76cbe08827c61ddd46467

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for toml_rs-0.1.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 f498beee8d38898c52ebe91f2b448d629f33691d0eaa632c2b511d35ca8b5434
MD5 ec3bbdbce5d6ae53e5debc75462958e4
BLAKE2b-256 8c17cf3e9e447c68ef93a0938a3966e9261da2af0094332daafa59eac7d229e4

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for toml_rs-0.1.0-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 8fa8375d37da79f4c5333a23c6980f464382f3535f2be354ad200d4a0a521322
MD5 4a5203d396af37d69dd64b3803f2e1d2
BLAKE2b-256 3dca152ca788050f6f2fe3bd176c03957a87734078678f2ffe12681101161e8a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for toml_rs-0.1.0-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 4517a8971e1e1694e50cb3259d8ed21b57ac9bfb0c2eccbee30dc220fbf8922b
MD5 7b05afbdfe884c1f05757ae3bb272dd4
BLAKE2b-256 c58d75790e702d70b62203b2df05366f310152303b4ed77ce34869026771ebe2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for toml_rs-0.1.0-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 8cd1decc3d2154d2e1257c6ee8469fd3b3ea88036cad9db32dfa8379ff7fb831
MD5 358792d66d01d0d16602198e0e5a40a0
BLAKE2b-256 9f7a2ea2c61e2e0ffd65a0605875e531303b7c513edd98963a468055000e301a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for toml_rs-0.1.0-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 7bafdbc06de7ec0fe5b7e02bd9e3d97e03bf4e6efbf796bfd343f8bfdd56a954
MD5 91ae5b1eb107758f7e9eeba190e39df0
BLAKE2b-256 d49979af35783817b50252d83b8885d9000489ad5a91d5de2f92d00e8f83b5ed

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for toml_rs-0.1.0-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 2a3bfd008232f6429d73d680ec32fd7a0bac0eba62d71020ac96d1c7f19bc00b
MD5 fde379794d7e2434d9c21663772905f9
BLAKE2b-256 65a3f0d07f7b828583ada23766033b4d85a195d3fcdb482e45f94df29f5fa559

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for toml_rs-0.1.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 a39bda79a463ff7be18696d17a9daa41877dcef67e20ee1961c93e24b7ee007e
MD5 e727e0c34b6f69851204945bae492b3e
BLAKE2b-256 7b1ff9339b9f8d6e5b6d9adb26216e58ab02a59af45a63635a9ebf229ed32640

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for toml_rs-0.1.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 421e21bdeb717d5a80fbcae2c94a86c7780b9a199214d677bb6c3ba7c3dee7c2
MD5 e4cb556d923eb05be71344b47659fe22
BLAKE2b-256 3267c9471af528b83b2b73073c60d26c226f09d795705040132860acbb9cb8db

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for toml_rs-0.1.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 8858d7d209fc76f4950566f40974ae698229fa3229aae29dada0a72a4d7623e6
MD5 cc3801e3f7290edabc71899cf7011dcf
BLAKE2b-256 253cd6ea84cb5bef04b179f0019ed19cfb6a0af9d3032ff233b24dcea7f12c56

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for toml_rs-0.1.0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 9c5fcb276ea937745e78dc25400c42bd85e8dcf326fbdedfb1ee04fac091bd67
MD5 c73dcea2c1986252ea61406081e25821
BLAKE2b-256 f2edfe113ee94b8e31a72ee3c52cbc77116ce26ad1ba9c1b9a19894d409471ea

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for toml_rs-0.1.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 7dbcb551f131b8e07cda21c13cde700fb2c3d466ba1174ef2cba8cb18d7e7454
MD5 e8561bc07a4e7df651d3176b6564b898
BLAKE2b-256 561384d7c62375f1a30e18f36554b818a23f7b7aeaa35af643a4b0069f1e3682

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for toml_rs-0.1.0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 53771c59bef17c9c8f653e9d685b550f1f7bc0174ff5f741eb08312cc5f5e756
MD5 b0f6c1e4717ea03a32dff695a0904ee5
BLAKE2b-256 8aa4927762aaa779c97bae3931539b0ef450c436dfdab623925f2b25aa9d363e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for toml_rs-0.1.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 5fd5be5bf905f7427061c553ef0c5aec7679206ecd2ed5cfb2533d42c15559ce
MD5 5fc67d0a6d93e5f51f4c1b68fb2e1397
BLAKE2b-256 2ba00241106adb8a41c82de5c8ce46f569972f977b068a904c2c15edd0c8d26c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for toml_rs-0.1.0-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 fdb1267e7fddb0cb71e06836d1bdcea5c7846604590d3d79b12f882ee0482e3c
MD5 fcbabf5ce3823c4c169bdb28b3644f1b
BLAKE2b-256 1c0e62c34f93c0e326b153d55feccc0ced7f4fe11d9a57e70ad6c836343547fd

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for toml_rs-0.1.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 10297a67709e8a39d538da5949152672d89588545b2582c7b807a27800465699
MD5 d97464dd3b9f9b80e05d42e966e33eea
BLAKE2b-256 d96a3b82a34f914185f8cf669c64b0f1096576532711ad8a86d1316a11611c24

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for toml_rs-0.1.0-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 377a6cb055acc45c7541e9af84a465393687964d737748e5b5a07c98b3e20872
MD5 7a3ebedc640c06354360a6fe0c93274d
BLAKE2b-256 d52c29d3e2aa9b3dc0db106640c52ebce06e7b02e59320f6c4d9cc10585ae535

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for toml_rs-0.1.0-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 bc0c2023da8cf5fc232b56a7c6819b51353e67ab54513b9f68df43ffdea190c4
MD5 c02660859de57ca8f685a374bd178282
BLAKE2b-256 c384f3635385a992bf1d397d37937f231d930df52c52432aaafcaba8a72b2558

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for toml_rs-0.1.0-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 7a04bc8c19e117e30e3da1316aee136f9ffd406f682397188a8f881f2958f43d
MD5 9675140b356c88b4b65f2c15e9d9bbae
BLAKE2b-256 9ea0c5fb6a206a1fcd52a4410c0cf1ab70047ced83a289dc11a88f4e9c1e027e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for toml_rs-0.1.0-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 45c7f5e25b8c5b6edf8a94d4ef65ff704587dcd52b41e786816762884c859751
MD5 1013de1ee285ff1a2c150312a2cf1995
BLAKE2b-256 baece61fb7c0f6949fd916d28fe13e420c4ee2e2966b6bb1dd7897a9b2f8c608

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for toml_rs-0.1.0-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 a0b5f4e455596a9a73bb636b4b69d2976538cc2cb10d00ea346583e433b9c914
MD5 c503bb2558913df16284c4333586e1eb
BLAKE2b-256 3e1bbdcbb4d0aca788371dd0127bfcae0a2581ee1a23e20056c4de21531ee2c6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for toml_rs-0.1.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 944ddc485471b61fb623b113d539943536deeb35c2bd3e09b3f6e7d3b2f6ab44
MD5 28a3d73dee3dfe29adb9e2ce6e88b3ae
BLAKE2b-256 d1ffc7cc164147df0211eb3bc398df5660c1f4dc48e3151ce9d594fb84102d86

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for toml_rs-0.1.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 ca4de38873ff8085c8dcdfbe6520911072dadeb3da026fea8aa8888a761c744f
MD5 f23f6daa57f0a2c01a995bb7f290818a
BLAKE2b-256 3440c421828654b222c18cf22af8cefadb99b9db5d98856f9b2b016f4a1322b3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for toml_rs-0.1.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 d56f8a7c4dec3ac7ff19b4ccf418290a6c0be4b548deb13f437b957b9ba33a67
MD5 770ba74a14000472f4d0ed7d69e41aa8
BLAKE2b-256 f475829b34bee041ecf398b8225f5c02a98410bb29da6fc26c3a740dbd9cf076

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for toml_rs-0.1.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 1bf9524f996612650f20326125d2e57c5bd58353cdde44f5fb8e2716355c3710
MD5 822668c6cd00c78706432274869771c1
BLAKE2b-256 548347e08186198644a64d80cc03aa0eb13e9b009c20b95203266524e7b8e2ab

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for toml_rs-0.1.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 cf4f378e1deee60468d7dda567ff4aecfa2fc1dc66b93e11485e3ee7d4bbf996
MD5 f462962e3b8213a05e7ebd7f037ddbaa
BLAKE2b-256 eb6473761997f8ccd26b19e0287e59236d28fe99b5148172fdf47a12bf720840

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for toml_rs-0.1.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 88acc9e2b496dc3716e09224809ed092f64d46d761e8bcabca8ad4fa417862b4
MD5 ec1e8101adcf3844ac1c7d17ed9dfaa1
BLAKE2b-256 e768ff7093730496d8dfc6c63a216958fd1fc901cbe8bc8cf974eeb56c7ef008

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for toml_rs-0.1.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 078db84f573ce9c4276c5039e9c705602f42b3afce04ab9d83da5935c71653a8
MD5 b80f41e28a6e0e7501614ac1f0a1bccb
BLAKE2b-256 c51dc869aef214cdddeabf78ce71f8d1f35fce1d2e27de1f6d997b7686e56079

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for toml_rs-0.1.0-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 a1dcb5cdd8be96858611bd21bb00304dc42b0b1027007ede151d7e7dd0a36b20
MD5 214fdf13e611b9502e5c4eb61d87f619
BLAKE2b-256 5da22cbd9d29678e22a43bbc9069cc585832bb73550344c3c845a6f8a001e17c

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for toml_rs-0.1.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 57fe7f41ebf6f1e5e459c5fa1697b6a62cf69dceb259a9d04b68bdf2dabaacb9
MD5 e838d15135dee4bb1467a39b394d5dcc
BLAKE2b-256 aa9858a031b4a876bcfa8f436ae066142c3d085a1da17cf2992bf64388a143a9

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for toml_rs-0.1.0-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 50386cdb2487f6247ac3599f0ef0b71ef6be38661dbcd0ac50f13b83acf2dd34
MD5 5af8f65b819a6c2352fa797a222d8baa
BLAKE2b-256 81bb9f65b0bac34157874af103a12b7cbb3f61258d90a9503c7d419e44102597

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for toml_rs-0.1.0-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 ab875cf323e859a41eb966c24435270b9324073613ba54368cf31369f93205b2
MD5 ab2510fa0431790f28322e39bf62bbdb
BLAKE2b-256 15c375c6b7f2cadc972d11b31aba9f281425ab95e96b8b1e42ad4dd750d65e3f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for toml_rs-0.1.0-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 91e61e6c9866db9a3962c9329f43fe815101e26416312c628e14707484e87c3b
MD5 ed0aca4cda1610374facab560fe56dbb
BLAKE2b-256 ee5426537f2527e8862436064c92a1baee70ea309388039af220cb03c6a457c4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for toml_rs-0.1.0-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 d824d16fe959c0669ad453ff4e327ffa63e6b0b7726bf65616f52bcbc47620f5
MD5 6b17c845d8ecc092946602d24acf9427
BLAKE2b-256 c054bb7469c83600f0d3a04246d4d99448808bbf36a2880c74338c4e915106a0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for toml_rs-0.1.0-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 9caaf829f8b637bce4eb4d0570fe653a8b05fcd6786b0c0c54e86a8b2fce1016
MD5 407678f72a408de9d3fff6d1502745d4
BLAKE2b-256 8555bd8e780670299bdb67e3b2c756c18252c1b8539ff2e49dc001da910190bb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for toml_rs-0.1.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ef3ec9ab0d6c09a8f4ad99da88df32a2840206e4d83ae0eccedbee03624fb6a0
MD5 1ebd1831102e840d3d2e614bdbf68838
BLAKE2b-256 4fe43692fc50dacf3f4305b20bbb04fae653ba6814df9a7ca13d8f9c8616b8d7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for toml_rs-0.1.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 3ca81eb79b45eb69cde83e4feb39055ba5f825489d26e31d20fe69000a97dd62
MD5 a0c1dbca17f4f9ec76d45ca94b06f460
BLAKE2b-256 c96899fdb26840cc99b62cfbc1cda5b9ec819d09542b982b4b0df4468e48f103

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for toml_rs-0.1.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 84af4377def7382002795ae4d018013410a9afa8d0e72719869d06e56be45d4f
MD5 eb26e093f8f78b43cd677b198bbcaf2a
BLAKE2b-256 78eff39ec7e9a53e36b2673dd5c1c6889e76c29206b428c56f39f30b9bbdc7dd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for toml_rs-0.1.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 8e95e5aea4224c6fc55267b35954d8f8779ca03da1d060bce23728a080af77ac
MD5 6239f0c96ebb0c1daff766d4f368d341
BLAKE2b-256 fcf4d506f556bdee9ffc1f599a2e353c392979ba4d137ad0471572983a031457

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for toml_rs-0.1.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 88e241fd280d2170a80d5d0dd8254f84d1ce40cf3cda614b7d5bdd8134be4054
MD5 a6decb95e8e4822b89c435679ac44e17
BLAKE2b-256 c234f250073a45873916f05491601ee27d4d334ad25d36cb996cff821e4ccfb8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for toml_rs-0.1.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 71da4af086bb68f494c9cb9b58ad65d0679c298eefae11805f93b80e3cc20530
MD5 f1fbc493907d837f9eb48957ccbb2d7f
BLAKE2b-256 05c70f10dd16f83bc6877cc8db9679066157ea2d96235b4e8aba28ed70227143

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for toml_rs-0.1.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a00469b8254431621b0536d6797915d6a117a2f46cb72757d4c8dcaea983abe8
MD5 7e32c03c6cefdbbae073117b77f7ad60
BLAKE2b-256 48c2a04a94ed54ca12b8797865a6271a7d6dfb23f5930d8df8436095b8e560df

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for toml_rs-0.1.0-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 142a7b056cb922bec7873747e70dfb6d3c5d5e4d338173af77e1bf570a3f2d6c
MD5 81f5d90f05782f6f4a69e649a5260d52
BLAKE2b-256 5c0e77925fed78da0b2fe4e3033c1d50a8d937cebb3ba2699322e046d841140d

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for toml_rs-0.1.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 50be320811bd455999673b519deea2bd8bb24c770f2f07503aa3cb1aee194960
MD5 2f07465a850f051862aebefdcdd80279
BLAKE2b-256 e1478f3f13fe7319c2d8febcfe87e6a3fa4ddc1f4cfee9c50c3d49d3e88eada5

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for toml_rs-0.1.0-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 a9f4a6a2b7e414ccb24e17b1415bfc6a5c926233e268eb56b07025884ab50094
MD5 d1ed1fa137f2fc2fe53ca633c782f892
BLAKE2b-256 fe024bd313e791901930d298c1fba04a490cc2456b6ce77ba971c01473dcc1f0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for toml_rs-0.1.0-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 bbe718fdae085f456bfe97ed63984486d0579a1c835c5c5e433e644da3de517d
MD5 eb09add62dfb4c4294180a90a417c9f2
BLAKE2b-256 1047933d050fed580d5eba7d5e35114ae9dd4c1eb0a0eecb0df8b7cac39c9930

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for toml_rs-0.1.0-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 5f52ddb2ee66c656dd21188d9ddee99a4a3cdd8f9ce2c0824abe8c191cf1bbef
MD5 60ee8b87643bb1c06705ff8faebb4815
BLAKE2b-256 60ac3fca6f0a0276c94b286231191f154b49f101f407f1c16b06defde11f426f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for toml_rs-0.1.0-cp310-cp310-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 8efea489f6aeaa9b1af1399cf96f6ff8a06aff07625127e3b4e665cb1b24c59c
MD5 4d6e4b6e28f0cba47f2382b8e1be7807
BLAKE2b-256 363617bfdfe0cc6666fafeb58b089393c30d44bfc30d4235508e72f9a1349ebf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for toml_rs-0.1.0-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 6f9f5993060daffc19a20bbf765b9ef4778e0294f2d7f0a2e1136c3c22572bc6
MD5 777d17e49b883fa4f268424367db1346
BLAKE2b-256 5cc5ac978e3cbd1f5097a6a3b659402cd417045ed42af4fef2e36f42fa5dda5e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for toml_rs-0.1.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 cd208dd66cba57748a24884f8e116ad7c424847e0f0ac1d9400d4e4e607eb846
MD5 72921d56f20a9d0c668f6c07445d229c
BLAKE2b-256 c0c360c35e6e7b12c9e7bc3a6d47d31ba4925381c7db62879223457af63621c3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for toml_rs-0.1.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 2c6a36f0ae61fd079338b6ebe16afbc492e947888f7d934bc7feeee5fec35a42
MD5 b47112a5be8ef46f6cc080e91913dd42
BLAKE2b-256 b64cd4e1e0a16daadf785b9febefcba13389ee6818ad8d63c6dd7e87ea5b7081

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for toml_rs-0.1.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 4c40a2e1da3aa1f3f178ceebf779ad1568e3dd5780ccbd7e6a59e3f335745eeb
MD5 2a23418d37f544bff1f5cf64bace8663
BLAKE2b-256 9e5cba20a3ae92a4b77bdb1f05472f981f5953787e7c826c490c49756310a515

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for toml_rs-0.1.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 d4102a8dc25b4242784490d9a693ce38230f363318234a4447fc50eda54f56b9
MD5 dbfba35e2fd70836f11d9534e6f6e0aa
BLAKE2b-256 e9c96cbf5b9f98c8b9419d71c8ccd71f9094f811915c8bfe113e9e448eb96fc7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for toml_rs-0.1.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 db0e15c663d5d4f51b3d726244d39a5d048c09b253ed3ce272f1d28fd9bea97f
MD5 456c0ca2ec71f0579ef923caf0d74cb0
BLAKE2b-256 bf1d92c4afc407bfac5499b0fbc1fc9e7862b4adc2044365595956034a17e004

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for toml_rs-0.1.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 ae707e87e94bc6b5b1bb7086f35fa10a3d5c290d822295228496da911fc6cf56
MD5 3748a170baaf5f93c082945965c4f0b1
BLAKE2b-256 57dcb0ef2bfc33b685e774c54404a252379777030462eb9c6acee5c4aa6216b3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for toml_rs-0.1.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a09aa02189a3c74c33773ca95f9c66e9522dc4cd36aa8de3883e7ac877430203
MD5 3dcf6f20eae5ca14f6c5d05eea5c9732
BLAKE2b-256 a8a2867159be6b6f5a878a48c8b19c3dca72f4796539a3137dee3b4943094156

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for toml_rs-0.1.0-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 4129174d85b60df5ec96713be8ede9f0fe0c77d39674f8d3d329a945ce72ced6
MD5 90d9cafd9c1591ef9f34b003e335fcbe
BLAKE2b-256 1037c365d0d2fc6c6b98f2a7bdb8a81fd4b0d051cfe0b89105e772eb56d3eb34

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