# Rustrees: Decision Trees & Random Forests in Rust with Python Bindings
[![Build Status](https://github.com/tabacof/rust-trees/actions/workflows/rust.yml/badge.svg)](https://github.com/tabacof/rust-trees/actions)
[![PyPI version](https://badge.fury.io/py/rustrees.svg)](https://badge.fury.io/py/rustrees)
[![Rust Package](https://img.shields.io/crates/v/rustrees)](https://crates.io/crates/rustrees)
[![Documentation](https://docs.rs/rustrees/badge.svg)](https://docs.rs/rustrees)
[![License: MIT](https://img.shields.io/badge/License-MIT-green.svg)](https://opensource.org/licenses/MIT)
## Overview
Rustrees is an efficient decision tree and random forest library written in Rust with Python bindings. It aims to provide speed comparable to Sklearn with the reliability and performance of Rust.
### Features
- 🏎️ **Speed**: As fast as Sklearn on average.
- 🔗 **Python Bindings**: Effortless integration with Python.
- 🔒 **Type Safety**: Benefit from Rust's strong type system.
## Python
### Installation
```bash
pip install rustrees
```
### Quick Start
```python
from sklearn.metrics import accuracy_score
from sklearn import datasets
import rustrees.decision_tree as rt_dt
df = datasets.load_breast_cancer()
model = rt_dt.DecisionTreeClassifier(max_depth=5).fit(df["data"], df["target"])
acc = accuracy_score(df["target"], model.predict(df["data"]))
print("accuracy", acc)
```
## Rust
### Installation
```bash
cargo add rustrees
```
### Quick Start
```rust
use rustrees::{DecisionTree, Dataset, r2};
let dataset = Dataset::read_csv("iris.csv", ",");
let dt = DecisionTree::train_reg(
&dataset,
5, // max_depth
Some(1), // min_samples_leaf
Some(42), // random_state
);
let pred = dt.predict(&dataset);
println!("r2 score: {}", r2(&dataset.target_vector, &pred));
```
## Developing
First, create a virtualenv (this just needs to be done once):
```bash
python -m venv .env
```
Then, activate the virtualenv (needs to be done every time):
```bash
source .env/bin/activate
```
Now, install the requirements (just needs to be done once):
```bash
pip install -r requirements.txt
```
Finally, install the Python library at the local virtual environment with the following command (needs to be done every time you change the Rust code):
```bash
maturin develop --release
```
Now, you can import the library `rustrees` in Python. This can be done also from Jupyter notebooks. To do so, run the following command:
```bash
jupyter notebook
```
And then import the library in the notebook:
```python
import rustrees.decision_tree as rt_dt
```
Raw data
{
"_id": null,
"home_page": null,
"name": "rustrees",
"maintainer": null,
"docs_url": null,
"requires_python": "",
"maintainer_email": null,
"keywords": "machine-learning,decision-trees,python",
"author": "Guilherme L\u00e1zari <guilhermelcs@gmail.com>, Pedro Tabacof <tabacof@gmail.com>",
"author_email": "Guilherme L\u00e1zari <guilhermelcs@gmail.com>, Pedro Tabacof <tabacof@gmail.com>",
"download_url": "https://files.pythonhosted.org/packages/65/f6/8283336d9d3d0c86e20d36fdd186eb4197f00d327abde531ae6ba66b3777/rustrees-0.2.4.tar.gz",
"platform": null,
"description": "# Rustrees: Decision Trees & Random Forests in Rust with Python Bindings\n\n[![Build Status](https://github.com/tabacof/rust-trees/actions/workflows/rust.yml/badge.svg)](https://github.com/tabacof/rust-trees/actions)\n[![PyPI version](https://badge.fury.io/py/rustrees.svg)](https://badge.fury.io/py/rustrees)\n[![Rust Package](https://img.shields.io/crates/v/rustrees)](https://crates.io/crates/rustrees)\n[![Documentation](https://docs.rs/rustrees/badge.svg)](https://docs.rs/rustrees)\n[![License: MIT](https://img.shields.io/badge/License-MIT-green.svg)](https://opensource.org/licenses/MIT)\n\n## Overview\n\nRustrees is an efficient decision tree and random forest library written in Rust with Python bindings. It aims to provide speed comparable to Sklearn with the reliability and performance of Rust.\n\n### Features\n\n- \ud83c\udfce\ufe0f **Speed**: As fast as Sklearn on average.\n- \ud83d\udd17 **Python Bindings**: Effortless integration with Python.\n- \ud83d\udd12 **Type Safety**: Benefit from Rust's strong type system.\n\n## Python\n\n### Installation\n\n```bash\npip install rustrees\n```\n\n### Quick Start\n\n```python\nfrom sklearn.metrics import accuracy_score\nfrom sklearn import datasets\nimport rustrees.decision_tree as rt_dt\n\ndf = datasets.load_breast_cancer()\n\nmodel = rt_dt.DecisionTreeClassifier(max_depth=5).fit(df[\"data\"], df[\"target\"])\n\nacc = accuracy_score(df[\"target\"], model.predict(df[\"data\"]))\n\nprint(\"accuracy\", acc)\n```\n\n## Rust\n\n### Installation\n\n```bash\ncargo add rustrees\n```\n\n### Quick Start\n\n```rust\nuse rustrees::{DecisionTree, Dataset, r2};\n\nlet dataset = Dataset::read_csv(\"iris.csv\", \",\");\n\nlet dt = DecisionTree::train_reg(\n &dataset, \n 5, // max_depth\n Some(1), // min_samples_leaf \n Some(42), // random_state\n);\n\nlet pred = dt.predict(&dataset);\n\nprintln!(\"r2 score: {}\", r2(&dataset.target_vector, &pred));\n```\n\n## Developing \n\nFirst, create a virtualenv (this just needs to be done once):\n```bash\npython -m venv .env\n```\n\nThen, activate the virtualenv (needs to be done every time):\n```bash\nsource .env/bin/activate\n```\n\nNow, install the requirements (just needs to be done once):\n```bash\npip install -r requirements.txt\n```\n\nFinally, install the Python library at the local virtual environment with the following command (needs to be done every time you change the Rust code):\n```bash\nmaturin develop --release\n```\n\nNow, you can import the library `rustrees` in Python. This can be done also from Jupyter notebooks. To do so, run the following command:\n```bash\njupyter notebook\n```\n\nAnd then import the library in the notebook:\n```python\nimport rustrees.decision_tree as rt_dt\n```\n\n",
"bugtrack_url": null,
"license": "MIT",
"summary": "Decision trees in Rust",
"version": "0.2.4",
"project_urls": {
"documentation": "https://rust-trees.readthedocs.io/en/latest/",
"homepage": "https://github.com/tabacof/rust-trees",
"rust": "https://crates.io/crates/rustrees"
},
"split_keywords": [
"machine-learning",
"decision-trees",
"python"
],
"urls": [
{
"comment_text": null,
"digests": {
"blake2b_256": "3755cd70650679e9cadeabfa757ceabf0a87a6051783d30e0837060ca5b42900",
"md5": "621ceacb0d533eb997ce5b4185bd2c2b",
"sha256": "ebae8dee157724f3083af31f135e81926674f95cab1424e66a59c1659ac4c882"
},
"downloads": -1,
"filename": "rustrees-0.2.4-cp310-cp310-macosx_10_12_x86_64.whl",
"has_sig": false,
"md5_digest": "621ceacb0d533eb997ce5b4185bd2c2b",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": null,
"size": 2067695,
"upload_time": "2023-12-06T22:17:49",
"upload_time_iso_8601": "2023-12-06T22:17:49.387470Z",
"url": "https://files.pythonhosted.org/packages/37/55/cd70650679e9cadeabfa757ceabf0a87a6051783d30e0837060ca5b42900/rustrees-0.2.4-cp310-cp310-macosx_10_12_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "44dff808200a0492fe337ed306d6cc1c692d3c7954768c968c44e8d2bf0ccb53",
"md5": "68551d64cfd0574ebe3ea889aab59fbb",
"sha256": "fd0332627e18bca6c8dde649238b81b67d827596ab2ac28c619b455b7ec6cf7b"
},
"downloads": -1,
"filename": "rustrees-0.2.4-cp310-cp310-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "68551d64cfd0574ebe3ea889aab59fbb",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": null,
"size": 1924288,
"upload_time": "2023-12-06T22:17:51",
"upload_time_iso_8601": "2023-12-06T22:17:51.796020Z",
"url": "https://files.pythonhosted.org/packages/44/df/f808200a0492fe337ed306d6cc1c692d3c7954768c968c44e8d2bf0ccb53/rustrees-0.2.4-cp310-cp310-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "a26e8bf7e3baeb66e1b892e4330170be54eab947bfb0b4c97b4b1eb4d2df9390",
"md5": "11601a20d640e1da10e2718d626dd485",
"sha256": "6dc12a6c97afa970bd590cdfdc9c2e73ef973eedadeebcd357b1a232fe9829d4"
},
"downloads": -1,
"filename": "rustrees-0.2.4-cp310-cp310-manylinux_2_12_i686.manylinux2010_i686.whl",
"has_sig": false,
"md5_digest": "11601a20d640e1da10e2718d626dd485",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": null,
"size": 3378913,
"upload_time": "2023-12-06T22:17:54",
"upload_time_iso_8601": "2023-12-06T22:17:54.140716Z",
"url": "https://files.pythonhosted.org/packages/a2/6e/8bf7e3baeb66e1b892e4330170be54eab947bfb0b4c97b4b1eb4d2df9390/rustrees-0.2.4-cp310-cp310-manylinux_2_12_i686.manylinux2010_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "6f62a6af2062468a041b4174b3e4c8d1fb733103cf47b2f3a1ec2d75df07a7dc",
"md5": "6b9050190fd01d555111a78640de1b28",
"sha256": "be06379a1e0d294d8a2c29eeaaec0817612914841ac0312e55c119c5f8cb6c6e"
},
"downloads": -1,
"filename": "rustrees-0.2.4-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "6b9050190fd01d555111a78640de1b28",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": null,
"size": 3105204,
"upload_time": "2023-12-06T22:17:56",
"upload_time_iso_8601": "2023-12-06T22:17:56.505392Z",
"url": "https://files.pythonhosted.org/packages/6f/62/a6af2062468a041b4174b3e4c8d1fb733103cf47b2f3a1ec2d75df07a7dc/rustrees-0.2.4-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "f493051436ecd9006c30665490792882bd12aab7a229adc95b0b5d6b4a965534",
"md5": "59f882dfcc251f4a01dbc00597088335",
"sha256": "117e43e02b283c6e2c75ad2ee2250dc5c0a7b41cf579ddcb44562ac23e3d6b97"
},
"downloads": -1,
"filename": "rustrees-0.2.4-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"has_sig": false,
"md5_digest": "59f882dfcc251f4a01dbc00597088335",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": null,
"size": 3207638,
"upload_time": "2023-12-06T22:17:58",
"upload_time_iso_8601": "2023-12-06T22:17:58.784685Z",
"url": "https://files.pythonhosted.org/packages/f4/93/051436ecd9006c30665490792882bd12aab7a229adc95b0b5d6b4a965534/rustrees-0.2.4-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "8306b9d11f0a21d80e3d59e3ffe21f0778c4bf0c78e8a38237d604e1504a5a4f",
"md5": "096a9705bbf2aa2da63e4dcfb2f5cb6a",
"sha256": "3557c9b5b13f117e73e9b93543307fd340a994c73f330192464d047951fb4717"
},
"downloads": -1,
"filename": "rustrees-0.2.4-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"has_sig": false,
"md5_digest": "096a9705bbf2aa2da63e4dcfb2f5cb6a",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": null,
"size": 3531030,
"upload_time": "2023-12-06T22:18:01",
"upload_time_iso_8601": "2023-12-06T22:18:01.309697Z",
"url": "https://files.pythonhosted.org/packages/83/06/b9d11f0a21d80e3d59e3ffe21f0778c4bf0c78e8a38237d604e1504a5a4f/rustrees-0.2.4-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "89de5874e4ddb3512e95665bbe350a00c8d3b7ec1b958eb41c73b25d1caf2554",
"md5": "e98140add52da55c6af48631443a7a98",
"sha256": "6bd1d38c5c331254b434143f1ea320e53f79903a57c4badad5194d4b4ad321b7"
},
"downloads": -1,
"filename": "rustrees-0.2.4-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"has_sig": false,
"md5_digest": "e98140add52da55c6af48631443a7a98",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": null,
"size": 3603259,
"upload_time": "2023-12-06T22:18:03",
"upload_time_iso_8601": "2023-12-06T22:18:03.128374Z",
"url": "https://files.pythonhosted.org/packages/89/de/5874e4ddb3512e95665bbe350a00c8d3b7ec1b958eb41c73b25d1caf2554/rustrees-0.2.4-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "2f15354ed7fe2999f53f34c5899545ccf0eee240bf215e432bdcc8d0c69f5957",
"md5": "b007a3ffe81ca7935a3a1a282b206d77",
"sha256": "e0cccf30b4b24d148c29ef18c24dbdfa5054ae24e491f115f433ff64bf956e95"
},
"downloads": -1,
"filename": "rustrees-0.2.4-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "b007a3ffe81ca7935a3a1a282b206d77",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": null,
"size": 3233145,
"upload_time": "2023-12-06T22:18:05",
"upload_time_iso_8601": "2023-12-06T22:18:05.411021Z",
"url": "https://files.pythonhosted.org/packages/2f/15/354ed7fe2999f53f34c5899545ccf0eee240bf215e432bdcc8d0c69f5957/rustrees-0.2.4-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "b74e72738b230abcd283505121fa1a896f088473ad36e889bd24227550909208",
"md5": "e9268a8e5aecdd257b2a5dcd44c0b5a5",
"sha256": "33792f060417c1e9e4886aacadf86c628be8e1ccfcbea60fd8b7bcecfc0311ef"
},
"downloads": -1,
"filename": "rustrees-0.2.4-cp310-none-win32.whl",
"has_sig": false,
"md5_digest": "e9268a8e5aecdd257b2a5dcd44c0b5a5",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": null,
"size": 1670652,
"upload_time": "2023-12-06T22:18:06",
"upload_time_iso_8601": "2023-12-06T22:18:06.906426Z",
"url": "https://files.pythonhosted.org/packages/b7/4e/72738b230abcd283505121fa1a896f088473ad36e889bd24227550909208/rustrees-0.2.4-cp310-none-win32.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "d42e6a195a6bd0a39279cfa4c856ede7406b6f26faf1edcaea58062d478b01b9",
"md5": "2f1e104872eebf15d8f8bd238e975d6f",
"sha256": "d63226cfd8c9354864c41c9389e022ee3f021730dfd3ed3a63e3e843995d325f"
},
"downloads": -1,
"filename": "rustrees-0.2.4-cp310-none-win_amd64.whl",
"has_sig": false,
"md5_digest": "2f1e104872eebf15d8f8bd238e975d6f",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": null,
"size": 1827917,
"upload_time": "2023-12-06T22:18:09",
"upload_time_iso_8601": "2023-12-06T22:18:09.033376Z",
"url": "https://files.pythonhosted.org/packages/d4/2e/6a195a6bd0a39279cfa4c856ede7406b6f26faf1edcaea58062d478b01b9/rustrees-0.2.4-cp310-none-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "d470a7069dd9fb26f910a98bb34e08aa960eaa49df562a3f606e264dbc43b840",
"md5": "05d47cfd0354377a2055ae82778d9b33",
"sha256": "f883b884c81e8c3488dd82ef5808198b0305f40d648661cf6b288f2ff0a48736"
},
"downloads": -1,
"filename": "rustrees-0.2.4-cp311-cp311-macosx_10_12_x86_64.whl",
"has_sig": false,
"md5_digest": "05d47cfd0354377a2055ae82778d9b33",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": null,
"size": 2067696,
"upload_time": "2023-12-06T22:18:11",
"upload_time_iso_8601": "2023-12-06T22:18:11.271690Z",
"url": "https://files.pythonhosted.org/packages/d4/70/a7069dd9fb26f910a98bb34e08aa960eaa49df562a3f606e264dbc43b840/rustrees-0.2.4-cp311-cp311-macosx_10_12_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "885ced9f179944b47919e3bda6bd11dd103c3d28cbc7e73e0ca6ebd2091e157f",
"md5": "5021a86b477d97d47bc59a3cdfc859d9",
"sha256": "4a7b01803eed4c35820ce2cb550d7b5cd755470020222e57e497225be3d93c91"
},
"downloads": -1,
"filename": "rustrees-0.2.4-cp311-cp311-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "5021a86b477d97d47bc59a3cdfc859d9",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": null,
"size": 1924291,
"upload_time": "2023-12-06T22:18:13",
"upload_time_iso_8601": "2023-12-06T22:18:13.407511Z",
"url": "https://files.pythonhosted.org/packages/88/5c/ed9f179944b47919e3bda6bd11dd103c3d28cbc7e73e0ca6ebd2091e157f/rustrees-0.2.4-cp311-cp311-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "b770985c318e4fdd26752d611dc72b5e707334380bb9af02c9d66333ee25b327",
"md5": "59ee13847d2fd77ce56248765457d59e",
"sha256": "877be9463eec1494bcfe621bbe2957a1286f5dce0bc54139217f5b99e7621488"
},
"downloads": -1,
"filename": "rustrees-0.2.4-cp311-cp311-manylinux_2_12_i686.manylinux2010_i686.whl",
"has_sig": false,
"md5_digest": "59ee13847d2fd77ce56248765457d59e",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": null,
"size": 3378912,
"upload_time": "2023-12-06T22:18:15",
"upload_time_iso_8601": "2023-12-06T22:18:15.082625Z",
"url": "https://files.pythonhosted.org/packages/b7/70/985c318e4fdd26752d611dc72b5e707334380bb9af02c9d66333ee25b327/rustrees-0.2.4-cp311-cp311-manylinux_2_12_i686.manylinux2010_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "b75c1aa4cf80b6599753876f7a1157148d9475acb46d5040ffebf7bc27165672",
"md5": "f4e6e00db2c26789888961212737d624",
"sha256": "3a55ed2e922765081eb422fd9040e891e33bbaa455a2743a0ac9244c16481b20"
},
"downloads": -1,
"filename": "rustrees-0.2.4-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "f4e6e00db2c26789888961212737d624",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": null,
"size": 3105208,
"upload_time": "2023-12-06T22:18:17",
"upload_time_iso_8601": "2023-12-06T22:18:17.769987Z",
"url": "https://files.pythonhosted.org/packages/b7/5c/1aa4cf80b6599753876f7a1157148d9475acb46d5040ffebf7bc27165672/rustrees-0.2.4-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "9597a1746f04f023a613e78ea3b357a7561f252f7e614aa7843c960da0623f25",
"md5": "f791e3e2263193c4183a07fe04b33af7",
"sha256": "03bba9c4a9bfe9b7adb2f417af99305b2b827ae95861e527d32f53a6928ba5d0"
},
"downloads": -1,
"filename": "rustrees-0.2.4-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"has_sig": false,
"md5_digest": "f791e3e2263193c4183a07fe04b33af7",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": null,
"size": 3207638,
"upload_time": "2023-12-06T22:18:19",
"upload_time_iso_8601": "2023-12-06T22:18:19.275771Z",
"url": "https://files.pythonhosted.org/packages/95/97/a1746f04f023a613e78ea3b357a7561f252f7e614aa7843c960da0623f25/rustrees-0.2.4-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "8bf8d6a59d2118b7f7f497d3cd64cbb31f329d047aebabeb2217a780abf03606",
"md5": "db97fd7c23570f19a0a278d801b71073",
"sha256": "424ba61bb6a7b3c85168133de497878865377570b69563ad8859a9fff14aa82a"
},
"downloads": -1,
"filename": "rustrees-0.2.4-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"has_sig": false,
"md5_digest": "db97fd7c23570f19a0a278d801b71073",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": null,
"size": 3531029,
"upload_time": "2023-12-06T22:18:21",
"upload_time_iso_8601": "2023-12-06T22:18:21.008837Z",
"url": "https://files.pythonhosted.org/packages/8b/f8/d6a59d2118b7f7f497d3cd64cbb31f329d047aebabeb2217a780abf03606/rustrees-0.2.4-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "42f6455a2faad00b481f6cf4a651dc181f084652cc1e1d2908f4c9f2a64a5a8d",
"md5": "8697c244e5299c328f63525c65c3ebc2",
"sha256": "60ac1f79f22587686b9cbd3e3091be067dbbf5969b7a55689d4917dacd4a2f0b"
},
"downloads": -1,
"filename": "rustrees-0.2.4-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"has_sig": false,
"md5_digest": "8697c244e5299c328f63525c65c3ebc2",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": null,
"size": 3603259,
"upload_time": "2023-12-06T22:18:23",
"upload_time_iso_8601": "2023-12-06T22:18:23.311216Z",
"url": "https://files.pythonhosted.org/packages/42/f6/455a2faad00b481f6cf4a651dc181f084652cc1e1d2908f4c9f2a64a5a8d/rustrees-0.2.4-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "f237d409addcd27e49677847426f344d74b658631a7cc3b7b96e6197f108556b",
"md5": "6142d2bfd10facc3492f351c4f733766",
"sha256": "9e1fb131cd380b46f9da7418de0490282fe209c1ad169815b6bdcce09a9ee583"
},
"downloads": -1,
"filename": "rustrees-0.2.4-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "6142d2bfd10facc3492f351c4f733766",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": null,
"size": 3233144,
"upload_time": "2023-12-06T22:18:25",
"upload_time_iso_8601": "2023-12-06T22:18:25.477613Z",
"url": "https://files.pythonhosted.org/packages/f2/37/d409addcd27e49677847426f344d74b658631a7cc3b7b96e6197f108556b/rustrees-0.2.4-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "06f94dce3ff56e0d3951371dabe3e3b07bad59db3515a3542af5431b5ff739b4",
"md5": "2c19f0c89a8a22082931e1e20258ad67",
"sha256": "c72011a9164da1d6bbcee5032f724995252da570ed2c24943eeb9b9ff18869ae"
},
"downloads": -1,
"filename": "rustrees-0.2.4-cp311-none-win32.whl",
"has_sig": false,
"md5_digest": "2c19f0c89a8a22082931e1e20258ad67",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": null,
"size": 1670659,
"upload_time": "2023-12-06T22:18:27",
"upload_time_iso_8601": "2023-12-06T22:18:27.397282Z",
"url": "https://files.pythonhosted.org/packages/06/f9/4dce3ff56e0d3951371dabe3e3b07bad59db3515a3542af5431b5ff739b4/rustrees-0.2.4-cp311-none-win32.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "00d45b7db9335e130dabd05f6a832d5e2b46bab612d916718d1cee67819eff3f",
"md5": "dc9cf20355b257e27ff81cb1b0e09c8f",
"sha256": "f68e1f597a7ffb32c85b08fb18b905aa88c425c3f80d4b00fd6541c1fbc006e2"
},
"downloads": -1,
"filename": "rustrees-0.2.4-cp311-none-win_amd64.whl",
"has_sig": false,
"md5_digest": "dc9cf20355b257e27ff81cb1b0e09c8f",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": null,
"size": 1827932,
"upload_time": "2023-12-06T22:18:29",
"upload_time_iso_8601": "2023-12-06T22:18:29.200156Z",
"url": "https://files.pythonhosted.org/packages/00/d4/5b7db9335e130dabd05f6a832d5e2b46bab612d916718d1cee67819eff3f/rustrees-0.2.4-cp311-none-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "4ecf5f3774d5e8b8f8dbf40317e34eac90029ad996593d48fd279af896acaff1",
"md5": "b9e7d05774c4f5152c73f39e39ec9a44",
"sha256": "96c63cd4c98893e2b5e903e8bc1fc18fb81b3b3ff527e4a74d9428b1d422a568"
},
"downloads": -1,
"filename": "rustrees-0.2.4-cp312-cp312-macosx_10_12_x86_64.whl",
"has_sig": false,
"md5_digest": "b9e7d05774c4f5152c73f39e39ec9a44",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": null,
"size": 2067356,
"upload_time": "2023-12-06T22:18:30",
"upload_time_iso_8601": "2023-12-06T22:18:30.615785Z",
"url": "https://files.pythonhosted.org/packages/4e/cf/5f3774d5e8b8f8dbf40317e34eac90029ad996593d48fd279af896acaff1/rustrees-0.2.4-cp312-cp312-macosx_10_12_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "6ea326e489f0fe27fe9028ed84aded3b102b200f3414c9b9d91f04bd3b8a1721",
"md5": "5afbedcc3f82638a491b14dc0f3a8c5f",
"sha256": "d57f8d7302533d5ea146b5a1578af93e4771119475c844c263dd2ed8fc314f07"
},
"downloads": -1,
"filename": "rustrees-0.2.4-cp312-cp312-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "5afbedcc3f82638a491b14dc0f3a8c5f",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": null,
"size": 1924286,
"upload_time": "2023-12-06T22:18:32",
"upload_time_iso_8601": "2023-12-06T22:18:32.141461Z",
"url": "https://files.pythonhosted.org/packages/6e/a3/26e489f0fe27fe9028ed84aded3b102b200f3414c9b9d91f04bd3b8a1721/rustrees-0.2.4-cp312-cp312-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "a2f3b2407bf8251c12fd636233e3a327576696bcc1ec122a5eecbacb047d93b8",
"md5": "05399fc1fa39f0789d3bed17adfe108b",
"sha256": "dbddce53e6626691d5658092bc80a54f2a21894bca17c9b82d3b1e88162626c1"
},
"downloads": -1,
"filename": "rustrees-0.2.4-cp312-cp312-manylinux_2_12_i686.manylinux2010_i686.whl",
"has_sig": false,
"md5_digest": "05399fc1fa39f0789d3bed17adfe108b",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": null,
"size": 3378171,
"upload_time": "2023-12-06T22:18:33",
"upload_time_iso_8601": "2023-12-06T22:18:33.704604Z",
"url": "https://files.pythonhosted.org/packages/a2/f3/b2407bf8251c12fd636233e3a327576696bcc1ec122a5eecbacb047d93b8/rustrees-0.2.4-cp312-cp312-manylinux_2_12_i686.manylinux2010_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "59e3382cce8889692c432e01a1c567d49d58fede0e60cb5ac15a803e793988d0",
"md5": "9291c84a566f7576de82edc67a542fcf",
"sha256": "c71636609326230a239affe05944e5b75bc1b8ae35d2382d969a9f555cec6a76"
},
"downloads": -1,
"filename": "rustrees-0.2.4-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "9291c84a566f7576de82edc67a542fcf",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": null,
"size": 3105189,
"upload_time": "2023-12-06T22:18:35",
"upload_time_iso_8601": "2023-12-06T22:18:35.300734Z",
"url": "https://files.pythonhosted.org/packages/59/e3/382cce8889692c432e01a1c567d49d58fede0e60cb5ac15a803e793988d0/rustrees-0.2.4-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "8ce776d4a42767df56b94ebd3fd5b4f779f6fa6a6f2d9b8cb067766bd8c6d044",
"md5": "ca3ff275d13ceb2ac67f5f38a58fda0b",
"sha256": "205ed5d790ba9a66c256690e71db6aa1d1143c660e13473b152f28652d98dd43"
},
"downloads": -1,
"filename": "rustrees-0.2.4-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"has_sig": false,
"md5_digest": "ca3ff275d13ceb2ac67f5f38a58fda0b",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": null,
"size": 3206516,
"upload_time": "2023-12-06T22:18:36",
"upload_time_iso_8601": "2023-12-06T22:18:36.853582Z",
"url": "https://files.pythonhosted.org/packages/8c/e7/76d4a42767df56b94ebd3fd5b4f779f6fa6a6f2d9b8cb067766bd8c6d044/rustrees-0.2.4-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "7d856cd239d88cbc254f9db727ac952fa435d0f80bfe1ce3ff13e383031a0bb2",
"md5": "b45961a0ef45efe7ed423f64192b0490",
"sha256": "ac7898201776fbc0560214125e3d262af8161d7d82d92be388baa11f9bc480b8"
},
"downloads": -1,
"filename": "rustrees-0.2.4-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"has_sig": false,
"md5_digest": "b45961a0ef45efe7ed423f64192b0490",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": null,
"size": 3530825,
"upload_time": "2023-12-06T22:18:38",
"upload_time_iso_8601": "2023-12-06T22:18:38.498901Z",
"url": "https://files.pythonhosted.org/packages/7d/85/6cd239d88cbc254f9db727ac952fa435d0f80bfe1ce3ff13e383031a0bb2/rustrees-0.2.4-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "3d57450929cc832f167a4c3a10eb16e9f8422ca76df4e91ed1c7c939da73461c",
"md5": "04ffcd81a89e47a2bb83089f4aa27eee",
"sha256": "c8a288c3936607d534b2a6367591ee817964acae6f25da6ff0ce025a6d6bebcd"
},
"downloads": -1,
"filename": "rustrees-0.2.4-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"has_sig": false,
"md5_digest": "04ffcd81a89e47a2bb83089f4aa27eee",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": null,
"size": 3603399,
"upload_time": "2023-12-06T22:18:40",
"upload_time_iso_8601": "2023-12-06T22:18:40.083216Z",
"url": "https://files.pythonhosted.org/packages/3d/57/450929cc832f167a4c3a10eb16e9f8422ca76df4e91ed1c7c939da73461c/rustrees-0.2.4-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "2ed55a376385607129a9c1829bcd56ac9345838e2539c16428ecf6ecab88fbb6",
"md5": "39b876ba2c4f3f2aa43e0b972ba217e2",
"sha256": "9a2131c9d99548ca52ced9afe640a49d9e9af3d037036d657116cc104aa38254"
},
"downloads": -1,
"filename": "rustrees-0.2.4-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "39b876ba2c4f3f2aa43e0b972ba217e2",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": null,
"size": 3232651,
"upload_time": "2023-12-06T22:18:41",
"upload_time_iso_8601": "2023-12-06T22:18:41.817613Z",
"url": "https://files.pythonhosted.org/packages/2e/d5/5a376385607129a9c1829bcd56ac9345838e2539c16428ecf6ecab88fbb6/rustrees-0.2.4-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "ccf291f721ad25c042427ec9fcb68d3466c8487c4afcfeb186a49e23e5788a90",
"md5": "9cf8c85675aae1b25a63c99b337696d9",
"sha256": "46dbbde59922eaa1ad754dabb46dfdf3c24137133ad347b544657298ddb336bb"
},
"downloads": -1,
"filename": "rustrees-0.2.4-cp312-none-win32.whl",
"has_sig": false,
"md5_digest": "9cf8c85675aae1b25a63c99b337696d9",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": null,
"size": 1669154,
"upload_time": "2023-12-06T22:18:43",
"upload_time_iso_8601": "2023-12-06T22:18:43.412182Z",
"url": "https://files.pythonhosted.org/packages/cc/f2/91f721ad25c042427ec9fcb68d3466c8487c4afcfeb186a49e23e5788a90/rustrees-0.2.4-cp312-none-win32.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "739dda5cb0c25f37e5e11537f991a7af789c1a2e1278a989b73cbbeb2b22053f",
"md5": "05a149c5c98c6a7d1fb9168b8231f840",
"sha256": "7ad0bc5c7f9022c8097add9f830dc7390a486fe71fcff336a8913a367c0c480d"
},
"downloads": -1,
"filename": "rustrees-0.2.4-cp312-none-win_amd64.whl",
"has_sig": false,
"md5_digest": "05a149c5c98c6a7d1fb9168b8231f840",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": null,
"size": 1827915,
"upload_time": "2023-12-06T22:18:45",
"upload_time_iso_8601": "2023-12-06T22:18:45.120170Z",
"url": "https://files.pythonhosted.org/packages/73/9d/da5cb0c25f37e5e11537f991a7af789c1a2e1278a989b73cbbeb2b22053f/rustrees-0.2.4-cp312-none-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "0758febb8184a4324e3109b4afe2447dc23e353c73d2c747d2ccc3c8ccef73b2",
"md5": "2ede291bb07380ca2621b5b8a46b7b52",
"sha256": "cd3200b38960d1e2ec83c9b73cd4df269c5a26fdbcc4c18d26b1c44ad9771c58"
},
"downloads": -1,
"filename": "rustrees-0.2.4-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "2ede291bb07380ca2621b5b8a46b7b52",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": null,
"size": 3105190,
"upload_time": "2023-12-06T22:18:46",
"upload_time_iso_8601": "2023-12-06T22:18:46.975200Z",
"url": "https://files.pythonhosted.org/packages/07/58/febb8184a4324e3109b4afe2447dc23e353c73d2c747d2ccc3c8ccef73b2/rustrees-0.2.4-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "5f28c50669841f5777ccab11cdaf986972a4d84e62745be5dbc8c3aae4dee910",
"md5": "fe6126b463f899d522787e7f28d63d87",
"sha256": "bbcd101935e1e22ffb77b1477d4b28fe389ad714f941d8d3565943ea6b73c03e"
},
"downloads": -1,
"filename": "rustrees-0.2.4-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"has_sig": false,
"md5_digest": "fe6126b463f899d522787e7f28d63d87",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": null,
"size": 3206516,
"upload_time": "2023-12-06T22:18:48",
"upload_time_iso_8601": "2023-12-06T22:18:48.935599Z",
"url": "https://files.pythonhosted.org/packages/5f/28/c50669841f5777ccab11cdaf986972a4d84e62745be5dbc8c3aae4dee910/rustrees-0.2.4-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "bb5fe8e9b13ee069df1ed0766806d9871d069371f4fa910aadb9c96b450faf89",
"md5": "b128941542608ceaacf907b348f0c15e",
"sha256": "640136998a75034b4ed35f82ed3099815853984780a0c7077c59d06b7e6f68e0"
},
"downloads": -1,
"filename": "rustrees-0.2.4-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"has_sig": false,
"md5_digest": "b128941542608ceaacf907b348f0c15e",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": null,
"size": 3530825,
"upload_time": "2023-12-06T22:18:50",
"upload_time_iso_8601": "2023-12-06T22:18:50.620682Z",
"url": "https://files.pythonhosted.org/packages/bb/5f/e8e9b13ee069df1ed0766806d9871d069371f4fa910aadb9c96b450faf89/rustrees-0.2.4-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "e842c379de6d519152b08944bb0bdffafd9008870fa4672e4c21eb3fbaac890f",
"md5": "22600a47bd8fb86ca0929042d94bfa22",
"sha256": "6ab6efa8905370f33a0c853c584f0637322bbd938a0fe0e01de36900cce78e71"
},
"downloads": -1,
"filename": "rustrees-0.2.4-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"has_sig": false,
"md5_digest": "22600a47bd8fb86ca0929042d94bfa22",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": null,
"size": 3603399,
"upload_time": "2023-12-06T22:18:52",
"upload_time_iso_8601": "2023-12-06T22:18:52.930435Z",
"url": "https://files.pythonhosted.org/packages/e8/42/c379de6d519152b08944bb0bdffafd9008870fa4672e4c21eb3fbaac890f/rustrees-0.2.4-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "c806c1688a806bdee0b6ff2f750f346728bf55ef674c535d40a0f615cabed519",
"md5": "22675ebcbb254235c331c7c52940db93",
"sha256": "bc95165827a60915c717d8f6512f530a9e840aace722d81fb054f0f5dbd4ec69"
},
"downloads": -1,
"filename": "rustrees-0.2.4-cp37-cp37m-manylinux_2_12_i686.manylinux2010_i686.whl",
"has_sig": false,
"md5_digest": "22675ebcbb254235c331c7c52940db93",
"packagetype": "bdist_wheel",
"python_version": "cp37",
"requires_python": null,
"size": 3377456,
"upload_time": "2023-12-06T22:18:54",
"upload_time_iso_8601": "2023-12-06T22:18:54.532938Z",
"url": "https://files.pythonhosted.org/packages/c8/06/c1688a806bdee0b6ff2f750f346728bf55ef674c535d40a0f615cabed519/rustrees-0.2.4-cp37-cp37m-manylinux_2_12_i686.manylinux2010_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "0ce34235783637232fbde3ddfb4e16c78af97166752a962921e3bd1e09c6f466",
"md5": "af544e7b860fcf9dfee12fed36c47d92",
"sha256": "686f730adca073b0e994c65ad45438fa44b86c47d4d8157544e52e7b8cc00c7d"
},
"downloads": -1,
"filename": "rustrees-0.2.4-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "af544e7b860fcf9dfee12fed36c47d92",
"packagetype": "bdist_wheel",
"python_version": "cp37",
"requires_python": null,
"size": 3104911,
"upload_time": "2023-12-06T22:18:56",
"upload_time_iso_8601": "2023-12-06T22:18:56.174584Z",
"url": "https://files.pythonhosted.org/packages/0c/e3/4235783637232fbde3ddfb4e16c78af97166752a962921e3bd1e09c6f466/rustrees-0.2.4-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "558430205aa85850d6e99558fb0a4ef1c76a47d6cf07c247cdffff3f43082fa2",
"md5": "544494e74ddf4e05b6c2ea73e748588b",
"sha256": "96f841ca5a0b394790a26fcce75208207ea056438f78b3586ce2f74e9c8a68b8"
},
"downloads": -1,
"filename": "rustrees-0.2.4-cp37-cp37m-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"has_sig": false,
"md5_digest": "544494e74ddf4e05b6c2ea73e748588b",
"packagetype": "bdist_wheel",
"python_version": "cp37",
"requires_python": null,
"size": 3205835,
"upload_time": "2023-12-06T22:18:57",
"upload_time_iso_8601": "2023-12-06T22:18:57.793304Z",
"url": "https://files.pythonhosted.org/packages/55/84/30205aa85850d6e99558fb0a4ef1c76a47d6cf07c247cdffff3f43082fa2/rustrees-0.2.4-cp37-cp37m-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "9b081de5baedfe5db310d0e24c01fc749537f4d82c2fc413dd92d57edd8334a3",
"md5": "9662a8be807e6d037526e7f61f56904d",
"sha256": "fed757e0aad22a63b1fbab383ff737ca7371fad1ffdadc2e87b87c8405eb5594"
},
"downloads": -1,
"filename": "rustrees-0.2.4-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"has_sig": false,
"md5_digest": "9662a8be807e6d037526e7f61f56904d",
"packagetype": "bdist_wheel",
"python_version": "cp37",
"requires_python": null,
"size": 3529959,
"upload_time": "2023-12-06T22:18:59",
"upload_time_iso_8601": "2023-12-06T22:18:59.339138Z",
"url": "https://files.pythonhosted.org/packages/9b/08/1de5baedfe5db310d0e24c01fc749537f4d82c2fc413dd92d57edd8334a3/rustrees-0.2.4-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "7677f5c46ba207f4dc9abc385d22a0f570588f2b5bf2205bc8b26f2cfdfa9a52",
"md5": "a40c03268a3887d1c179005b479d2c3c",
"sha256": "bddb7fb387f38d41fde2799fc59f9eca4e6874a083fdf6fd8a5fc92d11fe69e1"
},
"downloads": -1,
"filename": "rustrees-0.2.4-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"has_sig": false,
"md5_digest": "a40c03268a3887d1c179005b479d2c3c",
"packagetype": "bdist_wheel",
"python_version": "cp37",
"requires_python": null,
"size": 3600050,
"upload_time": "2023-12-06T22:19:01",
"upload_time_iso_8601": "2023-12-06T22:19:01.049300Z",
"url": "https://files.pythonhosted.org/packages/76/77/f5c46ba207f4dc9abc385d22a0f570588f2b5bf2205bc8b26f2cfdfa9a52/rustrees-0.2.4-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "3f341f89751934f7673eebbaa39aaa4e96b72b7a4128acca0626b6edc6e641e2",
"md5": "97a60ffa0b01244b4213966cb706a171",
"sha256": "dff308fe707b3af0c4a4a06910e4f169a115f71499efe407eb4b16cbc967db8d"
},
"downloads": -1,
"filename": "rustrees-0.2.4-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "97a60ffa0b01244b4213966cb706a171",
"packagetype": "bdist_wheel",
"python_version": "cp37",
"requires_python": null,
"size": 3232792,
"upload_time": "2023-12-06T22:19:02",
"upload_time_iso_8601": "2023-12-06T22:19:02.855379Z",
"url": "https://files.pythonhosted.org/packages/3f/34/1f89751934f7673eebbaa39aaa4e96b72b7a4128acca0626b6edc6e641e2/rustrees-0.2.4-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "8986f2350f3417df0a06045dfe065d3e962abb04f1e85eef218c19feee7c6b8b",
"md5": "333605d3a3539aba5c41307e79948ee5",
"sha256": "e06e4315c9ba9454cea84647a1618b90e7283cf170f712b1bc4ea78c734ecb75"
},
"downloads": -1,
"filename": "rustrees-0.2.4-cp37-none-win32.whl",
"has_sig": false,
"md5_digest": "333605d3a3539aba5c41307e79948ee5",
"packagetype": "bdist_wheel",
"python_version": "cp37",
"requires_python": null,
"size": 1669820,
"upload_time": "2023-12-06T22:19:04",
"upload_time_iso_8601": "2023-12-06T22:19:04.670195Z",
"url": "https://files.pythonhosted.org/packages/89/86/f2350f3417df0a06045dfe065d3e962abb04f1e85eef218c19feee7c6b8b/rustrees-0.2.4-cp37-none-win32.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "f5c626a2f8eb6335f7a8d2d7c770fb7164b4473d07d0eda79d9d1c1729131bee",
"md5": "86ac733edb950a4bb124acbf225768be",
"sha256": "a0422894b3c21f4292dbc576ebb2128852c81212c5d26ff70a4cece3a38bbac2"
},
"downloads": -1,
"filename": "rustrees-0.2.4-cp37-none-win_amd64.whl",
"has_sig": false,
"md5_digest": "86ac733edb950a4bb124acbf225768be",
"packagetype": "bdist_wheel",
"python_version": "cp37",
"requires_python": null,
"size": 1827536,
"upload_time": "2023-12-06T22:19:06",
"upload_time_iso_8601": "2023-12-06T22:19:06.323489Z",
"url": "https://files.pythonhosted.org/packages/f5/c6/26a2f8eb6335f7a8d2d7c770fb7164b4473d07d0eda79d9d1c1729131bee/rustrees-0.2.4-cp37-none-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "4658466de96cce971952608342101499260621a2034340fa671f72e21f772e25",
"md5": "97854bf1fa33d12c06b36a2abd1f0751",
"sha256": "3d416f1c011f5500705d609e38e871ec756559f7e8cdb032c2b800aca7088b88"
},
"downloads": -1,
"filename": "rustrees-0.2.4-cp38-cp38-manylinux_2_12_i686.manylinux2010_i686.whl",
"has_sig": false,
"md5_digest": "97854bf1fa33d12c06b36a2abd1f0751",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": null,
"size": 3377195,
"upload_time": "2023-12-06T22:19:08",
"upload_time_iso_8601": "2023-12-06T22:19:08.439385Z",
"url": "https://files.pythonhosted.org/packages/46/58/466de96cce971952608342101499260621a2034340fa671f72e21f772e25/rustrees-0.2.4-cp38-cp38-manylinux_2_12_i686.manylinux2010_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "3074a3cc0170f4096a22d367d24bf7f98f7b46340996dfdec9ab3745e07b5886",
"md5": "035675d41467a2dfed6e6c86f94f4d14",
"sha256": "860e7d04e04ba0aea47a6530fe54e3d65d4eb0c447569915f019ff78197971b8"
},
"downloads": -1,
"filename": "rustrees-0.2.4-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "035675d41467a2dfed6e6c86f94f4d14",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": null,
"size": 3105251,
"upload_time": "2023-12-06T22:19:10",
"upload_time_iso_8601": "2023-12-06T22:19:10.126784Z",
"url": "https://files.pythonhosted.org/packages/30/74/a3cc0170f4096a22d367d24bf7f98f7b46340996dfdec9ab3745e07b5886/rustrees-0.2.4-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "10d78d005247cf8514d6c91a5710dc5d9aca75b41e89e160019ef8afb541201c",
"md5": "29e7cfe8034a665a778ad50fa8f360d1",
"sha256": "b2b5970d0931682d7ca38d04f7b21c2030bb4f8849e79793e286af6a7296af9f"
},
"downloads": -1,
"filename": "rustrees-0.2.4-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"has_sig": false,
"md5_digest": "29e7cfe8034a665a778ad50fa8f360d1",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": null,
"size": 3205900,
"upload_time": "2023-12-06T22:19:11",
"upload_time_iso_8601": "2023-12-06T22:19:11.741509Z",
"url": "https://files.pythonhosted.org/packages/10/d7/8d005247cf8514d6c91a5710dc5d9aca75b41e89e160019ef8afb541201c/rustrees-0.2.4-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "a6a303aad4dc1c436446384aadddc432069893c33e266afc981e640f041f16be",
"md5": "cbaec6504b7fef7d43db5d9423a77972",
"sha256": "415d475335d540939001a07678b13edf64d3591c6ce68534b4b072cc156d8955"
},
"downloads": -1,
"filename": "rustrees-0.2.4-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"has_sig": false,
"md5_digest": "cbaec6504b7fef7d43db5d9423a77972",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": null,
"size": 3530225,
"upload_time": "2023-12-06T22:19:13",
"upload_time_iso_8601": "2023-12-06T22:19:13.642838Z",
"url": "https://files.pythonhosted.org/packages/a6/a3/03aad4dc1c436446384aadddc432069893c33e266afc981e640f041f16be/rustrees-0.2.4-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "fbf4d04bbb8ab16ff976d100699987ca4941c34b0f09f565d37422bfd772e24f",
"md5": "2502297e471e7bc7648dc30f568e542d",
"sha256": "b7a772d6aa234f002d88d073662a0124653d97c2cec48a39ffa174b1731ee071"
},
"downloads": -1,
"filename": "rustrees-0.2.4-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"has_sig": false,
"md5_digest": "2502297e471e7bc7648dc30f568e542d",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": null,
"size": 3599765,
"upload_time": "2023-12-06T22:19:15",
"upload_time_iso_8601": "2023-12-06T22:19:15.367466Z",
"url": "https://files.pythonhosted.org/packages/fb/f4/d04bbb8ab16ff976d100699987ca4941c34b0f09f565d37422bfd772e24f/rustrees-0.2.4-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "d75e293339f748e3c5d442daa88a509f21336c088ab8d814a146031b53165fe9",
"md5": "a4cf190a1f5c41c34734087d5b57f4aa",
"sha256": "34aa98e13c94ed97ad578e14272c4c65eb133bb47c9b4e71821234469a67ff79"
},
"downloads": -1,
"filename": "rustrees-0.2.4-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "a4cf190a1f5c41c34734087d5b57f4aa",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": null,
"size": 3232724,
"upload_time": "2023-12-06T22:19:16",
"upload_time_iso_8601": "2023-12-06T22:19:16.881647Z",
"url": "https://files.pythonhosted.org/packages/d7/5e/293339f748e3c5d442daa88a509f21336c088ab8d814a146031b53165fe9/rustrees-0.2.4-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "0def58cd6f5385514fd337d00f41828dede4e459802d70f748a90fc037d971ee",
"md5": "b3138d8b7d79dea7ab0d1aeddfb29b1d",
"sha256": "a78416553b74a59094d76be44693d39562ebe37aa20707e80c73b37154914d90"
},
"downloads": -1,
"filename": "rustrees-0.2.4-cp38-none-win32.whl",
"has_sig": false,
"md5_digest": "b3138d8b7d79dea7ab0d1aeddfb29b1d",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": null,
"size": 1669875,
"upload_time": "2023-12-06T22:19:18",
"upload_time_iso_8601": "2023-12-06T22:19:18.677812Z",
"url": "https://files.pythonhosted.org/packages/0d/ef/58cd6f5385514fd337d00f41828dede4e459802d70f748a90fc037d971ee/rustrees-0.2.4-cp38-none-win32.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "a5909934ef8507df59fb7f1aec785262f5d4eab5ed53abdd7d0b0824e1b4f8aa",
"md5": "bab12f701075812edca977f9677a943d",
"sha256": "2acc23c6226ca1fd7eb466b98c7a9eb3f4b994d1f628da7a67d8ee1476252b56"
},
"downloads": -1,
"filename": "rustrees-0.2.4-cp38-none-win_amd64.whl",
"has_sig": false,
"md5_digest": "bab12f701075812edca977f9677a943d",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": null,
"size": 1827585,
"upload_time": "2023-12-06T22:19:20",
"upload_time_iso_8601": "2023-12-06T22:19:20.503755Z",
"url": "https://files.pythonhosted.org/packages/a5/90/9934ef8507df59fb7f1aec785262f5d4eab5ed53abdd7d0b0824e1b4f8aa/rustrees-0.2.4-cp38-none-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "cb677c0c1ee2b4ec812e6b919dba291d760177d71416b51cd539594c85c5c8c8",
"md5": "a72fd73cf64ed7bca451d24fe3cb1e8c",
"sha256": "68d45a3b6c47964781606706f1cefca98c220a0ec39cbc7668b06f6f800695f3"
},
"downloads": -1,
"filename": "rustrees-0.2.4-cp39-cp39-manylinux_2_12_i686.manylinux2010_i686.whl",
"has_sig": false,
"md5_digest": "a72fd73cf64ed7bca451d24fe3cb1e8c",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": null,
"size": 3377314,
"upload_time": "2023-12-06T22:19:22",
"upload_time_iso_8601": "2023-12-06T22:19:22.325852Z",
"url": "https://files.pythonhosted.org/packages/cb/67/7c0c1ee2b4ec812e6b919dba291d760177d71416b51cd539594c85c5c8c8/rustrees-0.2.4-cp39-cp39-manylinux_2_12_i686.manylinux2010_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "a49bff18f6f19f13840b64e5f9edd9cd94b816daee3fd10e529ad9c396261ce4",
"md5": "4e31aac3fbfdf347b9d7d000851e3fd1",
"sha256": "7fdbf7f3419dcacca310fd44ce04e6e8e90e1810a23642edd9994f074faecfe9"
},
"downloads": -1,
"filename": "rustrees-0.2.4-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "4e31aac3fbfdf347b9d7d000851e3fd1",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": null,
"size": 3105089,
"upload_time": "2023-12-06T22:19:23",
"upload_time_iso_8601": "2023-12-06T22:19:23.927426Z",
"url": "https://files.pythonhosted.org/packages/a4/9b/ff18f6f19f13840b64e5f9edd9cd94b816daee3fd10e529ad9c396261ce4/rustrees-0.2.4-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "f099834fa24c9722665d5df988caa0e281520af2a60689045a3d6c9917030876",
"md5": "69c5d33fe89e440dbb29593b4fb7eec6",
"sha256": "bb9e1f6b814f2b083f0979fc5e8dddd33860c60a4f7c152763415278b8248a31"
},
"downloads": -1,
"filename": "rustrees-0.2.4-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"has_sig": false,
"md5_digest": "69c5d33fe89e440dbb29593b4fb7eec6",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": null,
"size": 3206701,
"upload_time": "2023-12-06T22:19:25",
"upload_time_iso_8601": "2023-12-06T22:19:25.720842Z",
"url": "https://files.pythonhosted.org/packages/f0/99/834fa24c9722665d5df988caa0e281520af2a60689045a3d6c9917030876/rustrees-0.2.4-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "80d06caf5de5cae7aee66bfa58e3677647764213c7540e30074d39418b197fb4",
"md5": "c2b6d738cb0377a2efb7e398584a8bec",
"sha256": "151406bbdc81c133fdb5f038a0565b1bd40b471b0b8de5e44d13fe181aeaea77"
},
"downloads": -1,
"filename": "rustrees-0.2.4-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"has_sig": false,
"md5_digest": "c2b6d738cb0377a2efb7e398584a8bec",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": null,
"size": 3531075,
"upload_time": "2023-12-06T22:19:27",
"upload_time_iso_8601": "2023-12-06T22:19:27.950856Z",
"url": "https://files.pythonhosted.org/packages/80/d0/6caf5de5cae7aee66bfa58e3677647764213c7540e30074d39418b197fb4/rustrees-0.2.4-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "ff44cda12b6e699d2371bc16eac1c348a2cbd00d8969cd38cd54e20a77c55c56",
"md5": "165aa91cb46e68d63594c1a877721e2f",
"sha256": "7cded53188cc1702497b1b91ce3485836c281e53f5ea40b47b8d8de944bf0f1e"
},
"downloads": -1,
"filename": "rustrees-0.2.4-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"has_sig": false,
"md5_digest": "165aa91cb46e68d63594c1a877721e2f",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": null,
"size": 3603707,
"upload_time": "2023-12-06T22:19:29",
"upload_time_iso_8601": "2023-12-06T22:19:29.676299Z",
"url": "https://files.pythonhosted.org/packages/ff/44/cda12b6e699d2371bc16eac1c348a2cbd00d8969cd38cd54e20a77c55c56/rustrees-0.2.4-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "8722bdd44f3d548a8cd8e9c3239159776c56b326e51873c37c3904fdb5b6d609",
"md5": "00253aa02bae6f6ba0f5a32dc894ed90",
"sha256": "a15431a2cf27861ef46d2e9704c6db9b5f4b8faa0d47118591a47bee2ea67a80"
},
"downloads": -1,
"filename": "rustrees-0.2.4-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "00253aa02bae6f6ba0f5a32dc894ed90",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": null,
"size": 3233712,
"upload_time": "2023-12-06T22:19:31",
"upload_time_iso_8601": "2023-12-06T22:19:31.405819Z",
"url": "https://files.pythonhosted.org/packages/87/22/bdd44f3d548a8cd8e9c3239159776c56b326e51873c37c3904fdb5b6d609/rustrees-0.2.4-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "8e0e87913828c0b6726c0e149d866aad008083fe1db5b9ef7f5ca06e8e1ecfd2",
"md5": "4d78e40799142394cd8077b857282ef6",
"sha256": "d62a71fe0c0e64a2a633ace87e4ffb9f2d7c203cf9807dbb785c1c31b0a835d3"
},
"downloads": -1,
"filename": "rustrees-0.2.4-cp39-none-win32.whl",
"has_sig": false,
"md5_digest": "4d78e40799142394cd8077b857282ef6",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": null,
"size": 1669093,
"upload_time": "2023-12-06T22:19:34",
"upload_time_iso_8601": "2023-12-06T22:19:34.119600Z",
"url": "https://files.pythonhosted.org/packages/8e/0e/87913828c0b6726c0e149d866aad008083fe1db5b9ef7f5ca06e8e1ecfd2/rustrees-0.2.4-cp39-none-win32.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "dcd8a5d705695ae32710f4f02e5161bbd7b09e39442ceb4d7b950cb60f2cb7e2",
"md5": "eaa9a891837e95d1c7431b5dff72d74b",
"sha256": "e9f9bd5be43e472fd8cbe75279dcd84be0268c2ac8f4b04213598ab42f4d5032"
},
"downloads": -1,
"filename": "rustrees-0.2.4-cp39-none-win_amd64.whl",
"has_sig": false,
"md5_digest": "eaa9a891837e95d1c7431b5dff72d74b",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": null,
"size": 1828406,
"upload_time": "2023-12-06T22:19:35",
"upload_time_iso_8601": "2023-12-06T22:19:35.656224Z",
"url": "https://files.pythonhosted.org/packages/dc/d8/a5d705695ae32710f4f02e5161bbd7b09e39442ceb4d7b950cb60f2cb7e2/rustrees-0.2.4-cp39-none-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "3b799d8d2510a2e732c5040837ef8fc6672121c60e758d72eba96d5885f36cba",
"md5": "3fc5ddbbd0a3251b4242ba5c833842fe",
"sha256": "9282099d7eb03ea9dba01e04beaf87181d3487fa670613e90f745ef6017134fb"
},
"downloads": -1,
"filename": "rustrees-0.2.4-pp310-pypy310_pp73-manylinux_2_12_i686.manylinux2010_i686.whl",
"has_sig": false,
"md5_digest": "3fc5ddbbd0a3251b4242ba5c833842fe",
"packagetype": "bdist_wheel",
"python_version": "pp310",
"requires_python": null,
"size": 3378615,
"upload_time": "2023-12-06T22:19:37",
"upload_time_iso_8601": "2023-12-06T22:19:37.602285Z",
"url": "https://files.pythonhosted.org/packages/3b/79/9d8d2510a2e732c5040837ef8fc6672121c60e758d72eba96d5885f36cba/rustrees-0.2.4-pp310-pypy310_pp73-manylinux_2_12_i686.manylinux2010_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "7d5a9e07879176ced46d0af4fdb54f1be3cdd021ee179450b1a287fea6ad56da",
"md5": "c6be07dab51adc91eb8654fd58cf72fd",
"sha256": "2e7c372140a6cb719fe0c218c3fbc59d618380f3cf9a2760b9a59a203af28ea2"
},
"downloads": -1,
"filename": "rustrees-0.2.4-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "c6be07dab51adc91eb8654fd58cf72fd",
"packagetype": "bdist_wheel",
"python_version": "pp310",
"requires_python": null,
"size": 3106987,
"upload_time": "2023-12-06T22:19:39",
"upload_time_iso_8601": "2023-12-06T22:19:39.268309Z",
"url": "https://files.pythonhosted.org/packages/7d/5a/9e07879176ced46d0af4fdb54f1be3cdd021ee179450b1a287fea6ad56da/rustrees-0.2.4-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "c7a0289f0422f81a73152c446bbcc645c58240691768218f615c8e1058c983c1",
"md5": "8079e6c7d989323665cd21216e6bb3bf",
"sha256": "f03715ad8aa5edfea742c6ef6496627839f0cbbb3a19b4692aeb835da4b25f7d"
},
"downloads": -1,
"filename": "rustrees-0.2.4-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"has_sig": false,
"md5_digest": "8079e6c7d989323665cd21216e6bb3bf",
"packagetype": "bdist_wheel",
"python_version": "pp310",
"requires_python": null,
"size": 3207828,
"upload_time": "2023-12-06T22:19:40",
"upload_time_iso_8601": "2023-12-06T22:19:40.886000Z",
"url": "https://files.pythonhosted.org/packages/c7/a0/289f0422f81a73152c446bbcc645c58240691768218f615c8e1058c983c1/rustrees-0.2.4-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "c579b0d3cfb786130f1931380b8bf8a2de459d0eb63495f3aea49e9b1e7a4e70",
"md5": "9b1445a5b3d20b1f70faec070d7a7d4d",
"sha256": "5952a662b55e9e3842109b6bc6aba78a6f97b724cb8375266ee461e0541ffa48"
},
"downloads": -1,
"filename": "rustrees-0.2.4-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"has_sig": false,
"md5_digest": "9b1445a5b3d20b1f70faec070d7a7d4d",
"packagetype": "bdist_wheel",
"python_version": "pp310",
"requires_python": null,
"size": 3531007,
"upload_time": "2023-12-06T22:19:42",
"upload_time_iso_8601": "2023-12-06T22:19:42.686382Z",
"url": "https://files.pythonhosted.org/packages/c5/79/b0d3cfb786130f1931380b8bf8a2de459d0eb63495f3aea49e9b1e7a4e70/rustrees-0.2.4-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "df845a04c02fe6a6aad3c8cb3cbad7d71d00400fbdb05ee23599386cae0c89ab",
"md5": "811b820a8de6a70e13dfa8027b29b69f",
"sha256": "3b27ea503a536dfcc885e676c798ade77e7425944a1337f03ef639da639f7faa"
},
"downloads": -1,
"filename": "rustrees-0.2.4-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"has_sig": false,
"md5_digest": "811b820a8de6a70e13dfa8027b29b69f",
"packagetype": "bdist_wheel",
"python_version": "pp310",
"requires_python": null,
"size": 3603322,
"upload_time": "2023-12-06T22:19:44",
"upload_time_iso_8601": "2023-12-06T22:19:44.644296Z",
"url": "https://files.pythonhosted.org/packages/df/84/5a04c02fe6a6aad3c8cb3cbad7d71d00400fbdb05ee23599386cae0c89ab/rustrees-0.2.4-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "02c0c10686b44e0db11f497d0302ca6384b4073183a73c4962d367d6876fcacd",
"md5": "65a3335325273b82b55dd17df812e2ea",
"sha256": "fa6ba1e591c27ae671b7c3554bffc2dd2bf86e3a50ff9f8e78c56b4535e5e4db"
},
"downloads": -1,
"filename": "rustrees-0.2.4-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "65a3335325273b82b55dd17df812e2ea",
"packagetype": "bdist_wheel",
"python_version": "pp310",
"requires_python": null,
"size": 3233219,
"upload_time": "2023-12-06T22:19:46",
"upload_time_iso_8601": "2023-12-06T22:19:46.447171Z",
"url": "https://files.pythonhosted.org/packages/02/c0/c10686b44e0db11f497d0302ca6384b4073183a73c4962d367d6876fcacd/rustrees-0.2.4-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "963754bf9943653622e06637c43ef29e164937165029f490a46e90d4da1d4105",
"md5": "5f7957ffc2b29fc617bd186c642ae5e9",
"sha256": "2ef17a2f4a68da86338b893e241f8ae686489ca1a90871a86d451a61dff9055b"
},
"downloads": -1,
"filename": "rustrees-0.2.4-pp37-pypy37_pp73-manylinux_2_12_i686.manylinux2010_i686.whl",
"has_sig": false,
"md5_digest": "5f7957ffc2b29fc617bd186c642ae5e9",
"packagetype": "bdist_wheel",
"python_version": "pp37",
"requires_python": null,
"size": 3380915,
"upload_time": "2023-12-06T22:19:48",
"upload_time_iso_8601": "2023-12-06T22:19:48.075960Z",
"url": "https://files.pythonhosted.org/packages/96/37/54bf9943653622e06637c43ef29e164937165029f490a46e90d4da1d4105/rustrees-0.2.4-pp37-pypy37_pp73-manylinux_2_12_i686.manylinux2010_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "1737f2f4f2376652936c306a1bb77af5e8b6387ccbe8ad13cacf5c251b1f6c30",
"md5": "9ce1422b71ea7942d0991d82dde404b4",
"sha256": "bbe6d919a502dc995334279e7c056a992fc8a3b87eb15e23ef07bcf8061a8d90"
},
"downloads": -1,
"filename": "rustrees-0.2.4-pp37-pypy37_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "9ce1422b71ea7942d0991d82dde404b4",
"packagetype": "bdist_wheel",
"python_version": "pp37",
"requires_python": null,
"size": 3108094,
"upload_time": "2023-12-06T22:19:49",
"upload_time_iso_8601": "2023-12-06T22:19:49.807475Z",
"url": "https://files.pythonhosted.org/packages/17/37/f2f4f2376652936c306a1bb77af5e8b6387ccbe8ad13cacf5c251b1f6c30/rustrees-0.2.4-pp37-pypy37_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "2c24ab0edff4de42c3629a41eed0c8684c334c1d3d47f5d6436ecd06a9cb1eaf",
"md5": "dd353eec5fb9371281af2e0106bed03c",
"sha256": "86487144297e4deebeb555544c9fa34fb7c2d6eaf1b0413b2d250a1ad8ff08b3"
},
"downloads": -1,
"filename": "rustrees-0.2.4-pp37-pypy37_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"has_sig": false,
"md5_digest": "dd353eec5fb9371281af2e0106bed03c",
"packagetype": "bdist_wheel",
"python_version": "pp37",
"requires_python": null,
"size": 3208697,
"upload_time": "2023-12-06T22:19:51",
"upload_time_iso_8601": "2023-12-06T22:19:51.588831Z",
"url": "https://files.pythonhosted.org/packages/2c/24/ab0edff4de42c3629a41eed0c8684c334c1d3d47f5d6436ecd06a9cb1eaf/rustrees-0.2.4-pp37-pypy37_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "1f3b2f88e04a72e8d401b18a1dc737189b7a5d275003efb22035a38c7a5f5dd7",
"md5": "8bd7fa79120b1cf4b95fe9006725659e",
"sha256": "82d75168809d2fbb40ec15623fa92abe314686abc46bcde4900051c010fde954"
},
"downloads": -1,
"filename": "rustrees-0.2.4-pp37-pypy37_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"has_sig": false,
"md5_digest": "8bd7fa79120b1cf4b95fe9006725659e",
"packagetype": "bdist_wheel",
"python_version": "pp37",
"requires_python": null,
"size": 3532879,
"upload_time": "2023-12-06T22:19:53",
"upload_time_iso_8601": "2023-12-06T22:19:53.239756Z",
"url": "https://files.pythonhosted.org/packages/1f/3b/2f88e04a72e8d401b18a1dc737189b7a5d275003efb22035a38c7a5f5dd7/rustrees-0.2.4-pp37-pypy37_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "5c6d394848a78e78c5283a411be00fb09a3647964f466f59a392d8337fa02b4e",
"md5": "2512c7b9882d071434820d896295832f",
"sha256": "3e8db07b2a6d08ea6e196bf894fdf53bf2115bdcf5fea5c4e1d3d429e05275cd"
},
"downloads": -1,
"filename": "rustrees-0.2.4-pp37-pypy37_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"has_sig": false,
"md5_digest": "2512c7b9882d071434820d896295832f",
"packagetype": "bdist_wheel",
"python_version": "pp37",
"requires_python": null,
"size": 3606210,
"upload_time": "2023-12-06T22:19:54",
"upload_time_iso_8601": "2023-12-06T22:19:54.941455Z",
"url": "https://files.pythonhosted.org/packages/5c/6d/394848a78e78c5283a411be00fb09a3647964f466f59a392d8337fa02b4e/rustrees-0.2.4-pp37-pypy37_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "c10cd684f7d987b230a42fa399ae59678427ee323efbe33b102fc0bd1132bc6d",
"md5": "43d2ee6b1e300b6d45372c7bb708397f",
"sha256": "7835abcae682cfc65d5ee4e4fdc79b0d517b163212d5ee699f0b0d3df4c47308"
},
"downloads": -1,
"filename": "rustrees-0.2.4-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "43d2ee6b1e300b6d45372c7bb708397f",
"packagetype": "bdist_wheel",
"python_version": "pp37",
"requires_python": null,
"size": 3235315,
"upload_time": "2023-12-06T22:19:56",
"upload_time_iso_8601": "2023-12-06T22:19:56.899471Z",
"url": "https://files.pythonhosted.org/packages/c1/0c/d684f7d987b230a42fa399ae59678427ee323efbe33b102fc0bd1132bc6d/rustrees-0.2.4-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "ef07970c484c8fa50a6c712e8642ec8fef2c4e74f1b1715754837f0ba71df6e5",
"md5": "37dc74371002b92d9a1ebcb7b375bee5",
"sha256": "23b32d6540abe1b506e9d297d2383be59b1b5150d90cb8c8814dfc4e586fa8c9"
},
"downloads": -1,
"filename": "rustrees-0.2.4-pp38-pypy38_pp73-manylinux_2_12_i686.manylinux2010_i686.whl",
"has_sig": false,
"md5_digest": "37dc74371002b92d9a1ebcb7b375bee5",
"packagetype": "bdist_wheel",
"python_version": "pp38",
"requires_python": null,
"size": 3378286,
"upload_time": "2023-12-06T22:19:58",
"upload_time_iso_8601": "2023-12-06T22:19:58.642897Z",
"url": "https://files.pythonhosted.org/packages/ef/07/970c484c8fa50a6c712e8642ec8fef2c4e74f1b1715754837f0ba71df6e5/rustrees-0.2.4-pp38-pypy38_pp73-manylinux_2_12_i686.manylinux2010_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "ebbaf49c23dfe894ce3ddfe33994d6e1cf06ec2ab0c08b2eaf7502fd3c83ef0e",
"md5": "6e6ad0591c1dbf0b1fa4d2408b3b8479",
"sha256": "46fdcfe842ac580e93d86a6b37ac97e9dcf99b73df5521e65906054a5a382677"
},
"downloads": -1,
"filename": "rustrees-0.2.4-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "6e6ad0591c1dbf0b1fa4d2408b3b8479",
"packagetype": "bdist_wheel",
"python_version": "pp38",
"requires_python": null,
"size": 3106579,
"upload_time": "2023-12-06T22:20:00",
"upload_time_iso_8601": "2023-12-06T22:20:00.208609Z",
"url": "https://files.pythonhosted.org/packages/eb/ba/f49c23dfe894ce3ddfe33994d6e1cf06ec2ab0c08b2eaf7502fd3c83ef0e/rustrees-0.2.4-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "7a250beb34032b807de342ce9eaf320999bb3e4de06da231c33a036c40efeced",
"md5": "e4d92de9897291089a6ac97aab032e36",
"sha256": "f10036b2d4791364030c5522121892be8ac292beca3c72d803663cc2b1d6ad5c"
},
"downloads": -1,
"filename": "rustrees-0.2.4-pp38-pypy38_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"has_sig": false,
"md5_digest": "e4d92de9897291089a6ac97aab032e36",
"packagetype": "bdist_wheel",
"python_version": "pp38",
"requires_python": null,
"size": 3206191,
"upload_time": "2023-12-06T22:20:03",
"upload_time_iso_8601": "2023-12-06T22:20:03.098677Z",
"url": "https://files.pythonhosted.org/packages/7a/25/0beb34032b807de342ce9eaf320999bb3e4de06da231c33a036c40efeced/rustrees-0.2.4-pp38-pypy38_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "3a2ee7451a79cf2bc55a9e309fb8d88e2fb189538cf9797edc74428a028c9ad9",
"md5": "548ee7e7f8f1ea4aebe37f9239e52d0c",
"sha256": "9bf1b94470499f404a7ae16cd0ca7905f12a56ab4f8e49f18d5f40dfebf7fa51"
},
"downloads": -1,
"filename": "rustrees-0.2.4-pp38-pypy38_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"has_sig": false,
"md5_digest": "548ee7e7f8f1ea4aebe37f9239e52d0c",
"packagetype": "bdist_wheel",
"python_version": "pp38",
"requires_python": null,
"size": 3531261,
"upload_time": "2023-12-06T22:20:04",
"upload_time_iso_8601": "2023-12-06T22:20:04.923408Z",
"url": "https://files.pythonhosted.org/packages/3a/2e/e7451a79cf2bc55a9e309fb8d88e2fb189538cf9797edc74428a028c9ad9/rustrees-0.2.4-pp38-pypy38_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "9dcd08cc54efe2c5ae07da904668224ef78ad4818948f6967e4006e128bca1d0",
"md5": "50b8dee9e097535c2980dcc23fa70734",
"sha256": "4804606769cb1b4347116895cdfc678dbf3157e3c065f134036c3df1f0b12aac"
},
"downloads": -1,
"filename": "rustrees-0.2.4-pp38-pypy38_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"has_sig": false,
"md5_digest": "50b8dee9e097535c2980dcc23fa70734",
"packagetype": "bdist_wheel",
"python_version": "pp38",
"requires_python": null,
"size": 3603303,
"upload_time": "2023-12-06T22:20:06",
"upload_time_iso_8601": "2023-12-06T22:20:06.731112Z",
"url": "https://files.pythonhosted.org/packages/9d/cd/08cc54efe2c5ae07da904668224ef78ad4818948f6967e4006e128bca1d0/rustrees-0.2.4-pp38-pypy38_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "264ad50a21aa5f55d28e733bd7085fd79074dd850f97b3cf82c9aacb0e96cad0",
"md5": "32fad745aa49c5c39d0a806a5c764b53",
"sha256": "1ec3c6586833a97a034cb3338a143149aea0dccb4faedacbe4de62268c0c953b"
},
"downloads": -1,
"filename": "rustrees-0.2.4-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "32fad745aa49c5c39d0a806a5c764b53",
"packagetype": "bdist_wheel",
"python_version": "pp38",
"requires_python": null,
"size": 3234263,
"upload_time": "2023-12-06T22:20:09",
"upload_time_iso_8601": "2023-12-06T22:20:09.862354Z",
"url": "https://files.pythonhosted.org/packages/26/4a/d50a21aa5f55d28e733bd7085fd79074dd850f97b3cf82c9aacb0e96cad0/rustrees-0.2.4-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "57686341c6a3ee282d01970415cf8999895ae3c857cd853c698bd2612a0dfe9b",
"md5": "d696c874cc9accc39a99f90ca194434b",
"sha256": "792331c359e6616cb05defbf30f7434a94e3057eca02bf777fca914d41ef89bc"
},
"downloads": -1,
"filename": "rustrees-0.2.4-pp39-pypy39_pp73-manylinux_2_12_i686.manylinux2010_i686.whl",
"has_sig": false,
"md5_digest": "d696c874cc9accc39a99f90ca194434b",
"packagetype": "bdist_wheel",
"python_version": "pp39",
"requires_python": null,
"size": 3378650,
"upload_time": "2023-12-06T22:20:11",
"upload_time_iso_8601": "2023-12-06T22:20:11.544390Z",
"url": "https://files.pythonhosted.org/packages/57/68/6341c6a3ee282d01970415cf8999895ae3c857cd853c698bd2612a0dfe9b/rustrees-0.2.4-pp39-pypy39_pp73-manylinux_2_12_i686.manylinux2010_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "4254f27b3ca4003579b11f3c7494a17bca4b3ba27eb899329aac9c22cce76591",
"md5": "1ebc6fc2a5b35f9e73a5814fa68b01fc",
"sha256": "0c0519143ba2a5821a95d5bae1973f22e233e70269b43db5eedb8e990f22e52b"
},
"downloads": -1,
"filename": "rustrees-0.2.4-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "1ebc6fc2a5b35f9e73a5814fa68b01fc",
"packagetype": "bdist_wheel",
"python_version": "pp39",
"requires_python": null,
"size": 3106722,
"upload_time": "2023-12-06T22:20:13",
"upload_time_iso_8601": "2023-12-06T22:20:13.228628Z",
"url": "https://files.pythonhosted.org/packages/42/54/f27b3ca4003579b11f3c7494a17bca4b3ba27eb899329aac9c22cce76591/rustrees-0.2.4-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "8e67f0158ad01743d1cebe347f5c671716408ca629a702b8d79803c351100bbe",
"md5": "1f470e93f04df9ba591b044887a5102a",
"sha256": "16b9a079bbb78eefb6e883ea39eac21ce17a469bfbee57f9dd5344bcc0f8ecf3"
},
"downloads": -1,
"filename": "rustrees-0.2.4-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"has_sig": false,
"md5_digest": "1f470e93f04df9ba591b044887a5102a",
"packagetype": "bdist_wheel",
"python_version": "pp39",
"requires_python": null,
"size": 3207693,
"upload_time": "2023-12-06T22:20:15",
"upload_time_iso_8601": "2023-12-06T22:20:15.741078Z",
"url": "https://files.pythonhosted.org/packages/8e/67/f0158ad01743d1cebe347f5c671716408ca629a702b8d79803c351100bbe/rustrees-0.2.4-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "5926f9ff8e8e2c1220577e6b0359045b315859b07cd44c9d3372687dee11a8ec",
"md5": "9ecb0a3315dcbc5bc908c3102da2533c",
"sha256": "b84f3e1b5505c1d6683cd63f3abae01012f7afd36ce406040e5676d315720acc"
},
"downloads": -1,
"filename": "rustrees-0.2.4-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"has_sig": false,
"md5_digest": "9ecb0a3315dcbc5bc908c3102da2533c",
"packagetype": "bdist_wheel",
"python_version": "pp39",
"requires_python": null,
"size": 3530772,
"upload_time": "2023-12-06T22:20:18",
"upload_time_iso_8601": "2023-12-06T22:20:18.467556Z",
"url": "https://files.pythonhosted.org/packages/59/26/f9ff8e8e2c1220577e6b0359045b315859b07cd44c9d3372687dee11a8ec/rustrees-0.2.4-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "4fc5ec511f13b3a69f046922e07298051617e1a9b06469a0f7a6584bc8cb5c77",
"md5": "e4f683df782c5dcb297afeb5be4c99ae",
"sha256": "dfd83acbbfa279c433570c2b9afeaf5eb63f4af83cd728da5953f1c3577b3da7"
},
"downloads": -1,
"filename": "rustrees-0.2.4-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"has_sig": false,
"md5_digest": "e4f683df782c5dcb297afeb5be4c99ae",
"packagetype": "bdist_wheel",
"python_version": "pp39",
"requires_python": null,
"size": 3604430,
"upload_time": "2023-12-06T22:20:20",
"upload_time_iso_8601": "2023-12-06T22:20:20.320105Z",
"url": "https://files.pythonhosted.org/packages/4f/c5/ec511f13b3a69f046922e07298051617e1a9b06469a0f7a6584bc8cb5c77/rustrees-0.2.4-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "72cdc3ec9b4b69abcaabda30958ff3adc5d777b9497c2891678c8035313aab95",
"md5": "304b903bca159d762035d72087c245ff",
"sha256": "22b55e92cb7a65931ae461d12b06e8d292b17d0274a34a44adf1b7db6f379773"
},
"downloads": -1,
"filename": "rustrees-0.2.4-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "304b903bca159d762035d72087c245ff",
"packagetype": "bdist_wheel",
"python_version": "pp39",
"requires_python": null,
"size": 3233231,
"upload_time": "2023-12-06T22:20:22",
"upload_time_iso_8601": "2023-12-06T22:20:22.727391Z",
"url": "https://files.pythonhosted.org/packages/72/cd/c3ec9b4b69abcaabda30958ff3adc5d777b9497c2891678c8035313aab95/rustrees-0.2.4-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "65f68283336d9d3d0c86e20d36fdd186eb4197f00d327abde531ae6ba66b3777",
"md5": "fd771dbe5b5e1aa2b2b185427f608970",
"sha256": "ecd46e5bc80311f465ff09d8e6c1052794222b5aff931aa18f97d8a3f28f7775"
},
"downloads": -1,
"filename": "rustrees-0.2.4.tar.gz",
"has_sig": false,
"md5_digest": "fd771dbe5b5e1aa2b2b185427f608970",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 3263028,
"upload_time": "2023-12-06T22:20:25",
"upload_time_iso_8601": "2023-12-06T22:20:25.018401Z",
"url": "https://files.pythonhosted.org/packages/65/f6/8283336d9d3d0c86e20d36fdd186eb4197f00d327abde531ae6ba66b3777/rustrees-0.2.4.tar.gz",
"yanked": false,
"yanked_reason": null
}
],
"upload_time": "2023-12-06 22:20:25",
"github": true,
"gitlab": false,
"bitbucket": false,
"codeberg": false,
"github_user": "tabacof",
"github_project": "rust-trees",
"travis_ci": false,
"coveralls": false,
"github_actions": true,
"requirements": [
{
"name": "maturin",
"specs": []
},
{
"name": "jupyter",
"specs": []
},
{
"name": "pandas",
"specs": []
},
{
"name": "numpy",
"specs": []
},
{
"name": "scikit-learn",
"specs": []
},
{
"name": "matplotlib",
"specs": []
},
{
"name": "pyarrow",
"specs": []
},
{
"name": "econml",
"specs": []
},
{
"name": "seaborn",
"specs": []
},
{
"name": "black",
"specs": []
},
{
"name": "ruff",
"specs": []
},
{
"name": "toml",
"specs": []
}
],
"lcname": "rustrees"
}