# rustoml
[](https://github.com/seanmozeik/rustoml/actions?query=event%3Apush+branch%3Amain+workflow%3ACI)
[](https://pypi.python.org/pypi/rustoml)
[](https://github.com/seanmozeik/rustoml)
[](https://github.com/seanmozeik/rustoml/blob/main/LICENSE)
A modern, high-performance TOML library for Python implemented in Rust.
## About This Fork
This project is a maintained and enhanced fork of [samuelcolvin/rtoml](https://github.com/samuelcolvin/rtoml). The original project hasn't been updated in a while, and this fork continues development for the latest Python versions, with additional Rust tooling improvements.
### Key Improvements Over Original rtoml
- **Python 3.14 Support**: Full support for Python 3.14, including free-threaded mode (GIL-free)
- **Modern Dependencies**: Updated to latest Rust dependencies (PyO3 0.26, toml 0.9)
- **Enhanced Error Handling**: tomllib-compatible error messages with line/column information
- **Comprehensive Docstrings**: For improved developer experience and IDE support
- **Custom Float Parsing**: Support for `parse_float` parameter (e.g., for Decimal types)
- **Binary File Support**: Read TOML from binary file handles
- **Better Type Safety**: Comprehensive type stubs and full mypy strict compatibility
- **Modern Tooling**: Built with uv, maturin, and modern Python packaging standards
### Credits
Original project by [Samuel Colvin](https://github.com/samuelcolvin). This fork maintained by [Sean Lees](https://github.com/seanmozeik).
Both projects are MIT licensed.
## Why Use rustoml
- **Correctness**: Built on the widely-used and stable [toml-rs](https://github.com/toml-rs/toml) library. Passes all [standard TOML tests](https://github.com/BurntSushi/toml-test) with 100% test coverage on Python code.
- **Performance**: One of the fastest Python TOML libraries available.
- **Flexible None handling**: Configurable support for `None` values with custom serialization/deserialization.
- **Type safe**: Full type annotations with `py.typed` marker for excellent IDE support and type checking.
## Install
Requires `python>=3.10`, binaries are available from PyPI for Linux, macOS and Windows,
see [here](https://pypi.org/project/rustoml/#files).
```sh
uv add rustoml
# or
pip install rustoml
```
If no binary is available on PyPI for your system configuration, you'll need Rust stable
installed before you can install rustoml.
## Usage
#### load
```python
def load(toml: str | Path | TextIO, *, none_value: str | None = None) -> dict[str, Any]: ...
```
Parse TOML via a string or file and return a python dictionary.
- `toml`: a `str`, `Path` or file object from `open()`.
- `none_value`: controlling which value in `toml` is loaded as `None` in python. By default, `none_value` is `None`, which means nothing is loaded as `None`
#### loads
```python
def loads(toml: str, *, none_value: str | None = None) -> dict[str, Any]: ...
```
Parse a TOML string and return a python dictionary. (provided to match the interface of `json` and similar libraries)
- `toml`: a `str` containing TOML.
- `none_value`: controlling which value in `toml` is loaded as `None` in python. By default, `none_value` is `None`, which means nothing is loaded as `None`
#### dumps
```python
def dumps(obj: Any, *, pretty: bool = False, none_value: str | None = "null") -> str: ...
```
Serialize a python object to TOML.
- `obj`: a python object to be serialized.
- `pretty`: if `True` the output has a more "pretty" format.
- `none_value`: controlling how `None` values in `obj` are serialized. `none_value=None` means `None` values are ignored.
#### dump
```python
def dump(
obj: Any, file: Path | TextIO, *, pretty: bool = False, none_value: str | None = "null"
) -> int: ...
```
Serialize a python object to TOML and write it to a file.
- `obj`: a python object to be serialized.
- `file`: a `Path` or file object from `open()`.
- `pretty`: if `True` the output has a more "pretty" format.
- `none_value`: controlling how `None` values in `obj` are serialized. `none_value=None` means `None` values are ignored.
### Examples
```python
from datetime import datetime, timezone, timedelta
import rustoml
obj = {
'title': 'TOML Example',
'owner': {
'dob': datetime(1979, 5, 27, 7, 32, tzinfo=timezone(timedelta(hours=-8))),
'name': 'Tom Preston-Werner',
},
'database': {
'connection_max': 5000,
'enabled': True,
'ports': [8001, 8001, 8002],
'server': '192.168.1.1',
},
}
loaded_obj = rustoml.load("""\
# This is a TOML document.
title = "TOML Example"
[owner]
name = "Tom Preston-Werner"
dob = 1979-05-27T07:32:00-08:00 # First class dates
[database]
server = "192.168.1.1"
ports = [8001, 8001, 8002]
connection_max = 5000
enabled = true
""")
assert loaded_obj == obj
assert rustoml.dumps(obj) == """\
title = "TOML Example"
[owner]
dob = 1979-05-27T07:32:00-08:00
name = "Tom Preston-Werner"
[database]
connection_max = 5000
enabled = true
server = "192.168.1.1"
ports = [8001, 8001, 8002]
"""
```
An example of `None`-value handling:
```python
obj = {
'a': None,
'b': 1,
'c': [1, 2, None, 3],
}
# Ignore None values
assert rustoml.dumps(obj, none_value=None) == """\
b = 1
c = [1, 2, 3]
"""
# Serialize None values as '@None'
assert rustoml.dumps(obj, none_value='@None') == """\
a = "@None"
b = 1
c = [1, 2, "@None", 3]
"""
# Deserialize '@None' back to None
assert rustoml.load("""\
a = "@None"
b = 1
c = [1, 2, "@None", 3]
""", none_value='@None') == obj
```
Raw data
{
"_id": null,
"home_page": null,
"name": "rustoml",
"maintainer": null,
"docs_url": null,
"requires_python": "<3.15,>=3.10",
"maintainer_email": null,
"keywords": "toml, parser, serializer, rust, performance",
"author": null,
"author_email": "Sean Lees <sean@mozeik.com>, Samuel Colvin <s@muelcolvin.com>",
"download_url": "https://files.pythonhosted.org/packages/e8/68/aed33ee28c73e862ec965193057dca1bedc5b07de5c5b6fa292f9bf36e79/rustoml-0.13.0.tar.gz",
"platform": null,
"description": "# rustoml\n\n[](https://github.com/seanmozeik/rustoml/actions?query=event%3Apush+branch%3Amain+workflow%3ACI)\n[](https://pypi.python.org/pypi/rustoml)\n[](https://github.com/seanmozeik/rustoml)\n[](https://github.com/seanmozeik/rustoml/blob/main/LICENSE)\n\nA modern, high-performance TOML library for Python implemented in Rust.\n\n## About This Fork\n\nThis project is a maintained and enhanced fork of [samuelcolvin/rtoml](https://github.com/samuelcolvin/rtoml). The original project hasn't been updated in a while, and this fork continues development for the latest Python versions, with additional Rust tooling improvements.\n\n### Key Improvements Over Original rtoml\n\n- **Python 3.14 Support**: Full support for Python 3.14, including free-threaded mode (GIL-free)\n- **Modern Dependencies**: Updated to latest Rust dependencies (PyO3 0.26, toml 0.9)\n- **Enhanced Error Handling**: tomllib-compatible error messages with line/column information\n- **Comprehensive Docstrings**: For improved developer experience and IDE support\n- **Custom Float Parsing**: Support for `parse_float` parameter (e.g., for Decimal types)\n- **Binary File Support**: Read TOML from binary file handles\n- **Better Type Safety**: Comprehensive type stubs and full mypy strict compatibility\n- **Modern Tooling**: Built with uv, maturin, and modern Python packaging standards\n\n### Credits\n\nOriginal project by [Samuel Colvin](https://github.com/samuelcolvin). This fork maintained by [Sean Lees](https://github.com/seanmozeik).\n\nBoth projects are MIT licensed.\n\n## Why Use rustoml\n\n- **Correctness**: Built on the widely-used and stable [toml-rs](https://github.com/toml-rs/toml) library. Passes all [standard TOML tests](https://github.com/BurntSushi/toml-test) with 100% test coverage on Python code.\n- **Performance**: One of the fastest Python TOML libraries available.\n- **Flexible None handling**: Configurable support for `None` values with custom serialization/deserialization.\n- **Type safe**: Full type annotations with `py.typed` marker for excellent IDE support and type checking.\n\n## Install\n\nRequires `python>=3.10`, binaries are available from PyPI for Linux, macOS and Windows,\nsee [here](https://pypi.org/project/rustoml/#files).\n\n```sh\nuv add rustoml\n# or\npip install rustoml\n```\n\nIf no binary is available on PyPI for your system configuration, you'll need Rust stable\ninstalled before you can install rustoml.\n\n## Usage\n\n#### load\n\n```python\ndef load(toml: str | Path | TextIO, *, none_value: str | None = None) -> dict[str, Any]: ...\n```\n\nParse TOML via a string or file and return a python dictionary.\n\n- `toml`: a `str`, `Path` or file object from `open()`.\n- `none_value`: controlling which value in `toml` is loaded as `None` in python. By default, `none_value` is `None`, which means nothing is loaded as `None`\n\n#### loads\n\n```python\ndef loads(toml: str, *, none_value: str | None = None) -> dict[str, Any]: ...\n```\n\nParse a TOML string and return a python dictionary. (provided to match the interface of `json` and similar libraries)\n\n- `toml`: a `str` containing TOML.\n- `none_value`: controlling which value in `toml` is loaded as `None` in python. By default, `none_value` is `None`, which means nothing is loaded as `None`\n\n#### dumps\n\n```python\ndef dumps(obj: Any, *, pretty: bool = False, none_value: str | None = \"null\") -> str: ...\n```\n\nSerialize a python object to TOML.\n\n- `obj`: a python object to be serialized.\n- `pretty`: if `True` the output has a more \"pretty\" format.\n- `none_value`: controlling how `None` values in `obj` are serialized. `none_value=None` means `None` values are ignored.\n\n#### dump\n\n```python\ndef dump(\n obj: Any, file: Path | TextIO, *, pretty: bool = False, none_value: str | None = \"null\"\n) -> int: ...\n```\n\nSerialize a python object to TOML and write it to a file.\n\n- `obj`: a python object to be serialized.\n- `file`: a `Path` or file object from `open()`.\n- `pretty`: if `True` the output has a more \"pretty\" format.\n- `none_value`: controlling how `None` values in `obj` are serialized. `none_value=None` means `None` values are ignored.\n\n### Examples\n\n```python\nfrom datetime import datetime, timezone, timedelta\nimport rustoml\n\nobj = {\n 'title': 'TOML Example',\n 'owner': {\n 'dob': datetime(1979, 5, 27, 7, 32, tzinfo=timezone(timedelta(hours=-8))),\n 'name': 'Tom Preston-Werner',\n },\n 'database': {\n 'connection_max': 5000,\n 'enabled': True,\n 'ports': [8001, 8001, 8002],\n 'server': '192.168.1.1',\n },\n}\n\nloaded_obj = rustoml.load(\"\"\"\\\n# This is a TOML document.\n\ntitle = \"TOML Example\"\n\n[owner]\nname = \"Tom Preston-Werner\"\ndob = 1979-05-27T07:32:00-08:00 # First class dates\n\n[database]\nserver = \"192.168.1.1\"\nports = [8001, 8001, 8002]\nconnection_max = 5000\nenabled = true\n\"\"\")\n\nassert loaded_obj == obj\n\nassert rustoml.dumps(obj) == \"\"\"\\\ntitle = \"TOML Example\"\n\n[owner]\ndob = 1979-05-27T07:32:00-08:00\nname = \"Tom Preston-Werner\"\n\n[database]\nconnection_max = 5000\nenabled = true\nserver = \"192.168.1.1\"\nports = [8001, 8001, 8002]\n\"\"\"\n```\n\nAn example of `None`-value handling:\n\n```python\nobj = {\n 'a': None,\n 'b': 1,\n 'c': [1, 2, None, 3],\n}\n\n# Ignore None values\nassert rustoml.dumps(obj, none_value=None) == \"\"\"\\\nb = 1\nc = [1, 2, 3]\n\"\"\"\n\n# Serialize None values as '@None'\nassert rustoml.dumps(obj, none_value='@None') == \"\"\"\\\na = \"@None\"\nb = 1\nc = [1, 2, \"@None\", 3]\n\"\"\"\n\n# Deserialize '@None' back to None\nassert rustoml.load(\"\"\"\\\na = \"@None\"\nb = 1\nc = [1, 2, \"@None\", 3]\n\"\"\", none_value='@None') == obj\n```\n\n",
"bugtrack_url": null,
"license": null,
"summary": null,
"version": "0.13.0",
"project_urls": {
"Homepage": "https://github.com/seanmozeik/rustoml"
},
"split_keywords": [
"toml",
" parser",
" serializer",
" rust",
" performance"
],
"urls": [
{
"comment_text": "",
"digests": {
"blake2b_256": "20d21a5e95e42be327459df079e80fd74055df0bebea7b73f9ac303c136e98de",
"md5": "b6cdcd55f20d4d4c66dd7340e12e8b95",
"sha256": "123417badc115f7d30b334821be0041ed4e9a458d29acb21699241b1a61432e3"
},
"downloads": -1,
"filename": "rustoml-0.13.0-cp310-cp310-macosx_10_12_x86_64.whl",
"has_sig": false,
"md5_digest": "b6cdcd55f20d4d4c66dd7340e12e8b95",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": "<3.15,>=3.10",
"size": 369422,
"upload_time": "2025-10-14T00:22:01",
"upload_time_iso_8601": "2025-10-14T00:22:01.514090Z",
"url": "https://files.pythonhosted.org/packages/20/d2/1a5e95e42be327459df079e80fd74055df0bebea7b73f9ac303c136e98de/rustoml-0.13.0-cp310-cp310-macosx_10_12_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "697129e2d8fb26f14b709432e2b6610a4abbd521f6e72951ff59f75b25e3fb5f",
"md5": "c6db2d7e8b0419b3f4b826e3b38bad40",
"sha256": "a3d8cf50bf6518a8372b0be9b716e3d67f15ae7615ecc2e10b27b28bb95cd72b"
},
"downloads": -1,
"filename": "rustoml-0.13.0-cp310-cp310-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "c6db2d7e8b0419b3f4b826e3b38bad40",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": "<3.15,>=3.10",
"size": 351284,
"upload_time": "2025-10-14T00:22:03",
"upload_time_iso_8601": "2025-10-14T00:22:03.031659Z",
"url": "https://files.pythonhosted.org/packages/69/71/29e2d8fb26f14b709432e2b6610a4abbd521f6e72951ff59f75b25e3fb5f/rustoml-0.13.0-cp310-cp310-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "169915034350d3cb84349a712cb2198a7476de175b6409121f9d283e3a1d8bc9",
"md5": "a6572b1c2144dbaaa1a5df8b501cd40f",
"sha256": "1dee11f1be6b95cdb365031898ad12fea8ee26b75ecb56a9370914be277722fa"
},
"downloads": -1,
"filename": "rustoml-0.13.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "a6572b1c2144dbaaa1a5df8b501cd40f",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": "<3.15,>=3.10",
"size": 382965,
"upload_time": "2025-10-14T00:22:04",
"upload_time_iso_8601": "2025-10-14T00:22:04.699491Z",
"url": "https://files.pythonhosted.org/packages/16/99/15034350d3cb84349a712cb2198a7476de175b6409121f9d283e3a1d8bc9/rustoml-0.13.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "458ee7c864653072e26f3845f094a7a1cda91913f243550475936761b1667b23",
"md5": "f786e9ff4bebb323a0a73209d36be639",
"sha256": "4a1dae600974d2367238a86a993c6c88bbf38ad7e57df22606aec38b0ea96f80"
},
"downloads": -1,
"filename": "rustoml-0.13.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"has_sig": false,
"md5_digest": "f786e9ff4bebb323a0a73209d36be639",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": "<3.15,>=3.10",
"size": 410343,
"upload_time": "2025-10-14T00:22:06",
"upload_time_iso_8601": "2025-10-14T00:22:06.144490Z",
"url": "https://files.pythonhosted.org/packages/45/8e/e7c864653072e26f3845f094a7a1cda91913f243550475936761b1667b23/rustoml-0.13.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "3b532483e1afd9b63dfe7ef3ec3f2fe2172c82dd1b9a17f6c4688029601eebe6",
"md5": "25aa4bb883f7f14fd644d883fc7011c9",
"sha256": "1e742a9540588b13a7673c98a6b32e3c091d68bed094055e9f4d6c27ee107f23"
},
"downloads": -1,
"filename": "rustoml-0.13.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"has_sig": false,
"md5_digest": "25aa4bb883f7f14fd644d883fc7011c9",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": "<3.15,>=3.10",
"size": 435356,
"upload_time": "2025-10-14T00:22:07",
"upload_time_iso_8601": "2025-10-14T00:22:07.738550Z",
"url": "https://files.pythonhosted.org/packages/3b/53/2483e1afd9b63dfe7ef3ec3f2fe2172c82dd1b9a17f6c4688029601eebe6/rustoml-0.13.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "581afe67526277039de0869b2a03443d6dbcbc39604f2ed4f0869d5c08f5b929",
"md5": "6e89f42d116cc0b5a9611f1f4b49a973",
"sha256": "302405238103ef4534db8bc2ca7662c3855ae9f5d8a7b15240c2e2d60818b231"
},
"downloads": -1,
"filename": "rustoml-0.13.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"has_sig": false,
"md5_digest": "6e89f42d116cc0b5a9611f1f4b49a973",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": "<3.15,>=3.10",
"size": 450871,
"upload_time": "2025-10-14T00:22:09",
"upload_time_iso_8601": "2025-10-14T00:22:09.298991Z",
"url": "https://files.pythonhosted.org/packages/58/1a/fe67526277039de0869b2a03443d6dbcbc39604f2ed4f0869d5c08f5b929/rustoml-0.13.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "e692b43bc8d5bce28f1178e05292adefff1063adb9dee1af2716448277fc8201",
"md5": "97174ad958f4912aa3332de171729e39",
"sha256": "f64596235f9d2ae45107e39c2bb76af0b8fe139759f5a22183851436d0de3cd8"
},
"downloads": -1,
"filename": "rustoml-0.13.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "97174ad958f4912aa3332de171729e39",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": "<3.15,>=3.10",
"size": 389923,
"upload_time": "2025-10-14T00:22:10",
"upload_time_iso_8601": "2025-10-14T00:22:10.842684Z",
"url": "https://files.pythonhosted.org/packages/e6/92/b43bc8d5bce28f1178e05292adefff1063adb9dee1af2716448277fc8201/rustoml-0.13.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "f2919015553c44b049244dc9a40e9257b6fb127d201d2e09eac8725f9e57115c",
"md5": "628ee565fcf18ee0de2245a65df890d6",
"sha256": "dd82fc585af03dc49e03c95e7a140f8ba6a6e434f2b64f30137c9e1103f0e3c0"
},
"downloads": -1,
"filename": "rustoml-0.13.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl",
"has_sig": false,
"md5_digest": "628ee565fcf18ee0de2245a65df890d6",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": "<3.15,>=3.10",
"size": 417753,
"upload_time": "2025-10-14T00:22:12",
"upload_time_iso_8601": "2025-10-14T00:22:12.515571Z",
"url": "https://files.pythonhosted.org/packages/f2/91/9015553c44b049244dc9a40e9257b6fb127d201d2e09eac8725f9e57115c/rustoml-0.13.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "24df5e261a131acf0ac2a6ee26ec1a3a9bc5754f4efcc6f488d86d1be752ad42",
"md5": "4131a8184ca34e89c72bb950982730d7",
"sha256": "14cc319a8fa0bb6fc8fe30e7069f006479bc41464563386273508dc9d2ac146c"
},
"downloads": -1,
"filename": "rustoml-0.13.0-cp310-cp310-musllinux_1_1_aarch64.whl",
"has_sig": false,
"md5_digest": "4131a8184ca34e89c72bb950982730d7",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": "<3.15,>=3.10",
"size": 564099,
"upload_time": "2025-10-14T00:22:13",
"upload_time_iso_8601": "2025-10-14T00:22:13.739379Z",
"url": "https://files.pythonhosted.org/packages/24/df/5e261a131acf0ac2a6ee26ec1a3a9bc5754f4efcc6f488d86d1be752ad42/rustoml-0.13.0-cp310-cp310-musllinux_1_1_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "e2f03c8798105c0e271036c78e4915f6fb68b1273224dd6eb01baadb01ff94a6",
"md5": "63d9fa2935d635f5c597682be4bcf7da",
"sha256": "77f119b873ad87cee99c0d0b96bc37e1f8152b0663f19b47f98705f835037af2"
},
"downloads": -1,
"filename": "rustoml-0.13.0-cp310-cp310-musllinux_1_1_x86_64.whl",
"has_sig": false,
"md5_digest": "63d9fa2935d635f5c597682be4bcf7da",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": "<3.15,>=3.10",
"size": 562942,
"upload_time": "2025-10-14T00:22:15",
"upload_time_iso_8601": "2025-10-14T00:22:15.283590Z",
"url": "https://files.pythonhosted.org/packages/e2/f0/3c8798105c0e271036c78e4915f6fb68b1273224dd6eb01baadb01ff94a6/rustoml-0.13.0-cp310-cp310-musllinux_1_1_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "cff1a558414bce3894e73998c2341aeadffd23b35f44db553c2feac7fdbbb038",
"md5": "d28be5cc9da6e1972ac9f2c934c1aba4",
"sha256": "99924f69d35e79403f73d723540c48f1a65e0a6a2dec7eee198f14c97367b59c"
},
"downloads": -1,
"filename": "rustoml-0.13.0-cp310-cp310-win32.whl",
"has_sig": false,
"md5_digest": "d28be5cc9da6e1972ac9f2c934c1aba4",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": "<3.15,>=3.10",
"size": 254968,
"upload_time": "2025-10-14T00:22:16",
"upload_time_iso_8601": "2025-10-14T00:22:16.567719Z",
"url": "https://files.pythonhosted.org/packages/cf/f1/a558414bce3894e73998c2341aeadffd23b35f44db553c2feac7fdbbb038/rustoml-0.13.0-cp310-cp310-win32.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "882a181632e784cb713c69204d381e734cb47631f8df37c334d37651d5a1f7de",
"md5": "c2fb69922f84b76b82f9dde3e7ec66a3",
"sha256": "ee0bbcc912d2571a0565397c8d2138551feba032f2a4862252c5485ef7493279"
},
"downloads": -1,
"filename": "rustoml-0.13.0-cp310-cp310-win_amd64.whl",
"has_sig": false,
"md5_digest": "c2fb69922f84b76b82f9dde3e7ec66a3",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": "<3.15,>=3.10",
"size": 260404,
"upload_time": "2025-10-14T00:22:17",
"upload_time_iso_8601": "2025-10-14T00:22:17.870004Z",
"url": "https://files.pythonhosted.org/packages/88/2a/181632e784cb713c69204d381e734cb47631f8df37c334d37651d5a1f7de/rustoml-0.13.0-cp310-cp310-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "10e549fb8c7477fdd421e9e6962f910c7c2b1b090ce28affa2bf49885fc41b51",
"md5": "76e01973ff8beb88e4aa1302ace0d9c1",
"sha256": "5cdbb4c9ce8709d01e0203253e1dfd6941e50ba6a90ee135a2c6dee3d71e4ef0"
},
"downloads": -1,
"filename": "rustoml-0.13.0-cp311-cp311-macosx_10_12_x86_64.whl",
"has_sig": false,
"md5_digest": "76e01973ff8beb88e4aa1302ace0d9c1",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": "<3.15,>=3.10",
"size": 369292,
"upload_time": "2025-10-14T00:22:19",
"upload_time_iso_8601": "2025-10-14T00:22:19.031146Z",
"url": "https://files.pythonhosted.org/packages/10/e5/49fb8c7477fdd421e9e6962f910c7c2b1b090ce28affa2bf49885fc41b51/rustoml-0.13.0-cp311-cp311-macosx_10_12_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "0010b4532ac4114ac08a82034b233100065c80a970ce1a353692e99fc698dde9",
"md5": "dbb117f691b1f0dce93a771c6113ebdc",
"sha256": "c2cbc27316fb5eba65ddd4a8106836d7a3c424d6abd321bf865f69e03b5bd807"
},
"downloads": -1,
"filename": "rustoml-0.13.0-cp311-cp311-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "dbb117f691b1f0dce93a771c6113ebdc",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": "<3.15,>=3.10",
"size": 351217,
"upload_time": "2025-10-14T00:22:20",
"upload_time_iso_8601": "2025-10-14T00:22:20.750649Z",
"url": "https://files.pythonhosted.org/packages/00/10/b4532ac4114ac08a82034b233100065c80a970ce1a353692e99fc698dde9/rustoml-0.13.0-cp311-cp311-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "919d826191637f34f2f13ac3e0d4bf999ace84f3ffc50b7d7354dbe1091cfff8",
"md5": "fa49923eb125efa7dd18216bf500ab0f",
"sha256": "f5bb9ddc0deab6a006d662b373fd75c3d9168802d690ea0ad40536db2e3ca21b"
},
"downloads": -1,
"filename": "rustoml-0.13.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "fa49923eb125efa7dd18216bf500ab0f",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": "<3.15,>=3.10",
"size": 382935,
"upload_time": "2025-10-14T00:22:22",
"upload_time_iso_8601": "2025-10-14T00:22:22.229674Z",
"url": "https://files.pythonhosted.org/packages/91/9d/826191637f34f2f13ac3e0d4bf999ace84f3ffc50b7d7354dbe1091cfff8/rustoml-0.13.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "49a4dc9facc6650b4ebec3f2ffb81b3c087919f11d1a8eb9f28ee2c1a9684000",
"md5": "033c57452650c214f5b3736ddf6ddb97",
"sha256": "d8552b8e452ce853281b18981fd07b68c384f75f6562d115ea6ab9cbc2b8e89e"
},
"downloads": -1,
"filename": "rustoml-0.13.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"has_sig": false,
"md5_digest": "033c57452650c214f5b3736ddf6ddb97",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": "<3.15,>=3.10",
"size": 409577,
"upload_time": "2025-10-14T00:22:23",
"upload_time_iso_8601": "2025-10-14T00:22:23.493125Z",
"url": "https://files.pythonhosted.org/packages/49/a4/dc9facc6650b4ebec3f2ffb81b3c087919f11d1a8eb9f28ee2c1a9684000/rustoml-0.13.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "cbd2b36f48a692a37fdd1212bbd0e082e3452576421f4ab1f03518afbc80489c",
"md5": "de0e5f79d882f4973f9e4f6f52916afb",
"sha256": "1170921bce52f64b3b361862b41493b773a6b9a9fdcb803eb93afbc0376a83e7"
},
"downloads": -1,
"filename": "rustoml-0.13.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"has_sig": false,
"md5_digest": "de0e5f79d882f4973f9e4f6f52916afb",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": "<3.15,>=3.10",
"size": 435280,
"upload_time": "2025-10-14T00:22:24",
"upload_time_iso_8601": "2025-10-14T00:22:24.838080Z",
"url": "https://files.pythonhosted.org/packages/cb/d2/b36f48a692a37fdd1212bbd0e082e3452576421f4ab1f03518afbc80489c/rustoml-0.13.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "d6e88aff8afe235447103f74122fb79714e3e00da7347700124c02ae932c04e3",
"md5": "e9d2c4d0b012d5bf35d9b43762ca7276",
"sha256": "384e9194c73ced0c5c2ccdbfd7ed1e4fb1dcf4462954c3268cabe539deb72970"
},
"downloads": -1,
"filename": "rustoml-0.13.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"has_sig": false,
"md5_digest": "e9d2c4d0b012d5bf35d9b43762ca7276",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": "<3.15,>=3.10",
"size": 450366,
"upload_time": "2025-10-14T00:22:26",
"upload_time_iso_8601": "2025-10-14T00:22:26.133115Z",
"url": "https://files.pythonhosted.org/packages/d6/e8/8aff8afe235447103f74122fb79714e3e00da7347700124c02ae932c04e3/rustoml-0.13.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "b3386065e8c1a4f237a2ee1884886a3ac12e0b42ff153e5f47b97bfbac6b8429",
"md5": "5cdc1f36cdffaf9a40ad5582f780bdda",
"sha256": "e3e6fd5ed67ae975de6bffe60f2a520eaeefdfb228012e01f99e31ebcb213b29"
},
"downloads": -1,
"filename": "rustoml-0.13.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "5cdc1f36cdffaf9a40ad5582f780bdda",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": "<3.15,>=3.10",
"size": 389906,
"upload_time": "2025-10-14T00:22:27",
"upload_time_iso_8601": "2025-10-14T00:22:27.652348Z",
"url": "https://files.pythonhosted.org/packages/b3/38/6065e8c1a4f237a2ee1884886a3ac12e0b42ff153e5f47b97bfbac6b8429/rustoml-0.13.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "72f8dc66e351cc971a6140eba266834ebb2e9a91aad60a4dc40638947c7298d3",
"md5": "62f6ae13d38573fcf3c9cb7e53a3878b",
"sha256": "bc52b9a9e87b021d2e01aab57adbb1f8961497ae5cb173219a0dceb6e455d656"
},
"downloads": -1,
"filename": "rustoml-0.13.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl",
"has_sig": false,
"md5_digest": "62f6ae13d38573fcf3c9cb7e53a3878b",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": "<3.15,>=3.10",
"size": 417933,
"upload_time": "2025-10-14T00:22:28",
"upload_time_iso_8601": "2025-10-14T00:22:28.948709Z",
"url": "https://files.pythonhosted.org/packages/72/f8/dc66e351cc971a6140eba266834ebb2e9a91aad60a4dc40638947c7298d3/rustoml-0.13.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "53aa6c323b887a012d35ade65a49fe239b49bfec39ef7f10a4e45403de81a719",
"md5": "b476a9dc2e7b918320a65eaa9b90a42c",
"sha256": "96e9d976d850149d2c8b8e09621d1fc655d326c66d4023c3d515bd075c7106a0"
},
"downloads": -1,
"filename": "rustoml-0.13.0-cp311-cp311-musllinux_1_1_aarch64.whl",
"has_sig": false,
"md5_digest": "b476a9dc2e7b918320a65eaa9b90a42c",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": "<3.15,>=3.10",
"size": 564084,
"upload_time": "2025-10-14T00:22:30",
"upload_time_iso_8601": "2025-10-14T00:22:30.199067Z",
"url": "https://files.pythonhosted.org/packages/53/aa/6c323b887a012d35ade65a49fe239b49bfec39ef7f10a4e45403de81a719/rustoml-0.13.0-cp311-cp311-musllinux_1_1_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "434e54331556db3b67c73da494a90d8c920e3dddfc97718af4ec377ee0ea1116",
"md5": "85bcb19b24a864b9660329bc239476c6",
"sha256": "8ad79969028e873abfec259a0a1fcb8fe8488f4e06578cd071a119ae9ab3ec22"
},
"downloads": -1,
"filename": "rustoml-0.13.0-cp311-cp311-musllinux_1_1_x86_64.whl",
"has_sig": false,
"md5_digest": "85bcb19b24a864b9660329bc239476c6",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": "<3.15,>=3.10",
"size": 563003,
"upload_time": "2025-10-14T00:22:31",
"upload_time_iso_8601": "2025-10-14T00:22:31.467270Z",
"url": "https://files.pythonhosted.org/packages/43/4e/54331556db3b67c73da494a90d8c920e3dddfc97718af4ec377ee0ea1116/rustoml-0.13.0-cp311-cp311-musllinux_1_1_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "a475d4c21ab1d433a15cf62285b039867ea8cb15ac90f4bb64c21e6c539219b4",
"md5": "58f85667dbf4b02aa8a0c6391c81878c",
"sha256": "cea1100253c43bd987b389421a2b3f45ab5e5ed6539fbad7486aae0d863e910e"
},
"downloads": -1,
"filename": "rustoml-0.13.0-cp311-cp311-win32.whl",
"has_sig": false,
"md5_digest": "58f85667dbf4b02aa8a0c6391c81878c",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": "<3.15,>=3.10",
"size": 254343,
"upload_time": "2025-10-14T00:22:32",
"upload_time_iso_8601": "2025-10-14T00:22:32.790966Z",
"url": "https://files.pythonhosted.org/packages/a4/75/d4c21ab1d433a15cf62285b039867ea8cb15ac90f4bb64c21e6c539219b4/rustoml-0.13.0-cp311-cp311-win32.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "1614c6cf38958836aace48ef70722e5d7608cf690270d34eee3f48c80390f99c",
"md5": "fe55f1e4a092e31c47fc570affa3ddd3",
"sha256": "fc0a9a94281d9e7608082247b9ab88db3bbf7d3b3d81a9cb99fc087c4a0fe833"
},
"downloads": -1,
"filename": "rustoml-0.13.0-cp311-cp311-win_amd64.whl",
"has_sig": false,
"md5_digest": "fe55f1e4a092e31c47fc570affa3ddd3",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": "<3.15,>=3.10",
"size": 260390,
"upload_time": "2025-10-14T00:22:33",
"upload_time_iso_8601": "2025-10-14T00:22:33.969006Z",
"url": "https://files.pythonhosted.org/packages/16/14/c6cf38958836aace48ef70722e5d7608cf690270d34eee3f48c80390f99c/rustoml-0.13.0-cp311-cp311-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "ad70cd27af8a2cc55dd71d2f988c8d8e1f3633a8bfbf7c9c2822a784e41161ae",
"md5": "e7d5736070040e023480791d9c491ec6",
"sha256": "970d4ac6dcf35b0503d273af1ce3492cdd552f62c335742460daf075bf1740bd"
},
"downloads": -1,
"filename": "rustoml-0.13.0-cp311-cp311-win_arm64.whl",
"has_sig": false,
"md5_digest": "e7d5736070040e023480791d9c491ec6",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": "<3.15,>=3.10",
"size": 248719,
"upload_time": "2025-10-14T00:22:35",
"upload_time_iso_8601": "2025-10-14T00:22:35.153255Z",
"url": "https://files.pythonhosted.org/packages/ad/70/cd27af8a2cc55dd71d2f988c8d8e1f3633a8bfbf7c9c2822a784e41161ae/rustoml-0.13.0-cp311-cp311-win_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "8df97a442192892daca34d7151471519b96264a5fc5be0b2151ba537c0f3d7f3",
"md5": "4bcbc42ab7f8f93a829d23128c967663",
"sha256": "37a9a88d6e60e18b04fa4c9f5307c7a50834428d73b7f155ba83ee655d87cea8"
},
"downloads": -1,
"filename": "rustoml-0.13.0-cp312-cp312-macosx_10_12_x86_64.whl",
"has_sig": false,
"md5_digest": "4bcbc42ab7f8f93a829d23128c967663",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": "<3.15,>=3.10",
"size": 369160,
"upload_time": "2025-10-14T00:22:36",
"upload_time_iso_8601": "2025-10-14T00:22:36.569069Z",
"url": "https://files.pythonhosted.org/packages/8d/f9/7a442192892daca34d7151471519b96264a5fc5be0b2151ba537c0f3d7f3/rustoml-0.13.0-cp312-cp312-macosx_10_12_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "43d570cae4f1a55f070f06b3ef1a26e20403296f5a8c3ba065b273652b31298b",
"md5": "758da84d346673029832e4344f0d621d",
"sha256": "b304cb0d1157dea8e69d10b3defb1a42cd316bfbfa0cef795480d73a920f3e9f"
},
"downloads": -1,
"filename": "rustoml-0.13.0-cp312-cp312-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "758da84d346673029832e4344f0d621d",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": "<3.15,>=3.10",
"size": 351144,
"upload_time": "2025-10-14T00:22:42",
"upload_time_iso_8601": "2025-10-14T00:22:42.026757Z",
"url": "https://files.pythonhosted.org/packages/43/d5/70cae4f1a55f070f06b3ef1a26e20403296f5a8c3ba065b273652b31298b/rustoml-0.13.0-cp312-cp312-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "4620d675f6361dee02a15e163d80294520fe5c3922ce0808f3f83082890420b4",
"md5": "8266097fd6f31d03ff74cf5a6fc8ef18",
"sha256": "39bc24f4f78b05e3d65bbad39829f4122ef613354a6fe8b624f3999bb5a2b82a"
},
"downloads": -1,
"filename": "rustoml-0.13.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "8266097fd6f31d03ff74cf5a6fc8ef18",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": "<3.15,>=3.10",
"size": 381117,
"upload_time": "2025-10-14T00:22:43",
"upload_time_iso_8601": "2025-10-14T00:22:43.304760Z",
"url": "https://files.pythonhosted.org/packages/46/20/d675f6361dee02a15e163d80294520fe5c3922ce0808f3f83082890420b4/rustoml-0.13.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "855a2c8ae1c525ed179e10e6f6573de902a4a8a3a4ca9b579db4e441e6a12471",
"md5": "fcb83444063cab7762d4c4f40bc99e08",
"sha256": "bbde8684d333344943876582b88ee8a01e7eb5c9f92e9f95c5694f1206a7018b"
},
"downloads": -1,
"filename": "rustoml-0.13.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"has_sig": false,
"md5_digest": "fcb83444063cab7762d4c4f40bc99e08",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": "<3.15,>=3.10",
"size": 408276,
"upload_time": "2025-10-14T00:22:44",
"upload_time_iso_8601": "2025-10-14T00:22:44.543311Z",
"url": "https://files.pythonhosted.org/packages/85/5a/2c8ae1c525ed179e10e6f6573de902a4a8a3a4ca9b579db4e441e6a12471/rustoml-0.13.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "3b8c35c2f12691ddc8982808e0afda89620a1e612b85a4426b7cb8043a2fa5e9",
"md5": "7472daef7c00a0e8666c0b2a67e8fe61",
"sha256": "fd2d1d9df5686b9c5cfe1f8db2e0bb458fac7163c4b43cc06546e4ffadedbcd5"
},
"downloads": -1,
"filename": "rustoml-0.13.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"has_sig": false,
"md5_digest": "7472daef7c00a0e8666c0b2a67e8fe61",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": "<3.15,>=3.10",
"size": 433561,
"upload_time": "2025-10-14T00:22:48",
"upload_time_iso_8601": "2025-10-14T00:22:48.723073Z",
"url": "https://files.pythonhosted.org/packages/3b/8c/35c2f12691ddc8982808e0afda89620a1e612b85a4426b7cb8043a2fa5e9/rustoml-0.13.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "77bbf0dbf6ca7b38a2e37838ef1e610b7d0d27abf41153154f1f10c87ff7ff2e",
"md5": "32b931866a1d82cb603b2c0648445093",
"sha256": "6fa810f31389f0c1a2eb2cd1922ff8d4876d72380e2aa38f6dd20898b7291868"
},
"downloads": -1,
"filename": "rustoml-0.13.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"has_sig": false,
"md5_digest": "32b931866a1d82cb603b2c0648445093",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": "<3.15,>=3.10",
"size": 448500,
"upload_time": "2025-10-14T00:22:50",
"upload_time_iso_8601": "2025-10-14T00:22:50.678554Z",
"url": "https://files.pythonhosted.org/packages/77/bb/f0dbf6ca7b38a2e37838ef1e610b7d0d27abf41153154f1f10c87ff7ff2e/rustoml-0.13.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "b1ef7675399ebd9cea46f31e8730affe5527a7fd925124d42561928e8d6ed672",
"md5": "5b0a5c04ec3eeab3d06f02944d7d3c48",
"sha256": "463a72d4a0ee9a07ab0773b51d72e18af593c645425b58c4954cec859f0175d5"
},
"downloads": -1,
"filename": "rustoml-0.13.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "5b0a5c04ec3eeab3d06f02944d7d3c48",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": "<3.15,>=3.10",
"size": 387964,
"upload_time": "2025-10-14T00:22:51",
"upload_time_iso_8601": "2025-10-14T00:22:51.892655Z",
"url": "https://files.pythonhosted.org/packages/b1/ef/7675399ebd9cea46f31e8730affe5527a7fd925124d42561928e8d6ed672/rustoml-0.13.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "44c64a78e0c6ffcd477cd7d3f26c019ba598171a54d7679383ce0f70072be256",
"md5": "5f751c25d8be8ed04703f8be1aef2725",
"sha256": "890d8a2b0b7d3eea1c54c41ba3cf073596b0da69e26da0a195c97ba182d1f300"
},
"downloads": -1,
"filename": "rustoml-0.13.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl",
"has_sig": false,
"md5_digest": "5f751c25d8be8ed04703f8be1aef2725",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": "<3.15,>=3.10",
"size": 416771,
"upload_time": "2025-10-14T00:22:53",
"upload_time_iso_8601": "2025-10-14T00:22:53.112381Z",
"url": "https://files.pythonhosted.org/packages/44/c6/4a78e0c6ffcd477cd7d3f26c019ba598171a54d7679383ce0f70072be256/rustoml-0.13.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "ef2c4d85853151c8b6f4b431e15e51cc218220f0d16873e5be06b163202e91eb",
"md5": "29401acc5face6367ff7d0aeec04aaeb",
"sha256": "8dc37886130d88fd17758a037ff4bf52895687a07e8ed96817c1e3e6f908ab6f"
},
"downloads": -1,
"filename": "rustoml-0.13.0-cp312-cp312-musllinux_1_1_aarch64.whl",
"has_sig": false,
"md5_digest": "29401acc5face6367ff7d0aeec04aaeb",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": "<3.15,>=3.10",
"size": 562123,
"upload_time": "2025-10-14T00:22:54",
"upload_time_iso_8601": "2025-10-14T00:22:54.627011Z",
"url": "https://files.pythonhosted.org/packages/ef/2c/4d85853151c8b6f4b431e15e51cc218220f0d16873e5be06b163202e91eb/rustoml-0.13.0-cp312-cp312-musllinux_1_1_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "36c6d851de8bd3d789b4084a0331d1a141173d4488900dc5c5d1d8ef710563e7",
"md5": "f58a2525c37211d1abf9f077e373902f",
"sha256": "3d694bece3070d04d66fccf5614be0a585d0fd5952fe51112890be0cdbcb5d97"
},
"downloads": -1,
"filename": "rustoml-0.13.0-cp312-cp312-musllinux_1_1_x86_64.whl",
"has_sig": false,
"md5_digest": "f58a2525c37211d1abf9f077e373902f",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": "<3.15,>=3.10",
"size": 561197,
"upload_time": "2025-10-14T00:22:55",
"upload_time_iso_8601": "2025-10-14T00:22:55.791430Z",
"url": "https://files.pythonhosted.org/packages/36/c6/d851de8bd3d789b4084a0331d1a141173d4488900dc5c5d1d8ef710563e7/rustoml-0.13.0-cp312-cp312-musllinux_1_1_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "6e27a650bc3c3d8ed981161b98e5a3a0a85ad11fd3e942564c81bd8cb9dfb971",
"md5": "f069de43e4918661fa6ec5437583b697",
"sha256": "4d5bd7b5166baafd47af9761bd6f6759befcf873770a0fcac7f90539ce5b37f3"
},
"downloads": -1,
"filename": "rustoml-0.13.0-cp312-cp312-win32.whl",
"has_sig": false,
"md5_digest": "f069de43e4918661fa6ec5437583b697",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": "<3.15,>=3.10",
"size": 254780,
"upload_time": "2025-10-14T00:22:57",
"upload_time_iso_8601": "2025-10-14T00:22:57.020348Z",
"url": "https://files.pythonhosted.org/packages/6e/27/a650bc3c3d8ed981161b98e5a3a0a85ad11fd3e942564c81bd8cb9dfb971/rustoml-0.13.0-cp312-cp312-win32.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "3f5136e83ffc1857906ee6ff2132fdb193a9d9412c9c7a30f3ca2fc417bfb897",
"md5": "7d8e5fb682b262d4f797340a1b59edf0",
"sha256": "d679b04f429200472a49b0e7c601ca4f4f84fd1bb268e99728149532846e6c4c"
},
"downloads": -1,
"filename": "rustoml-0.13.0-cp312-cp312-win_amd64.whl",
"has_sig": false,
"md5_digest": "7d8e5fb682b262d4f797340a1b59edf0",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": "<3.15,>=3.10",
"size": 261253,
"upload_time": "2025-10-14T00:22:58",
"upload_time_iso_8601": "2025-10-14T00:22:58.168309Z",
"url": "https://files.pythonhosted.org/packages/3f/51/36e83ffc1857906ee6ff2132fdb193a9d9412c9c7a30f3ca2fc417bfb897/rustoml-0.13.0-cp312-cp312-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "94eab393e06f73bda6155060c4266557d03c61c33b5dc6ad9ccbd08e4e88ec0c",
"md5": "0412f1d279edd9fa5ad5436b4aca0875",
"sha256": "3712ff36ff90d110c9c2371af5296775293f079ea080f54bc482f01b55b03058"
},
"downloads": -1,
"filename": "rustoml-0.13.0-cp312-cp312-win_arm64.whl",
"has_sig": false,
"md5_digest": "0412f1d279edd9fa5ad5436b4aca0875",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": "<3.15,>=3.10",
"size": 248856,
"upload_time": "2025-10-14T00:22:59",
"upload_time_iso_8601": "2025-10-14T00:22:59.302712Z",
"url": "https://files.pythonhosted.org/packages/94/ea/b393e06f73bda6155060c4266557d03c61c33b5dc6ad9ccbd08e4e88ec0c/rustoml-0.13.0-cp312-cp312-win_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "79521fc057e36f397c14eccc2ac42f8b9244cb942e0054ef4e332c6b477db2ae",
"md5": "232f24dee320659e61ddd43fcd8cc5f4",
"sha256": "519e60bc931b2472479a381757e31a00c68a9a49415f6895c6a9df04c36c8a5e"
},
"downloads": -1,
"filename": "rustoml-0.13.0-cp313-cp313-macosx_10_12_x86_64.whl",
"has_sig": false,
"md5_digest": "232f24dee320659e61ddd43fcd8cc5f4",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": "<3.15,>=3.10",
"size": 368689,
"upload_time": "2025-10-14T00:23:00",
"upload_time_iso_8601": "2025-10-14T00:23:00.684358Z",
"url": "https://files.pythonhosted.org/packages/79/52/1fc057e36f397c14eccc2ac42f8b9244cb942e0054ef4e332c6b477db2ae/rustoml-0.13.0-cp313-cp313-macosx_10_12_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "308eff313dea298c49c09be0a4b56841a35d7e96dcc38318ab4c16d9fb2955c7",
"md5": "4332d3c475b0c820b8efa5fe1420bbc3",
"sha256": "a889dbbeaa2749723c4811f34cf5f344ecd4ecd4d0c743fa25c4a6d58122e5c7"
},
"downloads": -1,
"filename": "rustoml-0.13.0-cp313-cp313-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "4332d3c475b0c820b8efa5fe1420bbc3",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": "<3.15,>=3.10",
"size": 350847,
"upload_time": "2025-10-14T00:23:01",
"upload_time_iso_8601": "2025-10-14T00:23:01.811713Z",
"url": "https://files.pythonhosted.org/packages/30/8e/ff313dea298c49c09be0a4b56841a35d7e96dcc38318ab4c16d9fb2955c7/rustoml-0.13.0-cp313-cp313-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "35a366a8078bd65e990fef789bb2338b9d9d7b0c9064c7f0ea58129370db2e43",
"md5": "7139b1bf6dcdc5015f2f617de16279fa",
"sha256": "84b318cfb037cf3893e042458c77d88b7436cbcf4787f17ba896a4c12252de40"
},
"downloads": -1,
"filename": "rustoml-0.13.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "7139b1bf6dcdc5015f2f617de16279fa",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": "<3.15,>=3.10",
"size": 380621,
"upload_time": "2025-10-14T00:23:03",
"upload_time_iso_8601": "2025-10-14T00:23:03.012880Z",
"url": "https://files.pythonhosted.org/packages/35/a3/66a8078bd65e990fef789bb2338b9d9d7b0c9064c7f0ea58129370db2e43/rustoml-0.13.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "80e9891d4fe9cc16e3a13cbd811a48b484fc8085bc7da3e7ee97201c5d3f8fb8",
"md5": "e1b98ff7d3b30b2e36ea71b3fa738f68",
"sha256": "08a83cd92c3ace27b05ebd962c8f9e7817a084c7469a3491a25c282204ba10c4"
},
"downloads": -1,
"filename": "rustoml-0.13.0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"has_sig": false,
"md5_digest": "e1b98ff7d3b30b2e36ea71b3fa738f68",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": "<3.15,>=3.10",
"size": 407886,
"upload_time": "2025-10-14T00:23:04",
"upload_time_iso_8601": "2025-10-14T00:23:04.147180Z",
"url": "https://files.pythonhosted.org/packages/80/e9/891d4fe9cc16e3a13cbd811a48b484fc8085bc7da3e7ee97201c5d3f8fb8/rustoml-0.13.0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "e6a24fc6162bd4a236114bf92a1d0bc7b4f3aff6886e8e783096f775820790c6",
"md5": "286b641832032d10cdc8256fc94bc9aa",
"sha256": "47fa7c0206ac97084b09075253d02d38d49e0f157f9ea470b5dafeafc2d28317"
},
"downloads": -1,
"filename": "rustoml-0.13.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"has_sig": false,
"md5_digest": "286b641832032d10cdc8256fc94bc9aa",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": "<3.15,>=3.10",
"size": 432955,
"upload_time": "2025-10-14T00:23:05",
"upload_time_iso_8601": "2025-10-14T00:23:05.602267Z",
"url": "https://files.pythonhosted.org/packages/e6/a2/4fc6162bd4a236114bf92a1d0bc7b4f3aff6886e8e783096f775820790c6/rustoml-0.13.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "244a1d01901a798d3b7865484d58495c17f1869a1d5f2de9584bb9eac03af335",
"md5": "a812a839dcc86f712d7fbbb5dbcd3355",
"sha256": "4646ab0d138aa053cf9915316e5261e1d0213aec38f87e66ab37f81fa9b153b5"
},
"downloads": -1,
"filename": "rustoml-0.13.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"has_sig": false,
"md5_digest": "a812a839dcc86f712d7fbbb5dbcd3355",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": "<3.15,>=3.10",
"size": 448095,
"upload_time": "2025-10-14T00:23:07",
"upload_time_iso_8601": "2025-10-14T00:23:07.478115Z",
"url": "https://files.pythonhosted.org/packages/24/4a/1d01901a798d3b7865484d58495c17f1869a1d5f2de9584bb9eac03af335/rustoml-0.13.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "8c5fda2f12c329a2e136adec6139199a311dd9ab701d1f619890020a7f4b2039",
"md5": "918f4b817af46ce131fc14799e60b952",
"sha256": "3ac0460e4fd119ec44e20a6ff988dde1c10c3479b96f30b0f1f34f77bd446559"
},
"downloads": -1,
"filename": "rustoml-0.13.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "918f4b817af46ce131fc14799e60b952",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": "<3.15,>=3.10",
"size": 387546,
"upload_time": "2025-10-14T00:23:08",
"upload_time_iso_8601": "2025-10-14T00:23:08.684235Z",
"url": "https://files.pythonhosted.org/packages/8c/5f/da2f12c329a2e136adec6139199a311dd9ab701d1f619890020a7f4b2039/rustoml-0.13.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "531d26ee3abc9c49e5605add3e5e4eafef58e7cfc59f34c3519a4b9b4ed6a712",
"md5": "712ebd458d418fc44447274c8068570c",
"sha256": "e60a2d590a49df7b1ba9c6db27780a0a4d0be680a2f30d0b8dd8bfe0edbc2e60"
},
"downloads": -1,
"filename": "rustoml-0.13.0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl",
"has_sig": false,
"md5_digest": "712ebd458d418fc44447274c8068570c",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": "<3.15,>=3.10",
"size": 416309,
"upload_time": "2025-10-14T00:23:10",
"upload_time_iso_8601": "2025-10-14T00:23:10.063941Z",
"url": "https://files.pythonhosted.org/packages/53/1d/26ee3abc9c49e5605add3e5e4eafef58e7cfc59f34c3519a4b9b4ed6a712/rustoml-0.13.0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "e671b9bc4f684ec7f43aa4d7ab3f0a9fe09184ec62dad161ba30db3d6b1b7836",
"md5": "75dc9db35ece0f482fdef85ae7e95d94",
"sha256": "43772daa9583c8d2c9f6a1910e1302583b0d9b31047dc4d4ee8c84efa68ec39b"
},
"downloads": -1,
"filename": "rustoml-0.13.0-cp313-cp313-musllinux_1_1_aarch64.whl",
"has_sig": false,
"md5_digest": "75dc9db35ece0f482fdef85ae7e95d94",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": "<3.15,>=3.10",
"size": 561831,
"upload_time": "2025-10-14T00:23:11",
"upload_time_iso_8601": "2025-10-14T00:23:11.340955Z",
"url": "https://files.pythonhosted.org/packages/e6/71/b9bc4f684ec7f43aa4d7ab3f0a9fe09184ec62dad161ba30db3d6b1b7836/rustoml-0.13.0-cp313-cp313-musllinux_1_1_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "fc00eba894eb617e1ff60879e182e6e33c011359958feb3bfe1fd291c408ea75",
"md5": "66f56c8eb3340e6aa2ad891093627b61",
"sha256": "88282d717cdfcbaa648c55a29e05ce1bfeccd510be2ffd37f7099f59dce270e9"
},
"downloads": -1,
"filename": "rustoml-0.13.0-cp313-cp313-musllinux_1_1_x86_64.whl",
"has_sig": false,
"md5_digest": "66f56c8eb3340e6aa2ad891093627b61",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": "<3.15,>=3.10",
"size": 560741,
"upload_time": "2025-10-14T00:23:12",
"upload_time_iso_8601": "2025-10-14T00:23:12.899272Z",
"url": "https://files.pythonhosted.org/packages/fc/00/eba894eb617e1ff60879e182e6e33c011359958feb3bfe1fd291c408ea75/rustoml-0.13.0-cp313-cp313-musllinux_1_1_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "8275814d72f6a82c6b43630dde691b8aeab322fe82fbb20ad2ad822159132ac3",
"md5": "8266ad151ee866348079ea5668978b01",
"sha256": "07cbb174c6eed4d74dbd7ecffa3255a9c1989cf40d6d97760377c611d3bc814f"
},
"downloads": -1,
"filename": "rustoml-0.13.0-cp313-cp313-win32.whl",
"has_sig": false,
"md5_digest": "8266ad151ee866348079ea5668978b01",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": "<3.15,>=3.10",
"size": 254198,
"upload_time": "2025-10-14T00:23:14",
"upload_time_iso_8601": "2025-10-14T00:23:14.033593Z",
"url": "https://files.pythonhosted.org/packages/82/75/814d72f6a82c6b43630dde691b8aeab322fe82fbb20ad2ad822159132ac3/rustoml-0.13.0-cp313-cp313-win32.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "abaa7994b8964ddb577517317f06f86fee2e18631a2ab18841238193269e944f",
"md5": "ae7a9ecfaf68c75c1b114789c754b860",
"sha256": "44590470e9b2c3fad7a9a23ac2f6973cf06f6b4e399c17c276e9db3a2162b833"
},
"downloads": -1,
"filename": "rustoml-0.13.0-cp313-cp313-win_amd64.whl",
"has_sig": false,
"md5_digest": "ae7a9ecfaf68c75c1b114789c754b860",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": "<3.15,>=3.10",
"size": 260747,
"upload_time": "2025-10-14T00:23:15",
"upload_time_iso_8601": "2025-10-14T00:23:15.188719Z",
"url": "https://files.pythonhosted.org/packages/ab/aa/7994b8964ddb577517317f06f86fee2e18631a2ab18841238193269e944f/rustoml-0.13.0-cp313-cp313-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "4b70e592d0affc36daa8c379098057af5d3379115edbeb6a6aaab2e63ab5e2f1",
"md5": "df099ca354e7e82a90bac65fb5528d32",
"sha256": "e8a7863d814cd7f35b47b40d2c6b52b3d21df6c3f297e486bb5111d214143266"
},
"downloads": -1,
"filename": "rustoml-0.13.0-cp313-cp313-win_arm64.whl",
"has_sig": false,
"md5_digest": "df099ca354e7e82a90bac65fb5528d32",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": "<3.15,>=3.10",
"size": 248232,
"upload_time": "2025-10-14T00:23:16",
"upload_time_iso_8601": "2025-10-14T00:23:16.318431Z",
"url": "https://files.pythonhosted.org/packages/4b/70/e592d0affc36daa8c379098057af5d3379115edbeb6a6aaab2e63ab5e2f1/rustoml-0.13.0-cp313-cp313-win_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "d80d2f1f349690b67af0880e5d17441204ac1f95b3e284615492681aebe41847",
"md5": "ae2d62d87ea725eb0e1e369dc2e5b1f7",
"sha256": "6b5188d9f62ff7011326b63dcb51ed2488c56c3774bc79f325ed8332e28a9e6c"
},
"downloads": -1,
"filename": "rustoml-0.13.0-cp314-cp314-macosx_10_12_x86_64.whl",
"has_sig": false,
"md5_digest": "ae2d62d87ea725eb0e1e369dc2e5b1f7",
"packagetype": "bdist_wheel",
"python_version": "cp314",
"requires_python": "<3.15,>=3.10",
"size": 368833,
"upload_time": "2025-10-14T00:23:17",
"upload_time_iso_8601": "2025-10-14T00:23:17.481152Z",
"url": "https://files.pythonhosted.org/packages/d8/0d/2f1f349690b67af0880e5d17441204ac1f95b3e284615492681aebe41847/rustoml-0.13.0-cp314-cp314-macosx_10_12_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "2c7f6a639be62b34dd8d31252a9218b5815c432d7b206c5d0714dba49bb56b55",
"md5": "d4680eba83b80de3c9bad33eeb00c7c8",
"sha256": "2e7e0e334f6e3e9f9c76cb65d1ec42989954ac0fcfea8bdd76bcd23b8982a2bb"
},
"downloads": -1,
"filename": "rustoml-0.13.0-cp314-cp314-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "d4680eba83b80de3c9bad33eeb00c7c8",
"packagetype": "bdist_wheel",
"python_version": "cp314",
"requires_python": "<3.15,>=3.10",
"size": 350972,
"upload_time": "2025-10-14T00:23:18",
"upload_time_iso_8601": "2025-10-14T00:23:18.720622Z",
"url": "https://files.pythonhosted.org/packages/2c/7f/6a639be62b34dd8d31252a9218b5815c432d7b206c5d0714dba49bb56b55/rustoml-0.13.0-cp314-cp314-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "c9b84621700cf6580a8b45d0cb0c29e9096dbdadda0013b468d58946cb657a42",
"md5": "211fff7045138252868cdeeb0502eec9",
"sha256": "a16a5ee7f99d3cc2eabf7037511a96a934758bd403bfad1ab0a95e32356071dc"
},
"downloads": -1,
"filename": "rustoml-0.13.0-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "211fff7045138252868cdeeb0502eec9",
"packagetype": "bdist_wheel",
"python_version": "cp314",
"requires_python": "<3.15,>=3.10",
"size": 380826,
"upload_time": "2025-10-14T00:23:19",
"upload_time_iso_8601": "2025-10-14T00:23:19.891257Z",
"url": "https://files.pythonhosted.org/packages/c9/b8/4621700cf6580a8b45d0cb0c29e9096dbdadda0013b468d58946cb657a42/rustoml-0.13.0-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "f17827f12b2f0f0c345bae6efb9f1c40ecd0bd8b6bfbdd58d903a9fdf79d9776",
"md5": "ef4f08efdba4620101d237a13c545cfb",
"sha256": "2291a2390ef04cd6b4c5abb08e6dd01e114d9246730518cf3116af167fdc93ed"
},
"downloads": -1,
"filename": "rustoml-0.13.0-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"has_sig": false,
"md5_digest": "ef4f08efdba4620101d237a13c545cfb",
"packagetype": "bdist_wheel",
"python_version": "cp314",
"requires_python": "<3.15,>=3.10",
"size": 407854,
"upload_time": "2025-10-14T00:23:21",
"upload_time_iso_8601": "2025-10-14T00:23:21.407756Z",
"url": "https://files.pythonhosted.org/packages/f1/78/27f12b2f0f0c345bae6efb9f1c40ecd0bd8b6bfbdd58d903a9fdf79d9776/rustoml-0.13.0-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "d236f8b5b02682355eb7a2c042e6c00efed1b14df6839de30175af2abe7e9aa6",
"md5": "e285a4b6db9cec47785128fa36f2abdf",
"sha256": "12d670a01fb357481073c51a83358c31965f0a52abbcbd3b2d0a6ba2102a074e"
},
"downloads": -1,
"filename": "rustoml-0.13.0-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"has_sig": false,
"md5_digest": "e285a4b6db9cec47785128fa36f2abdf",
"packagetype": "bdist_wheel",
"python_version": "cp314",
"requires_python": "<3.15,>=3.10",
"size": 432930,
"upload_time": "2025-10-14T00:23:22",
"upload_time_iso_8601": "2025-10-14T00:23:22.682619Z",
"url": "https://files.pythonhosted.org/packages/d2/36/f8b5b02682355eb7a2c042e6c00efed1b14df6839de30175af2abe7e9aa6/rustoml-0.13.0-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "53ac74a17ad05a82dd20bdb58b74d56be15c6f896b894cb6ef9824c4a5ba6388",
"md5": "1296a1668dee65d77d82840288fae4cb",
"sha256": "eab1ac5de836fe72284a02e516c8fea37cd437bbd0a79d955dbe6410d6d6e0b8"
},
"downloads": -1,
"filename": "rustoml-0.13.0-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"has_sig": false,
"md5_digest": "1296a1668dee65d77d82840288fae4cb",
"packagetype": "bdist_wheel",
"python_version": "cp314",
"requires_python": "<3.15,>=3.10",
"size": 448373,
"upload_time": "2025-10-14T00:23:24",
"upload_time_iso_8601": "2025-10-14T00:23:24.081917Z",
"url": "https://files.pythonhosted.org/packages/53/ac/74a17ad05a82dd20bdb58b74d56be15c6f896b894cb6ef9824c4a5ba6388/rustoml-0.13.0-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "64ea91902180602eb22e714c16451a837cf1f1013466544d2a9d97d05f983a66",
"md5": "d887dbb89d829f29381e343f76849310",
"sha256": "39a1ca9c986a2960dea6e5b837d042258898005eaebd5fa9f12e2739b30d8fe5"
},
"downloads": -1,
"filename": "rustoml-0.13.0-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "d887dbb89d829f29381e343f76849310",
"packagetype": "bdist_wheel",
"python_version": "cp314",
"requires_python": "<3.15,>=3.10",
"size": 387469,
"upload_time": "2025-10-14T00:23:25",
"upload_time_iso_8601": "2025-10-14T00:23:25.337915Z",
"url": "https://files.pythonhosted.org/packages/64/ea/91902180602eb22e714c16451a837cf1f1013466544d2a9d97d05f983a66/rustoml-0.13.0-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "1530f143d13c94265e52306e525c33f2965e42fcbbdbc84d5d6abed2cc5b2b6f",
"md5": "e821d01652185b7d11a71b5680bef1c9",
"sha256": "4bb9d2464ffa964b60ccee1b33e43106d6549fb252b9a0b333788b0c5c00da4d"
},
"downloads": -1,
"filename": "rustoml-0.13.0-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl",
"has_sig": false,
"md5_digest": "e821d01652185b7d11a71b5680bef1c9",
"packagetype": "bdist_wheel",
"python_version": "cp314",
"requires_python": "<3.15,>=3.10",
"size": 416295,
"upload_time": "2025-10-14T00:23:26",
"upload_time_iso_8601": "2025-10-14T00:23:26.495204Z",
"url": "https://files.pythonhosted.org/packages/15/30/f143d13c94265e52306e525c33f2965e42fcbbdbc84d5d6abed2cc5b2b6f/rustoml-0.13.0-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "1c0850d253c4c5396f42a054fd9c6ba626cb0aa15ee6eb393be04ff3282a3dd7",
"md5": "21af6b0a72ad077b9faed3debe353087",
"sha256": "8a95d0dcaf3ecc03a9745eaaaf6890df4f463fa2986ddda08a93b06c5f988c88"
},
"downloads": -1,
"filename": "rustoml-0.13.0-cp314-cp314-musllinux_1_1_aarch64.whl",
"has_sig": false,
"md5_digest": "21af6b0a72ad077b9faed3debe353087",
"packagetype": "bdist_wheel",
"python_version": "cp314",
"requires_python": "<3.15,>=3.10",
"size": 561965,
"upload_time": "2025-10-14T00:23:27",
"upload_time_iso_8601": "2025-10-14T00:23:27.795327Z",
"url": "https://files.pythonhosted.org/packages/1c/08/50d253c4c5396f42a054fd9c6ba626cb0aa15ee6eb393be04ff3282a3dd7/rustoml-0.13.0-cp314-cp314-musllinux_1_1_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "c54602c122aec905e0d98bbd225cdd60ca5ffe08ac4a514e2e048a6d83016be8",
"md5": "25662773e02cdf7e4dc13c4c62b61dc0",
"sha256": "ffaabab91faa70b7e7bddee67951303594b24d64fa7e65475e30c47ee0ccbea0"
},
"downloads": -1,
"filename": "rustoml-0.13.0-cp314-cp314-musllinux_1_1_x86_64.whl",
"has_sig": false,
"md5_digest": "25662773e02cdf7e4dc13c4c62b61dc0",
"packagetype": "bdist_wheel",
"python_version": "cp314",
"requires_python": "<3.15,>=3.10",
"size": 560689,
"upload_time": "2025-10-14T00:23:29",
"upload_time_iso_8601": "2025-10-14T00:23:29.014901Z",
"url": "https://files.pythonhosted.org/packages/c5/46/02c122aec905e0d98bbd225cdd60ca5ffe08ac4a514e2e048a6d83016be8/rustoml-0.13.0-cp314-cp314-musllinux_1_1_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "56ae77bdb9633893ee8d50c46da3fd9c1bacf36eb06b65d204edf423095f9e13",
"md5": "5dc79cd52fc922c48d6dd3459e2fbd8f",
"sha256": "b72ff54e4e59f730b974796c5013dcd959beb91506763175a459a39c00e891c5"
},
"downloads": -1,
"filename": "rustoml-0.13.0-cp314-cp314t-macosx_10_12_x86_64.whl",
"has_sig": false,
"md5_digest": "5dc79cd52fc922c48d6dd3459e2fbd8f",
"packagetype": "bdist_wheel",
"python_version": "cp314",
"requires_python": "<3.15,>=3.10",
"size": 366656,
"upload_time": "2025-10-14T00:23:34",
"upload_time_iso_8601": "2025-10-14T00:23:34.014927Z",
"url": "https://files.pythonhosted.org/packages/56/ae/77bdb9633893ee8d50c46da3fd9c1bacf36eb06b65d204edf423095f9e13/rustoml-0.13.0-cp314-cp314t-macosx_10_12_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "eb9c036abb65502816c65d47c8638570d4627b08586cb86f76abfea0f856b7c5",
"md5": "914ed81953d862bf7158eb6f88eb116c",
"sha256": "dce37188ab1c497e285563894fc6bccda8c0618581e94ce4710f9cfcfeb3e4d7"
},
"downloads": -1,
"filename": "rustoml-0.13.0-cp314-cp314t-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "914ed81953d862bf7158eb6f88eb116c",
"packagetype": "bdist_wheel",
"python_version": "cp314",
"requires_python": "<3.15,>=3.10",
"size": 349065,
"upload_time": "2025-10-14T00:23:35",
"upload_time_iso_8601": "2025-10-14T00:23:35.570259Z",
"url": "https://files.pythonhosted.org/packages/eb/9c/036abb65502816c65d47c8638570d4627b08586cb86f76abfea0f856b7c5/rustoml-0.13.0-cp314-cp314t-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "42fa6e470ae7e5a70f841885b9296a4855a5e580a3f418019e08054032b21530",
"md5": "840a6d579002be477a873e0295e9e443",
"sha256": "bdbeeb558e343fc5ab5f104dc236fd1c2ca3023fb7dbaf4a0164d4461ee36205"
},
"downloads": -1,
"filename": "rustoml-0.13.0-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "840a6d579002be477a873e0295e9e443",
"packagetype": "bdist_wheel",
"python_version": "cp314",
"requires_python": "<3.15,>=3.10",
"size": 378424,
"upload_time": "2025-10-14T00:23:36",
"upload_time_iso_8601": "2025-10-14T00:23:36.891653Z",
"url": "https://files.pythonhosted.org/packages/42/fa/6e470ae7e5a70f841885b9296a4855a5e580a3f418019e08054032b21530/rustoml-0.13.0-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "adcefd6fe33408a4155fee06d5cec6e9573c6d7c01cd296e6b081b126976d569",
"md5": "a66318f65c1ca5f4ec8a7db8c79ee928",
"sha256": "40deb593e162dbc9eb24b4f74f7050a5c559d3c77319a243f577df908763a662"
},
"downloads": -1,
"filename": "rustoml-0.13.0-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"has_sig": false,
"md5_digest": "a66318f65c1ca5f4ec8a7db8c79ee928",
"packagetype": "bdist_wheel",
"python_version": "cp314",
"requires_python": "<3.15,>=3.10",
"size": 405522,
"upload_time": "2025-10-14T00:23:38",
"upload_time_iso_8601": "2025-10-14T00:23:38.160804Z",
"url": "https://files.pythonhosted.org/packages/ad/ce/fd6fe33408a4155fee06d5cec6e9573c6d7c01cd296e6b081b126976d569/rustoml-0.13.0-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "d30fe269584ab22beaf601b5fc00fbeaa52e0a736ebbbda687f95ed44a6b2877",
"md5": "08cf741cc827fd7d53146d565379e014",
"sha256": "da9d99bd50e19a23024a3f38aa1e03a8dadc140f513c70b011376e3911acaa13"
},
"downloads": -1,
"filename": "rustoml-0.13.0-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"has_sig": false,
"md5_digest": "08cf741cc827fd7d53146d565379e014",
"packagetype": "bdist_wheel",
"python_version": "cp314",
"requires_python": "<3.15,>=3.10",
"size": 430458,
"upload_time": "2025-10-14T00:23:39",
"upload_time_iso_8601": "2025-10-14T00:23:39.418269Z",
"url": "https://files.pythonhosted.org/packages/d3/0f/e269584ab22beaf601b5fc00fbeaa52e0a736ebbbda687f95ed44a6b2877/rustoml-0.13.0-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "653ae92caed8c6926037396977f3945e5c6d51efba0d67b04dfa63e6fffa3e10",
"md5": "fb9659f3d026d466b556a4eb7688eb3a",
"sha256": "cf1f2169c91ba3d173d7fc6d0b873901dfe6b722d62e4e45fd8eeffc363899d4"
},
"downloads": -1,
"filename": "rustoml-0.13.0-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"has_sig": false,
"md5_digest": "fb9659f3d026d466b556a4eb7688eb3a",
"packagetype": "bdist_wheel",
"python_version": "cp314",
"requires_python": "<3.15,>=3.10",
"size": 445604,
"upload_time": "2025-10-14T00:23:40",
"upload_time_iso_8601": "2025-10-14T00:23:40.649633Z",
"url": "https://files.pythonhosted.org/packages/65/3a/e92caed8c6926037396977f3945e5c6d51efba0d67b04dfa63e6fffa3e10/rustoml-0.13.0-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "a23b6d9f070b87bbadd90db2b441bb4e7000284d324b837fa4f9638d54623cb3",
"md5": "e8e7b494c0ed585404d4154560c0d503",
"sha256": "f0ade24ae76d765502fde016642521ecea7412437a72d17f06e2bc6fe4574bde"
},
"downloads": -1,
"filename": "rustoml-0.13.0-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "e8e7b494c0ed585404d4154560c0d503",
"packagetype": "bdist_wheel",
"python_version": "cp314",
"requires_python": "<3.15,>=3.10",
"size": 385471,
"upload_time": "2025-10-14T00:23:42",
"upload_time_iso_8601": "2025-10-14T00:23:42.193784Z",
"url": "https://files.pythonhosted.org/packages/a2/3b/6d9f070b87bbadd90db2b441bb4e7000284d324b837fa4f9638d54623cb3/rustoml-0.13.0-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "9a470bfe9043a77c0f8bf7747c0b4ccb15905fb8f1be11993d0bf5e6394fbb6f",
"md5": "40fab1b2f4a823724c614de60015c088",
"sha256": "0e2bbae170e0c3e869f7e63c83b7d20b228a4a2bd618dc91d1e8e87c3046003e"
},
"downloads": -1,
"filename": "rustoml-0.13.0-cp314-cp314t-manylinux_2_5_i686.manylinux1_i686.whl",
"has_sig": false,
"md5_digest": "40fab1b2f4a823724c614de60015c088",
"packagetype": "bdist_wheel",
"python_version": "cp314",
"requires_python": "<3.15,>=3.10",
"size": 413896,
"upload_time": "2025-10-14T00:23:43",
"upload_time_iso_8601": "2025-10-14T00:23:43.475068Z",
"url": "https://files.pythonhosted.org/packages/9a/47/0bfe9043a77c0f8bf7747c0b4ccb15905fb8f1be11993d0bf5e6394fbb6f/rustoml-0.13.0-cp314-cp314t-manylinux_2_5_i686.manylinux1_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "b2bc3f550f39b32f0043a157a16a4ab2b73f87255fa4082f2698a5d217b07edf",
"md5": "c97c546bd14e6a48548e5666d0e60299",
"sha256": "fa3001ddc8438042c865f750537318369200c5bb85aa644239b67f87c868d8c6"
},
"downloads": -1,
"filename": "rustoml-0.13.0-cp314-cp314t-musllinux_1_1_aarch64.whl",
"has_sig": false,
"md5_digest": "c97c546bd14e6a48548e5666d0e60299",
"packagetype": "bdist_wheel",
"python_version": "cp314",
"requires_python": "<3.15,>=3.10",
"size": 559819,
"upload_time": "2025-10-14T00:23:44",
"upload_time_iso_8601": "2025-10-14T00:23:44.809646Z",
"url": "https://files.pythonhosted.org/packages/b2/bc/3f550f39b32f0043a157a16a4ab2b73f87255fa4082f2698a5d217b07edf/rustoml-0.13.0-cp314-cp314t-musllinux_1_1_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "06be329f2385b5f2dc62e12dc83f348a2c949c53540b46d602b6d8136f84ee47",
"md5": "4bbb56c33133bccbc3054ba1efa6ba17",
"sha256": "1a20af35d4a9cfd2048ba7d4a3dbba9b833729e17a5da6e9496fdb612d0cd33d"
},
"downloads": -1,
"filename": "rustoml-0.13.0-cp314-cp314t-musllinux_1_1_x86_64.whl",
"has_sig": false,
"md5_digest": "4bbb56c33133bccbc3054ba1efa6ba17",
"packagetype": "bdist_wheel",
"python_version": "cp314",
"requires_python": "<3.15,>=3.10",
"size": 558774,
"upload_time": "2025-10-14T00:23:46",
"upload_time_iso_8601": "2025-10-14T00:23:46.396688Z",
"url": "https://files.pythonhosted.org/packages/06/be/329f2385b5f2dc62e12dc83f348a2c949c53540b46d602b6d8136f84ee47/rustoml-0.13.0-cp314-cp314t-musllinux_1_1_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "14483db1fb05a5a99a14afc6b695130bf8bccdd56281514794a0c77473be25a9",
"md5": "8665ec0f54187bb89c622711f9a08a0d",
"sha256": "265e6db61b215ec6fd8bc6ae54ad1cd3231c5c3f5efa7871469bfe2c4c67aac6"
},
"downloads": -1,
"filename": "rustoml-0.13.0-cp314-cp314t-win32.whl",
"has_sig": false,
"md5_digest": "8665ec0f54187bb89c622711f9a08a0d",
"packagetype": "bdist_wheel",
"python_version": "cp314",
"requires_python": "<3.15,>=3.10",
"size": 253386,
"upload_time": "2025-10-14T00:23:47",
"upload_time_iso_8601": "2025-10-14T00:23:47.659658Z",
"url": "https://files.pythonhosted.org/packages/14/48/3db1fb05a5a99a14afc6b695130bf8bccdd56281514794a0c77473be25a9/rustoml-0.13.0-cp314-cp314t-win32.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "892429dbd4e52c957f30f2be72551122c4c0bb0262cc317c13f9a2db3f5ac36c",
"md5": "7fbbd28350d7979fa0cc3d2e1b35fde0",
"sha256": "252aed42df005f6915354119045bce60d0d5a0765c8f8f372640e915eca20531"
},
"downloads": -1,
"filename": "rustoml-0.13.0-cp314-cp314t-win_amd64.whl",
"has_sig": false,
"md5_digest": "7fbbd28350d7979fa0cc3d2e1b35fde0",
"packagetype": "bdist_wheel",
"python_version": "cp314",
"requires_python": "<3.15,>=3.10",
"size": 260166,
"upload_time": "2025-10-14T00:23:48",
"upload_time_iso_8601": "2025-10-14T00:23:48.840200Z",
"url": "https://files.pythonhosted.org/packages/89/24/29dbd4e52c957f30f2be72551122c4c0bb0262cc317c13f9a2db3f5ac36c/rustoml-0.13.0-cp314-cp314t-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "88106628c8a3a90ef60e5a61f07da515f0a8eeac2084ab8a6651bb65a738e32a",
"md5": "07c9ae4b2597583e52166b8564d6ec77",
"sha256": "ccf92129d42c761f1e3ec4a96774a6ee3c98c8c01b6b66635d1e64031e6156a5"
},
"downloads": -1,
"filename": "rustoml-0.13.0-cp314-cp314t-win_arm64.whl",
"has_sig": false,
"md5_digest": "07c9ae4b2597583e52166b8564d6ec77",
"packagetype": "bdist_wheel",
"python_version": "cp314",
"requires_python": "<3.15,>=3.10",
"size": 247031,
"upload_time": "2025-10-14T00:23:50",
"upload_time_iso_8601": "2025-10-14T00:23:50.049380Z",
"url": "https://files.pythonhosted.org/packages/88/10/6628c8a3a90ef60e5a61f07da515f0a8eeac2084ab8a6651bb65a738e32a/rustoml-0.13.0-cp314-cp314t-win_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "74731cd35b4960c12b3d10b1f416cfbfee57985456037d0b7453bb76b73081e0",
"md5": "16e7d776a699e846e6226e67eda227b0",
"sha256": "8e0e996674db0fba6205a0ad7a8bc4aeb4d3503c96c18bbde1c9278eec4ee5e8"
},
"downloads": -1,
"filename": "rustoml-0.13.0-cp314-cp314-win32.whl",
"has_sig": false,
"md5_digest": "16e7d776a699e846e6226e67eda227b0",
"packagetype": "bdist_wheel",
"python_version": "cp314",
"requires_python": "<3.15,>=3.10",
"size": 254481,
"upload_time": "2025-10-14T00:23:30",
"upload_time_iso_8601": "2025-10-14T00:23:30.270490Z",
"url": "https://files.pythonhosted.org/packages/74/73/1cd35b4960c12b3d10b1f416cfbfee57985456037d0b7453bb76b73081e0/rustoml-0.13.0-cp314-cp314-win32.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "b50accf404cc649630554d43ec9e5ed18670220b336c2718f1ae02bad42aa633",
"md5": "1de6110c3719d55ea512d3344e7302cc",
"sha256": "c1b201f251e6bf2e4bbb22c0156000b0d4f2368a00dce98cc986ea1dc6ef742e"
},
"downloads": -1,
"filename": "rustoml-0.13.0-cp314-cp314-win_amd64.whl",
"has_sig": false,
"md5_digest": "1de6110c3719d55ea512d3344e7302cc",
"packagetype": "bdist_wheel",
"python_version": "cp314",
"requires_python": "<3.15,>=3.10",
"size": 260704,
"upload_time": "2025-10-14T00:23:31",
"upload_time_iso_8601": "2025-10-14T00:23:31.556703Z",
"url": "https://files.pythonhosted.org/packages/b5/0a/ccf404cc649630554d43ec9e5ed18670220b336c2718f1ae02bad42aa633/rustoml-0.13.0-cp314-cp314-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "ce335beef5ec340bf5fbbeea4dc29e261c633c2cff7f8ba268708b89f4dd241e",
"md5": "54685114e0c4ed02a967bf8dc997f223",
"sha256": "05da5605ce847a3df2970ef92b097de30e41e97107ca45fe4e37f9b0b0324a6f"
},
"downloads": -1,
"filename": "rustoml-0.13.0-cp314-cp314-win_arm64.whl",
"has_sig": false,
"md5_digest": "54685114e0c4ed02a967bf8dc997f223",
"packagetype": "bdist_wheel",
"python_version": "cp314",
"requires_python": "<3.15,>=3.10",
"size": 248262,
"upload_time": "2025-10-14T00:23:32",
"upload_time_iso_8601": "2025-10-14T00:23:32.888581Z",
"url": "https://files.pythonhosted.org/packages/ce/33/5beef5ec340bf5fbbeea4dc29e261c633c2cff7f8ba268708b89f4dd241e/rustoml-0.13.0-cp314-cp314-win_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "e868aed33ee28c73e862ec965193057dca1bedc5b07de5c5b6fa292f9bf36e79",
"md5": "eeb788fc0501c7bda9084f54bcb3553d",
"sha256": "0da94efa71e99a2f17b0230c110e17dc14c85eadaa602e1fd29ccdc393634922"
},
"downloads": -1,
"filename": "rustoml-0.13.0.tar.gz",
"has_sig": false,
"md5_digest": "eeb788fc0501c7bda9084f54bcb3553d",
"packagetype": "sdist",
"python_version": "source",
"requires_python": "<3.15,>=3.10",
"size": 55776,
"upload_time": "2025-10-14T00:23:51",
"upload_time_iso_8601": "2025-10-14T00:23:51.191524Z",
"url": "https://files.pythonhosted.org/packages/e8/68/aed33ee28c73e862ec965193057dca1bedc5b07de5c5b6fa292f9bf36e79/rustoml-0.13.0.tar.gz",
"yanked": false,
"yanked_reason": null
}
],
"upload_time": "2025-10-14 00:23:51",
"github": true,
"gitlab": false,
"bitbucket": false,
"codeberg": false,
"github_user": "seanmozeik",
"github_project": "rustoml",
"travis_ci": false,
"coveralls": false,
"github_actions": true,
"lcname": "rustoml"
}