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

PyPI License Python version Implementation

Monthly downloads Github Repository size

Features

  • The fastest TOML parser in Python (see benchmarks)

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

Installation

# Using pip
pip install toml-rs

# Using uv
uv pip install toml-rs

Examples

import tomllib
from pprint import pprint

import toml_rs

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

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

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

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

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

assert tomllib_loads == toml_rs_loads

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

Differences with tomllib

  1. More understandable errors
import tomllib

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

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

From TOML spec:

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

import tomllib

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

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

import toml_rs

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

print(toml_rs.dumps(data))

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

Project details


Download files

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

Source Distribution

toml_rs-0.1.1.tar.gz (89.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.1-pp311-pypy311_pp73-win_amd64.whl (308.6 kB view details)

Uploaded PyPyWindows x86-64

toml_rs-0.1.1-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl (583.3 kB view details)

Uploaded PyPymusllinux: musl 1.2+ x86-64

toml_rs-0.1.1-pp311-pypy311_pp73-musllinux_1_2_i686.whl (616.2 kB view details)

Uploaded PyPymusllinux: musl 1.2+ i686

toml_rs-0.1.1-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl (672.7 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

toml_rs-0.1.1-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl (577.8 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARM64

toml_rs-0.1.1-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (406.0 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

toml_rs-0.1.1-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (420.2 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ s390x

toml_rs-0.1.1-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (412.0 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

toml_rs-0.1.1-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (362.6 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

toml_rs-0.1.1-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (403.1 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

toml_rs-0.1.1-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl (435.8 kB view details)

Uploaded PyPymanylinux: glibc 2.5+ i686

toml_rs-0.1.1-pp311-pypy311_pp73-macosx_11_0_arm64.whl (373.1 kB view details)

Uploaded PyPymacOS 11.0+ ARM64

toml_rs-0.1.1-pp311-pypy311_pp73-macosx_10_12_x86_64.whl (384.5 kB view details)

Uploaded PyPymacOS 10.12+ x86-64

toml_rs-0.1.1-cp314-cp314t-win_amd64.whl (305.7 kB view details)

Uploaded CPython 3.14tWindows x86-64

toml_rs-0.1.1-cp314-cp314t-win32.whl (290.2 kB view details)

Uploaded CPython 3.14tWindows x86

toml_rs-0.1.1-cp314-cp314t-musllinux_1_2_x86_64.whl (579.5 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.14tmusllinux: musl 1.2+ i686

toml_rs-0.1.1-cp314-cp314t-musllinux_1_2_armv7l.whl (667.5 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARMv7l

toml_rs-0.1.1-cp314-cp314t-musllinux_1_2_aarch64.whl (573.7 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

toml_rs-0.1.1-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (402.1 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ x86-64

toml_rs-0.1.1-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl (416.3 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ s390x

toml_rs-0.1.1-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (408.2 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ppc64le

toml_rs-0.1.1-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (357.8 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARMv7l

toml_rs-0.1.1-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (398.9 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARM64

toml_rs-0.1.1-cp314-cp314t-manylinux_2_5_i686.manylinux1_i686.whl (431.4 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.5+ i686

toml_rs-0.1.1-cp314-cp314t-macosx_11_0_arm64.whl (368.5 kB view details)

Uploaded CPython 3.14tmacOS 11.0+ ARM64

toml_rs-0.1.1-cp314-cp314t-macosx_10_12_x86_64.whl (381.0 kB view details)

Uploaded CPython 3.14tmacOS 10.12+ x86-64

toml_rs-0.1.1-cp314-cp314-win_amd64.whl (307.3 kB view details)

Uploaded CPython 3.14Windows x86-64

toml_rs-0.1.1-cp314-cp314-win32.whl (292.4 kB view details)

Uploaded CPython 3.14Windows x86

toml_rs-0.1.1-cp314-cp314-musllinux_1_2_x86_64.whl (581.9 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

toml_rs-0.1.1-cp314-cp314-musllinux_1_2_i686.whl (613.9 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ i686

toml_rs-0.1.1-cp314-cp314-musllinux_1_2_armv7l.whl (669.9 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARMv7l

toml_rs-0.1.1-cp314-cp314-musllinux_1_2_aarch64.whl (576.0 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

toml_rs-0.1.1-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (404.5 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ x86-64

toml_rs-0.1.1-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl (418.5 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ s390x

toml_rs-0.1.1-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (410.2 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ppc64le

toml_rs-0.1.1-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (359.9 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARMv7l

toml_rs-0.1.1-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (401.0 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARM64

toml_rs-0.1.1-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl (433.7 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.5+ i686

toml_rs-0.1.1-cp314-cp314-macosx_11_0_arm64.whl (370.6 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

toml_rs-0.1.1-cp314-cp314-macosx_10_12_x86_64.whl (382.6 kB view details)

Uploaded CPython 3.14macOS 10.12+ x86-64

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

Uploaded CPython 3.13tWindows x86-64

toml_rs-0.1.1-cp313-cp313t-win32.whl (290.1 kB view details)

Uploaded CPython 3.13tWindows x86

toml_rs-0.1.1-cp313-cp313t-musllinux_1_2_x86_64.whl (579.6 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ x86-64

toml_rs-0.1.1-cp313-cp313t-musllinux_1_2_i686.whl (611.8 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ i686

toml_rs-0.1.1-cp313-cp313t-musllinux_1_2_armv7l.whl (667.5 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARMv7l

toml_rs-0.1.1-cp313-cp313t-musllinux_1_2_aarch64.whl (573.8 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARM64

toml_rs-0.1.1-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (402.1 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ x86-64

toml_rs-0.1.1-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl (416.4 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ s390x

toml_rs-0.1.1-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (408.1 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ppc64le

toml_rs-0.1.1-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (357.9 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARMv7l

toml_rs-0.1.1-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (399.0 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARM64

toml_rs-0.1.1-cp313-cp313t-manylinux_2_5_i686.manylinux1_i686.whl (431.5 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.5+ i686

toml_rs-0.1.1-cp313-cp313t-macosx_11_0_arm64.whl (368.6 kB view details)

Uploaded CPython 3.13tmacOS 11.0+ ARM64

toml_rs-0.1.1-cp313-cp313t-macosx_10_12_x86_64.whl (381.0 kB view details)

Uploaded CPython 3.13tmacOS 10.12+ x86-64

toml_rs-0.1.1-cp313-cp313-win_amd64.whl (307.4 kB view details)

Uploaded CPython 3.13Windows x86-64

toml_rs-0.1.1-cp313-cp313-win32.whl (292.5 kB view details)

Uploaded CPython 3.13Windows x86

toml_rs-0.1.1-cp313-cp313-musllinux_1_2_x86_64.whl (582.2 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

toml_rs-0.1.1-cp313-cp313-musllinux_1_2_i686.whl (614.0 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ i686

toml_rs-0.1.1-cp313-cp313-musllinux_1_2_armv7l.whl (670.0 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARMv7l

toml_rs-0.1.1-cp313-cp313-musllinux_1_2_aarch64.whl (576.2 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

toml_rs-0.1.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (404.9 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

toml_rs-0.1.1-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl (418.7 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ s390x

toml_rs-0.1.1-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (410.5 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ppc64le

toml_rs-0.1.1-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (360.0 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARMv7l

toml_rs-0.1.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (401.2 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

toml_rs-0.1.1-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl (434.2 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.5+ i686

toml_rs-0.1.1-cp313-cp313-macosx_11_0_arm64.whl (370.8 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

toml_rs-0.1.1-cp313-cp313-macosx_10_12_x86_64.whl (382.7 kB view details)

Uploaded CPython 3.13macOS 10.12+ x86-64

toml_rs-0.1.1-cp312-cp312-win_amd64.whl (307.9 kB view details)

Uploaded CPython 3.12Windows x86-64

toml_rs-0.1.1-cp312-cp312-win32.whl (292.8 kB view details)

Uploaded CPython 3.12Windows x86

toml_rs-0.1.1-cp312-cp312-musllinux_1_2_x86_64.whl (582.6 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

toml_rs-0.1.1-cp312-cp312-musllinux_1_2_i686.whl (614.3 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ i686

toml_rs-0.1.1-cp312-cp312-musllinux_1_2_armv7l.whl (670.2 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

toml_rs-0.1.1-cp312-cp312-musllinux_1_2_aarch64.whl (576.6 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

toml_rs-0.1.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (405.2 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

toml_rs-0.1.1-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl (419.2 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ s390x

toml_rs-0.1.1-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (410.6 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ppc64le

toml_rs-0.1.1-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (360.2 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARMv7l

toml_rs-0.1.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (401.5 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

toml_rs-0.1.1-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl (434.4 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.5+ i686

toml_rs-0.1.1-cp312-cp312-macosx_11_0_arm64.whl (371.1 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

toml_rs-0.1.1-cp312-cp312-macosx_10_12_x86_64.whl (383.1 kB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

toml_rs-0.1.1-cp311-cp311-win_amd64.whl (306.7 kB view details)

Uploaded CPython 3.11Windows x86-64

toml_rs-0.1.1-cp311-cp311-win32.whl (293.0 kB view details)

Uploaded CPython 3.11Windows x86

toml_rs-0.1.1-cp311-cp311-musllinux_1_2_x86_64.whl (581.4 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

toml_rs-0.1.1-cp311-cp311-musllinux_1_2_i686.whl (613.8 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ i686

toml_rs-0.1.1-cp311-cp311-musllinux_1_2_armv7l.whl (670.7 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARMv7l

toml_rs-0.1.1-cp311-cp311-musllinux_1_2_aarch64.whl (575.9 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

toml_rs-0.1.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (404.1 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

toml_rs-0.1.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl (418.7 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ s390x

toml_rs-0.1.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (410.3 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ppc64le

toml_rs-0.1.1-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (360.7 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARMv7l

toml_rs-0.1.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (401.2 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

toml_rs-0.1.1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl (433.5 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.5+ i686

toml_rs-0.1.1-cp311-cp311-macosx_11_0_arm64.whl (371.2 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

toml_rs-0.1.1-cp311-cp311-macosx_10_12_x86_64.whl (383.2 kB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

toml_rs-0.1.1-cp310-cp310-win_amd64.whl (306.7 kB view details)

Uploaded CPython 3.10Windows x86-64

toml_rs-0.1.1-cp310-cp310-win32.whl (293.4 kB view details)

Uploaded CPython 3.10Windows x86

toml_rs-0.1.1-cp310-cp310-musllinux_1_2_x86_64.whl (581.4 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

toml_rs-0.1.1-cp310-cp310-musllinux_1_2_i686.whl (613.5 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ i686

toml_rs-0.1.1-cp310-cp310-musllinux_1_2_armv7l.whl (671.1 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARMv7l

toml_rs-0.1.1-cp310-cp310-musllinux_1_2_aarch64.whl (576.0 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

toml_rs-0.1.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (404.2 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

toml_rs-0.1.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl (418.8 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ s390x

toml_rs-0.1.1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (410.2 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ppc64le

toml_rs-0.1.1-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (361.3 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARMv7l

toml_rs-0.1.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (401.2 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

toml_rs-0.1.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl (433.2 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.5+ i686

toml_rs-0.1.1-cp310-cp310-macosx_11_0_arm64.whl (371.1 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

toml_rs-0.1.1-cp310-cp310-macosx_10_12_x86_64.whl (383.1 kB view details)

Uploaded CPython 3.10macOS 10.12+ x86-64

File details

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

File metadata

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

File hashes

Hashes for toml_rs-0.1.1.tar.gz
Algorithm Hash digest
SHA256 aa198c31e82fd324b54ce17e07afda98625adffe4b981779caf1474f4690748f
MD5 bb7dcab56125990895e1e80975cdf848
BLAKE2b-256 9cbffa2ab26b820f6dd3c341918d706b5ca52f66c1c4915f027702e4aabe43af

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for toml_rs-0.1.1-pp311-pypy311_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 69581838a748b6c60d558c4c31f90471a98a394f496ccb6513c33a837e96022c
MD5 5e2d96dfe6994ea80c45e95504cfdaea
BLAKE2b-256 0d5e4b401eb627ceb0b2207a733b27da831dc3f6aff6adb06e10b1020b766031

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for toml_rs-0.1.1-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 c685c8cd8521a0aba084e5851408ed8d110b8392f9a7d6dc71c5628ff00faded
MD5 336440d6382b465720de28d931ad32d4
BLAKE2b-256 151130474b3c851d7d570f012e384724be2d906edf0e2a9b8b9374d60f1d130f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for toml_rs-0.1.1-pp311-pypy311_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 c44dfd8f76de1e5015c40142f2ac87aeb1d252f0dc0a8cca9cdd23ac0d271c6e
MD5 95d269b6f2336b6a8add3ec5b3828067
BLAKE2b-256 7659ec899a69702692022fc5e96652c6ca8ac989c3aab68ea5866aff70aa4171

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for toml_rs-0.1.1-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 d607da7834327053129ec8b77f0d4a72dbf7043201ae7ef94efd0b73cbe1c92c
MD5 009477cb83125ac9f79e83da19b7bff1
BLAKE2b-256 042e9e867de6e048fc5b8053496c96be43b7d00aba16398729b7186155389c88

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for toml_rs-0.1.1-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 ae4e5a707c14f221b18ffe6b1a065a4006ccc2e8ef194ed0c21ef1e16240aaac
MD5 5053e5f6b4434ac15983544643fbe3be
BLAKE2b-256 48696ecc45b18feb31de067ab12b284a9cb41cb4c83e78a209b085003b8324dc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for toml_rs-0.1.1-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 9b048661757544b7084a2a4001fe073a6e25fe5d5932d699d2470b362ff84abc
MD5 79e458fc6ebf1f67b11b1ebd40ca2e3e
BLAKE2b-256 3763e25dc2ba28f68fe3b3aa90630b34adb0d950d49f05f50d75a00f0417c83e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for toml_rs-0.1.1-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 968236f94ed51e74e540dd7f145d8263e07e43c78b64dfb9b3c9ad39adc6ee9c
MD5 d6ffc9f42d0207a7f51c758c5e519ae3
BLAKE2b-256 e3e7bf808a0a2442406316baded3e081168e9a3e08b39e1af5ebfbdda4062af3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for toml_rs-0.1.1-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 2f8deeb545be1eb0a16f8195c9159869e5568bba609529b123bf30f5093b37ae
MD5 2a9e1fd7bb9d170444b21a46dc04251e
BLAKE2b-256 0dde6818532064ca0e667fe4d575d252cf068b7f8abf59827e94692ebdd669b3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for toml_rs-0.1.1-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 79bf9e60e7dfe4a402b78eba0ea9006ac6717432bab5269bc8908c9cc8df1d89
MD5 e3d3bc4147c7e290dd0c7837af7b097f
BLAKE2b-256 eae646725740e341a650bac23bb19fb9538420c70dafa566b8927477f178dcbe

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for toml_rs-0.1.1-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 b53f5e58cc4b8ded2fa982bd7d64ebc677027d0e6fcb7099fca5a4c75ef0ab6b
MD5 b5e6b119abff872abe001accd14b6be1
BLAKE2b-256 c052d627351508ac8ddc5868fb167f57f63b7b641df002b6a66a4af275cf0190

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for toml_rs-0.1.1-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 92438b9aa948ec562160fb1028d592990877e9653ce29e670885376a5862aeb9
MD5 b0ffe99bfdd35b39aac44465ae637554
BLAKE2b-256 d9e8171d895e2fbcc965225fd260cf98be74dc3cad3bc272441fbcd2c7df5f7b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for toml_rs-0.1.1-pp311-pypy311_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 cb3b5f8b5efa4d47471510a5dca6922129b57811ebd8f06e1e92235e212b7996
MD5 2647629ced3994f5aeaef25ef72aacf5
BLAKE2b-256 f46ab63991e758198adbafabead46f499833ae89be219c0dfed19d5ce0406c8c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for toml_rs-0.1.1-pp311-pypy311_pp73-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 8826ba136ae031fe7345f0c19e709f9e6562de0dfbf8fb170830b2373646958c
MD5 6be18f5cba2f5f77cdaaf12ecd5898eb
BLAKE2b-256 49a688b29bbf848e1aa506eab0efad51ba0c4b84d08d530ddc342977cd8597ec

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for toml_rs-0.1.1-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 032ac2971da5045b5ba6d596566d1720f35268f1cb29614de4efa9436c63bbf0
MD5 d4df9f93befbcf8e3c160beff30fe443
BLAKE2b-256 db241ef9b75a79e54b616a603f5669671731816c0dec56b188cd53c3129b725d

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for toml_rs-0.1.1-cp314-cp314t-win32.whl
Algorithm Hash digest
SHA256 da4b325185a869b86acd7a72b4d48b7649a18441d0e7d5e9b620c8868e75884e
MD5 ad3246bd6182437705bf33bf5dfbc0fa
BLAKE2b-256 60ff142b4c2397167e0c5ea697914ce4ae0b6e224fe2b6ab74893291cee29d2d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for toml_rs-0.1.1-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 9d1318996f66550402380c58014285884a3fb8ecb795ac4669d28c64d6373769
MD5 177ab62ff2ed66d24ac3b3dba0e42c75
BLAKE2b-256 eaf357bd7a67b05f1e92ea28a03387f8beffe13a43aa49110f85934c0a4596c2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for toml_rs-0.1.1-cp314-cp314t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 5e514fa7256c3024b8506266bc23211f3e9dc230b04d8f606cf721f03389be9f
MD5 97ae0aa6fc9484c480ae91ad114c421b
BLAKE2b-256 f1512d97c29da0c2dd62b38f20fbddf7066b5019f9ceb9783c395accb29c1860

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for toml_rs-0.1.1-cp314-cp314t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 c87a72725c4a78e8ddc0d432263d6ea1fcdbc21d4adf61f131647a8f50cb47a8
MD5 3be9a81137e1620fe2069d02aa859bc5
BLAKE2b-256 330453bf761800639dca2801303424119d6a31cd5495b58e7670291d78df21d3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for toml_rs-0.1.1-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 17469471933b2fd1fefecdef4ecebc6c8866a47ecc0b973927d1fdb775d982c3
MD5 b3113f9c0fe33f7250e50da2f94b86eb
BLAKE2b-256 7ccfe822b193475baaed8b88a290f3044614b4e00396f007937fb84c8f7d1960

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for toml_rs-0.1.1-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 780484eb9fff2506f4ed5a47bf7ef46d73b94f9c947a90f38ff7f907fe39373e
MD5 f18747b4f56aeefab8abb7233a47d3a1
BLAKE2b-256 5a583fbd1524558e29fb018eef686002c059a100bfd7efd6e5fda046a58bfdb8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for toml_rs-0.1.1-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 335b32f96cbe6813dba12f2af48db47947b42f71f469f52369e9d675c86a4892
MD5 6b3c8fb1cfc3c4e72f2b33b044312103
BLAKE2b-256 6ffdc2a91708c252187a42c2eb43754eddcd3cf515222cb949b1007cae254b32

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for toml_rs-0.1.1-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 d00be103d45af3f796c12fa2d280b1d715bafa19d86873d9f465f2d0667f9730
MD5 318b2db18fb643469b697390ebc1741d
BLAKE2b-256 2c76a18df265132e5479d19411662486bb24178e402e3fcd512316b35cb0433b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for toml_rs-0.1.1-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 2d74b65470e214caee0f95b216af0e254b2ac4106d8a615e9520b994b1d7640f
MD5 c075af28e0130be660b6e52c349e3090
BLAKE2b-256 c65bb004c28fd63160c66af939e21e53ca06bd046ca288522886f66c7f68ceb7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for toml_rs-0.1.1-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 3933d340d1b1e37d74c155ec0fea76ec8eb69f63038f77da5f0950c5a9af4bbc
MD5 4ef5be5cfdab79aa4d7710c0c34f9488
BLAKE2b-256 d979d7b6c4a4aee049ec7d564a8d29dab87d7ffb9c45469cdc029d8240ffdce3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for toml_rs-0.1.1-cp314-cp314t-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 f42118a034f0ccd25cfb5565b56f6c0b80872d327e54102b68fc15c7e306a8a9
MD5 96997f9695799872a668782b18b21d18
BLAKE2b-256 9adf31f47f3ce5af687fe7d0f86ba8bb33d52f96d99259d26e82ad696ef0cc39

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for toml_rs-0.1.1-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 7a0dae1a9d8295551d15797e12530c616931bf8da87e0e1a1942921433bdd9a1
MD5 755b139b351b29e94170e9e54c884023
BLAKE2b-256 4973d9e7a2586dcf280b7b58494fcf78dd433a878a1ae67bf56d74fb42038813

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for toml_rs-0.1.1-cp314-cp314t-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 6163709b1499af09b8663bfba21dd33e965224823bbb33447406a9113f8ad86a
MD5 063cb27a2e7cc2a9850473dd488c08a9
BLAKE2b-256 3ab0365cf02e6a9e4f3f009e0d445f6be11e9f8e6b7a6c8d3bdd98f2edffd8cc

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for toml_rs-0.1.1-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 1ffd161da75fe93557f4cfe98738fe01162a063961f60769508201a598b32a05
MD5 3772f603cdd4dca298a77526f2a4acfe
BLAKE2b-256 48076d01c8654ea8d52bba2ec9c092bd49a0b00fb27e89a19c81499abf0f0665

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for toml_rs-0.1.1-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 7993afa92b7f81f86f90cc4c9f108712f1b40b94deecc256b48ef06543e76670
MD5 c8880295a36065431f524fc366fc1751
BLAKE2b-256 772030a962907314e7d1a734b296f9c09cb1306bcddc6c219c69dbb7879f56be

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for toml_rs-0.1.1-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 6101a92140e6d1cbf16a5f47ce75627ea197febfd7608acc5b2c0f0375a528e5
MD5 f45e62664342053d9ca45097c9482fd4
BLAKE2b-256 fb51a16d76d2b6a4d89bdb5f914971c800a1e67b0c574e23dfa42cb51c935daa

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for toml_rs-0.1.1-cp314-cp314-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 fd95869c00a420020145916bf0fea67d96e2518fedb974fe875765bf17b082f6
MD5 5f5590df4b0c09307400f97ea4457cb2
BLAKE2b-256 d6f262a454c5bd7e718be418c53fa7783b1135477c8cce21652c59f21dc378e1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for toml_rs-0.1.1-cp314-cp314-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 162db7b9a0c210660bd0afdf4062ff4590e226fce8bf9fe7d66431e97d6fd884
MD5 e21c6ab81dbb885e0360279c51a49ab8
BLAKE2b-256 d16a9661282dfb073a513608e4d29243cdc965bdef439e8c32b652c8121a869e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for toml_rs-0.1.1-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 3c787c94d973dace6b51e37d10ea81ebcd64fab07d919d0b9584fd85eac05a1a
MD5 d7bb40fb34b94c0c90550f625b522f48
BLAKE2b-256 6455d4318c221dc7963815872b21ae453487d81cb4653796c7601a92745cd4ec

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for toml_rs-0.1.1-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 9c160b4c8061be5a9eadefcb11f4e4f4dcb3e8815971f0af28f8b4905c372c3a
MD5 41209a8f2bb4abfaa881abe62825b184
BLAKE2b-256 2d5ae40ca85129c9c73a5995e965ceddfffd43874a087830bc1f7cc2fd335546

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for toml_rs-0.1.1-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 da3481e166c5132438843acd4e138bd59db936611aa963189adc7427d409409c
MD5 817e76559ea87666008de01432d5e368
BLAKE2b-256 f926bc76765efc12c9935073b927c77b681aefd51c08eb470c113bf162f416ea

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for toml_rs-0.1.1-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 4e3718a14a732230d968cee931897fbedd2468fd33f8a385be4d651718055764
MD5 3b86038ff31a1f7442829e3b2a5f1f16
BLAKE2b-256 a2051d5d96f23a1f722316c7366c207d07864a1c9073f7e6e760479895d4991a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for toml_rs-0.1.1-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 5ccfc18822574939c5086e609b0cef12549ce659d27f10e3111fff30ac2ccf1c
MD5 d13c70bc465999d802a0f765f512c39c
BLAKE2b-256 9d44d8f434225cbd84f2606a6361bfa21cde7bab705f4d855198b7cfa7fa57f0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for toml_rs-0.1.1-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 13ee882ff385c10d4bff836d1d1d24b52a7f1d38c28e4d83aea1102cc47df5b1
MD5 f29b55f9bcf0e3fbb0336c8970fa1f43
BLAKE2b-256 7518ec10e62d41d0ccbb36d1c87c3da2e53a3eece29dcfb984a3e4a7a249ded1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for toml_rs-0.1.1-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 4c80f2bb3483a75c7936d1c411f50ce857a9a0e4fcb84a290f4573be891e2060
MD5 351145a23b07ed364fe6a7982023756e
BLAKE2b-256 f2c1b1af7a98eba8c0bc2925a8b3bc41e92fd57296d9f577e2992826f526cb0c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for toml_rs-0.1.1-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 2a8df7458c19a104167b5cfdd8eab12d619f2b0b2c90483e1b149f234c4ca8e8
MD5 5406e9d51644c0862ae81ca3632967ee
BLAKE2b-256 86522f1ec6e83f3ed03346b954a085faa7c55a0680e2056f0c717ae0bc5c7e58

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for toml_rs-0.1.1-cp314-cp314-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 f1515a4c6b731cc1f7f40017279861836bf23bc3f6cce77737e1cfedab0e146b
MD5 743812a13e06a36255e012478647f8bc
BLAKE2b-256 b4d0a63f52a4ceecccb8770985c2d6f58e373a2b1bceb35536278f902d88b8db

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for toml_rs-0.1.1-cp313-cp313t-win_amd64.whl
Algorithm Hash digest
SHA256 5bf5bde749a39770d47ceda2160da5423fcde6f0125f3bc8a59a74a27f2b76e8
MD5 37cbc63a21b28d157bb6f990614b0db7
BLAKE2b-256 f83560721b7c52c269e083a53d4a27926aa1799cb59ef08272d273f3799e61fb

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for toml_rs-0.1.1-cp313-cp313t-win32.whl
Algorithm Hash digest
SHA256 7baaf29d5ff6d0594e02b2430b5ce0e9d81c5c9f28d803077834e61204eeef10
MD5 c18fd7302b8e7edf799fb5b9f53da9f2
BLAKE2b-256 6c276f332d403402ae58b99b003750657d7db8e4b53497d8b7b41e673e6eb7ee

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for toml_rs-0.1.1-cp313-cp313t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 935b014b9d0eb55a69a6c9f88e740835da2b6b588eaf256ea574ce7ece8f8138
MD5 14175710d5cf300dd3ee1791957290e8
BLAKE2b-256 3038603ac93a58317483317a81d15e3b14e3225710fca0638f9d36b1371f7ced

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for toml_rs-0.1.1-cp313-cp313t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 3e6d99e1c2568497c8f8c0fde20fb9d0c62cb3fa738776e453fdf988381caaeb
MD5 0e7ed001eb6d8f8dc0d643e5c56477eb
BLAKE2b-256 8e319f4916992845da59e849c21c34aeff79612cdb364f17e586011e722eaa27

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for toml_rs-0.1.1-cp313-cp313t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 a625d13397bfb7ee30302b35429e22719798264083878dc0d70df557cbde6d82
MD5 e4fdec7b60af2bd3c69f0c86cba15a78
BLAKE2b-256 aa961887f0817b38c6a2bb8f532054088c4fbc162e4c30a6c910138fb2d100cf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for toml_rs-0.1.1-cp313-cp313t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 c8b914d7fc52eadbcacff4b2c9b92342f6e93122700de7a16306a75805a3c91b
MD5 b7b490d6b58d5913dcba501207420e0a
BLAKE2b-256 5a0bb45f5e38041e583aa853b23b88e5e3322b492747b8de3cdc3043fca31ba0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for toml_rs-0.1.1-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 9e003c148e7d223c21de60b383da8e53af86b42ff86ad14aa77592b0c993f782
MD5 b09b894c4891f417913cc23fb8f354a4
BLAKE2b-256 3a0c3d963383dee14a67f9e4039697da6e2bf0d7eb69c5fe499be3f54b3921cd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for toml_rs-0.1.1-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 90e6aed00c9e3992e476ca6fb8acf6c9b398d15c15c815604ab7ce1f82d9e777
MD5 ef0c1517a2ed5f88ccc4bb3cc270e499
BLAKE2b-256 747af3cda6f577d63988ed53dbc79ed5eca4d9387465834d44348975900bd42c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for toml_rs-0.1.1-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 f128bdcd659f2fc81c2af886819d7c3ef2f920d761cf26fa1eaa76f5163a7b50
MD5 9093a29951cd882346b4efbd6ddba98f
BLAKE2b-256 15fce27869a5da83631cb76c0074fc1a0e3cd61381492c2d46a82699b7d71bc1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for toml_rs-0.1.1-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 92a62bbc31612da4ec64b86097d05d770fe4d9fbbe2be60df10f0bae668c2923
MD5 8d1864cf1f9ee0d7e61e65154381bdff
BLAKE2b-256 8cc4232318819a6924b40a2e0982d291a1fbd44703deb64e3015f75093e236a4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for toml_rs-0.1.1-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 9c65f917dd99069261a70264aa710987aefa59657788babf3d6412a953c7b201
MD5 13fc00ac7dea73dba4dbaa89de81cf2c
BLAKE2b-256 74aa5a50076198e4add3f154eb74007afa617826d9464b6f03beeca8edbf2aa2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for toml_rs-0.1.1-cp313-cp313t-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 1a7555ea3fbdbb1d78110112d953166942481976bf558aa2bda8f7a927f3e18d
MD5 22b46362ff4b68dcf88778843bea8316
BLAKE2b-256 1b5cf0f38b7b717d729d63f077449637be0908346d2a3b58ac53da6c3c006013

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for toml_rs-0.1.1-cp313-cp313t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 42096c7a259e8956aed0f8f5a6bdb36d1cbba508820640bc8bc123eddcdd1c70
MD5 2976e21f17f8c8d0c1950e5b59f3b0db
BLAKE2b-256 52975a8de544dc8828f4d04c630ab05621f0be13bb8adfa1fcd94e183778dd69

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for toml_rs-0.1.1-cp313-cp313t-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 041b664337022eba025e1b7cb85a6adced67ea383b729ff69cf463f4a0c12ad1
MD5 d81498b030f2f6a788932ec89b5a064f
BLAKE2b-256 294fbd4e1c37250c6b6d409d028ca9bf1a23b3318e7f059618c8ceeac32be31f

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for toml_rs-0.1.1-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 4fcda1a67031a844353ecbe64744660ae3366140e4b38132ee6e27008e975824
MD5 617d88fe7cf5490293d58fcd8d41ca15
BLAKE2b-256 043787d7bd39f2e7fcb53a9f043e11117a5abe82e1d58daf3801352c84910482

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for toml_rs-0.1.1-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 425c2844e16487c7f9c071cf8c29e14fe8373640bf6bb074c82806144714d55c
MD5 e16ab74ec8d314335af25dade352589d
BLAKE2b-256 c1ee2b5e884705ff87c669636fda83d5f297fa669e1e06a670e98925fbb17540

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for toml_rs-0.1.1-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 59c1c55d96c5e75e9270ac68b488bd9d5bc45b217accfac443f4f9215d4ef54c
MD5 db1468efb7c87fd378a655d5d2358afa
BLAKE2b-256 7f79b9ebab6926ed018dac3131850e6a7d095c67b1068a4b9f796f04f90b279a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for toml_rs-0.1.1-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 b63ca4602fb79926f2e08eca9b80140d85c06eb45f62349df17bfad01bcf96ce
MD5 3ea0436a3f90aa745047fba1c550ba8b
BLAKE2b-256 9317a5c93d76f0f2ad5127af57e01a6b85d9bdb7078a8d1c98512254bcdf268e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for toml_rs-0.1.1-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 defb1a0ce7f68fbf8cf4ebc59177993ed865ba1e2354bac01e7b6bb543303269
MD5 d7e5186c8e6ad5685838235d86706f7f
BLAKE2b-256 b929b6832e98118780ffbb5689ddde27882b1d99fae5f0d465b1cea5448f4bd7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for toml_rs-0.1.1-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 79e259df948625d51d29ff24f127f9d5760202fbf8698b7941cb27460a108181
MD5 3f1b9648eafd93a38a8f9dbb9e2f6810
BLAKE2b-256 fed0b5e241d1c9fbc423b894bb3261955f84a7d2a654da5c400dce31cb017f59

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for toml_rs-0.1.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 6b0c2b9ef42a69ca5ac53dd000d59cb33b9378fd618e7c186e37655464444709
MD5 154db2003aeeedf2cd589034f4222f12
BLAKE2b-256 8638a9d5c7bcc4ed5b545e93ace2dcfd8308783a03cb63773b874da8664a2e37

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for toml_rs-0.1.1-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 d54794f68aaa4b32e048aee42d63d8b398ba26ac58d5a6b820d3d41048bd19e9
MD5 2f29e3a7f58b3ea44c7b6ba51717774e
BLAKE2b-256 554e0eec38c451e8284ed8f0251d988c144c4684b13527ebd0a359cd0a5da890

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for toml_rs-0.1.1-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 f5961e9f1af659d2b0987428e84ed5a113bd80d997f2b968d1a36ca30db432d8
MD5 29b179672edb8208612f5841651992f5
BLAKE2b-256 cf0b8725975765c895535dbbcc4c0be69bbaf7ff2c5c39a92dc6094bcb82330a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for toml_rs-0.1.1-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 7a10f6d2d7bbf2bcf67c659c3d8d629f9cb1791cb5da1d573c03eeccc4a3cfe7
MD5 10f29ce3a3b4229b7c2e8112a45f4a77
BLAKE2b-256 c4f42c64ef917baad5b608d76242369da4173f5d83acc6cfe08f525bc2bffb0d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for toml_rs-0.1.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 c3e98e54601d1c4d6b9395b722caee94d03e1ea7e479dedf90e376b67013640a
MD5 7340920c68031fb8a968cef7b5865cba
BLAKE2b-256 c16bd5ad7319d3dc4a5c0c4151a0d6852790eb4525bc1a938ca1ea29549a685b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for toml_rs-0.1.1-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 75c49e5f1fbc1ff556ec9b07b8ccc95b18b1f94742afdd8cb3f8f001ea0960ba
MD5 afa6f0ff9bfd154fc0f6abf17c01abaa
BLAKE2b-256 bd7f50e45b772db01181a437372de48c82f8a4199194288b7d20d08596aa8e76

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for toml_rs-0.1.1-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 0bdbff6109ca34810ae4740c855940781a62e123b1717f2acc75d4fecdccdcab
MD5 844312eca7f88e3b8205d727b1124e3c
BLAKE2b-256 3e6ad87325a46a3834117212c289fa6aa0085e94b8a3ab585eb9ac0eaef8bf0a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for toml_rs-0.1.1-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 abf7f5c211393e7be7854854be2c51d4c71a7041c6e0f0a4ece1b67f77c6fd49
MD5 f513ef34321ad633db1b9d423d816cc4
BLAKE2b-256 83e0864bd1fcbb259787d891500d75f5a566c015420455ccd37f67080400682a

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for toml_rs-0.1.1-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 50602c91801fc041eb4788792bc7cc2311ae175530c6597faa0a09053e76697a
MD5 02b94f6e673e773929ac6c7fce08b2fc
BLAKE2b-256 3e850124af57b700fca72dd6c4190a92f217a2082fe1d33728ee72dd524dcec4

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for toml_rs-0.1.1-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 8d6b8eb611a66184268d06f8413a44936460bc2f09747d4502e04329b5726bcb
MD5 9c7f572c14c8bfaf41e8643440cba665
BLAKE2b-256 bfb4bdbb58350ec79388ba8f6c4ee0da0776f5b8455ddca2690ace60ca45b397

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for toml_rs-0.1.1-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 c910e978edf4b102b5473abd31d8c1ff38c54620afedd8ed88cf8cfe5da3c17a
MD5 3c07e7100a6b191821c041b5b0297c10
BLAKE2b-256 e8014f12127330eb7ce7ab8af53ae6845383583ad98af475343d0388be745b29

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for toml_rs-0.1.1-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 de11ef3121e631510cac2d3000f2cd16873700e91456b8e37b8e91710d03cd71
MD5 eb6f36130234103201ded1010d74c8e4
BLAKE2b-256 249dfa063f3783313ef2fe7ae1449ba2988a57dc48fee971159c9dc31b79adbf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for toml_rs-0.1.1-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 11212edb6899631e0cacc4a31caa3dda7ca329a502179b0e355c7ca9d9fceb95
MD5 470fde51626b60aeaad30e28e384836b
BLAKE2b-256 ba8fcc76d741d46724f05256d54581a3ae1a1d0095735114490299580ed1541c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for toml_rs-0.1.1-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 a031fe9de52667084a0236a42809d9c7ce0caf0fe9034d02ebbdf1a89e429dbb
MD5 138963c5b511987c3900ae74b4660397
BLAKE2b-256 1da32e809b82387ab86b94506af365070b7e137277c322694da7ab9713f1f6f3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for toml_rs-0.1.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 25ab1ed00660e56f62da2857052e06485f9b36fdc9e2283acb78497c7f3d4c85
MD5 8bcda65563814c9cb71243dbb2c59f43
BLAKE2b-256 60c6ad73883d3d117ea1fbdb0be6e4e3619cd6fb8b448ffe0f05444b26433931

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for toml_rs-0.1.1-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 a9b4ca9bbbf5eec825f9f8723daf50bb0ac6527e05036bc0686e27a340aafb86
MD5 a320d5bef06ba7d17d8a5c5d7532c276
BLAKE2b-256 7109f8305b94c58d2b320b7ce25fe2269deeb4da53522bd0f85be50ac0e2f624

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for toml_rs-0.1.1-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 64f89cb51b5c7b717a920e350df6fc35e73f23e4817ef045fcf8fc96881b84df
MD5 67bc9a9044d6f703c33dd872e18b54c3
BLAKE2b-256 37856345002d49ed26daa38af6dca00a24d2cb0cb3c7adb109c76d3c95ec69d6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for toml_rs-0.1.1-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 9b875088268c7032f7b9d4032a1fe6aaf6d66f3644403e13a61fb1cc21917862
MD5 2d4857ca9fda8f5d58fcde4cd890d3a8
BLAKE2b-256 93e8cdf22e415862e12121d95c9a461cd6d0fd69e2f7ca757e6ce53bd8f6c338

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for toml_rs-0.1.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 8f0d4f3aedec16a58c8d98e877ae15cd60c5abd9dc152481f2eba5fdf4d33d64
MD5 055e66fba63c53009fc755356a2712ed
BLAKE2b-256 b23bcee4beb19d1bb0c519185aaa32ac9617d5850d398e38cff1089107b8a2d0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for toml_rs-0.1.1-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 6a54581755ba6695ec4a3c4e024f0bc21d5eb656c381c4971a8ece419beed6d9
MD5 1535547f2d9b1b0467585f70d02f2717
BLAKE2b-256 88cfbe924e09d12b1b903112a50a0bbeb581a4cd79d31e54a1fab28df19e0209

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for toml_rs-0.1.1-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b582773e2a5be4ea64339365403165c5fbe63f53a2d654f9ddf3fdbf15959232
MD5 0075fcc2a2e9f82d3859febe09485192
BLAKE2b-256 43e1a301fce108281cf9d8e900e009f9d6a47942dea7fde4039827e957cf65f0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for toml_rs-0.1.1-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 7102b2324bf754106bb6bf59b97f751323a668c4b29fc3c7c2dcd1dc44a86b60
MD5 56fa6f1a0170115ad04ddd30815ed741
BLAKE2b-256 8bc99d40a61ca2063fa27dd7d7f4b0e907b2cd19eec18f4c100b42ccd4203114

See more details on using hashes here.

File details

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

File metadata

  • Download URL: toml_rs-0.1.1-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 306.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.1.1-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 1ddeffbfb66c6074e37b01019d33dd2c0e078e90d2a0cf7155e234da56432241
MD5 14949985725b5c605091af4019a4588f
BLAKE2b-256 95145c5c88a8da94c571f0bfd6f8a21ca9b93cc3d8390f03051c13b20c229d33

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for toml_rs-0.1.1-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 3c3b478ee3d6b79122f60cbaa228a584257e402a8d3745be6f61aed5bbe8bbc5
MD5 d0bbb534cca79e8794a3b74e73afa964
BLAKE2b-256 ef2c82644926222cf4b0b323af749ca4d0a36bc3689390c38a719bbbbc975f13

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for toml_rs-0.1.1-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 c63a46c037f27ce8fd7fbab22aa7d8071595c195f3740af7d5d3661ff73ed14c
MD5 2d95b83463f8abe4be7896c1ebfaf212
BLAKE2b-256 0bfc4847db037ed09d36448e6907a8139060bb617622c2aa50443bcbd32057ec

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for toml_rs-0.1.1-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 5b689ec1af49fe8f337fe209da4f8998c0c2f1a4347a2da4a8bb2c11d1b6fb51
MD5 68f5c6996a1e8553d1d2b2f253ac03fa
BLAKE2b-256 35a2b4c1b3eab306bba05762cbaf69a016b538c58507ac0f5388112ae1bf52d5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for toml_rs-0.1.1-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 e26371c491da416ecb110f2640a247c12e8ab6ee84b993e0d697e6331f32bff9
MD5 90a3dbebb4cc69d99950afacaf5e37d2
BLAKE2b-256 90dfc041312fe5b76c8c2c154a3f9b76e27c877f24dae8606fd4fae6d53f2889

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for toml_rs-0.1.1-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 da3b32f2a4c659f49c6cb06bec116e1bd1b870ec5af4f5eb9725529fb3132bd3
MD5 529690465bc0fef123b5b02524f38139
BLAKE2b-256 8a8949180b5979b9104dfe0a365d79b391864bacc62da3d6b8fa02d257e152d4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for toml_rs-0.1.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 32ce94d331b5e35d75f599916630a2dc9c2d77575a9d4860a70596ec217fc50e
MD5 d22ab9d1f4abb9463865e9b8f13ba933
BLAKE2b-256 a3bcb0b166dd54619386ba130c25d449d21313dc80ef2fcc37b81e9a8eeb76ad

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for toml_rs-0.1.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 bb1c566db6cdf0abc82493f2539498d1602980144dcaf36e6817f36baddffafd
MD5 40b9c98b66f2787672b35b21db1a7399
BLAKE2b-256 06cbbe7c1ba9b17c77415e23f01e349a06c0605a126f920dba47cacdb06fa461

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for toml_rs-0.1.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 c99d8fdcd8a3d585875bc7eae540440602c7d6b2aa4bb696f11461e6a6d8864d
MD5 2ec814f593cf8760a7c59729554f3eaa
BLAKE2b-256 7f53e68b9edd54cd67f97610b02c8711f7a636f619e7868e54b0541f49b7fb50

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for toml_rs-0.1.1-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 03967e37dc6483dbee56f81e5291c75a45c107bc73df40f089cf57812279459b
MD5 ba2614e3319b1923c7f991773cd91bf4
BLAKE2b-256 e9037ba35235a84432128e648c3ebdeee4c5219e6c4541d75f9f06294504a080

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for toml_rs-0.1.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 7d10fed7d00a8be1cbdaa6f8dbe81e7b9f4e6791e5a4526e1c840ff2eb3d6fdc
MD5 77c6423758e6aa4b8efc6241b4bef8dc
BLAKE2b-256 2e8e20b159d3fdd281aed50a1915df52a50a05ecb68d6574420cd97631ed4141

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for toml_rs-0.1.1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 dd6d844c67dcf667073f70da6b612972503e02e8e57044510a35a7534830fd32
MD5 7d0d66bdd59b5646222a9fc3a44d77d1
BLAKE2b-256 179b501c19c2e76e0be6a4e6e6824d1e5b28b0b39454c8229230708939306368

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for toml_rs-0.1.1-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 8285741d427d28b5eda177a779cd27b3c88c0f374749f12b668866080fb39723
MD5 08020e67e4c2c8d43e1f017c92b9889e
BLAKE2b-256 fc63f11ad739bfd2aa26f4df566d8afb413a2a72b18ecd25ce99f8bdf26b2230

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for toml_rs-0.1.1-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 4fcb1b3cb92594130ac672e9ce9e8aa746481781bbdc02f76e9be0603e8912bf
MD5 c367b6a94d87ce81bd07db9509eb2154
BLAKE2b-256 dbe5f202588ede46fdb9b56833dd2785696d023a24188345e99f9d3c30ec9e6c

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for toml_rs-0.1.1-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 b79ea13b697e6924e60943db862b37fdc44f4f9483eaf6510e68d00d45d9b760
MD5 bce8005560f9e5a2f3bb2c8b0f3abe50
BLAKE2b-256 63f548345d319e6c175ab1b316d90867f8d4af1e0410f8e1aa02b0dbc66218ce

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for toml_rs-0.1.1-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 aa8b413fa771c2144afa69f8d0144eda3723c960fd21f503adc35c32b6dab9c4
MD5 52d98b128fbf9be2978bec126b2ef166
BLAKE2b-256 f6b0d5c8417462ab0951e3e5f61c540b635cedd9b07f39ecbcd73cde9d645ae6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for toml_rs-0.1.1-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 e9d9e96efe5e7ab3712ac162b70b4b70e8016645c40863ea9a452ffb488b4b20
MD5 7093edab941d25316c4901a20b60efd2
BLAKE2b-256 758b8b5bdb931fd152044de3bc44cf765a4f0ce147e080ac516b9d2e545757f5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for toml_rs-0.1.1-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 6d0e919ee752881f61a39a485053846e5f3faa6104b2628610638fa386b701ae
MD5 c4493daaae8f0d827fe4d031389e4d5f
BLAKE2b-256 515dd2211359f5aaab97de16e1ef76a86c0bafff8bd1b019f3fbf81136647174

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for toml_rs-0.1.1-cp310-cp310-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 19666c43a8fa818c434427efedcb9c7b675f3bdfd4f1fe2b49dae081ad361925
MD5 e60e7af0e7aa7662fea257e7fd34fcc8
BLAKE2b-256 cd6f190560d7eb316fe36740071c95dc7503bc186bc28da1ca61415eab1798c9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for toml_rs-0.1.1-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 7669501eabb8437fbc8dd28f9d2e58fc91b1281978bbee479790d4d36ce34950
MD5 e54f86b1d5ed5d5f0aee3d4ada8b6b3d
BLAKE2b-256 05b62410fabd307453317bb46c1e381f830bc5c67d909f7a620662854dcd2f0c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for toml_rs-0.1.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 61ce4493249c60259931e3dbc4e4136dcd9f33e9df86d60a655880c201f931ab
MD5 9453c4f5d2554b5a196669ccea5ca0d3
BLAKE2b-256 f4ea0a00e8bbbecf79f322ce3b64d9f8ce6817233a40a39d36feb0abf9ce90e9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for toml_rs-0.1.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 7dddcd24b58b9bfdb1105a0cb95704bebefbf20efbb31dfcd7a8c68f04e2b4f1
MD5 f27529a860219746947513622387dedb
BLAKE2b-256 42e781e1a4d5d97e7ba21359b4057b5e5713a8f3a634ec362bc590eb1bf5a071

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for toml_rs-0.1.1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 983b5f084102988a7dfa601c41f71e61a5720449ce889128af0b84abc998d677
MD5 cc59913da2bd38900297395a3f37f61d
BLAKE2b-256 1e8cfe2052407d736ffa1c5a062a98a44a6735576ae1eb045be5422beec17219

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for toml_rs-0.1.1-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 974f71466bc97d6cc7b5ec178574e86b18c87bc9c221b9f7aded977bf7b773d4
MD5 76ece8ce9fff38c806feeb124d403c5a
BLAKE2b-256 6e0079f6a0563977cb06bbad88adc8458c011e804a2654d8d3388f85eceb5f8c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for toml_rs-0.1.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 dc44538e0d3284af3dafe4475417f9091623a6b6f6ea989c01d411095c36573f
MD5 2c291be4369a2a53ed12f192b27e19e0
BLAKE2b-256 906b5aba43676cc95e28fdda2a0b7587a23463f9b17f1c21bb66a6f6bb3576db

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for toml_rs-0.1.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 7264775abb80f107fe5d11b9245b2da0664d4a4fd17b4b82c03de2a36941ceda
MD5 1e7f763650d6166415a4d57100d4bf3e
BLAKE2b-256 2da2aa149bf1aff8fca9784d3d6a375bd2ea39ec6726ddf612b2acf6e1e2c258

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for toml_rs-0.1.1-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 4ed466665f9774aa534416b7b2838384e8ff4f3525279ddff346a54d4c72c6f2
MD5 2a33e24ba03e6038851cbb0d38408ed4
BLAKE2b-256 fd6c93cd22309ad49bbd47da136d7abf7d3a3c9d785c7da4de5065791f62dc56

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for toml_rs-0.1.1-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 ad771cd77f5a93d89f2b54cd6e55fffe5be4be4fb9ea31045ee4d2b9a8c2b008
MD5 74c207409e6f641a7bb3483709cd6273
BLAKE2b-256 f6f13e3cfdbdcdec264f4e13023e69213ea7c471383effe43fc427c2f9efda03

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