# rustmodels
A high-performance statistical modeling library that combines the speed of Rust with the familiar syntax of R. rustmodels provides Python bindings for statistical models implemented in Rust, offering significant performance improvements while maintaining an intuitive R-like formula interface.
## Overview
rustmodels bridges the gap between R's expressive formula syntax and Python's ecosystem, delivering computational efficiency through Rust's zero-cost abstractions and memory safety. The library is designed for data scientists and statisticians who need the familiar formula-based model specification of R but want the performance benefits of compiled code.
The library currently focuses on foundational statistical models with plans to expand to more complex modeling techniques. All models are implemented from scratch in Rust to ensure optimal performance and reliability.
## Features
- **R-like Formula Syntax**: Specify models using familiar R formula notation (e.g., `y ~ x1 + x2 + x1:x2`)
- **High Performance**: Core algorithms implemented in Rust for maximum computational efficiency
- **Memory Safe**: Leverages Rust's ownership system to prevent common memory-related bugs
- **Python Integration**: Seamless integration with the Python data science ecosystem
- **Type Safety**: Compile-time guarantees help catch errors before runtime
## Currently Implemented Models
- Linear Regression (in development)
## Planned Models
- Mixed Effects Models
- Generalized Linear Models
- Time Series Models
- Survival Analysis Models
## Installation
```bash
pip install rustmodels
```
## Quick Start
### Basic Linear Regression
[CODE EXAMPLE PLACEHOLDER - Linear regression with simple formula]
### Multiple Predictors
[CODE EXAMPLE PLACEHOLDER - Multiple predictors with interactions]
### Working with DataFrames
[CODE EXAMPLE PLACEHOLDER - Integration with pandas DataFrames]
## Formula Syntax
rustmodels supports standard R formula notation:
- `y ~ x`: Simple linear regression
- `y ~ x1 + x2`: Multiple regression
- `y ~ x1 * x2`: Main effects and interaction (equivalent to `x1 + x2 + x1:x2`)
- `y ~ x1:x2`: Interaction only
- `y ~ I(x^2)`: Transformations using I() function
- `y ~ x - 1`: Remove intercept
[DETAILED FORMULA SYNTAX EXAMPLES PLACEHOLDER]
## API Reference
### LinearRegression
[API DOCUMENTATION PLACEHOLDER]
## Performance
rustmodels is designed for performance. Benchmarks show significant speed improvements over equivalent implementations in pure Python, particularly for large datasets.
[PERFORMANCE BENCHMARKS PLACEHOLDER]
## Requirements
- Python 3.8 or higher
- NumPy
- Pandas (recommended for data manipulation)
## Development Status
This project is in active development. The API may change between versions until reaching 1.0. Currently implementing core linear regression functionality with plans to expand to more sophisticated models.
## Contributing
Contributions are welcome! This project involves both Rust and Python development. Please see the contributing guidelines for details on setting up the development environment.
## License
This project is licensed under the MIT License - see the LICENSE file for details.
## Acknowledgments
Inspired by R's formula interface and the broader statistical computing community's work on making statistical modeling accessible and efficient.
Raw data
{
"_id": null,
"home_page": null,
"name": "rustmodels",
"maintainer": null,
"docs_url": null,
"requires_python": ">=3.8",
"maintainer_email": "Samuel Brown <brownasamuel1@gmail.com>",
"keywords": "rust, python, machine-learning, statistical-modeling",
"author": null,
"author_email": "Samuel Brown <brownasamuel1@gmail.com>",
"download_url": "https://files.pythonhosted.org/packages/da/a0/b4c7a655bdce59f0089656a491a390636a94d513a6f78a402c53d2bfe8f0/rustmodels-0.1.6.tar.gz",
"platform": null,
"description": "# rustmodels\n\nA high-performance statistical modeling library that combines the speed of Rust with the familiar syntax of R. rustmodels provides Python bindings for statistical models implemented in Rust, offering significant performance improvements while maintaining an intuitive R-like formula interface.\n\n## Overview\n\nrustmodels bridges the gap between R's expressive formula syntax and Python's ecosystem, delivering computational efficiency through Rust's zero-cost abstractions and memory safety. The library is designed for data scientists and statisticians who need the familiar formula-based model specification of R but want the performance benefits of compiled code.\n\nThe library currently focuses on foundational statistical models with plans to expand to more complex modeling techniques. All models are implemented from scratch in Rust to ensure optimal performance and reliability.\n\n## Features\n\n- **R-like Formula Syntax**: Specify models using familiar R formula notation (e.g., `y ~ x1 + x2 + x1:x2`)\n- **High Performance**: Core algorithms implemented in Rust for maximum computational efficiency\n- **Memory Safe**: Leverages Rust's ownership system to prevent common memory-related bugs\n- **Python Integration**: Seamless integration with the Python data science ecosystem\n- **Type Safety**: Compile-time guarantees help catch errors before runtime\n\n## Currently Implemented Models\n\n- Linear Regression (in development)\n\n## Planned Models\n\n- Mixed Effects Models\n- Generalized Linear Models\n- Time Series Models\n- Survival Analysis Models\n\n## Installation\n\n```bash\npip install rustmodels\n```\n\n## Quick Start\n\n### Basic Linear Regression\n\n[CODE EXAMPLE PLACEHOLDER - Linear regression with simple formula]\n\n### Multiple Predictors\n\n[CODE EXAMPLE PLACEHOLDER - Multiple predictors with interactions]\n\n### Working with DataFrames\n\n[CODE EXAMPLE PLACEHOLDER - Integration with pandas DataFrames]\n\n## Formula Syntax\n\nrustmodels supports standard R formula notation:\n\n- `y ~ x`: Simple linear regression\n- `y ~ x1 + x2`: Multiple regression\n- `y ~ x1 * x2`: Main effects and interaction (equivalent to `x1 + x2 + x1:x2`)\n- `y ~ x1:x2`: Interaction only\n- `y ~ I(x^2)`: Transformations using I() function\n- `y ~ x - 1`: Remove intercept\n\n[DETAILED FORMULA SYNTAX EXAMPLES PLACEHOLDER]\n\n## API Reference\n\n### LinearRegression\n\n[API DOCUMENTATION PLACEHOLDER]\n\n## Performance\n\nrustmodels is designed for performance. Benchmarks show significant speed improvements over equivalent implementations in pure Python, particularly for large datasets.\n\n[PERFORMANCE BENCHMARKS PLACEHOLDER]\n\n## Requirements\n\n- Python 3.8 or higher\n- NumPy\n- Pandas (recommended for data manipulation)\n\n## Development Status\n\nThis project is in active development. The API may change between versions until reaching 1.0. Currently implementing core linear regression functionality with plans to expand to more sophisticated models.\n\n## Contributing\n\nContributions are welcome! This project involves both Rust and Python development. Please see the contributing guidelines for details on setting up the development environment.\n\n## License\n\nThis project is licensed under the MIT License - see the LICENSE file for details.\n\n## Acknowledgments\n\nInspired by R's formula interface and the broader statistical computing community's work on making statistical modeling accessible and efficient.\n",
"bugtrack_url": null,
"license": "MIT",
"summary": "A brief description of what your package does",
"version": "0.1.6",
"project_urls": null,
"split_keywords": [
"rust",
" python",
" machine-learning",
" statistical-modeling"
],
"urls": [
{
"comment_text": null,
"digests": {
"blake2b_256": "cf7510a92afbd400fbca4aad5a14b3772e6d1f0e1023cdfddf0c39c338578815",
"md5": "e85922e1784cba48ef405d602c4f322f",
"sha256": "fd319e337d6707ad1cf293b68929a312341abad3a7928457e05c2d8cba28e7fe"
},
"downloads": -1,
"filename": "rustmodels-0.1.6-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "e85922e1784cba48ef405d602c4f322f",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 296189,
"upload_time": "2025-08-02T15:19:15",
"upload_time_iso_8601": "2025-08-02T15:19:15.979100Z",
"url": "https://files.pythonhosted.org/packages/cf/75/10a92afbd400fbca4aad5a14b3772e6d1f0e1023cdfddf0c39c338578815/rustmodels-0.1.6-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "53bcb3dc19720265e7ad3885ddf86129543196117b8d76e65ac5a515e2773285",
"md5": "ce20f3686b31d14931d43b9715ab9bbb",
"sha256": "f40a2b082b39595efb60230d8aa349cf0db85c826c71b9d04107455291ceab37"
},
"downloads": -1,
"filename": "rustmodels-0.1.6-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"has_sig": false,
"md5_digest": "ce20f3686b31d14931d43b9715ab9bbb",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 307170,
"upload_time": "2025-08-02T15:19:30",
"upload_time_iso_8601": "2025-08-02T15:19:30.890348Z",
"url": "https://files.pythonhosted.org/packages/53/bc/b3dc19720265e7ad3885ddf86129543196117b8d76e65ac5a515e2773285/rustmodels-0.1.6-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "0ec5e2f4bafa9336965329f29ed9ce4ff098f4627e24d00cc069025dbb1a62d0",
"md5": "6982afa1009ae4d017ace73e98d0307b",
"sha256": "017388f4d0f097e90a5f5bfe928ed8941f6c3341d70df0a68dd2834ff2ff8588"
},
"downloads": -1,
"filename": "rustmodels-0.1.6-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"has_sig": false,
"md5_digest": "6982afa1009ae4d017ace73e98d0307b",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 413599,
"upload_time": "2025-08-02T15:19:44",
"upload_time_iso_8601": "2025-08-02T15:19:44.863947Z",
"url": "https://files.pythonhosted.org/packages/0e/c5/e2f4bafa9336965329f29ed9ce4ff098f4627e24d00cc069025dbb1a62d0/rustmodels-0.1.6-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "a0ac13b4fdd95987660546c97300c53d99b8cdd0031b5819e42c97eaba564aa0",
"md5": "b5141e7103678ee41f67718b70a98f0b",
"sha256": "6a8508030096f79c628f3adae4fe59e4e0f4901d53fbe8db6941218c32c6579a"
},
"downloads": -1,
"filename": "rustmodels-0.1.6-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"has_sig": false,
"md5_digest": "b5141e7103678ee41f67718b70a98f0b",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 328750,
"upload_time": "2025-08-02T15:19:59",
"upload_time_iso_8601": "2025-08-02T15:19:59.650542Z",
"url": "https://files.pythonhosted.org/packages/a0/ac/13b4fdd95987660546c97300c53d99b8cdd0031b5819e42c97eaba564aa0/rustmodels-0.1.6-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "10884f50131c43ff11f57ec14dabf91ee079ae783194c13e3c1ec7247431dedb",
"md5": "cc76a457290836acca32b8724ac3044b",
"sha256": "52ab83e1441a32f4f6a26aa05c2162f240fe7ef860b52fa3928db0bdc7285c09"
},
"downloads": -1,
"filename": "rustmodels-0.1.6-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "cc76a457290836acca32b8724ac3044b",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 297708,
"upload_time": "2025-08-02T15:20:27",
"upload_time_iso_8601": "2025-08-02T15:20:27.974840Z",
"url": "https://files.pythonhosted.org/packages/10/88/4f50131c43ff11f57ec14dabf91ee079ae783194c13e3c1ec7247431dedb/rustmodels-0.1.6-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "ca2784b3f882a27e372addda6bbf40880d0bee6365093cd6f277ba62b9575c08",
"md5": "712cf34a183e14983d9280d095225d34",
"sha256": "a0b0d7a9ab4b674cbd15f78584c1ec04b054edd053131b7ff857a443dc75574d"
},
"downloads": -1,
"filename": "rustmodels-0.1.6-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl",
"has_sig": false,
"md5_digest": "712cf34a183e14983d9280d095225d34",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 320528,
"upload_time": "2025-08-02T15:20:14",
"upload_time_iso_8601": "2025-08-02T15:20:14.102550Z",
"url": "https://files.pythonhosted.org/packages/ca/27/84b3f882a27e372addda6bbf40880d0bee6365093cd6f277ba62b9575c08/rustmodels-0.1.6-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "a1156804414c12f9c0b7966442b8d3fdc0c468a3bd9fc10d75e1318ed06215b7",
"md5": "7d12f067afd7b64f5c6381bcdb91af2f",
"sha256": "7c61207a648548b4a8f8db094f2466247379e2d665f0bbafbb29be7f425cf2b3"
},
"downloads": -1,
"filename": "rustmodels-0.1.6-cp310-cp310-musllinux_1_2_aarch64.whl",
"has_sig": false,
"md5_digest": "7d12f067afd7b64f5c6381bcdb91af2f",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 473835,
"upload_time": "2025-08-02T15:20:50",
"upload_time_iso_8601": "2025-08-02T15:20:50.748444Z",
"url": "https://files.pythonhosted.org/packages/a1/15/6804414c12f9c0b7966442b8d3fdc0c468a3bd9fc10d75e1318ed06215b7/rustmodels-0.1.6-cp310-cp310-musllinux_1_2_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "32aafc0f3fc5133eef3460956f562d7689434e3e987df7f3785d6b195f5f59c7",
"md5": "8ea176acb15ddc31de5a97befca2b6b6",
"sha256": "a8d1586163f853f1bb2cdf0c7707ccc6229d45bc71eb960e1690d4fd79dff61a"
},
"downloads": -1,
"filename": "rustmodels-0.1.6-cp310-cp310-musllinux_1_2_armv7l.whl",
"has_sig": false,
"md5_digest": "8ea176acb15ddc31de5a97befca2b6b6",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 569499,
"upload_time": "2025-08-02T15:21:06",
"upload_time_iso_8601": "2025-08-02T15:21:06.665935Z",
"url": "https://files.pythonhosted.org/packages/32/aa/fc0f3fc5133eef3460956f562d7689434e3e987df7f3785d6b195f5f59c7/rustmodels-0.1.6-cp310-cp310-musllinux_1_2_armv7l.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "70111b47db1031690e82f20d53c3c8670bacdf66608a67b81ead1abd0f18d802",
"md5": "9af6be092c235a8b90c150e63c82e108",
"sha256": "fa184f391f1f2865fe8f94f9037b6c0b0a62beb3efbf2eacd0b7a7491adebc0a"
},
"downloads": -1,
"filename": "rustmodels-0.1.6-cp310-cp310-musllinux_1_2_i686.whl",
"has_sig": false,
"md5_digest": "9af6be092c235a8b90c150e63c82e108",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 497833,
"upload_time": "2025-08-02T15:21:21",
"upload_time_iso_8601": "2025-08-02T15:21:21.942566Z",
"url": "https://files.pythonhosted.org/packages/70/11/1b47db1031690e82f20d53c3c8670bacdf66608a67b81ead1abd0f18d802/rustmodels-0.1.6-cp310-cp310-musllinux_1_2_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "5e02882b2c16e71e87354b07b124f551545d299d96ff9f9d336118869ac3317c",
"md5": "faf36b81e029865a47efea0cc41722b2",
"sha256": "e79b851b54f906a56dc29c32417aad81b777dcd637a71a70257500e361047669"
},
"downloads": -1,
"filename": "rustmodels-0.1.6-cp310-cp310-musllinux_1_2_x86_64.whl",
"has_sig": false,
"md5_digest": "faf36b81e029865a47efea0cc41722b2",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 467906,
"upload_time": "2025-08-02T15:21:36",
"upload_time_iso_8601": "2025-08-02T15:21:36.739822Z",
"url": "https://files.pythonhosted.org/packages/5e/02/882b2c16e71e87354b07b124f551545d299d96ff9f9d336118869ac3317c/rustmodels-0.1.6-cp310-cp310-musllinux_1_2_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "80b0c6ba7c3ca58d4dd373a70f51301391dd9876a430cef58388ad69ae5720dc",
"md5": "8676f4b87d863bea00e05bb9a315bbb5",
"sha256": "7bfa625fb40b41b9d6a2d684097ec8b261d8e80e3d2e41d615a4d1bf669ec1e9"
},
"downloads": -1,
"filename": "rustmodels-0.1.6-cp310-cp310-win32.whl",
"has_sig": false,
"md5_digest": "8676f4b87d863bea00e05bb9a315bbb5",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 152595,
"upload_time": "2025-08-02T15:22:00",
"upload_time_iso_8601": "2025-08-02T15:22:00.472257Z",
"url": "https://files.pythonhosted.org/packages/80/b0/c6ba7c3ca58d4dd373a70f51301391dd9876a430cef58388ad69ae5720dc/rustmodels-0.1.6-cp310-cp310-win32.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "8c33668570c36f6e2f4513dbe96c477dbad51c95f80ea2882beb0e833b65e48c",
"md5": "aa5aea94a0941a568d63249cad3ad3b5",
"sha256": "721e37419578b6ed31f3b3fbd822c26e467549d1d7da5edff9b25a48543ccb5a"
},
"downloads": -1,
"filename": "rustmodels-0.1.6-cp310-cp310-win_amd64.whl",
"has_sig": false,
"md5_digest": "aa5aea94a0941a568d63249cad3ad3b5",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 158384,
"upload_time": "2025-08-02T15:21:53",
"upload_time_iso_8601": "2025-08-02T15:21:53.834840Z",
"url": "https://files.pythonhosted.org/packages/8c/33/668570c36f6e2f4513dbe96c477dbad51c95f80ea2882beb0e833b65e48c/rustmodels-0.1.6-cp310-cp310-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "96c3fd5b10b58045d2f923ba0e6b72ee49b5bd3dc76c54597685f430639f0d95",
"md5": "a45205c1b8351eb18a32ae4daf50e514",
"sha256": "de3d7fff8efa3c392afbd2ee06cc7677b3c098ece1b82d431d9d140db0870729"
},
"downloads": -1,
"filename": "rustmodels-0.1.6-cp311-cp311-macosx_10_12_x86_64.whl",
"has_sig": false,
"md5_digest": "a45205c1b8351eb18a32ae4daf50e514",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 273511,
"upload_time": "2025-08-02T15:20:46",
"upload_time_iso_8601": "2025-08-02T15:20:46.342314Z",
"url": "https://files.pythonhosted.org/packages/96/c3/fd5b10b58045d2f923ba0e6b72ee49b5bd3dc76c54597685f430639f0d95/rustmodels-0.1.6-cp311-cp311-macosx_10_12_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "a67635a6bb4ee60cb2dfd9a2f44361854b0f77a813c89b69f4638a2e853acc55",
"md5": "9ed8018eddde9e2b8d4e5e0e5b0ab035",
"sha256": "a06e799323b83010ffff6dc5e0f14d0f2a15b9660fb3d85a04664c077a8f5c96"
},
"downloads": -1,
"filename": "rustmodels-0.1.6-cp311-cp311-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "9ed8018eddde9e2b8d4e5e0e5b0ab035",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 266336,
"upload_time": "2025-08-02T15:20:42",
"upload_time_iso_8601": "2025-08-02T15:20:42.090553Z",
"url": "https://files.pythonhosted.org/packages/a6/76/35a6bb4ee60cb2dfd9a2f44361854b0f77a813c89b69f4638a2e853acc55/rustmodels-0.1.6-cp311-cp311-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "73a4446f38de268db0eb84ddb6edb8995d692d932df13721575a7980a50de682",
"md5": "0f3f4d32269b602a90c6dbb6fc0cbe7e",
"sha256": "bd090b759dd2e035b5909f36e95f5ea44d930a2d1a0db14dd8c455a7e378c7d7"
},
"downloads": -1,
"filename": "rustmodels-0.1.6-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "0f3f4d32269b602a90c6dbb6fc0cbe7e",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 295950,
"upload_time": "2025-08-02T15:19:17",
"upload_time_iso_8601": "2025-08-02T15:19:17.877602Z",
"url": "https://files.pythonhosted.org/packages/73/a4/446f38de268db0eb84ddb6edb8995d692d932df13721575a7980a50de682/rustmodels-0.1.6-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "4a173d3bd3281fd6a26be0627cc5c71834a6fea1871d670779f156df04c6d086",
"md5": "7ecbb7e09b2e6e86d950b83eeb8db39e",
"sha256": "e4c8cd339dd8a5e7912835a1d214159dfd2c37f04de5948b30726b47052b04d0"
},
"downloads": -1,
"filename": "rustmodels-0.1.6-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"has_sig": false,
"md5_digest": "7ecbb7e09b2e6e86d950b83eeb8db39e",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 307006,
"upload_time": "2025-08-02T15:19:32",
"upload_time_iso_8601": "2025-08-02T15:19:32.247992Z",
"url": "https://files.pythonhosted.org/packages/4a/17/3d3bd3281fd6a26be0627cc5c71834a6fea1871d670779f156df04c6d086/rustmodels-0.1.6-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "27f9b8b085c143badf5ccf51d9d72ae74c531a65eb42c3ececc7684681e60043",
"md5": "4b41bccd1e21eb689a83142729243c75",
"sha256": "55ecec31968eef4c138662569e07025c11f550851e13d8af1999a2eea70eafe7"
},
"downloads": -1,
"filename": "rustmodels-0.1.6-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"has_sig": false,
"md5_digest": "4b41bccd1e21eb689a83142729243c75",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 413396,
"upload_time": "2025-08-02T15:19:46",
"upload_time_iso_8601": "2025-08-02T15:19:46.154459Z",
"url": "https://files.pythonhosted.org/packages/27/f9/b8b085c143badf5ccf51d9d72ae74c531a65eb42c3ececc7684681e60043/rustmodels-0.1.6-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "ef22d584c3e3b2b5248e6079ce447b0e30f2f4fac1492e68ac9df8d82e2b0cde",
"md5": "10086fdd89760ac3d4ff08dc4a4fa39b",
"sha256": "d2fbd7e292296dc0d3b79e8ff7be8dfe361e0f62087dbd475bc8db841e3b7297"
},
"downloads": -1,
"filename": "rustmodels-0.1.6-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"has_sig": false,
"md5_digest": "10086fdd89760ac3d4ff08dc4a4fa39b",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 328540,
"upload_time": "2025-08-02T15:20:01",
"upload_time_iso_8601": "2025-08-02T15:20:01.343314Z",
"url": "https://files.pythonhosted.org/packages/ef/22/d584c3e3b2b5248e6079ce447b0e30f2f4fac1492e68ac9df8d82e2b0cde/rustmodels-0.1.6-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "ce9a09ce5af5c9014fc7c3ac3d829d99444dfd57536d818a86a05b7dbc56805d",
"md5": "fa9ef9f92b411c782c066c50ca1ccaf3",
"sha256": "692e13d499ac9f318a38d21da85838b94281a05eb6ea1785e1078ff1e2913c09"
},
"downloads": -1,
"filename": "rustmodels-0.1.6-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "fa9ef9f92b411c782c066c50ca1ccaf3",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 297477,
"upload_time": "2025-08-02T15:20:30",
"upload_time_iso_8601": "2025-08-02T15:20:30.047818Z",
"url": "https://files.pythonhosted.org/packages/ce/9a/09ce5af5c9014fc7c3ac3d829d99444dfd57536d818a86a05b7dbc56805d/rustmodels-0.1.6-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "03105e07fc1e26ddd3c4a7f8915f305c03d0a79afafb30bcc1b03fce334d7d3b",
"md5": "07e86ad2983cd0f5f80ee033bd2743fe",
"sha256": "9abd73efd7b0193a8a4cdc63b43d003e1f6f33a660acb12ed8609a7ddf9f8bb2"
},
"downloads": -1,
"filename": "rustmodels-0.1.6-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl",
"has_sig": false,
"md5_digest": "07e86ad2983cd0f5f80ee033bd2743fe",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 319493,
"upload_time": "2025-08-02T15:20:15",
"upload_time_iso_8601": "2025-08-02T15:20:15.407180Z",
"url": "https://files.pythonhosted.org/packages/03/10/5e07fc1e26ddd3c4a7f8915f305c03d0a79afafb30bcc1b03fce334d7d3b/rustmodels-0.1.6-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "e144654a5be9a5717ec9bf83e4160dc1e43bf2bf4eb52a7c4089a9295f430485",
"md5": "cb63f33a619d419c04706ac7b403e69a",
"sha256": "34334ad3b4ace8f78dbd0692f40233e203d83119e23bb4dc1abfb112d22e13c5"
},
"downloads": -1,
"filename": "rustmodels-0.1.6-cp311-cp311-musllinux_1_2_aarch64.whl",
"has_sig": false,
"md5_digest": "cb63f33a619d419c04706ac7b403e69a",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 473773,
"upload_time": "2025-08-02T15:20:52",
"upload_time_iso_8601": "2025-08-02T15:20:52.127373Z",
"url": "https://files.pythonhosted.org/packages/e1/44/654a5be9a5717ec9bf83e4160dc1e43bf2bf4eb52a7c4089a9295f430485/rustmodels-0.1.6-cp311-cp311-musllinux_1_2_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "97dcaf9bf87a61cd003dca1471212ed94cad0ceff1a942744b6b000186f5dde5",
"md5": "249703e7a967112702aa4fb2e07dbc17",
"sha256": "9af73ab046cca637d2b2af7879ad8bca9fd139e96a01e0a105e4a15cda3f4ab9"
},
"downloads": -1,
"filename": "rustmodels-0.1.6-cp311-cp311-musllinux_1_2_armv7l.whl",
"has_sig": false,
"md5_digest": "249703e7a967112702aa4fb2e07dbc17",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 569288,
"upload_time": "2025-08-02T15:21:08",
"upload_time_iso_8601": "2025-08-02T15:21:08.122861Z",
"url": "https://files.pythonhosted.org/packages/97/dc/af9bf87a61cd003dca1471212ed94cad0ceff1a942744b6b000186f5dde5/rustmodels-0.1.6-cp311-cp311-musllinux_1_2_armv7l.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "e272d96b103051422f832f2c78e0f7a0b7526f5986cd1521d9a40a3d54857804",
"md5": "0e18d5e6c9284821e3ae4317639225fa",
"sha256": "f53167ea74511232926c7eb2b61e27c8ecc44dd6d65fd16d4bde84b970d7f63c"
},
"downloads": -1,
"filename": "rustmodels-0.1.6-cp311-cp311-musllinux_1_2_i686.whl",
"has_sig": false,
"md5_digest": "0e18d5e6c9284821e3ae4317639225fa",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 497132,
"upload_time": "2025-08-02T15:21:23",
"upload_time_iso_8601": "2025-08-02T15:21:23.356008Z",
"url": "https://files.pythonhosted.org/packages/e2/72/d96b103051422f832f2c78e0f7a0b7526f5986cd1521d9a40a3d54857804/rustmodels-0.1.6-cp311-cp311-musllinux_1_2_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "eef9941af3e7663c42f4c33154d95b0e43ef679738cfeddea6f347aed62e4d49",
"md5": "b37e5aeb6baaffcc7b2f8aa9b30ccec9",
"sha256": "ea469ef6231c1e949586918ded9b84dddaab095d8e441511b2dc78b2706e65f4"
},
"downloads": -1,
"filename": "rustmodels-0.1.6-cp311-cp311-musllinux_1_2_x86_64.whl",
"has_sig": false,
"md5_digest": "b37e5aeb6baaffcc7b2f8aa9b30ccec9",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 467590,
"upload_time": "2025-08-02T15:21:38",
"upload_time_iso_8601": "2025-08-02T15:21:38.179228Z",
"url": "https://files.pythonhosted.org/packages/ee/f9/941af3e7663c42f4c33154d95b0e43ef679738cfeddea6f347aed62e4d49/rustmodels-0.1.6-cp311-cp311-musllinux_1_2_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "38130f162b106427022996049e99d2a8fd0c3c00d867fe04e3fb02e643a44256",
"md5": "54fd8fb161146b181cec5a9ef246defb",
"sha256": "1f379fccc4afaee3babfb165d3822416e93906c30d7d18b298e465d5d089db6b"
},
"downloads": -1,
"filename": "rustmodels-0.1.6-cp311-cp311-win32.whl",
"has_sig": false,
"md5_digest": "54fd8fb161146b181cec5a9ef246defb",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 152541,
"upload_time": "2025-08-02T15:22:01",
"upload_time_iso_8601": "2025-08-02T15:22:01.712267Z",
"url": "https://files.pythonhosted.org/packages/38/13/0f162b106427022996049e99d2a8fd0c3c00d867fe04e3fb02e643a44256/rustmodels-0.1.6-cp311-cp311-win32.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "41b5ee3c7ed28ff75c5a305a4cef30c782f8b05625dcf53e215dfaf944bf80bc",
"md5": "609a9c703417d2465d0c69803e42f483",
"sha256": "119cfe0ce5ce3eb4bca834e89bfc5f1b6be981531d05a6060a09de1d682a1fe9"
},
"downloads": -1,
"filename": "rustmodels-0.1.6-cp311-cp311-win_amd64.whl",
"has_sig": false,
"md5_digest": "609a9c703417d2465d0c69803e42f483",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 158320,
"upload_time": "2025-08-02T15:21:55",
"upload_time_iso_8601": "2025-08-02T15:21:55.163649Z",
"url": "https://files.pythonhosted.org/packages/41/b5/ee3c7ed28ff75c5a305a4cef30c782f8b05625dcf53e215dfaf944bf80bc/rustmodels-0.1.6-cp311-cp311-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "6636ae4cb80b19e5b30216abd09b52272e8706c2d1ff42cadf1d205bb44f7537",
"md5": "6a10efde4a166cbb4f8e8028a96f3eea",
"sha256": "5fddabd739492ff1aaa5e3df5055195b606adf9b7f67a06e21bd9c64398f4ad3"
},
"downloads": -1,
"filename": "rustmodels-0.1.6-cp312-cp312-macosx_10_12_x86_64.whl",
"has_sig": false,
"md5_digest": "6a10efde4a166cbb4f8e8028a96f3eea",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 270607,
"upload_time": "2025-08-02T15:20:47",
"upload_time_iso_8601": "2025-08-02T15:20:47.694521Z",
"url": "https://files.pythonhosted.org/packages/66/36/ae4cb80b19e5b30216abd09b52272e8706c2d1ff42cadf1d205bb44f7537/rustmodels-0.1.6-cp312-cp312-macosx_10_12_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "ee69758da53be787c0ed7145afbdb2e79729909615e0d71b52588809f5f8d974",
"md5": "25bb4f769eea19f888ac836f8a90d21f",
"sha256": "ae95a5b338e98f27de82e40c009883c6da783ff1c200ed4fbe57303075ac86f3"
},
"downloads": -1,
"filename": "rustmodels-0.1.6-cp312-cp312-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "25bb4f769eea19f888ac836f8a90d21f",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 263020,
"upload_time": "2025-08-02T15:20:43",
"upload_time_iso_8601": "2025-08-02T15:20:43.364896Z",
"url": "https://files.pythonhosted.org/packages/ee/69/758da53be787c0ed7145afbdb2e79729909615e0d71b52588809f5f8d974/rustmodels-0.1.6-cp312-cp312-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "a7899c09b1cdcd28ac66c3e172fae288547cb81803551bef9d8490e858c9e3de",
"md5": "4ac4320a628eeeb9052f9dcf84d448b6",
"sha256": "0a60c1352f3039a9642b345e5a5498e57c7a7133db500ec12142b0ba643ef6a0"
},
"downloads": -1,
"filename": "rustmodels-0.1.6-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "4ac4320a628eeeb9052f9dcf84d448b6",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 295468,
"upload_time": "2025-08-02T15:19:19",
"upload_time_iso_8601": "2025-08-02T15:19:19.504963Z",
"url": "https://files.pythonhosted.org/packages/a7/89/9c09b1cdcd28ac66c3e172fae288547cb81803551bef9d8490e858c9e3de/rustmodels-0.1.6-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "b25b843b8e21e6a0e6554377bb0d9b20425208cd6603e2df26eccd1ac6692fe4",
"md5": "127ad3194591b0f9301ee167292aab7b",
"sha256": "b59f1fde86f000a213e533ae417eb56e940475183149e2bcc3e2e11e0107ae98"
},
"downloads": -1,
"filename": "rustmodels-0.1.6-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"has_sig": false,
"md5_digest": "127ad3194591b0f9301ee167292aab7b",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 305409,
"upload_time": "2025-08-02T15:19:33",
"upload_time_iso_8601": "2025-08-02T15:19:33.596514Z",
"url": "https://files.pythonhosted.org/packages/b2/5b/843b8e21e6a0e6554377bb0d9b20425208cd6603e2df26eccd1ac6692fe4/rustmodels-0.1.6-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "b1d6e63a449089f942c357662f9072d84f7282d495171ddebef74447504f5fa6",
"md5": "bcb64cd9ce71e817c2cb7e01398e1b80",
"sha256": "6b8c3e6c10bdc2688523c87ca3ece8895959a5fb33460b3330592e4be7e3be67"
},
"downloads": -1,
"filename": "rustmodels-0.1.6-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"has_sig": false,
"md5_digest": "bcb64cd9ce71e817c2cb7e01398e1b80",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 415529,
"upload_time": "2025-08-02T15:19:47",
"upload_time_iso_8601": "2025-08-02T15:19:47.669721Z",
"url": "https://files.pythonhosted.org/packages/b1/d6/e63a449089f942c357662f9072d84f7282d495171ddebef74447504f5fa6/rustmodels-0.1.6-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "f8212a8c0c4101105adc895f2128c509aceb10af3ccc62921574699e082b68e4",
"md5": "62c7a4640f28f3f406820940bcad3802",
"sha256": "0c99f76d96c290a09d5ad06c522fedf46df7192a0b7166ed4574a45e78157fc9"
},
"downloads": -1,
"filename": "rustmodels-0.1.6-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"has_sig": false,
"md5_digest": "62c7a4640f28f3f406820940bcad3802",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 328499,
"upload_time": "2025-08-02T15:20:03",
"upload_time_iso_8601": "2025-08-02T15:20:03.282704Z",
"url": "https://files.pythonhosted.org/packages/f8/21/2a8c0c4101105adc895f2128c509aceb10af3ccc62921574699e082b68e4/rustmodels-0.1.6-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "8213fe85436e05b5358bebbe8c67f43096e470772fb03c80d990be7eca79cddb",
"md5": "4bec0fbf289bff578862c6b3f70ccc08",
"sha256": "d7252c97136a968a0b29130044d7b81d112a9b9a7e67a13478e74d0d58e15d5b"
},
"downloads": -1,
"filename": "rustmodels-0.1.6-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "4bec0fbf289bff578862c6b3f70ccc08",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 296211,
"upload_time": "2025-08-02T15:20:31",
"upload_time_iso_8601": "2025-08-02T15:20:31.737247Z",
"url": "https://files.pythonhosted.org/packages/82/13/fe85436e05b5358bebbe8c67f43096e470772fb03c80d990be7eca79cddb/rustmodels-0.1.6-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "e04cb2f08d92588c418ac2b095f09061dcf30077dca4bda814640f726b5697c6",
"md5": "1112ee49413c8ce4bcb2f7bbdca67b45",
"sha256": "3fdbf418500b08c3bb9512a8f4e55d3838f69000943dc76f37d6c5301bef7c83"
},
"downloads": -1,
"filename": "rustmodels-0.1.6-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl",
"has_sig": false,
"md5_digest": "1112ee49413c8ce4bcb2f7bbdca67b45",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 318113,
"upload_time": "2025-08-02T15:20:16",
"upload_time_iso_8601": "2025-08-02T15:20:16.880105Z",
"url": "https://files.pythonhosted.org/packages/e0/4c/b2f08d92588c418ac2b095f09061dcf30077dca4bda814640f726b5697c6/rustmodels-0.1.6-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "0f0e827442c2998812920daf2e70981bfa14f05c9e717f539248fee366d8c757",
"md5": "9441dffdc68bfc03a14d1e2fbf4a997b",
"sha256": "1cc74fb399385ce831e6da1c88b86fd3809cab68b8215c45e48e031b6e06fcca"
},
"downloads": -1,
"filename": "rustmodels-0.1.6-cp312-cp312-musllinux_1_2_aarch64.whl",
"has_sig": false,
"md5_digest": "9441dffdc68bfc03a14d1e2fbf4a997b",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 473377,
"upload_time": "2025-08-02T15:20:53",
"upload_time_iso_8601": "2025-08-02T15:20:53.888447Z",
"url": "https://files.pythonhosted.org/packages/0f/0e/827442c2998812920daf2e70981bfa14f05c9e717f539248fee366d8c757/rustmodels-0.1.6-cp312-cp312-musllinux_1_2_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "0c068c4d47c089d607f348618d5b175f197be71f1bfa6831c42c3440ce0b8392",
"md5": "d3fd224e5fc5d7dd2c08a7d71d9533b0",
"sha256": "ecde93280340d5759c601eb43dff6bb2df9cc1f90509eb1b7e3fcb3ca95e2731"
},
"downloads": -1,
"filename": "rustmodels-0.1.6-cp312-cp312-musllinux_1_2_armv7l.whl",
"has_sig": false,
"md5_digest": "d3fd224e5fc5d7dd2c08a7d71d9533b0",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 567527,
"upload_time": "2025-08-02T15:21:09",
"upload_time_iso_8601": "2025-08-02T15:21:09.614204Z",
"url": "https://files.pythonhosted.org/packages/0c/06/8c4d47c089d607f348618d5b175f197be71f1bfa6831c42c3440ce0b8392/rustmodels-0.1.6-cp312-cp312-musllinux_1_2_armv7l.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "5251c0e92d5c8ed7cab7b001796605fd05013f7ff9d76d1125db230b5e76e6e7",
"md5": "52e275ea776d5018fe98c97ad4f0079b",
"sha256": "0c7768b25f78d5da857b9043fd42a6e2a908d425d5a0d36cebb592a52a6a009e"
},
"downloads": -1,
"filename": "rustmodels-0.1.6-cp312-cp312-musllinux_1_2_i686.whl",
"has_sig": false,
"md5_digest": "52e275ea776d5018fe98c97ad4f0079b",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 495314,
"upload_time": "2025-08-02T15:21:24",
"upload_time_iso_8601": "2025-08-02T15:21:24.849584Z",
"url": "https://files.pythonhosted.org/packages/52/51/c0e92d5c8ed7cab7b001796605fd05013f7ff9d76d1125db230b5e76e6e7/rustmodels-0.1.6-cp312-cp312-musllinux_1_2_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "73f764529d54e79711a1ec52d9ae446cd57f544ddade655b68dafddd94fa6c80",
"md5": "6bd0f964e55c8e24c8da03680509c9f3",
"sha256": "b6869458aa0b45f6c2206a96caee3c72a09062d859df2d065664e0265e90da2f"
},
"downloads": -1,
"filename": "rustmodels-0.1.6-cp312-cp312-musllinux_1_2_x86_64.whl",
"has_sig": false,
"md5_digest": "6bd0f964e55c8e24c8da03680509c9f3",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 466516,
"upload_time": "2025-08-02T15:21:39",
"upload_time_iso_8601": "2025-08-02T15:21:39.562662Z",
"url": "https://files.pythonhosted.org/packages/73/f7/64529d54e79711a1ec52d9ae446cd57f544ddade655b68dafddd94fa6c80/rustmodels-0.1.6-cp312-cp312-musllinux_1_2_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "4a38b2b4ed92b5169bf84e1c9ea5a375f4a0c03f6c2881825973ac1d68aa48a9",
"md5": "f60293ddd472715e3ed65b398de538c7",
"sha256": "89de83aab28bd453108dd5e9de6fe2ef78074dc1f1e50cae52b5025acd9aed36"
},
"downloads": -1,
"filename": "rustmodels-0.1.6-cp312-cp312-win32.whl",
"has_sig": false,
"md5_digest": "f60293ddd472715e3ed65b398de538c7",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 152234,
"upload_time": "2025-08-02T15:22:02",
"upload_time_iso_8601": "2025-08-02T15:22:02.923952Z",
"url": "https://files.pythonhosted.org/packages/4a/38/b2b4ed92b5169bf84e1c9ea5a375f4a0c03f6c2881825973ac1d68aa48a9/rustmodels-0.1.6-cp312-cp312-win32.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "2678ce4888462469ac9c809ae5bbf249058ce91b3cc886816bf17e09d263c87b",
"md5": "0ff2725224168a73249b22d819d833f7",
"sha256": "ad2f9756033d8c43ee77eb1c6d9784fd690863ce6bcfa3ce6fbea70a78b0055f"
},
"downloads": -1,
"filename": "rustmodels-0.1.6-cp312-cp312-win_amd64.whl",
"has_sig": false,
"md5_digest": "0ff2725224168a73249b22d819d833f7",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 157842,
"upload_time": "2025-08-02T15:21:56",
"upload_time_iso_8601": "2025-08-02T15:21:56.434732Z",
"url": "https://files.pythonhosted.org/packages/26/78/ce4888462469ac9c809ae5bbf249058ce91b3cc886816bf17e09d263c87b/rustmodels-0.1.6-cp312-cp312-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "ae8c4620d96ffa3c71443bab9cc48b3bc99a5856b02eb6182e4b1e7c156d447b",
"md5": "9095ea8a0271ff1a5ff3fc452298fa54",
"sha256": "edbc88244db0cda5ac5510cdb82fa671bdbc99e3d9e7e130e77015b7a2b6c517"
},
"downloads": -1,
"filename": "rustmodels-0.1.6-cp313-cp313-macosx_10_12_x86_64.whl",
"has_sig": false,
"md5_digest": "9095ea8a0271ff1a5ff3fc452298fa54",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.8",
"size": 270462,
"upload_time": "2025-08-02T15:20:49",
"upload_time_iso_8601": "2025-08-02T15:20:49.057642Z",
"url": "https://files.pythonhosted.org/packages/ae/8c/4620d96ffa3c71443bab9cc48b3bc99a5856b02eb6182e4b1e7c156d447b/rustmodels-0.1.6-cp313-cp313-macosx_10_12_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "eef9ac5888275aa09a01daf7b58c2db4813bb2250481cd5ededc1813f37271e0",
"md5": "331010c2e764eee3c8f2e88b99c82fc6",
"sha256": "12a58e55daaba4d39ce7d5ca8bb54106cbda32ebe916e9508d9245f48b63e6da"
},
"downloads": -1,
"filename": "rustmodels-0.1.6-cp313-cp313-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "331010c2e764eee3c8f2e88b99c82fc6",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.8",
"size": 262947,
"upload_time": "2025-08-02T15:20:44",
"upload_time_iso_8601": "2025-08-02T15:20:44.988326Z",
"url": "https://files.pythonhosted.org/packages/ee/f9/ac5888275aa09a01daf7b58c2db4813bb2250481cd5ededc1813f37271e0/rustmodels-0.1.6-cp313-cp313-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "21f180f29af6adec19d256d0f25c7a3d51e9f0074e8b48a87a365baf8f50a2a6",
"md5": "7f03113d9454e8580372773509ed7fda",
"sha256": "8ee060f8a2bdfb249af9ca097847ef983001815fc2d1ecce8c7fe1c1ef34150d"
},
"downloads": -1,
"filename": "rustmodels-0.1.6-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "7f03113d9454e8580372773509ed7fda",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.8",
"size": 295397,
"upload_time": "2025-08-02T15:19:20",
"upload_time_iso_8601": "2025-08-02T15:19:20.798005Z",
"url": "https://files.pythonhosted.org/packages/21/f1/80f29af6adec19d256d0f25c7a3d51e9f0074e8b48a87a365baf8f50a2a6/rustmodels-0.1.6-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "79fcc5326e5dec27f0be3178ce85806dc03f93d7ee41d5633062bb39305bdc4d",
"md5": "ed7db7939bc03196b325ae106f0f0061",
"sha256": "9a48d9804ce4d3671027d9c42d599446079756d23f40da23ef6dce4cdc9b5d17"
},
"downloads": -1,
"filename": "rustmodels-0.1.6-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"has_sig": false,
"md5_digest": "ed7db7939bc03196b325ae106f0f0061",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.8",
"size": 305397,
"upload_time": "2025-08-02T15:19:34",
"upload_time_iso_8601": "2025-08-02T15:19:34.915865Z",
"url": "https://files.pythonhosted.org/packages/79/fc/c5326e5dec27f0be3178ce85806dc03f93d7ee41d5633062bb39305bdc4d/rustmodels-0.1.6-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "95e04f92f07af07d057e39f9154067900021892217a466d44364451d2de9cc6c",
"md5": "a9b8d3bd00ca8f104def3889837d2647",
"sha256": "40c0151f12f227bab76e638b93d2fa67b4a8a0376c54e1d549189434d97c9658"
},
"downloads": -1,
"filename": "rustmodels-0.1.6-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"has_sig": false,
"md5_digest": "a9b8d3bd00ca8f104def3889837d2647",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.8",
"size": 412896,
"upload_time": "2025-08-02T15:19:49",
"upload_time_iso_8601": "2025-08-02T15:19:49.351413Z",
"url": "https://files.pythonhosted.org/packages/95/e0/4f92f07af07d057e39f9154067900021892217a466d44364451d2de9cc6c/rustmodels-0.1.6-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "4730d51b58ef7e8ff905ea9c70108e727035a6d2eb4b1df0ad3fc10156bad41b",
"md5": "e6a5cc9f3e76ebbb7da6720f2c84402a",
"sha256": "fe518ab552d341d0e36688c481d2c26b520c4c95440c67c92301eeb958e1c138"
},
"downloads": -1,
"filename": "rustmodels-0.1.6-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"has_sig": false,
"md5_digest": "e6a5cc9f3e76ebbb7da6720f2c84402a",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.8",
"size": 328905,
"upload_time": "2025-08-02T15:20:04",
"upload_time_iso_8601": "2025-08-02T15:20:04.678216Z",
"url": "https://files.pythonhosted.org/packages/47/30/d51b58ef7e8ff905ea9c70108e727035a6d2eb4b1df0ad3fc10156bad41b/rustmodels-0.1.6-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "8777e500e4489b3234f7b2eac0baf83c7b445b4ce2b43ea8fc5dd77d9266989b",
"md5": "5dde6fe41b1f93aad0f443a3de3cb0e0",
"sha256": "d16d9e6590a4df675dc4b0b4762a69d4914c1186a98fb68d3b7b1ac0a62987b8"
},
"downloads": -1,
"filename": "rustmodels-0.1.6-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "5dde6fe41b1f93aad0f443a3de3cb0e0",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.8",
"size": 296271,
"upload_time": "2025-08-02T15:20:33",
"upload_time_iso_8601": "2025-08-02T15:20:33.121832Z",
"url": "https://files.pythonhosted.org/packages/87/77/e500e4489b3234f7b2eac0baf83c7b445b4ce2b43ea8fc5dd77d9266989b/rustmodels-0.1.6-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "a907e9ed7cecf6c1b5fb5cea1e642d189c1244520b83f4c9bc8d0be006bc2426",
"md5": "3faac5d90b51bbd5989d585e9492ba6b",
"sha256": "02ac97dd1edc296a083f4b8b4aab35fc558b9ed56c7d122e6c733aee2bc3a88d"
},
"downloads": -1,
"filename": "rustmodels-0.1.6-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl",
"has_sig": false,
"md5_digest": "3faac5d90b51bbd5989d585e9492ba6b",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.8",
"size": 318404,
"upload_time": "2025-08-02T15:20:19",
"upload_time_iso_8601": "2025-08-02T15:20:19.088837Z",
"url": "https://files.pythonhosted.org/packages/a9/07/e9ed7cecf6c1b5fb5cea1e642d189c1244520b83f4c9bc8d0be006bc2426/rustmodels-0.1.6-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "9f1df788c703e16ee42e9907018fad33eaad0994610474bdc138c69758afd8d5",
"md5": "07a02bc4a9f9b4415ea11b743a2c19d5",
"sha256": "f39ab746a3818334f5dabc4c4e20da1db9363570f401bf4bc5738002d9c9f2fb"
},
"downloads": -1,
"filename": "rustmodels-0.1.6-cp313-cp313-musllinux_1_2_aarch64.whl",
"has_sig": false,
"md5_digest": "07a02bc4a9f9b4415ea11b743a2c19d5",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.8",
"size": 473140,
"upload_time": "2025-08-02T15:20:55",
"upload_time_iso_8601": "2025-08-02T15:20:55.404094Z",
"url": "https://files.pythonhosted.org/packages/9f/1d/f788c703e16ee42e9907018fad33eaad0994610474bdc138c69758afd8d5/rustmodels-0.1.6-cp313-cp313-musllinux_1_2_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "6fcd44fe40ed58be0a694df4217a780266ab1349a170a1d3eb478a2b472e1314",
"md5": "9380ec3bce665b0919805f5b14d7c834",
"sha256": "c16cc87628bc639e4b6854994e649915bfe4db14cb9f2686e08b34e8b8f72000"
},
"downloads": -1,
"filename": "rustmodels-0.1.6-cp313-cp313-musllinux_1_2_armv7l.whl",
"has_sig": false,
"md5_digest": "9380ec3bce665b0919805f5b14d7c834",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.8",
"size": 567514,
"upload_time": "2025-08-02T15:21:10",
"upload_time_iso_8601": "2025-08-02T15:21:10.990789Z",
"url": "https://files.pythonhosted.org/packages/6f/cd/44fe40ed58be0a694df4217a780266ab1349a170a1d3eb478a2b472e1314/rustmodels-0.1.6-cp313-cp313-musllinux_1_2_armv7l.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "1cc6530a391464f25e39ebaf7d80e8c7b2a97860a206470fadbc29bc0eb662c8",
"md5": "d50730c590f3758057c2ba5145e245e0",
"sha256": "45ca902f3dcb0f6c930f784d25081f2e5789fdfd200900bbf40f68a08ea0dc02"
},
"downloads": -1,
"filename": "rustmodels-0.1.6-cp313-cp313-musllinux_1_2_i686.whl",
"has_sig": false,
"md5_digest": "d50730c590f3758057c2ba5145e245e0",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.8",
"size": 495688,
"upload_time": "2025-08-02T15:21:26",
"upload_time_iso_8601": "2025-08-02T15:21:26.319972Z",
"url": "https://files.pythonhosted.org/packages/1c/c6/530a391464f25e39ebaf7d80e8c7b2a97860a206470fadbc29bc0eb662c8/rustmodels-0.1.6-cp313-cp313-musllinux_1_2_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "e24537a910aeea00fada35e9ab69446e7e530d0ab2f18689c9b56c18a752cd01",
"md5": "413692e4579705848d9ca30aa5b227eb",
"sha256": "cb9c3c8d4ec74a2d8453bda4b61e49f175562be01a6000166a70611e24e3b200"
},
"downloads": -1,
"filename": "rustmodels-0.1.6-cp313-cp313-musllinux_1_2_x86_64.whl",
"has_sig": false,
"md5_digest": "413692e4579705848d9ca30aa5b227eb",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.8",
"size": 466499,
"upload_time": "2025-08-02T15:21:40",
"upload_time_iso_8601": "2025-08-02T15:21:40.978165Z",
"url": "https://files.pythonhosted.org/packages/e2/45/37a910aeea00fada35e9ab69446e7e530d0ab2f18689c9b56c18a752cd01/rustmodels-0.1.6-cp313-cp313-musllinux_1_2_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "48a1f470ce2307669174bfcf50221890ecb0644137c2141c8981493ceb924772",
"md5": "89cf03ea108857392a050eb1a3adf842",
"sha256": "dde723028b5f6ea617c7148dc254bceee05d000fda3df80c310b274d826e71f9"
},
"downloads": -1,
"filename": "rustmodels-0.1.6-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "89cf03ea108857392a050eb1a3adf842",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.8",
"size": 295159,
"upload_time": "2025-08-02T15:19:22",
"upload_time_iso_8601": "2025-08-02T15:19:22.087133Z",
"url": "https://files.pythonhosted.org/packages/48/a1/f470ce2307669174bfcf50221890ecb0644137c2141c8981493ceb924772/rustmodels-0.1.6-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "d998b1bef081b7a735e92abdbd604b6c86889cf34f22b78c41a3afe93c5d9589",
"md5": "8e4e7335035d67d05355293097e16078",
"sha256": "380b24b8d033f7437d8ba77bf23945554bb9dcefd81004d8e83159fffc89f2a4"
},
"downloads": -1,
"filename": "rustmodels-0.1.6-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"has_sig": false,
"md5_digest": "8e4e7335035d67d05355293097e16078",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.8",
"size": 305143,
"upload_time": "2025-08-02T15:19:36",
"upload_time_iso_8601": "2025-08-02T15:19:36.250813Z",
"url": "https://files.pythonhosted.org/packages/d9/98/b1bef081b7a735e92abdbd604b6c86889cf34f22b78c41a3afe93c5d9589/rustmodels-0.1.6-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "e31223e412be851b7eee0e7c51ca7f630a6d29c29d7ef629cf0b48f8b304ac0f",
"md5": "2f12ba1c1f620cc352cb34ce61d2ef83",
"sha256": "2d4d1afc279e130e9a6b08f57f7f0dee0da0ff5c5a14034f0d04559de3234c58"
},
"downloads": -1,
"filename": "rustmodels-0.1.6-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"has_sig": false,
"md5_digest": "2f12ba1c1f620cc352cb34ce61d2ef83",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.8",
"size": 412410,
"upload_time": "2025-08-02T15:19:50",
"upload_time_iso_8601": "2025-08-02T15:19:50.975261Z",
"url": "https://files.pythonhosted.org/packages/e3/12/23e412be851b7eee0e7c51ca7f630a6d29c29d7ef629cf0b48f8b304ac0f/rustmodels-0.1.6-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "ad0549cf7a85368fc9cf9528722ff1f8407470d57101fe1e0e7f07b2c7f61c0f",
"md5": "79bfbc75bfc40e10d338382afb58e4e3",
"sha256": "5375f7b95ce1fcb3c75ba53bc40dd2323bc06aa7887572dde88a55cc60fc0e69"
},
"downloads": -1,
"filename": "rustmodels-0.1.6-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"has_sig": false,
"md5_digest": "79bfbc75bfc40e10d338382afb58e4e3",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.8",
"size": 328854,
"upload_time": "2025-08-02T15:20:05",
"upload_time_iso_8601": "2025-08-02T15:20:05.988044Z",
"url": "https://files.pythonhosted.org/packages/ad/05/49cf7a85368fc9cf9528722ff1f8407470d57101fe1e0e7f07b2c7f61c0f/rustmodels-0.1.6-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "b207778d22b1a7797bc25b2a37c4a9cafa545365dfb6882712f6d9115b0e36fe",
"md5": "6037e7ace6c01e165862db202c52c4af",
"sha256": "ac32b8799d899c7424e8237e60c611f54045e5c9bb879933a8d996b6feebc781"
},
"downloads": -1,
"filename": "rustmodels-0.1.6-cp313-cp313t-musllinux_1_2_aarch64.whl",
"has_sig": false,
"md5_digest": "6037e7ace6c01e165862db202c52c4af",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.8",
"size": 472779,
"upload_time": "2025-08-02T15:20:56",
"upload_time_iso_8601": "2025-08-02T15:20:56.951631Z",
"url": "https://files.pythonhosted.org/packages/b2/07/778d22b1a7797bc25b2a37c4a9cafa545365dfb6882712f6d9115b0e36fe/rustmodels-0.1.6-cp313-cp313t-musllinux_1_2_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "7d094705e61211353c04becd9b5835b2fe1b713dfd479c8bb9ca77279606cabf",
"md5": "e9902800c140a850754de85aa8ed72ac",
"sha256": "bcaf3bcb06500581e121cc9a3dc1814d47c0e8eec7c6f5ef294f9c26c5659a61"
},
"downloads": -1,
"filename": "rustmodels-0.1.6-cp313-cp313t-musllinux_1_2_armv7l.whl",
"has_sig": false,
"md5_digest": "e9902800c140a850754de85aa8ed72ac",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.8",
"size": 567348,
"upload_time": "2025-08-02T15:21:12",
"upload_time_iso_8601": "2025-08-02T15:21:12.915651Z",
"url": "https://files.pythonhosted.org/packages/7d/09/4705e61211353c04becd9b5835b2fe1b713dfd479c8bb9ca77279606cabf/rustmodels-0.1.6-cp313-cp313t-musllinux_1_2_armv7l.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "eadb60aa4ea2046735d494febf6ed96e9eb85cabc4e6e603a1f89111b2061b1b",
"md5": "2411f369e7fd1866d8f7a5e87ea26c3f",
"sha256": "b6976c8867964841b20533e9d23c4c654067d8cb320378afbce9e90457d4b950"
},
"downloads": -1,
"filename": "rustmodels-0.1.6-cp313-cp313t-musllinux_1_2_i686.whl",
"has_sig": false,
"md5_digest": "2411f369e7fd1866d8f7a5e87ea26c3f",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.8",
"size": 495638,
"upload_time": "2025-08-02T15:21:27",
"upload_time_iso_8601": "2025-08-02T15:21:27.698439Z",
"url": "https://files.pythonhosted.org/packages/ea/db/60aa4ea2046735d494febf6ed96e9eb85cabc4e6e603a1f89111b2061b1b/rustmodels-0.1.6-cp313-cp313t-musllinux_1_2_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "8c002c5007cc7d10a090615c4ae5d12617256b9758abfad0713e36c9f5ca1f60",
"md5": "8f838887d36f27ca6b2e58b4fc5efa3c",
"sha256": "b4a512569ac85003be8b365a36c36ee43b80158564afc407e837fc62a0a0f9b8"
},
"downloads": -1,
"filename": "rustmodels-0.1.6-cp313-cp313t-musllinux_1_2_x86_64.whl",
"has_sig": false,
"md5_digest": "8f838887d36f27ca6b2e58b4fc5efa3c",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.8",
"size": 466544,
"upload_time": "2025-08-02T15:21:42",
"upload_time_iso_8601": "2025-08-02T15:21:42.402096Z",
"url": "https://files.pythonhosted.org/packages/8c/00/2c5007cc7d10a090615c4ae5d12617256b9758abfad0713e36c9f5ca1f60/rustmodels-0.1.6-cp313-cp313t-musllinux_1_2_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "0b97d1c707e01f37ba6493793e1dbffdb51c90f60f46dc1240892b91d0bfbb29",
"md5": "06ed1ca01d785ee8eb0d6568c4990515",
"sha256": "dbdb1604259fe26bf8312ffcd536322e6abdb2c8bc18958d766653a75a761bb4"
},
"downloads": -1,
"filename": "rustmodels-0.1.6-cp313-cp313-win32.whl",
"has_sig": false,
"md5_digest": "06ed1ca01d785ee8eb0d6568c4990515",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.8",
"size": 151939,
"upload_time": "2025-08-02T15:22:04",
"upload_time_iso_8601": "2025-08-02T15:22:04.815747Z",
"url": "https://files.pythonhosted.org/packages/0b/97/d1c707e01f37ba6493793e1dbffdb51c90f60f46dc1240892b91d0bfbb29/rustmodels-0.1.6-cp313-cp313-win32.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "a2e742b17817d7fb57fe5a29762d0f88e7380860af607f8453a7420622167972",
"md5": "4b5c06ad233ebe9b3ef7eb6100f0e061",
"sha256": "e0ece8a87054ad41db2cf4c74fccd107fa8d200c0efc1ee9cd8d2b1235ecfcc5"
},
"downloads": -1,
"filename": "rustmodels-0.1.6-cp313-cp313-win_amd64.whl",
"has_sig": false,
"md5_digest": "4b5c06ad233ebe9b3ef7eb6100f0e061",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.8",
"size": 157787,
"upload_time": "2025-08-02T15:21:57",
"upload_time_iso_8601": "2025-08-02T15:21:57.648407Z",
"url": "https://files.pythonhosted.org/packages/a2/e7/42b17817d7fb57fe5a29762d0f88e7380860af607f8453a7420622167972/rustmodels-0.1.6-cp313-cp313-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "5d6085aca76994f1f68374e910630d57c462e23e3dc65a7f4a4b5a6907ac1fac",
"md5": "6e95b7e73eca69c575e090f1f64d5fd7",
"sha256": "e2c9ec84924c7a1886d36424676f23b0befddc76cc37f93ff53f9b6dec4bc8ae"
},
"downloads": -1,
"filename": "rustmodels-0.1.6-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "6e95b7e73eca69c575e090f1f64d5fd7",
"packagetype": "bdist_wheel",
"python_version": "cp314",
"requires_python": ">=3.8",
"size": 296607,
"upload_time": "2025-08-02T15:20:34",
"upload_time_iso_8601": "2025-08-02T15:20:34.773892Z",
"url": "https://files.pythonhosted.org/packages/5d/60/85aca76994f1f68374e910630d57c462e23e3dc65a7f4a4b5a6907ac1fac/rustmodels-0.1.6-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "0a3c7ff7c709c2b42bc46c11f1231b4f48557ecdf151c95ba867b4bbb4e5e6f9",
"md5": "290e462446a15f0b3ae5a705b45aa967",
"sha256": "8b677df14da0ef7d851c028492d7b349957366f240e77a7c3103b083e0c9788b"
},
"downloads": -1,
"filename": "rustmodels-0.1.6-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl",
"has_sig": false,
"md5_digest": "290e462446a15f0b3ae5a705b45aa967",
"packagetype": "bdist_wheel",
"python_version": "cp314",
"requires_python": ">=3.8",
"size": 318008,
"upload_time": "2025-08-02T15:20:20",
"upload_time_iso_8601": "2025-08-02T15:20:20.629333Z",
"url": "https://files.pythonhosted.org/packages/0a/3c/7ff7c709c2b42bc46c11f1231b4f48557ecdf151c95ba867b4bbb4e5e6f9/rustmodels-0.1.6-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "f79b9600ff0c8f9272157f31d7ea2dc702f80064d131508fc94628075213f462",
"md5": "b3e1d6d46909200d3f17f8c9f5d78e3c",
"sha256": "11be2d78f8d7da81cb9b7dcd4353b0e2bb9a157852e20e0a30a79c4116b3d899"
},
"downloads": -1,
"filename": "rustmodels-0.1.6-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "b3e1d6d46909200d3f17f8c9f5d78e3c",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 296456,
"upload_time": "2025-08-02T15:19:23",
"upload_time_iso_8601": "2025-08-02T15:19:23.385473Z",
"url": "https://files.pythonhosted.org/packages/f7/9b/9600ff0c8f9272157f31d7ea2dc702f80064d131508fc94628075213f462/rustmodels-0.1.6-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "c2003eca0229a3677286b0cfe6636a9ceae992fec5db31d3c403465d071ae55b",
"md5": "d42abbd3b5cdd7221e7cad1c5da27301",
"sha256": "6f507d35756e96ace55ab5d9d4e492abc7168916449bff1972f5f30a6102a2c0"
},
"downloads": -1,
"filename": "rustmodels-0.1.6-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"has_sig": false,
"md5_digest": "d42abbd3b5cdd7221e7cad1c5da27301",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 307267,
"upload_time": "2025-08-02T15:19:37",
"upload_time_iso_8601": "2025-08-02T15:19:37.610965Z",
"url": "https://files.pythonhosted.org/packages/c2/00/3eca0229a3677286b0cfe6636a9ceae992fec5db31d3c403465d071ae55b/rustmodels-0.1.6-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "20e06af14ec64fae9f934a0ed73b551bd68d74a9dc20d916c88c6537a57722c4",
"md5": "a1459922fdeb053cafc4f09b58fcec93",
"sha256": "05e42396b420dae3442b83a582d7453e4328527197d13066dd2be61058f55002"
},
"downloads": -1,
"filename": "rustmodels-0.1.6-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"has_sig": false,
"md5_digest": "a1459922fdeb053cafc4f09b58fcec93",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 416575,
"upload_time": "2025-08-02T15:19:52",
"upload_time_iso_8601": "2025-08-02T15:19:52.347360Z",
"url": "https://files.pythonhosted.org/packages/20/e0/6af14ec64fae9f934a0ed73b551bd68d74a9dc20d916c88c6537a57722c4/rustmodels-0.1.6-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "939f38b55380e65928b81607382fa386416a6849a69568ecfc59f85b00819f78",
"md5": "70805d3738ae3867fa1fe64547cf2864",
"sha256": "f96fe7e1c122504afc66c7ea257b14d915b5b30b909349ce7f36752d8c04200b"
},
"downloads": -1,
"filename": "rustmodels-0.1.6-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"has_sig": false,
"md5_digest": "70805d3738ae3867fa1fe64547cf2864",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 329007,
"upload_time": "2025-08-02T15:20:07",
"upload_time_iso_8601": "2025-08-02T15:20:07.308506Z",
"url": "https://files.pythonhosted.org/packages/93/9f/38b55380e65928b81607382fa386416a6849a69568ecfc59f85b00819f78/rustmodels-0.1.6-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "bc0547d90fc8ae162cd2939ecba7ce62922408089df90c76b25fcf93664b4a6f",
"md5": "32cf4a99b5810fbbbb259cd7fbbd1052",
"sha256": "f7cd33da78904bb579f628b00e11d3188ab03564b99e8344b5f659ab452cd287"
},
"downloads": -1,
"filename": "rustmodels-0.1.6-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "32cf4a99b5810fbbbb259cd7fbbd1052",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 297871,
"upload_time": "2025-08-02T15:20:36",
"upload_time_iso_8601": "2025-08-02T15:20:36.230053Z",
"url": "https://files.pythonhosted.org/packages/bc/05/47d90fc8ae162cd2939ecba7ce62922408089df90c76b25fcf93664b4a6f/rustmodels-0.1.6-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "22f036555e1df2e6a9dbbc95e5d5e58de14198334e5cfbbc0644b5c57e39e808",
"md5": "edceb8554dd5468dba32b815848996c9",
"sha256": "4ea16c9930967a5d0d49ca086035283e7c5da8073aab9ecd8db136fa1563129b"
},
"downloads": -1,
"filename": "rustmodels-0.1.6-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl",
"has_sig": false,
"md5_digest": "edceb8554dd5468dba32b815848996c9",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 321070,
"upload_time": "2025-08-02T15:20:22",
"upload_time_iso_8601": "2025-08-02T15:20:22.085553Z",
"url": "https://files.pythonhosted.org/packages/22/f0/36555e1df2e6a9dbbc95e5d5e58de14198334e5cfbbc0644b5c57e39e808/rustmodels-0.1.6-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "2a3785e0e31f43b77c39b83d6725e90833227b2a8c53953af4c61d5a03c20d62",
"md5": "00a25f919d0989b45c05b1fdef750f34",
"sha256": "32d5957b12505f4127fa7d85ffd7197e79301d92dae18120e4859d368b1c86a7"
},
"downloads": -1,
"filename": "rustmodels-0.1.6-cp38-cp38-musllinux_1_2_aarch64.whl",
"has_sig": false,
"md5_digest": "00a25f919d0989b45c05b1fdef750f34",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 474225,
"upload_time": "2025-08-02T15:20:58",
"upload_time_iso_8601": "2025-08-02T15:20:58.444639Z",
"url": "https://files.pythonhosted.org/packages/2a/37/85e0e31f43b77c39b83d6725e90833227b2a8c53953af4c61d5a03c20d62/rustmodels-0.1.6-cp38-cp38-musllinux_1_2_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "2b4fd0f5f598eab87635087cdc11522ba6875a99398a09096f905a5ba8c01836",
"md5": "c467d58b61a0309f0705004e3455fd50",
"sha256": "6b726ab97722b7f24d77d1f991281255efe7744ce592e3638e4f109defeb1bec"
},
"downloads": -1,
"filename": "rustmodels-0.1.6-cp38-cp38-musllinux_1_2_armv7l.whl",
"has_sig": false,
"md5_digest": "c467d58b61a0309f0705004e3455fd50",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 569680,
"upload_time": "2025-08-02T15:21:14",
"upload_time_iso_8601": "2025-08-02T15:21:14.379067Z",
"url": "https://files.pythonhosted.org/packages/2b/4f/d0f5f598eab87635087cdc11522ba6875a99398a09096f905a5ba8c01836/rustmodels-0.1.6-cp38-cp38-musllinux_1_2_armv7l.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "17f74c556969d1a388182a3c4bad05723effc0188afaf175d79985292c6651b1",
"md5": "fcbf53cb144dd6c8aa7ce0de586ce0ac",
"sha256": "9e92a9436bf33f5f7c302157ee5235b4c1a34fcaaabeaa7196b968a60886f86c"
},
"downloads": -1,
"filename": "rustmodels-0.1.6-cp38-cp38-musllinux_1_2_i686.whl",
"has_sig": false,
"md5_digest": "fcbf53cb144dd6c8aa7ce0de586ce0ac",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 497785,
"upload_time": "2025-08-02T15:21:29",
"upload_time_iso_8601": "2025-08-02T15:21:29.111433Z",
"url": "https://files.pythonhosted.org/packages/17/f7/4c556969d1a388182a3c4bad05723effc0188afaf175d79985292c6651b1/rustmodels-0.1.6-cp38-cp38-musllinux_1_2_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "fb278f8b0059bd89d7466803da6fb6c8f98b4ad5f10673be58b2afe22b82b3c9",
"md5": "d8ee081b73aa14ceaea6a2bf19e18215",
"sha256": "cc7df15103c1b505043dfe8cca7e84c5cb1689446766d61ed6d3a01ae9fbce90"
},
"downloads": -1,
"filename": "rustmodels-0.1.6-cp38-cp38-musllinux_1_2_x86_64.whl",
"has_sig": false,
"md5_digest": "d8ee081b73aa14ceaea6a2bf19e18215",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 468133,
"upload_time": "2025-08-02T15:21:44",
"upload_time_iso_8601": "2025-08-02T15:21:44.132570Z",
"url": "https://files.pythonhosted.org/packages/fb/27/8f8b0059bd89d7466803da6fb6c8f98b4ad5f10673be58b2afe22b82b3c9/rustmodels-0.1.6-cp38-cp38-musllinux_1_2_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "18c5825d5e2cb80cdeecb97275792224edbae70c1e3de3022f60f8c17adb9433",
"md5": "c89f4989467ad676d997d995a4046f11",
"sha256": "668f1cfdccc8ac4f0292dfa3a424a8da0e6841b5773b6d222d68c99fa06313d0"
},
"downloads": -1,
"filename": "rustmodels-0.1.6-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "c89f4989467ad676d997d995a4046f11",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 296534,
"upload_time": "2025-08-02T15:19:24",
"upload_time_iso_8601": "2025-08-02T15:19:24.987784Z",
"url": "https://files.pythonhosted.org/packages/18/c5/825d5e2cb80cdeecb97275792224edbae70c1e3de3022f60f8c17adb9433/rustmodels-0.1.6-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "e4f6c5171f492a94bf940b087a808ea2532669ef167b284633e07b93f0ee58d5",
"md5": "b644b5d3621be5e5af036d8810e1f58f",
"sha256": "831399bc349e117ede3659d21af206f669acbc4f51f5180c2ad8e08263201161"
},
"downloads": -1,
"filename": "rustmodels-0.1.6-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"has_sig": false,
"md5_digest": "b644b5d3621be5e5af036d8810e1f58f",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 307245,
"upload_time": "2025-08-02T15:19:39",
"upload_time_iso_8601": "2025-08-02T15:19:39.276586Z",
"url": "https://files.pythonhosted.org/packages/e4/f6/c5171f492a94bf940b087a808ea2532669ef167b284633e07b93f0ee58d5/rustmodels-0.1.6-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "dd82302f8bac1e55b314dab29d4591615805da8c33b8d37c1c0d02940948fd95",
"md5": "2cd12717694fcc8d9c40e2f3bb15a260",
"sha256": "dd43b90ab2f9c608cdf80e374e57b7d6af2a192fc534aa3acf74f5410bfef74c"
},
"downloads": -1,
"filename": "rustmodels-0.1.6-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"has_sig": false,
"md5_digest": "2cd12717694fcc8d9c40e2f3bb15a260",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 417461,
"upload_time": "2025-08-02T15:19:53",
"upload_time_iso_8601": "2025-08-02T15:19:53.606961Z",
"url": "https://files.pythonhosted.org/packages/dd/82/302f8bac1e55b314dab29d4591615805da8c33b8d37c1c0d02940948fd95/rustmodels-0.1.6-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "8a5a9aafa0683362c1ed34a5ba09b6c8c40faf695f6efdae1d60362c4298fd5a",
"md5": "eaaaface97f31a8d2fbb76e8c26d8f66",
"sha256": "a47d5fd6067f7671cfbe74bb30f4bdc1e87ad14aac62609180336e7c9c2d6254"
},
"downloads": -1,
"filename": "rustmodels-0.1.6-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"has_sig": false,
"md5_digest": "eaaaface97f31a8d2fbb76e8c26d8f66",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 329270,
"upload_time": "2025-08-02T15:20:08",
"upload_time_iso_8601": "2025-08-02T15:20:08.719972Z",
"url": "https://files.pythonhosted.org/packages/8a/5a/9aafa0683362c1ed34a5ba09b6c8c40faf695f6efdae1d60362c4298fd5a/rustmodels-0.1.6-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "5f2be42211735578b3696d0951870268de4cbc7460abf5a01aceabf5c884fe9e",
"md5": "07f753d75942161b90ec6c9909696012",
"sha256": "aae93489cd90eb0ef4f780cb190b11a4002bb6c406283981773345fd465db9de"
},
"downloads": -1,
"filename": "rustmodels-0.1.6-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "07f753d75942161b90ec6c9909696012",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 297925,
"upload_time": "2025-08-02T15:20:37",
"upload_time_iso_8601": "2025-08-02T15:20:37.617118Z",
"url": "https://files.pythonhosted.org/packages/5f/2b/e42211735578b3696d0951870268de4cbc7460abf5a01aceabf5c884fe9e/rustmodels-0.1.6-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "0fc293b40043a7eb468ef9b34018b2ac980b9e39426d5626a4277ce1e3a2b148",
"md5": "3f30ae33aef2cc96097a8943bad7670a",
"sha256": "261495dd9e468f5e00f35fab070472a72d790ed7bd3dd763bfc5bc44e33d07de"
},
"downloads": -1,
"filename": "rustmodels-0.1.6-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl",
"has_sig": false,
"md5_digest": "3f30ae33aef2cc96097a8943bad7670a",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 320320,
"upload_time": "2025-08-02T15:20:23",
"upload_time_iso_8601": "2025-08-02T15:20:23.417464Z",
"url": "https://files.pythonhosted.org/packages/0f/c2/93b40043a7eb468ef9b34018b2ac980b9e39426d5626a4277ce1e3a2b148/rustmodels-0.1.6-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "40349778a3b04e1a39dbc39a86ec7ab5f2af83f3e8720daa5c4b17e145e60e2e",
"md5": "b36957229147cfcab33de3da01d37b34",
"sha256": "fad0d669ae517e224b1f1e140f819234dbc044afded4db670e8ba8661cef1d9b"
},
"downloads": -1,
"filename": "rustmodels-0.1.6-cp39-cp39-musllinux_1_2_aarch64.whl",
"has_sig": false,
"md5_digest": "b36957229147cfcab33de3da01d37b34",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 473975,
"upload_time": "2025-08-02T15:21:00",
"upload_time_iso_8601": "2025-08-02T15:21:00.498335Z",
"url": "https://files.pythonhosted.org/packages/40/34/9778a3b04e1a39dbc39a86ec7ab5f2af83f3e8720daa5c4b17e145e60e2e/rustmodels-0.1.6-cp39-cp39-musllinux_1_2_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "8c98366fed14af511b5b3d727632c3f59656a3e1974ea0f2978971314daab6b7",
"md5": "46ef86076ca4909ee83f94ae97b18a80",
"sha256": "804e3e42b3a0eb46bf94c607fb6d72a518192d9c23a8a93b0558928990b88a0d"
},
"downloads": -1,
"filename": "rustmodels-0.1.6-cp39-cp39-musllinux_1_2_armv7l.whl",
"has_sig": false,
"md5_digest": "46ef86076ca4909ee83f94ae97b18a80",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 569789,
"upload_time": "2025-08-02T15:21:15",
"upload_time_iso_8601": "2025-08-02T15:21:15.997812Z",
"url": "https://files.pythonhosted.org/packages/8c/98/366fed14af511b5b3d727632c3f59656a3e1974ea0f2978971314daab6b7/rustmodels-0.1.6-cp39-cp39-musllinux_1_2_armv7l.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "5859929d7ece481581e966109d16cf2d61d3598cdccf0eb1f3d0b2a1fa6c16f5",
"md5": "5a66fa5f12e4cd27d66fa59f19cfba6b",
"sha256": "9f24f02f561dda7874ccf71dc8ff7258f1420e2f85148e631c917f00b0cd20e3"
},
"downloads": -1,
"filename": "rustmodels-0.1.6-cp39-cp39-musllinux_1_2_i686.whl",
"has_sig": false,
"md5_digest": "5a66fa5f12e4cd27d66fa59f19cfba6b",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 497768,
"upload_time": "2025-08-02T15:21:30",
"upload_time_iso_8601": "2025-08-02T15:21:30.876165Z",
"url": "https://files.pythonhosted.org/packages/58/59/929d7ece481581e966109d16cf2d61d3598cdccf0eb1f3d0b2a1fa6c16f5/rustmodels-0.1.6-cp39-cp39-musllinux_1_2_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "947985ea35782669f713f19e15e3022e5023c03336575d282a6a3c6160bef54b",
"md5": "31a6d01f04560e2733a3091c71b65a03",
"sha256": "5863277c0dbe9645e0cdbd6e69ffd64c74269e01c7c3214cd5be91245fd767c8"
},
"downloads": -1,
"filename": "rustmodels-0.1.6-cp39-cp39-musllinux_1_2_x86_64.whl",
"has_sig": false,
"md5_digest": "31a6d01f04560e2733a3091c71b65a03",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 468184,
"upload_time": "2025-08-02T15:21:45",
"upload_time_iso_8601": "2025-08-02T15:21:45.567410Z",
"url": "https://files.pythonhosted.org/packages/94/79/85ea35782669f713f19e15e3022e5023c03336575d282a6a3c6160bef54b/rustmodels-0.1.6-cp39-cp39-musllinux_1_2_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "ddc93c8b6da535a64995468abd2e830103c83dafa36c7363c03e2c2b6b21df90",
"md5": "d1465ef6479855b15bc5fc4c9afe16ff",
"sha256": "7cd12af65fb355b2b08967699300a055f94f3edc9a2c9ac7513b38899063f292"
},
"downloads": -1,
"filename": "rustmodels-0.1.6-cp39-cp39-win32.whl",
"has_sig": false,
"md5_digest": "d1465ef6479855b15bc5fc4c9afe16ff",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 152652,
"upload_time": "2025-08-02T15:22:06",
"upload_time_iso_8601": "2025-08-02T15:22:06.042488Z",
"url": "https://files.pythonhosted.org/packages/dd/c9/3c8b6da535a64995468abd2e830103c83dafa36c7363c03e2c2b6b21df90/rustmodels-0.1.6-cp39-cp39-win32.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "52f79b5b1ca0eae6717b314157f52ebda5f5b4b47971392b528077f37c5aae1d",
"md5": "04a0386d01365e714aacdb49fc5fd60f",
"sha256": "08da624f629a95c3ad37eb98658276a47580804a51723ae5800e0f4e79c3ea27"
},
"downloads": -1,
"filename": "rustmodels-0.1.6-cp39-cp39-win_amd64.whl",
"has_sig": false,
"md5_digest": "04a0386d01365e714aacdb49fc5fd60f",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 158398,
"upload_time": "2025-08-02T15:21:59",
"upload_time_iso_8601": "2025-08-02T15:21:59.286733Z",
"url": "https://files.pythonhosted.org/packages/52/f7/9b5b1ca0eae6717b314157f52ebda5f5b4b47971392b528077f37c5aae1d/rustmodels-0.1.6-cp39-cp39-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "8b7ab6f94086a3fc92e16dfb4fe5849b2153e64bcf33f7478c201986acae5c43",
"md5": "bdda3bad951725970dd757136cdeda84",
"sha256": "c547298fafd59473faed7567713bb3600ceb2515147e7b10fc8ad8efd8616485"
},
"downloads": -1,
"filename": "rustmodels-0.1.6-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "bdda3bad951725970dd757136cdeda84",
"packagetype": "bdist_wheel",
"python_version": "pp310",
"requires_python": ">=3.8",
"size": 296939,
"upload_time": "2025-08-02T15:19:26",
"upload_time_iso_8601": "2025-08-02T15:19:26.286819Z",
"url": "https://files.pythonhosted.org/packages/8b/7a/b6f94086a3fc92e16dfb4fe5849b2153e64bcf33f7478c201986acae5c43/rustmodels-0.1.6-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "06cbc6380b8a2dd913546d78856bf5c635036fa22a7895e381582730316bbdb9",
"md5": "156c907ac5e17d29aeae5ba532225429",
"sha256": "f9f432fd6565a72ae562f2f28b8c031687cd796909cee4773813bc28d5352f47"
},
"downloads": -1,
"filename": "rustmodels-0.1.6-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"has_sig": false,
"md5_digest": "156c907ac5e17d29aeae5ba532225429",
"packagetype": "bdist_wheel",
"python_version": "pp310",
"requires_python": ">=3.8",
"size": 307452,
"upload_time": "2025-08-02T15:19:40",
"upload_time_iso_8601": "2025-08-02T15:19:40.609123Z",
"url": "https://files.pythonhosted.org/packages/06/cb/c6380b8a2dd913546d78856bf5c635036fa22a7895e381582730316bbdb9/rustmodels-0.1.6-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "f9b20784deea09784dc8a77482461b6b409e4c4fdc636c9ccacda310f6aede4c",
"md5": "beafdd821f696497dbe85aeb2c301a33",
"sha256": "feef334338afd3b1a8ab15c6d12a75b322cc60643a68a6acc039954d113ff356"
},
"downloads": -1,
"filename": "rustmodels-0.1.6-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"has_sig": false,
"md5_digest": "beafdd821f696497dbe85aeb2c301a33",
"packagetype": "bdist_wheel",
"python_version": "pp310",
"requires_python": ">=3.8",
"size": 414264,
"upload_time": "2025-08-02T15:19:55",
"upload_time_iso_8601": "2025-08-02T15:19:55.007135Z",
"url": "https://files.pythonhosted.org/packages/f9/b2/0784deea09784dc8a77482461b6b409e4c4fdc636c9ccacda310f6aede4c/rustmodels-0.1.6-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "d568e2db10c602ae16c9cab5b66e478e11bc7acfa361267f22f3bdb08551abd2",
"md5": "7335a198d3ddcc65217e957ecf665fb4",
"sha256": "e8f1d00d83b5385d4660815768065e21fe94e2c4434f481cc233e73e4a7357c6"
},
"downloads": -1,
"filename": "rustmodels-0.1.6-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"has_sig": false,
"md5_digest": "7335a198d3ddcc65217e957ecf665fb4",
"packagetype": "bdist_wheel",
"python_version": "pp310",
"requires_python": ">=3.8",
"size": 329063,
"upload_time": "2025-08-02T15:20:10",
"upload_time_iso_8601": "2025-08-02T15:20:10.046917Z",
"url": "https://files.pythonhosted.org/packages/d5/68/e2db10c602ae16c9cab5b66e478e11bc7acfa361267f22f3bdb08551abd2/rustmodels-0.1.6-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "378b0397234398df9be0b27420f63b25a4ff68d5f5b80e4948931550c7a40cea",
"md5": "89856de5ef6fa19afcd63dd201e6e36c",
"sha256": "c5a7ca7307af983ca36bf0020247a0abc713b28a9297e09d0bd5bca0c32a47b0"
},
"downloads": -1,
"filename": "rustmodels-0.1.6-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "89856de5ef6fa19afcd63dd201e6e36c",
"packagetype": "bdist_wheel",
"python_version": "pp310",
"requires_python": ">=3.8",
"size": 298238,
"upload_time": "2025-08-02T15:20:39",
"upload_time_iso_8601": "2025-08-02T15:20:39.000161Z",
"url": "https://files.pythonhosted.org/packages/37/8b/0397234398df9be0b27420f63b25a4ff68d5f5b80e4948931550c7a40cea/rustmodels-0.1.6-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "28c9f45c317c9082b9299740dd36a1eaccdf89277d6569db3683c6108a28fc6a",
"md5": "5cfff62b4ac7b42ca210fdd8505c2835",
"sha256": "d276becd2872e0e9cb9053b47bc9946dd9b8c6f5f8cf1bf631e46fb217fd7aba"
},
"downloads": -1,
"filename": "rustmodels-0.1.6-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl",
"has_sig": false,
"md5_digest": "5cfff62b4ac7b42ca210fdd8505c2835",
"packagetype": "bdist_wheel",
"python_version": "pp310",
"requires_python": ">=3.8",
"size": 320426,
"upload_time": "2025-08-02T15:20:24",
"upload_time_iso_8601": "2025-08-02T15:20:24.763839Z",
"url": "https://files.pythonhosted.org/packages/28/c9/f45c317c9082b9299740dd36a1eaccdf89277d6569db3683c6108a28fc6a/rustmodels-0.1.6-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "2d89ac0b059ee64dc8e578f5bef1a5d7f0e46c5d2bef5416df47e89c60b81b0b",
"md5": "a4abbac6351dec555bd037337841dfd4",
"sha256": "06e4279f8144f6c490798c762be67111bf7e5e94d13adfcf19d71a8a58d0fabb"
},
"downloads": -1,
"filename": "rustmodels-0.1.6-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl",
"has_sig": false,
"md5_digest": "a4abbac6351dec555bd037337841dfd4",
"packagetype": "bdist_wheel",
"python_version": "pp310",
"requires_python": ">=3.8",
"size": 474681,
"upload_time": "2025-08-02T15:21:02",
"upload_time_iso_8601": "2025-08-02T15:21:02.231740Z",
"url": "https://files.pythonhosted.org/packages/2d/89/ac0b059ee64dc8e578f5bef1a5d7f0e46c5d2bef5416df47e89c60b81b0b/rustmodels-0.1.6-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "db15cc746a5e32b88ef7e8c3629b988da5e2cbff0e680a7200fd4fb7529de983",
"md5": "84f704c1b1cf0098378da0678e7aea57",
"sha256": "e8a7f57c8d62272165f6be8c2d90313d14833dbf83df297822a0cd2053ff54a6"
},
"downloads": -1,
"filename": "rustmodels-0.1.6-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl",
"has_sig": false,
"md5_digest": "84f704c1b1cf0098378da0678e7aea57",
"packagetype": "bdist_wheel",
"python_version": "pp310",
"requires_python": ">=3.8",
"size": 569810,
"upload_time": "2025-08-02T15:21:17",
"upload_time_iso_8601": "2025-08-02T15:21:17.456636Z",
"url": "https://files.pythonhosted.org/packages/db/15/cc746a5e32b88ef7e8c3629b988da5e2cbff0e680a7200fd4fb7529de983/rustmodels-0.1.6-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "404521975c61d9bfaa9173004fdac4b3b78359c687929e75ae0ab8b0d64eff39",
"md5": "da1978b795c7651c192ec44558fd8757",
"sha256": "8232bf3f3c33e7aef15f2d2dd85e81d01a839a3b13d16f979eaf5df006e75dfa"
},
"downloads": -1,
"filename": "rustmodels-0.1.6-pp310-pypy310_pp73-musllinux_1_2_i686.whl",
"has_sig": false,
"md5_digest": "da1978b795c7651c192ec44558fd8757",
"packagetype": "bdist_wheel",
"python_version": "pp310",
"requires_python": ">=3.8",
"size": 498353,
"upload_time": "2025-08-02T15:21:32",
"upload_time_iso_8601": "2025-08-02T15:21:32.390733Z",
"url": "https://files.pythonhosted.org/packages/40/45/21975c61d9bfaa9173004fdac4b3b78359c687929e75ae0ab8b0d64eff39/rustmodels-0.1.6-pp310-pypy310_pp73-musllinux_1_2_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "9bb612f4bd018a9ce6bbd7a6cc66f31f90093634b0f71dd258705cedc62a6d1a",
"md5": "c49f62db27c87595d53327ef0ccca8a8",
"sha256": "1fafc9877d2ad41d8ffbbc66f20430ef694a367a9f178ee91a2953741d8c55fd"
},
"downloads": -1,
"filename": "rustmodels-0.1.6-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl",
"has_sig": false,
"md5_digest": "c49f62db27c87595d53327ef0ccca8a8",
"packagetype": "bdist_wheel",
"python_version": "pp310",
"requires_python": ">=3.8",
"size": 468428,
"upload_time": "2025-08-02T15:21:47",
"upload_time_iso_8601": "2025-08-02T15:21:47.174252Z",
"url": "https://files.pythonhosted.org/packages/9b/b6/12f4bd018a9ce6bbd7a6cc66f31f90093634b0f71dd258705cedc62a6d1a/rustmodels-0.1.6-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "4126f1b85b392893c3c5da1526d9d312aec41efd51c11f8cb4358554a6f90fb0",
"md5": "fde9d16e69b3b9e2f9060b90d4996cf0",
"sha256": "84804e88e4184c19b5195b9d39df92057b4ce35504607e5bbb1f749524b55796"
},
"downloads": -1,
"filename": "rustmodels-0.1.6-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "fde9d16e69b3b9e2f9060b90d4996cf0",
"packagetype": "bdist_wheel",
"python_version": "pp311",
"requires_python": ">=3.8",
"size": 296645,
"upload_time": "2025-08-02T15:19:28",
"upload_time_iso_8601": "2025-08-02T15:19:28.138579Z",
"url": "https://files.pythonhosted.org/packages/41/26/f1b85b392893c3c5da1526d9d312aec41efd51c11f8cb4358554a6f90fb0/rustmodels-0.1.6-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "84f8340227df8dbb0615288ab7a0ab034453351a9d4e053deb5cf378703de8fd",
"md5": "acbc6ba34dc2cc0386bc210a163e895b",
"sha256": "fa2bd939eb0094cd07ae77b0ae0b3aaefe50d1304eae60cde2bc016ee95dca72"
},
"downloads": -1,
"filename": "rustmodels-0.1.6-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"has_sig": false,
"md5_digest": "acbc6ba34dc2cc0386bc210a163e895b",
"packagetype": "bdist_wheel",
"python_version": "pp311",
"requires_python": ">=3.8",
"size": 307519,
"upload_time": "2025-08-02T15:19:42",
"upload_time_iso_8601": "2025-08-02T15:19:42.033103Z",
"url": "https://files.pythonhosted.org/packages/84/f8/340227df8dbb0615288ab7a0ab034453351a9d4e053deb5cf378703de8fd/rustmodels-0.1.6-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "5bc696f53073b5f9b474ba82809abfc500a67da2253141585ad0961ba8b7a4a4",
"md5": "c82c6009c7288a5883d8184ea6264f3c",
"sha256": "caee4115f3884201655bc3ec483c76f0af4c63af1d55e58d09e8cee46153f3dd"
},
"downloads": -1,
"filename": "rustmodels-0.1.6-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"has_sig": false,
"md5_digest": "c82c6009c7288a5883d8184ea6264f3c",
"packagetype": "bdist_wheel",
"python_version": "pp311",
"requires_python": ">=3.8",
"size": 414337,
"upload_time": "2025-08-02T15:19:56",
"upload_time_iso_8601": "2025-08-02T15:19:56.594641Z",
"url": "https://files.pythonhosted.org/packages/5b/c6/96f53073b5f9b474ba82809abfc500a67da2253141585ad0961ba8b7a4a4/rustmodels-0.1.6-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "db4cfb6327c483ab3075df43f7a224fea64137dc9ed48c2631f98a20cae4b723",
"md5": "1ae989077ad9fc4139758e32a8880385",
"sha256": "01be26bdd5aa6bff9d785c30f963efb403718e887cc3d1ac1e1fb92dfb5afcdd"
},
"downloads": -1,
"filename": "rustmodels-0.1.6-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"has_sig": false,
"md5_digest": "1ae989077ad9fc4139758e32a8880385",
"packagetype": "bdist_wheel",
"python_version": "pp311",
"requires_python": ">=3.8",
"size": 329086,
"upload_time": "2025-08-02T15:20:11",
"upload_time_iso_8601": "2025-08-02T15:20:11.400160Z",
"url": "https://files.pythonhosted.org/packages/db/4c/fb6327c483ab3075df43f7a224fea64137dc9ed48c2631f98a20cae4b723/rustmodels-0.1.6-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "7bb5afba9075b15036af5b6da7c75e116c42402dc6b5b84c22669353da19f18f",
"md5": "b8baef888a1e47f771a78fd3bcf57a30",
"sha256": "c1eb95399421067a8cb1d84dd176d9688b4f222804c4a2fd320fed6252e31895"
},
"downloads": -1,
"filename": "rustmodels-0.1.6-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "b8baef888a1e47f771a78fd3bcf57a30",
"packagetype": "bdist_wheel",
"python_version": "pp311",
"requires_python": ">=3.8",
"size": 298075,
"upload_time": "2025-08-02T15:20:40",
"upload_time_iso_8601": "2025-08-02T15:20:40.761932Z",
"url": "https://files.pythonhosted.org/packages/7b/b5/afba9075b15036af5b6da7c75e116c42402dc6b5b84c22669353da19f18f/rustmodels-0.1.6-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "067aaf9b26289d7ba64808043edeb88e825a7574cee8d343bc656e0189602edb",
"md5": "6f5925814bc7da838a24a40e5ac44681",
"sha256": "1cc8b0fdd1cf9b0efba928e9cbe0159c7ed445d042815809cefb6e8a75fdfb89"
},
"downloads": -1,
"filename": "rustmodels-0.1.6-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl",
"has_sig": false,
"md5_digest": "6f5925814bc7da838a24a40e5ac44681",
"packagetype": "bdist_wheel",
"python_version": "pp311",
"requires_python": ">=3.8",
"size": 320539,
"upload_time": "2025-08-02T15:20:26",
"upload_time_iso_8601": "2025-08-02T15:20:26.450210Z",
"url": "https://files.pythonhosted.org/packages/06/7a/af9b26289d7ba64808043edeb88e825a7574cee8d343bc656e0189602edb/rustmodels-0.1.6-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "264ef92f18ca4942a0a17cfcbe73a064902eb28a3d44bf39ac22d728a0fac244",
"md5": "8903c7879bc9cd2f8385bec0a0ba45ec",
"sha256": "7b8499640067cda3b976e1d8ae635795c1e2f7fa595b90249263c4eb6dddb4bf"
},
"downloads": -1,
"filename": "rustmodels-0.1.6-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl",
"has_sig": false,
"md5_digest": "8903c7879bc9cd2f8385bec0a0ba45ec",
"packagetype": "bdist_wheel",
"python_version": "pp311",
"requires_python": ">=3.8",
"size": 474454,
"upload_time": "2025-08-02T15:21:03",
"upload_time_iso_8601": "2025-08-02T15:21:03.620212Z",
"url": "https://files.pythonhosted.org/packages/26/4e/f92f18ca4942a0a17cfcbe73a064902eb28a3d44bf39ac22d728a0fac244/rustmodels-0.1.6-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "576d4005ebdba22b463da5aef74f3389a1a85e091bb8b3747745cc52508c5554",
"md5": "6e42a92a6b2b38152df8dcf8ce939258",
"sha256": "cc42eab9e76d4333728e54ce9e0d391db2ab8bb94309832bc3c0ca9b65951704"
},
"downloads": -1,
"filename": "rustmodels-0.1.6-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl",
"has_sig": false,
"md5_digest": "6e42a92a6b2b38152df8dcf8ce939258",
"packagetype": "bdist_wheel",
"python_version": "pp311",
"requires_python": ">=3.8",
"size": 570041,
"upload_time": "2025-08-02T15:21:18",
"upload_time_iso_8601": "2025-08-02T15:21:18.940751Z",
"url": "https://files.pythonhosted.org/packages/57/6d/4005ebdba22b463da5aef74f3389a1a85e091bb8b3747745cc52508c5554/rustmodels-0.1.6-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "f0a55388933a9578703bf51cb02f3c38d3e55699187e3fc9fb734f3d0bd49ba9",
"md5": "c83d41e46718f93c2705945fde8ab410",
"sha256": "a29854a1238b995e148920a55ec6e95a184c627ec70100a0a0e8459d7860b739"
},
"downloads": -1,
"filename": "rustmodels-0.1.6-pp311-pypy311_pp73-musllinux_1_2_i686.whl",
"has_sig": false,
"md5_digest": "c83d41e46718f93c2705945fde8ab410",
"packagetype": "bdist_wheel",
"python_version": "pp311",
"requires_python": ">=3.8",
"size": 498428,
"upload_time": "2025-08-02T15:21:33",
"upload_time_iso_8601": "2025-08-02T15:21:33.875625Z",
"url": "https://files.pythonhosted.org/packages/f0/a5/5388933a9578703bf51cb02f3c38d3e55699187e3fc9fb734f3d0bd49ba9/rustmodels-0.1.6-pp311-pypy311_pp73-musllinux_1_2_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "c90a4476a4c2c59d8e8c3bc7252f84adcd9aa8f359e4ecc58d3d57eee26fe513",
"md5": "343be437e47f170a908003c229100c31",
"sha256": "fdd0116a9e6958debbfa186b5d7292f085076c4be4687b30e69689c6b9df6574"
},
"downloads": -1,
"filename": "rustmodels-0.1.6-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl",
"has_sig": false,
"md5_digest": "343be437e47f170a908003c229100c31",
"packagetype": "bdist_wheel",
"python_version": "pp311",
"requires_python": ">=3.8",
"size": 468109,
"upload_time": "2025-08-02T15:21:49",
"upload_time_iso_8601": "2025-08-02T15:21:49.866352Z",
"url": "https://files.pythonhosted.org/packages/c9/0a/4476a4c2c59d8e8c3bc7252f84adcd9aa8f359e4ecc58d3d57eee26fe513/rustmodels-0.1.6-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "cca151dd87f6c29d4f3af9fb8daa50c81b6bf6b1fe165f5251a0c533204c41f2",
"md5": "81372391566edb77dee243722a811fc4",
"sha256": "ebbf43908b85247bad574119695f0f90120f1d2cc70d0e085144122150c999f4"
},
"downloads": -1,
"filename": "rustmodels-0.1.6-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "81372391566edb77dee243722a811fc4",
"packagetype": "bdist_wheel",
"python_version": "pp39",
"requires_python": ">=3.8",
"size": 296637,
"upload_time": "2025-08-02T15:19:29",
"upload_time_iso_8601": "2025-08-02T15:19:29.544392Z",
"url": "https://files.pythonhosted.org/packages/cc/a1/51dd87f6c29d4f3af9fb8daa50c81b6bf6b1fe165f5251a0c533204c41f2/rustmodels-0.1.6-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "1fbbfd7d60ad50fdc4106e1ebe758b352c8359d555ebf93753be77f283f02a2e",
"md5": "779e359e92fd323d0ab06f9b5c7885c0",
"sha256": "e6c5037003d2cfc7ec357622914e62e12eb1e146c309460eabb2ff736a77a1c6"
},
"downloads": -1,
"filename": "rustmodels-0.1.6-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"has_sig": false,
"md5_digest": "779e359e92fd323d0ab06f9b5c7885c0",
"packagetype": "bdist_wheel",
"python_version": "pp39",
"requires_python": ">=3.8",
"size": 307349,
"upload_time": "2025-08-02T15:19:43",
"upload_time_iso_8601": "2025-08-02T15:19:43.391941Z",
"url": "https://files.pythonhosted.org/packages/1f/bb/fd7d60ad50fdc4106e1ebe758b352c8359d555ebf93753be77f283f02a2e/rustmodels-0.1.6-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "678c80c4ee0271ae12483c0eca9eb3aa63da579924d77984852c4cab5b3c28f1",
"md5": "23730127e47c73a366f82822fc5dcdd0",
"sha256": "d3eb4259f803350162f10a52776378f5ac7e328d0518e9a39d0ca5e7a56acb75"
},
"downloads": -1,
"filename": "rustmodels-0.1.6-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"has_sig": false,
"md5_digest": "23730127e47c73a366f82822fc5dcdd0",
"packagetype": "bdist_wheel",
"python_version": "pp39",
"requires_python": ">=3.8",
"size": 416439,
"upload_time": "2025-08-02T15:19:58",
"upload_time_iso_8601": "2025-08-02T15:19:58.306034Z",
"url": "https://files.pythonhosted.org/packages/67/8c/80c4ee0271ae12483c0eca9eb3aa63da579924d77984852c4cab5b3c28f1/rustmodels-0.1.6-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "6480b25badb12020113e877bf75d41d869e7554f4b98d28533fcccd1de7a6334",
"md5": "f949e8a8f054b77c34aaea6c90a21ceb",
"sha256": "d1058ce350ba38c7fab600b15a8a98f8e90197d8ed9907f84f10706267208cbf"
},
"downloads": -1,
"filename": "rustmodels-0.1.6-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"has_sig": false,
"md5_digest": "f949e8a8f054b77c34aaea6c90a21ceb",
"packagetype": "bdist_wheel",
"python_version": "pp39",
"requires_python": ">=3.8",
"size": 328946,
"upload_time": "2025-08-02T15:20:12",
"upload_time_iso_8601": "2025-08-02T15:20:12.752300Z",
"url": "https://files.pythonhosted.org/packages/64/80/b25badb12020113e877bf75d41d869e7554f4b98d28533fcccd1de7a6334/rustmodels-0.1.6-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "bc3ca3841eac7d76b8c5ccbfff7f65a61168ff7b43ae1ea8eb6aace289ea4dd3",
"md5": "d626368d53a65e5f7c0fcabddc017f34",
"sha256": "238e68f6580cbfe35931660575059ee8f2ba34f364f1c011ec1292e17f312b0a"
},
"downloads": -1,
"filename": "rustmodels-0.1.6-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl",
"has_sig": false,
"md5_digest": "d626368d53a65e5f7c0fcabddc017f34",
"packagetype": "bdist_wheel",
"python_version": "pp39",
"requires_python": ">=3.8",
"size": 474588,
"upload_time": "2025-08-02T15:21:05",
"upload_time_iso_8601": "2025-08-02T15:21:05.076971Z",
"url": "https://files.pythonhosted.org/packages/bc/3c/a3841eac7d76b8c5ccbfff7f65a61168ff7b43ae1ea8eb6aace289ea4dd3/rustmodels-0.1.6-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "a4f7f8ed2de936ae843f9f952c603f2f87dd4d9f63818179c259f904a5a49ef5",
"md5": "7c6a479d254e8001642fdbd8fd389601",
"sha256": "13cb23f114c871127a538cd53533c42182db3e6c0e88e7cf416fa967cf4fa0cd"
},
"downloads": -1,
"filename": "rustmodels-0.1.6-pp39-pypy39_pp73-musllinux_1_2_armv7l.whl",
"has_sig": false,
"md5_digest": "7c6a479d254e8001642fdbd8fd389601",
"packagetype": "bdist_wheel",
"python_version": "pp39",
"requires_python": ">=3.8",
"size": 569734,
"upload_time": "2025-08-02T15:21:20",
"upload_time_iso_8601": "2025-08-02T15:21:20.462866Z",
"url": "https://files.pythonhosted.org/packages/a4/f7/f8ed2de936ae843f9f952c603f2f87dd4d9f63818179c259f904a5a49ef5/rustmodels-0.1.6-pp39-pypy39_pp73-musllinux_1_2_armv7l.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "4a8e1b5e515c7d83c6fc412320d8a49821b57a846596e632042c105971e4ff71",
"md5": "b0da39565dba7f487d10cac3962820af",
"sha256": "f22824fbc637320e28dd81350f8225a68d9f56c832d2e2f9f60dc25d17e67c53"
},
"downloads": -1,
"filename": "rustmodels-0.1.6-pp39-pypy39_pp73-musllinux_1_2_i686.whl",
"has_sig": false,
"md5_digest": "b0da39565dba7f487d10cac3962820af",
"packagetype": "bdist_wheel",
"python_version": "pp39",
"requires_python": ">=3.8",
"size": 497818,
"upload_time": "2025-08-02T15:21:35",
"upload_time_iso_8601": "2025-08-02T15:21:35.288575Z",
"url": "https://files.pythonhosted.org/packages/4a/8e/1b5e515c7d83c6fc412320d8a49821b57a846596e632042c105971e4ff71/rustmodels-0.1.6-pp39-pypy39_pp73-musllinux_1_2_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "de7be9df32fa4ad58bc818f290b31d94104b0cc61a12dd51e80efcce62d11cef",
"md5": "1c9b103f7e368ecec7f2fd6e8ec031eb",
"sha256": "2ea805279db383e0fb5bfd7988105283cc616ec67faaa424405b3d92df90a913"
},
"downloads": -1,
"filename": "rustmodels-0.1.6-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl",
"has_sig": false,
"md5_digest": "1c9b103f7e368ecec7f2fd6e8ec031eb",
"packagetype": "bdist_wheel",
"python_version": "pp39",
"requires_python": ">=3.8",
"size": 468317,
"upload_time": "2025-08-02T15:21:51",
"upload_time_iso_8601": "2025-08-02T15:21:51.347046Z",
"url": "https://files.pythonhosted.org/packages/de/7b/e9df32fa4ad58bc818f290b31d94104b0cc61a12dd51e80efcce62d11cef/rustmodels-0.1.6-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "daa0b4c7a655bdce59f0089656a491a390636a94d513a6f78a402c53d2bfe8f0",
"md5": "cafd9054da36bc4d68f713a50f25cff6",
"sha256": "32ddaa6aea8b826a53ce8ebc13185e60cbff3a5de96304bd2486899ad0cd43db"
},
"downloads": -1,
"filename": "rustmodels-0.1.6.tar.gz",
"has_sig": false,
"md5_digest": "cafd9054da36bc4d68f713a50f25cff6",
"packagetype": "sdist",
"python_version": "source",
"requires_python": ">=3.8",
"size": 14764,
"upload_time": "2025-08-02T15:21:52",
"upload_time_iso_8601": "2025-08-02T15:21:52.521132Z",
"url": "https://files.pythonhosted.org/packages/da/a0/b4c7a655bdce59f0089656a491a390636a94d513a6f78a402c53d2bfe8f0/rustmodels-0.1.6.tar.gz",
"yanked": false,
"yanked_reason": null
}
],
"upload_time": "2025-08-02 15:21:52",
"github": false,
"gitlab": false,
"bitbucket": false,
"codeberg": false,
"lcname": "rustmodels"
}