skytemple-rust


Nameskytemple-rust JSON
Version 1.6.5 PyPI version JSON
download
home_pageNone
SummaryBinary Rust extension for skytemple-files
upload_time2024-03-30 13:06:30
maintainerNone
docs_urlNone
authorNone
requires_python>=3.9
licenseGPL-3.0-or-later
keywords rom-hacking game-modding skytemple gtk
VCS
bugtrack_url
requirements range-typed-integers
Travis-CI No Travis.
coveralls test coverage No coveralls.
            SkyTemple Rust Extensions
=========================

|build| |pypi-version| |pypi-downloads| |pypi-license| |pypi-pyversions| |discord|

.. |build| image:: https://img.shields.io/github/actions/workflow/status/SkyTemple/skytemple-rust/build-test-publish.yml
    :target: https://pypi.org/project/skytemple-rust/
    :alt: Build Status

.. |pypi-version| image:: https://img.shields.io/pypi/v/skytemple-rust
    :target: https://pypi.org/project/skytemple-rust/
    :alt: Version

.. |pypi-downloads| image:: https://img.shields.io/pypi/dm/skytemple-rust
    :target: https://pypi.org/project/skytemple-rust/
    :alt: Downloads

.. |pypi-license| image:: https://img.shields.io/pypi/l/skytemple-rust
    :alt: License (GPLv3)

.. |pypi-pyversions| image:: https://img.shields.io/pypi/pyversions/skytemple-rust
    :alt: Supported Python versions

.. |discord| image:: https://img.shields.io/discord/710190644152369162?label=Discord
    :target: https://discord.gg/4e3X36f
    :alt: Discord

Binary rust extensions for SkyTemple.

This implements a lot of file handlers for SkyTemple in Rust (prefixed ``st_``). You can read more
about the file types in the `SkyTemple Files`_ repository. This is also the main
place that these file handlers are used.

Additionally it has Python bindings for the following Rust crates:

- `pmd_wan`_ by marius851000_.

PLEASE NOTE that versions 1.3.4-1.3.x are intermediate releases. The only stable thing in it are the pmd_wan bindings!

Unit Tests
~~~~~~~~~~
Unit tests for the ``st_`` modules are located as Python Tests in `SkyTemple Files`_. The reason
for this is that they are tested together with the "legacy" Python implementations. When changing
existing modules, be aware that I will run the Python tests on them before merging any Pull Requests.

Pure Rust
~~~~~~~~~
The ``st_`` modules are primarily built for being used from Python. However by disabling the ``python``
feature, you can also use them from a pure Rust project as a library. Some of the data types normally
provided by PyO3 (the Python binding crate) are replaced by stubs then. See the ``no-python`` module
for more information.

However some things may be a bit strange when using it, compared to using "normal" Rust libraries,
due to the fact ownership expectations between Rust and Python are wildly different and the stubs
replace something that would normally be a reference increase on the Python heap with a clone in Rust.
If you run into issues with this (performance- or otherwise) please open an issue. The pure Rust version
of the ``st_`` modules is not tested.

.. _SkyTemple Files: https://github.com/SkyTemple/skytemple-files
.. _pmd_wan: https://github.com/marius851000/pmd_wan
.. _marius851000: https://github.com/marius851000/

            

Raw data

            {
    "_id": null,
    "home_page": null,
    "name": "skytemple-rust",
    "maintainer": null,
    "docs_url": null,
    "requires_python": ">=3.9",
    "maintainer_email": null,
    "keywords": "rom-hacking, game-modding, skytemple, gtk",
    "author": null,
    "author_email": "\"Marco \\\"Capypara\\\" K\u00f6pcke\" <hello@capypara.de>",
    "download_url": "https://files.pythonhosted.org/packages/19/fd/725d00eaf51bb1ce9bcfef138f0db3c07d13af13e21b69266b40f1831cc9/skytemple-rust-1.6.5.tar.gz",
    "platform": null,
    "description": "SkyTemple Rust Extensions\n=========================\n\n|build| |pypi-version| |pypi-downloads| |pypi-license| |pypi-pyversions| |discord|\n\n.. |build| image:: https://img.shields.io/github/actions/workflow/status/SkyTemple/skytemple-rust/build-test-publish.yml\n    :target: https://pypi.org/project/skytemple-rust/\n    :alt: Build Status\n\n.. |pypi-version| image:: https://img.shields.io/pypi/v/skytemple-rust\n    :target: https://pypi.org/project/skytemple-rust/\n    :alt: Version\n\n.. |pypi-downloads| image:: https://img.shields.io/pypi/dm/skytemple-rust\n    :target: https://pypi.org/project/skytemple-rust/\n    :alt: Downloads\n\n.. |pypi-license| image:: https://img.shields.io/pypi/l/skytemple-rust\n    :alt: License (GPLv3)\n\n.. |pypi-pyversions| image:: https://img.shields.io/pypi/pyversions/skytemple-rust\n    :alt: Supported Python versions\n\n.. |discord| image:: https://img.shields.io/discord/710190644152369162?label=Discord\n    :target: https://discord.gg/4e3X36f\n    :alt: Discord\n\nBinary rust extensions for SkyTemple.\n\nThis implements a lot of file handlers for SkyTemple in Rust (prefixed ``st_``). You can read more\nabout the file types in the `SkyTemple Files`_ repository. This is also the main\nplace that these file handlers are used.\n\nAdditionally it has Python bindings for the following Rust crates:\n\n- `pmd_wan`_ by marius851000_.\n\nPLEASE NOTE that versions 1.3.4-1.3.x are intermediate releases. The only stable thing in it are the pmd_wan bindings!\n\nUnit Tests\n~~~~~~~~~~\nUnit tests for the ``st_`` modules are located as Python Tests in `SkyTemple Files`_. The reason\nfor this is that they are tested together with the \"legacy\" Python implementations. When changing\nexisting modules, be aware that I will run the Python tests on them before merging any Pull Requests.\n\nPure Rust\n~~~~~~~~~\nThe ``st_`` modules are primarily built for being used from Python. However by disabling the ``python``\nfeature, you can also use them from a pure Rust project as a library. Some of the data types normally\nprovided by PyO3 (the Python binding crate) are replaced by stubs then. See the ``no-python`` module\nfor more information.\n\nHowever some things may be a bit strange when using it, compared to using \"normal\" Rust libraries,\ndue to the fact ownership expectations between Rust and Python are wildly different and the stubs\nreplace something that would normally be a reference increase on the Python heap with a clone in Rust.\nIf you run into issues with this (performance- or otherwise) please open an issue. The pure Rust version\nof the ``st_`` modules is not tested.\n\n.. _SkyTemple Files: https://github.com/SkyTemple/skytemple-files\n.. _pmd_wan: https://github.com/marius851000/pmd_wan\n.. _marius851000: https://github.com/marius851000/\n",
    "bugtrack_url": null,
    "license": "GPL-3.0-or-later",
    "summary": "Binary Rust extension for skytemple-files",
    "version": "1.6.5",
    "project_urls": {
        "Announcements": "https://blog.skytemple.org",
        "Discord": "https://discord.gg/skytemple",
        "Documentation": "https://wiki.skytemple.org",
        "Homepage": "https://skytemple.org",
        "Issues": "https://github.com/SkyTemple/skytemple-rust/issues",
        "Repository": "https://github.com/SkyTemple/skytemple-rust.git"
    },
    "split_keywords": [
        "rom-hacking",
        " game-modding",
        " skytemple",
        " gtk"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "85379e32e1845b6c6da415bc89299e74ac1393fee7ced17aab7738cadf222bba",
                "md5": "35a86b402cb78a5a1f8e1e5b47e2556e",
                "sha256": "70f92ecd34697f134c30e6cdbabb506030c01bd41f97da14dc4d9178df31c90b"
            },
            "downloads": -1,
            "filename": "skytemple_rust-1.6.5-cp310-cp310-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "35a86b402cb78a5a1f8e1e5b47e2556e",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.9",
            "size": 1254347,
            "upload_time": "2024-03-30T13:00:06",
            "upload_time_iso_8601": "2024-03-30T13:00:06.421290Z",
            "url": "https://files.pythonhosted.org/packages/85/37/9e32e1845b6c6da415bc89299e74ac1393fee7ced17aab7738cadf222bba/skytemple_rust-1.6.5-cp310-cp310-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "89abce6f14aaa3fa212129ab7700e1afc8ad60fbf551a0b5bd3613fc3d6eb919",
                "md5": "1b87ac3d14a10a4d97a0e63427d32116",
                "sha256": "2e7c347ab2a2fcc9270c8fc1a0440bd199c7436b857f3a36cd0e9a58e7d29b24"
            },
            "downloads": -1,
            "filename": "skytemple_rust-1.6.5-cp310-cp310-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "1b87ac3d14a10a4d97a0e63427d32116",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.9",
            "size": 1211560,
            "upload_time": "2024-03-30T12:59:58",
            "upload_time_iso_8601": "2024-03-30T12:59:58.675314Z",
            "url": "https://files.pythonhosted.org/packages/89/ab/ce6f14aaa3fa212129ab7700e1afc8ad60fbf551a0b5bd3613fc3d6eb919/skytemple_rust-1.6.5-cp310-cp310-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "82ed6dff2fb1bafd96b438880a534d551a54de1bbcb527abc766f21a97fd90b8",
                "md5": "29eec38b0665beee684a873f63f69b28",
                "sha256": "87257f769d8ed710e2dbc1281cc777f68fcc62b25bee1236864f199aa6e6f6b5"
            },
            "downloads": -1,
            "filename": "skytemple_rust-1.6.5-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "29eec38b0665beee684a873f63f69b28",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.9",
            "size": 1387646,
            "upload_time": "2024-03-30T13:00:17",
            "upload_time_iso_8601": "2024-03-30T13:00:17.228759Z",
            "url": "https://files.pythonhosted.org/packages/82/ed/6dff2fb1bafd96b438880a534d551a54de1bbcb527abc766f21a97fd90b8/skytemple_rust-1.6.5-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "fc32bd9af52b97c8452795f90c6718c61f7228d8c0e251793fdc8b42d9ab92af",
                "md5": "21d83d574421b87c062308e4145bd448",
                "sha256": "df83557bd66827d27492e428eff42d6196344ff9ddb30de5d9f18ab70df8b17f"
            },
            "downloads": -1,
            "filename": "skytemple_rust-1.6.5-cp310-cp310-musllinux_1_1_x86_64.whl",
            "has_sig": false,
            "md5_digest": "21d83d574421b87c062308e4145bd448",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.9",
            "size": 1429027,
            "upload_time": "2024-03-30T13:00:19",
            "upload_time_iso_8601": "2024-03-30T13:00:19.257818Z",
            "url": "https://files.pythonhosted.org/packages/fc/32/bd9af52b97c8452795f90c6718c61f7228d8c0e251793fdc8b42d9ab92af/skytemple_rust-1.6.5-cp310-cp310-musllinux_1_1_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "8fdd851dada67784af6f7b889361bf8b82dd392ad902eaf97efc17ae4ec8e57a",
                "md5": "6430eb54c9a449b3a274ae7611658f2a",
                "sha256": "2ed678f7c0c84b658ad494356c68df59585e7052e334c77f1966d3efc3995071"
            },
            "downloads": -1,
            "filename": "skytemple_rust-1.6.5-cp310-cp310-win32.whl",
            "has_sig": false,
            "md5_digest": "6430eb54c9a449b3a274ae7611658f2a",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.9",
            "size": 916157,
            "upload_time": "2024-03-30T13:00:46",
            "upload_time_iso_8601": "2024-03-30T13:00:46.518955Z",
            "url": "https://files.pythonhosted.org/packages/8f/dd/851dada67784af6f7b889361bf8b82dd392ad902eaf97efc17ae4ec8e57a/skytemple_rust-1.6.5-cp310-cp310-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "245fc5bc39a1400af898f57ebc607436594956f5f1368998fc19008ddca08c40",
                "md5": "ac789d0d92eaccd5a764ff9d1c402fe4",
                "sha256": "3b445feeaa44f575b3f79fac58d9f083f4818d05a7778e9f41d1b330cc65739c"
            },
            "downloads": -1,
            "filename": "skytemple_rust-1.6.5-cp310-cp310-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "ac789d0d92eaccd5a764ff9d1c402fe4",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.9",
            "size": 1014522,
            "upload_time": "2024-03-30T13:00:36",
            "upload_time_iso_8601": "2024-03-30T13:00:36.037960Z",
            "url": "https://files.pythonhosted.org/packages/24/5f/c5bc39a1400af898f57ebc607436594956f5f1368998fc19008ddca08c40/skytemple_rust-1.6.5-cp310-cp310-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "d5f3311b910e00c365b97d8a42be0b8f423e22a9326e858938a0afd6ba1305d1",
                "md5": "df1e8df556dccd107e19c055cea87a96",
                "sha256": "a22be13accdb81c6465763c8c104e0b3b3d3485ae6da7b8045e9c45a5cd4fe70"
            },
            "downloads": -1,
            "filename": "skytemple_rust-1.6.5-cp311-cp311-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "df1e8df556dccd107e19c055cea87a96",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.9",
            "size": 1254628,
            "upload_time": "2024-03-30T13:00:07",
            "upload_time_iso_8601": "2024-03-30T13:00:07.893664Z",
            "url": "https://files.pythonhosted.org/packages/d5/f3/311b910e00c365b97d8a42be0b8f423e22a9326e858938a0afd6ba1305d1/skytemple_rust-1.6.5-cp311-cp311-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "fa1464bae3db3dff606110da0cea596cf28e80d0d9ad97216204c5b7ebada733",
                "md5": "036ce9847985c9cceae46aac5854958b",
                "sha256": "d0d8a63c1ac98fde8d3c3e9fe738bfcbe0b4e8632a98a53a48009d10b644c425"
            },
            "downloads": -1,
            "filename": "skytemple_rust-1.6.5-cp311-cp311-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "036ce9847985c9cceae46aac5854958b",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.9",
            "size": 1211865,
            "upload_time": "2024-03-30T13:00:01",
            "upload_time_iso_8601": "2024-03-30T13:00:01.083474Z",
            "url": "https://files.pythonhosted.org/packages/fa/14/64bae3db3dff606110da0cea596cf28e80d0d9ad97216204c5b7ebada733/skytemple_rust-1.6.5-cp311-cp311-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "dbe89e3fbbd5b546efb471f18989dce3ffdb10c72b1d025332176c6e4de3a1d8",
                "md5": "f51ddfc42e21e5d9c2c4ad38288ed56e",
                "sha256": "ef323f2212fa17d07ea01851bc1ed20e8720960593618d1432b9638cce21fb44"
            },
            "downloads": -1,
            "filename": "skytemple_rust-1.6.5-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "f51ddfc42e21e5d9c2c4ad38288ed56e",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.9",
            "size": 1387769,
            "upload_time": "2024-03-30T13:00:20",
            "upload_time_iso_8601": "2024-03-30T13:00:20.694133Z",
            "url": "https://files.pythonhosted.org/packages/db/e8/9e3fbbd5b546efb471f18989dce3ffdb10c72b1d025332176c6e4de3a1d8/skytemple_rust-1.6.5-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "2671378b5b4e0bd54f96f52c7f7d6430db696500230106c319b4be9be83b5263",
                "md5": "ba64981a084f998f8d45c3954a5cb5db",
                "sha256": "78c89d7a2536002a6eedd8c89d92fa8a87649d44465435f7145c39d61aa0f55d"
            },
            "downloads": -1,
            "filename": "skytemple_rust-1.6.5-cp311-cp311-musllinux_1_1_x86_64.whl",
            "has_sig": false,
            "md5_digest": "ba64981a084f998f8d45c3954a5cb5db",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.9",
            "size": 1428951,
            "upload_time": "2024-03-30T13:00:22",
            "upload_time_iso_8601": "2024-03-30T13:00:22.741573Z",
            "url": "https://files.pythonhosted.org/packages/26/71/378b5b4e0bd54f96f52c7f7d6430db696500230106c319b4be9be83b5263/skytemple_rust-1.6.5-cp311-cp311-musllinux_1_1_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "92bcd8d5f2ecca19a61af76cfc59cb3af6d3bafd66491727c62dbcf555574b69",
                "md5": "5bb7d2496143b91d2d07cdf1249573fd",
                "sha256": "76a6a2444e8ff62a8f3eb6bfef6dbaae94fcfa0ca1f189c3ef22bbb7ee804625"
            },
            "downloads": -1,
            "filename": "skytemple_rust-1.6.5-cp311-cp311-win32.whl",
            "has_sig": false,
            "md5_digest": "5bb7d2496143b91d2d07cdf1249573fd",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.9",
            "size": 916021,
            "upload_time": "2024-03-30T13:00:47",
            "upload_time_iso_8601": "2024-03-30T13:00:47.764367Z",
            "url": "https://files.pythonhosted.org/packages/92/bc/d8d5f2ecca19a61af76cfc59cb3af6d3bafd66491727c62dbcf555574b69/skytemple_rust-1.6.5-cp311-cp311-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "6151f36addf9bbe0f37ad53d46f3711e564757ca9227bda7ec680c239951ef0c",
                "md5": "d46de92bfd27f345f56b5ebe3b2931f0",
                "sha256": "8cab37663131b193572a0ff98de7b2a294f1372df73aff03ae42d51a63de4545"
            },
            "downloads": -1,
            "filename": "skytemple_rust-1.6.5-cp311-cp311-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "d46de92bfd27f345f56b5ebe3b2931f0",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.9",
            "size": 1014560,
            "upload_time": "2024-03-30T13:00:38",
            "upload_time_iso_8601": "2024-03-30T13:00:38.082488Z",
            "url": "https://files.pythonhosted.org/packages/61/51/f36addf9bbe0f37ad53d46f3711e564757ca9227bda7ec680c239951ef0c/skytemple_rust-1.6.5-cp311-cp311-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "6684153f1b2529b305c3da37d6d8b956c6c170e0377d3047e492be94446347de",
                "md5": "738f9d64f0d3d5be062e5a7821864000",
                "sha256": "1fb22cb68ec1910901aeb8f5ffc5a9093f9ed2343c9e3648fec432f2a13943f0"
            },
            "downloads": -1,
            "filename": "skytemple_rust-1.6.5-cp312-cp312-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "738f9d64f0d3d5be062e5a7821864000",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.9",
            "size": 1259438,
            "upload_time": "2024-03-30T13:00:09",
            "upload_time_iso_8601": "2024-03-30T13:00:09.938296Z",
            "url": "https://files.pythonhosted.org/packages/66/84/153f1b2529b305c3da37d6d8b956c6c170e0377d3047e492be94446347de/skytemple_rust-1.6.5-cp312-cp312-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "a38066587b7e769cae62cf675fcb0b0cb9c7cd11707e1ee9d9e278fb9a015d5f",
                "md5": "a37f9bc3b24595738214fa0930228052",
                "sha256": "610c15e5a765477800ce1c01e411fada16d25a2dccd9293db058f970326ff038"
            },
            "downloads": -1,
            "filename": "skytemple_rust-1.6.5-cp312-cp312-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "a37f9bc3b24595738214fa0930228052",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.9",
            "size": 1221716,
            "upload_time": "2024-03-30T13:00:03",
            "upload_time_iso_8601": "2024-03-30T13:00:03.237338Z",
            "url": "https://files.pythonhosted.org/packages/a3/80/66587b7e769cae62cf675fcb0b0cb9c7cd11707e1ee9d9e278fb9a015d5f/skytemple_rust-1.6.5-cp312-cp312-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "48654eff1e814f8c6558a010eaa3b36d4a9ff866c53175d3f369159ca397dbc4",
                "md5": "f450a2ffdafc6187d3e74c05b396e299",
                "sha256": "ce5d4222984e05c2ee3d15a354eb5e0e46557c0832fa2294ece9945c781f0d03"
            },
            "downloads": -1,
            "filename": "skytemple_rust-1.6.5-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "f450a2ffdafc6187d3e74c05b396e299",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.9",
            "size": 1395986,
            "upload_time": "2024-03-30T13:00:24",
            "upload_time_iso_8601": "2024-03-30T13:00:24.169007Z",
            "url": "https://files.pythonhosted.org/packages/48/65/4eff1e814f8c6558a010eaa3b36d4a9ff866c53175d3f369159ca397dbc4/skytemple_rust-1.6.5-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "6a0194c441422875bfb22bb72fb2a4e8e99f614be1e7eca56b93593fbb583769",
                "md5": "b8841c13e5a37ce9ada1cafdaf80a20c",
                "sha256": "439d4df684414709ae80074e714a5f51e99534e763106503532c753886fc20cd"
            },
            "downloads": -1,
            "filename": "skytemple_rust-1.6.5-cp312-cp312-musllinux_1_1_x86_64.whl",
            "has_sig": false,
            "md5_digest": "b8841c13e5a37ce9ada1cafdaf80a20c",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.9",
            "size": 1438471,
            "upload_time": "2024-03-30T13:00:25",
            "upload_time_iso_8601": "2024-03-30T13:00:25.711730Z",
            "url": "https://files.pythonhosted.org/packages/6a/01/94c441422875bfb22bb72fb2a4e8e99f614be1e7eca56b93593fbb583769/skytemple_rust-1.6.5-cp312-cp312-musllinux_1_1_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "bab2ae85d58bd2c589872814b70e6bae61c2ff33287bbe6333c6dc9849645811",
                "md5": "ce9a0e36b8349ab6cee489946eed7b5c",
                "sha256": "5cdae2542ea3cceb3b493593d83fd969942d5df948ac4b7e6858fc0eca0b0656"
            },
            "downloads": -1,
            "filename": "skytemple_rust-1.6.5-cp312-cp312-win32.whl",
            "has_sig": false,
            "md5_digest": "ce9a0e36b8349ab6cee489946eed7b5c",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.9",
            "size": 928834,
            "upload_time": "2024-03-30T13:00:49",
            "upload_time_iso_8601": "2024-03-30T13:00:49.636635Z",
            "url": "https://files.pythonhosted.org/packages/ba/b2/ae85d58bd2c589872814b70e6bae61c2ff33287bbe6333c6dc9849645811/skytemple_rust-1.6.5-cp312-cp312-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "c8be0870fc17add620d5abbcee70dfe4e491b5e0914d18e3ad92ae55bc1f95b0",
                "md5": "f5c686f6fc33d1dabc80ac71d1adbf1a",
                "sha256": "07a71e563446b7aeca7082755fedd213aab398d4f9e41d9d5f0298c0ca8f897f"
            },
            "downloads": -1,
            "filename": "skytemple_rust-1.6.5-cp312-cp312-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "f5c686f6fc33d1dabc80ac71d1adbf1a",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.9",
            "size": 1032682,
            "upload_time": "2024-03-30T13:00:40",
            "upload_time_iso_8601": "2024-03-30T13:00:40.101592Z",
            "url": "https://files.pythonhosted.org/packages/c8/be/0870fc17add620d5abbcee70dfe4e491b5e0914d18e3ad92ae55bc1f95b0/skytemple_rust-1.6.5-cp312-cp312-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "a49f31bf5475eaba525a7430453f3c1e749ac7d18cf84b6e05a1d83ae9178f4b",
                "md5": "2c648d1ef9c1c9a7013870dbe76c4b84",
                "sha256": "9ff18b01fc5007065970344238481191668050a6b55b075c068d885342cdbf5a"
            },
            "downloads": -1,
            "filename": "skytemple_rust-1.6.5-cp39-cp39-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "2c648d1ef9c1c9a7013870dbe76c4b84",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.9",
            "size": 1254095,
            "upload_time": "2024-03-30T13:00:11",
            "upload_time_iso_8601": "2024-03-30T13:00:11.443515Z",
            "url": "https://files.pythonhosted.org/packages/a4/9f/31bf5475eaba525a7430453f3c1e749ac7d18cf84b6e05a1d83ae9178f4b/skytemple_rust-1.6.5-cp39-cp39-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "a26aa9f027f1df4298ac378049d47ba7ac7f92c847cd81ed7a15a741a743927e",
                "md5": "ced3f615b33a64b05d41fe1588da0c2f",
                "sha256": "d6642b48f5adea97031f760157c1b5d2b053f7cc1f32fbe180748f20c663ef86"
            },
            "downloads": -1,
            "filename": "skytemple_rust-1.6.5-cp39-cp39-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "ced3f615b33a64b05d41fe1588da0c2f",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.9",
            "size": 1211287,
            "upload_time": "2024-03-30T13:00:05",
            "upload_time_iso_8601": "2024-03-30T13:00:05.064748Z",
            "url": "https://files.pythonhosted.org/packages/a2/6a/a9f027f1df4298ac378049d47ba7ac7f92c847cd81ed7a15a741a743927e/skytemple_rust-1.6.5-cp39-cp39-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "3fc190af3bcb1f3ce40ecb239720f2923eaeb53b7a550d3de6ee26de613658cb",
                "md5": "11c18ead72c955141e3d7882ba59378f",
                "sha256": "73b9739f75dc05648774df841fc1d95f53247376b5b3f4f9992c797c32d26627"
            },
            "downloads": -1,
            "filename": "skytemple_rust-1.6.5-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "11c18ead72c955141e3d7882ba59378f",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.9",
            "size": 1387727,
            "upload_time": "2024-03-30T13:00:28",
            "upload_time_iso_8601": "2024-03-30T13:00:28.570575Z",
            "url": "https://files.pythonhosted.org/packages/3f/c1/90af3bcb1f3ce40ecb239720f2923eaeb53b7a550d3de6ee26de613658cb/skytemple_rust-1.6.5-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "29d0dcc5517ec276ec56a9f98e33cf1c95390fa410c7acad44135500396f4910",
                "md5": "ff04dfa9372dce08b1a135e9f1b3cf9d",
                "sha256": "34944cfedb93c415dfed8a20e9b8441bd3bdf6de613d82155ac0920d41a206ba"
            },
            "downloads": -1,
            "filename": "skytemple_rust-1.6.5-cp39-cp39-musllinux_1_1_x86_64.whl",
            "has_sig": false,
            "md5_digest": "ff04dfa9372dce08b1a135e9f1b3cf9d",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.9",
            "size": 1428807,
            "upload_time": "2024-03-30T13:00:30",
            "upload_time_iso_8601": "2024-03-30T13:00:30.560198Z",
            "url": "https://files.pythonhosted.org/packages/29/d0/dcc5517ec276ec56a9f98e33cf1c95390fa410c7acad44135500396f4910/skytemple_rust-1.6.5-cp39-cp39-musllinux_1_1_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "ba883c80d67a6d929d0a440025f146723feac37c41128e6a02427a260e166e19",
                "md5": "eb0f12cc601f6f200ce7f08442f3c2e2",
                "sha256": "e97156d372edf48cf0c86e998ecbc08b7a522b031f4c5e02f36a5e336a583056"
            },
            "downloads": -1,
            "filename": "skytemple_rust-1.6.5-cp39-cp39-win32.whl",
            "has_sig": false,
            "md5_digest": "eb0f12cc601f6f200ce7f08442f3c2e2",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.9",
            "size": 916507,
            "upload_time": "2024-03-30T13:00:51",
            "upload_time_iso_8601": "2024-03-30T13:00:51.129854Z",
            "url": "https://files.pythonhosted.org/packages/ba/88/3c80d67a6d929d0a440025f146723feac37c41128e6a02427a260e166e19/skytemple_rust-1.6.5-cp39-cp39-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "00ed0b3110605b3e49addfee92103d4f15dfb7fadf669ab83aee61d8717c5fd9",
                "md5": "8ed7eb47d3608f2267197d5878098fc5",
                "sha256": "5e85733e19a4714c2eb888e0ea7efe01187e295298e96b544abf4be7b5853e87"
            },
            "downloads": -1,
            "filename": "skytemple_rust-1.6.5-cp39-cp39-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "8ed7eb47d3608f2267197d5878098fc5",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.9",
            "size": 1014173,
            "upload_time": "2024-03-30T13:00:42",
            "upload_time_iso_8601": "2024-03-30T13:00:42.006493Z",
            "url": "https://files.pythonhosted.org/packages/00/ed/0b3110605b3e49addfee92103d4f15dfb7fadf669ab83aee61d8717c5fd9/skytemple_rust-1.6.5-cp39-cp39-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "506c0e8b301ab4dfef012b5aa14755970ae127329e480d2c534154366d167f83",
                "md5": "cb0922b843d0295be7459d40ea033238",
                "sha256": "2988b8a4edea5a6e576850748dbb14614dd1c7b659dd8dfa6d8b115d3c1dc273"
            },
            "downloads": -1,
            "filename": "skytemple_rust-1.6.5-pp310-pypy310_pp73-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "cb0922b843d0295be7459d40ea033238",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.9",
            "size": 1249859,
            "upload_time": "2024-03-30T13:00:13",
            "upload_time_iso_8601": "2024-03-30T13:00:13.839029Z",
            "url": "https://files.pythonhosted.org/packages/50/6c/0e8b301ab4dfef012b5aa14755970ae127329e480d2c534154366d167f83/skytemple_rust-1.6.5-pp310-pypy310_pp73-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "f4ceb89c79314bb4efcf83f8840056878ecf93adf3fea207790b85ce1f5f9951",
                "md5": "1b9e9f058728d78378fc170ad332c826",
                "sha256": "4557d3b20e51b9b836e68d0df83c91bb5b3d8a461927f38960d72e1474d5a813"
            },
            "downloads": -1,
            "filename": "skytemple_rust-1.6.5-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "1b9e9f058728d78378fc170ad332c826",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.9",
            "size": 1385475,
            "upload_time": "2024-03-30T13:00:31",
            "upload_time_iso_8601": "2024-03-30T13:00:31.937715Z",
            "url": "https://files.pythonhosted.org/packages/f4/ce/b89c79314bb4efcf83f8840056878ecf93adf3fea207790b85ce1f5f9951/skytemple_rust-1.6.5-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "03c01b7b80455c51c31eee9dd28224c47edc42c4fabd008c6f6d2b48a58edb52",
                "md5": "fcbfea57cb8cfc6434f80b975206dcd9",
                "sha256": "0c7e384371537ff5b7dae8c1a66d1386a52bd07b8475d4ea94b2112eab3a5383"
            },
            "downloads": -1,
            "filename": "skytemple_rust-1.6.5-pp310-pypy310_pp73-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "fcbfea57cb8cfc6434f80b975206dcd9",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.9",
            "size": 1012650,
            "upload_time": "2024-03-30T13:00:43",
            "upload_time_iso_8601": "2024-03-30T13:00:43.901768Z",
            "url": "https://files.pythonhosted.org/packages/03/c0/1b7b80455c51c31eee9dd28224c47edc42c4fabd008c6f6d2b48a58edb52/skytemple_rust-1.6.5-pp310-pypy310_pp73-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "b8a12bd53f3edeff7420200872ce5d377f89102c17423f5d1fc317efca965365",
                "md5": "82b527f6fda4c5ee4b91c53b6e65f5b3",
                "sha256": "5bad6f3df8c750a1929d6d1b2956ccc72351ba2549f1da7be882744e7001f144"
            },
            "downloads": -1,
            "filename": "skytemple_rust-1.6.5-pp39-pypy39_pp73-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "82b527f6fda4c5ee4b91c53b6e65f5b3",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.9",
            "size": 1249856,
            "upload_time": "2024-03-30T13:00:15",
            "upload_time_iso_8601": "2024-03-30T13:00:15.756024Z",
            "url": "https://files.pythonhosted.org/packages/b8/a1/2bd53f3edeff7420200872ce5d377f89102c17423f5d1fc317efca965365/skytemple_rust-1.6.5-pp39-pypy39_pp73-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "5da8c88fe09365a08faa938456352a9e258b72bbb9179db2a5ba453b5e75e356",
                "md5": "3660649d9598b9c37dda18539ac7f692",
                "sha256": "1d552bce504ddcf43f9db2e8c994c7a0c90b8d2c10a7d510356f3d5f8b40e71a"
            },
            "downloads": -1,
            "filename": "skytemple_rust-1.6.5-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "3660649d9598b9c37dda18539ac7f692",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.9",
            "size": 1385142,
            "upload_time": "2024-03-30T13:00:34",
            "upload_time_iso_8601": "2024-03-30T13:00:34.830592Z",
            "url": "https://files.pythonhosted.org/packages/5d/a8/c88fe09365a08faa938456352a9e258b72bbb9179db2a5ba453b5e75e356/skytemple_rust-1.6.5-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "e34a9f35d905b3327eb725307bf7d68c890a1b2bca2b691f35be1ca85ce1422e",
                "md5": "e92b2228a398f47510a2e08ba42df243",
                "sha256": "c752659528e9d956ca8259efb747ea362c11c63ebee7f5721a17ea37de9bd199"
            },
            "downloads": -1,
            "filename": "skytemple_rust-1.6.5-pp39-pypy39_pp73-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "e92b2228a398f47510a2e08ba42df243",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.9",
            "size": 1012701,
            "upload_time": "2024-03-30T13:00:45",
            "upload_time_iso_8601": "2024-03-30T13:00:45.260562Z",
            "url": "https://files.pythonhosted.org/packages/e3/4a/9f35d905b3327eb725307bf7d68c890a1b2bca2b691f35be1ca85ce1422e/skytemple_rust-1.6.5-pp39-pypy39_pp73-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "19fd725d00eaf51bb1ce9bcfef138f0db3c07d13af13e21b69266b40f1831cc9",
                "md5": "0645b753ab5bb7d9fe106f5a5e4a03f5",
                "sha256": "6dffae9ab6f9108a020f6921795a5ff48c2c5b849fda147b5ce133b1c62d2c0f"
            },
            "downloads": -1,
            "filename": "skytemple-rust-1.6.5.tar.gz",
            "has_sig": false,
            "md5_digest": "0645b753ab5bb7d9fe106f5a5e4a03f5",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.9",
            "size": 170489,
            "upload_time": "2024-03-30T13:06:30",
            "upload_time_iso_8601": "2024-03-30T13:06:30.909953Z",
            "url": "https://files.pythonhosted.org/packages/19/fd/725d00eaf51bb1ce9bcfef138f0db3c07d13af13e21b69266b40f1831cc9/skytemple-rust-1.6.5.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2024-03-30 13:06:30",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "SkyTemple",
    "github_project": "skytemple-rust",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": true,
    "requirements": [
        {
            "name": "range-typed-integers",
            "specs": [
                [
                    "==",
                    "1.0.1"
                ]
            ]
        }
    ],
    "lcname": "skytemple-rust"
}
        
Elapsed time: 0.31194s