jsonlogic-rs


Namejsonlogic-rs JSON
Version 0.3.3 PyPI version JSON
download
home_pagehttps://www.github.com/bestowinc/json-logic-rs
SummaryJsonLogic implemented with a Rust backend
upload_time2024-04-16 04:33:02
maintainerNone
docs_urlNone
authorMatthew Planchard
requires_pythonNone
licenseNone
keywords json jsonlogic s-expressions rust
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            # json-logic-rs

![Continuous Integration](https://github.com/Bestowinc/json-logic-rs/workflows/Continuous%20Integration/badge.svg?branch=master)

This is an implementation of  the [JsonLogic] specification in Rust.

## Project Status

We implement 100% of the standard supported operations defined [here](http://jsonlogic.com/operations.html).

We also implement the `?:`, which is not described in that specification
but is a direct alias for `if`.

All operations are tested using our own test suite in Rust as well as the
shared tests for all JsonLogic implementations defined [here](http://jsonlogic.com/tests.json).

We are working on adding new operations with improved type safety, as well
as the ability to define functions as JsonLogic. We will communicate with
the broader JsonLogic community to see if we can make them part of the
standard as we do so.

Being built in Rust, we are able to provide the package in a variety of
languages. The table below describes current language support:

| **Language**         | **Available Via**                                                          |
| -------------------- | -------------------------------------------------------------------------- |
| Rust                 | [Cargo](https://crates.io/crates/jsonlogic-rs)                             |
| JavaScript (as WASM) | Node Package via [NPM](https://www.npmjs.com/package/@bestow/jsonlogic-rs) |
| Python               | [PyPI](https://pypi.org/project/jsonlogic-rs/)                             |

## Installation

### Rust

To use as a Rust library, add to your `Cargo.toml`:

``` toml
[dependencies]
jsonlogic-rs = "~0.1"
```

If you just want to use the commandline `jsonlogic` binary:

``` sh
cargo install jsonlogic-rs --features cmdline
```

### Node/Browser

You can install JsonLogic using npm or yarn. In NPM:

``` sh
npm install --save @bestow/jsonlogic-rs
```

Note that the package is distributed as a node package, so you'll need to use
`browserify`, `webpack`, or similar to install for the browser.

### Python

Supports Python 3.7+.

Wheels are distributed for many platforms, so you can often just run:

``` sh
pip install jsonlogic-rs
```

If a wheel does _not_ exist for your system, this will attempt to build the
package. In order for the package to build successfully, you MUST have Rust
installed on your local system, and `cargo` MUST be present in your `PATH`.

See [Building](#Building) below for more details.

## Usage

### Rust

```rust
use jsonlogic_rs;
use serde_json::{json, from_str, Value};

// You can pass JSON values deserialized with serde straight into apply().
fn main() {
    let data: Value = from_str(r#"{"a": 7}"#)
    assert_eq!(
        jsonlogic_rs::apply(
            json!({"===": [{"var": "a"}, 7]}),
            data,
        ),
        json!(true)
    );
}
```

### Javascript

```js
const jsonlogic = require("jsonlogic-rs")

jsonlogic.apply(
    {"===": [{"var": "a"}, 7]},
    {"a": 7}
)
```

### Python

```py
import jsonlogic_rs

res = jsonlogic_rs.apply(
    {"===": [{"var": "a"}, 7]},
    {"a": 7}
)

assert res == True

# If You have serialized JsonLogic and data, the `apply_serialized` method can
# be used instead
res = jsonlogic_rs.apply_serialized(
    '{"===": [{"var": "a"}, 7]}',
    '{"a": 7}'
)
```

### Commandline

``` raw
Parse JSON data with a JsonLogic rule.

When no <data> or <data> is -, read from stdin.

The result is written to stdout as JSON, so multiple calls
can be chained together if desired.

USAGE:
    jsonlogic <logic> [data]

FLAGS:
    -h, --help       Prints help information
    -V, --version    Prints version information

ARGS:
    <logic>    A JSON logic string
    <data>     A string of JSON data to parse. May be provided as stdin.

EXAMPLES:
    jsonlogic '{"===": [{"var": "a"}, "foo"]}' '{"a": "foo"}'
    jsonlogic '{"===": [1, 1]}' null
    echo '{"a": "foo"}' | jsonlogic '{"===": [{"var": "a"}, "foo"]}'

Inspired by and conformant with the original JsonLogic (jsonlogic.com).
```

Run `jsonlogic --help` the most up-to-date usage.

An example of chaining multiple results:

``` sh
$ echo '{"a": "a"}' \
    | jsonlogic '{"if": [{"===": [{"var": "a"}, "a"]}, {"result": true}, {"result": false}]}' \
    | jsonlogic '{"if": [{"!!": {"var": "result"}}, "result was true", "result was false"]}'

"result was true"
```

Using `jsonlogic` on the cmdline to explore an API:

``` sh
> curl -s "https://catfact.ninja/facts?limit=5"

{"current_page":1,"data":[{"fact":"The Egyptian Mau is probably the oldest breed of cat. In fact, the breed is so ancient that its name is the Egyptian word for \u201ccat.\u201d","length":132},{"fact":"Julius Ceasar, Henri II, Charles XI, and Napoleon were all afraid of cats.","length":74},{"fact":"Unlike humans, cats cannot detect sweetness which likely explains why they are not drawn to it at all.","length":102},{"fact":"Cats can be taught to walk on a leash, but a lot of time and patience is required to teach them. The younger the cat is, the easier it will be for them to learn.","length":161},{"fact":"Researchers believe the word \u201ctabby\u201d comes from Attabiyah, a neighborhood in Baghdad, Iraq. Tabbies got their name because their striped coats resembled the famous wavy patterns in the silk produced in this city.","length":212}],"first_page_url":"https:\/\/catfact.ninja\/facts?page=1","from":1,"last_page":67,"last_page_url":"https:\/\/catfact.ninja\/facts?page=67","next_page_url":"https:\/\/catfact.ninja\/facts?page=2","path":"https:\/\/catfact.ninja\/facts","per_page":"5","prev_page_url":null,"to":5,"total":332}

> curl -s "https://catfact.ninja/facts?limit=5" | jsonlogic '{"var": "data"}'

[{"fact":"A cat's appetite is the barometer of its health. Any cat that does not eat or drink for more than two days should be taken to a vet.","length":132},{"fact":"Some notable people who disliked cats:  Napoleon Bonaparte, Dwight D. Eisenhower, Hitler.","length":89},{"fact":"During the time of the Spanish Inquisition, Pope Innocent VIII condemned cats as evil and thousands of cats were burned. Unfortunately, the widespread killing of cats led to an explosion of the rat population, which exacerbated the effects of the Black Death.","length":259},{"fact":"A cat has approximately 60 to 80 million olfactory cells (a human has between 5 and 20 million).","length":96},{"fact":"In just seven years, a single pair of cats and their offspring could produce a staggering total of 420,000 kittens.","length":115}]

> curl -s "https://catfact.ninja/facts?limit=5" | jsonlogic '{"var": "data.0"}'

{"fact":"A tiger's stripes are like fingerprints","length":39}

> curl -s "https://catfact.ninja/facts?limit=5" | jsonlogic '{"var": "data.0.fact"}'
"Neutering a male cat will, in almost all cases, stop him from spraying (territorial marking), fighting with other males (at least over females), as well as lengthen his life and improve its quality."

> curl -s "https://catfact.ninja/facts?limit=5" \
    | jsonlogic '{"var": "data.0.fact"}' \
    | jsonlogic '{"in": ["cat", {"var": ""}]}'

true

> curl -s "https://catfact.ninja/facts?limit=5" \
    | jsonlogic '{"var": "data.0.fact"}' \
    | jsonlogic '{"in": ["cat", {"var": ""}]}' \
    | jsonlogic '{"if": [{"var": ""}, "fact contained cat", "fact did not contain cat"]}'

"fact contained cat"
```

## Building

### Prerequisites

You must have Rust installed and `cargo` available in your `PATH`.

If you would like to build or test the Python distribution, Python 3.7 or
newer must be available in your `PATH`. The `venv` module must be part of the
Python distribution (looking at you, Ubuntu).

If you would like to run tests for the WASM package, `node` 10 or newer must be
available in your `PATH`.

### Rust

To build the Rust library, just run `cargo build`.

You can create a release build with `make build`.

### WebAssembly

You can build a debug WASM release with

```sh
make debug-wasm
```

You can build a production WASM release with

```sh
make build-wasm
```

The built WASM package will be in `js/`. This package is directly importable
from `node`, but needs to be browserified in order to be used in the browser.

### Python

To perform a dev install of the Python package, run:

```sh
make develop-py
```

This will automatically create a virtual environment in `venv/`, install
the necessary packages, and then install `jsonlogic_rs` into that environment.

**Note:** from our CI experiences, this may not work for Python 3.8 on Windows.
If you are running this on a Windows machine and can confirm whether or not
this works, let us know!

To build a production source distribution:

```sh
make build-py-sdist
```

To build a wheel (specific to your current system architecture and python
version):

```sh
make build-py-wheel
```

The python distribution consists both of the C extension generated from the
Rust and a thin wrapper found in `py/jsonlogic_rs/`. `make develop-py` will
compile the C extension and place it in that directory, where it will be
importable by your local venv. When building wheels, the wrapper and the C
extension are all packaged together into the resultant wheel, which will
be found in `dist/`. When building an sdist, the Rust extension is not compiled.
The Rust and Python source are distributed together in a `.tar.gz` file, again
found in `dist/`.

[jsonlogic]: http://jsonlogic.com/

            

Raw data

            {
    "_id": null,
    "home_page": "https://www.github.com/bestowinc/json-logic-rs",
    "name": "jsonlogic-rs",
    "maintainer": null,
    "docs_url": null,
    "requires_python": null,
    "maintainer_email": "msplanchard@gmail.com",
    "keywords": "json, jsonlogic, s-expressions, rust",
    "author": "Matthew Planchard",
    "author_email": "msplanchard@gmail.com",
    "download_url": "https://files.pythonhosted.org/packages/f4/8f/4907679d09dc866efd312aa60d47e2e447df7a6f01e8204d607d36e306e0/jsonlogic_rs-0.3.3.tar.gz",
    "platform": null,
    "description": "# json-logic-rs\n\n![Continuous Integration](https://github.com/Bestowinc/json-logic-rs/workflows/Continuous%20Integration/badge.svg?branch=master)\n\nThis is an implementation of  the [JsonLogic] specification in Rust.\n\n## Project Status\n\nWe implement 100% of the standard supported operations defined [here](http://jsonlogic.com/operations.html).\n\nWe also implement the `?:`, which is not described in that specification\nbut is a direct alias for `if`.\n\nAll operations are tested using our own test suite in Rust as well as the\nshared tests for all JsonLogic implementations defined [here](http://jsonlogic.com/tests.json).\n\nWe are working on adding new operations with improved type safety, as well\nas the ability to define functions as JsonLogic. We will communicate with\nthe broader JsonLogic community to see if we can make them part of the\nstandard as we do so.\n\nBeing built in Rust, we are able to provide the package in a variety of\nlanguages. The table below describes current language support:\n\n| **Language**         | **Available Via**                                                          |\n| -------------------- | -------------------------------------------------------------------------- |\n| Rust                 | [Cargo](https://crates.io/crates/jsonlogic-rs)                             |\n| JavaScript (as WASM) | Node Package via [NPM](https://www.npmjs.com/package/@bestow/jsonlogic-rs) |\n| Python               | [PyPI](https://pypi.org/project/jsonlogic-rs/)                             |\n\n## Installation\n\n### Rust\n\nTo use as a Rust library, add to your `Cargo.toml`:\n\n``` toml\n[dependencies]\njsonlogic-rs = \"~0.1\"\n```\n\nIf you just want to use the commandline `jsonlogic` binary:\n\n``` sh\ncargo install jsonlogic-rs --features cmdline\n```\n\n### Node/Browser\n\nYou can install JsonLogic using npm or yarn. In NPM:\n\n``` sh\nnpm install --save @bestow/jsonlogic-rs\n```\n\nNote that the package is distributed as a node package, so you'll need to use\n`browserify`, `webpack`, or similar to install for the browser.\n\n### Python\n\nSupports Python 3.7+.\n\nWheels are distributed for many platforms, so you can often just run:\n\n``` sh\npip install jsonlogic-rs\n```\n\nIf a wheel does _not_ exist for your system, this will attempt to build the\npackage. In order for the package to build successfully, you MUST have Rust\ninstalled on your local system, and `cargo` MUST be present in your `PATH`.\n\nSee [Building](#Building) below for more details.\n\n## Usage\n\n### Rust\n\n```rust\nuse jsonlogic_rs;\nuse serde_json::{json, from_str, Value};\n\n// You can pass JSON values deserialized with serde straight into apply().\nfn main() {\n    let data: Value = from_str(r#\"{\"a\": 7}\"#)\n    assert_eq!(\n        jsonlogic_rs::apply(\n            json!({\"===\": [{\"var\": \"a\"}, 7]}),\n            data,\n        ),\n        json!(true)\n    );\n}\n```\n\n### Javascript\n\n```js\nconst jsonlogic = require(\"jsonlogic-rs\")\n\njsonlogic.apply(\n    {\"===\": [{\"var\": \"a\"}, 7]},\n    {\"a\": 7}\n)\n```\n\n### Python\n\n```py\nimport jsonlogic_rs\n\nres = jsonlogic_rs.apply(\n    {\"===\": [{\"var\": \"a\"}, 7]},\n    {\"a\": 7}\n)\n\nassert res == True\n\n# If You have serialized JsonLogic and data, the `apply_serialized` method can\n# be used instead\nres = jsonlogic_rs.apply_serialized(\n    '{\"===\": [{\"var\": \"a\"}, 7]}',\n    '{\"a\": 7}'\n)\n```\n\n### Commandline\n\n``` raw\nParse JSON data with a JsonLogic rule.\n\nWhen no <data> or <data> is -, read from stdin.\n\nThe result is written to stdout as JSON, so multiple calls\ncan be chained together if desired.\n\nUSAGE:\n    jsonlogic <logic> [data]\n\nFLAGS:\n    -h, --help       Prints help information\n    -V, --version    Prints version information\n\nARGS:\n    <logic>    A JSON logic string\n    <data>     A string of JSON data to parse. May be provided as stdin.\n\nEXAMPLES:\n    jsonlogic '{\"===\": [{\"var\": \"a\"}, \"foo\"]}' '{\"a\": \"foo\"}'\n    jsonlogic '{\"===\": [1, 1]}' null\n    echo '{\"a\": \"foo\"}' | jsonlogic '{\"===\": [{\"var\": \"a\"}, \"foo\"]}'\n\nInspired by and conformant with the original JsonLogic (jsonlogic.com).\n```\n\nRun `jsonlogic --help` the most up-to-date usage.\n\nAn example of chaining multiple results:\n\n``` sh\n$ echo '{\"a\": \"a\"}' \\\n    | jsonlogic '{\"if\": [{\"===\": [{\"var\": \"a\"}, \"a\"]}, {\"result\": true}, {\"result\": false}]}' \\\n    | jsonlogic '{\"if\": [{\"!!\": {\"var\": \"result\"}}, \"result was true\", \"result was false\"]}'\n\n\"result was true\"\n```\n\nUsing `jsonlogic` on the cmdline to explore an API:\n\n``` sh\n> curl -s \"https://catfact.ninja/facts?limit=5\"\n\n{\"current_page\":1,\"data\":[{\"fact\":\"The Egyptian Mau is probably the oldest breed of cat. In fact, the breed is so ancient that its name is the Egyptian word for \\u201ccat.\\u201d\",\"length\":132},{\"fact\":\"Julius Ceasar, Henri II, Charles XI, and Napoleon were all afraid of cats.\",\"length\":74},{\"fact\":\"Unlike humans, cats cannot detect sweetness which likely explains why they are not drawn to it at all.\",\"length\":102},{\"fact\":\"Cats can be taught to walk on a leash, but a lot of time and patience is required to teach them. The younger the cat is, the easier it will be for them to learn.\",\"length\":161},{\"fact\":\"Researchers believe the word \\u201ctabby\\u201d comes from Attabiyah, a neighborhood in Baghdad, Iraq. Tabbies got their name because their striped coats resembled the famous wavy patterns in the silk produced in this city.\",\"length\":212}],\"first_page_url\":\"https:\\/\\/catfact.ninja\\/facts?page=1\",\"from\":1,\"last_page\":67,\"last_page_url\":\"https:\\/\\/catfact.ninja\\/facts?page=67\",\"next_page_url\":\"https:\\/\\/catfact.ninja\\/facts?page=2\",\"path\":\"https:\\/\\/catfact.ninja\\/facts\",\"per_page\":\"5\",\"prev_page_url\":null,\"to\":5,\"total\":332}\n\n> curl -s \"https://catfact.ninja/facts?limit=5\" | jsonlogic '{\"var\": \"data\"}'\n\n[{\"fact\":\"A cat's appetite is the barometer of its health. Any cat that does not eat or drink for more than two days should be taken to a vet.\",\"length\":132},{\"fact\":\"Some notable people who disliked cats:  Napoleon Bonaparte, Dwight D. Eisenhower, Hitler.\",\"length\":89},{\"fact\":\"During the time of the Spanish Inquisition, Pope Innocent VIII condemned cats as evil and thousands of cats were burned. Unfortunately, the widespread killing of cats led to an explosion of the rat population, which exacerbated the effects of the Black Death.\",\"length\":259},{\"fact\":\"A cat has approximately 60 to 80 million olfactory cells (a human has between 5 and 20 million).\",\"length\":96},{\"fact\":\"In just seven years, a single pair of cats and their offspring could produce a staggering total of 420,000 kittens.\",\"length\":115}]\n\n> curl -s \"https://catfact.ninja/facts?limit=5\" | jsonlogic '{\"var\": \"data.0\"}'\n\n{\"fact\":\"A tiger's stripes are like fingerprints\",\"length\":39}\n\n> curl -s \"https://catfact.ninja/facts?limit=5\" | jsonlogic '{\"var\": \"data.0.fact\"}'\n\"Neutering a male cat will, in almost all cases, stop him from spraying (territorial marking), fighting with other males (at least over females), as well as lengthen his life and improve its quality.\"\n\n> curl -s \"https://catfact.ninja/facts?limit=5\" \\\n    | jsonlogic '{\"var\": \"data.0.fact\"}' \\\n    | jsonlogic '{\"in\": [\"cat\", {\"var\": \"\"}]}'\n\ntrue\n\n> curl -s \"https://catfact.ninja/facts?limit=5\" \\\n    | jsonlogic '{\"var\": \"data.0.fact\"}' \\\n    | jsonlogic '{\"in\": [\"cat\", {\"var\": \"\"}]}' \\\n    | jsonlogic '{\"if\": [{\"var\": \"\"}, \"fact contained cat\", \"fact did not contain cat\"]}'\n\n\"fact contained cat\"\n```\n\n## Building\n\n### Prerequisites\n\nYou must have Rust installed and `cargo` available in your `PATH`.\n\nIf you would like to build or test the Python distribution, Python 3.7 or\nnewer must be available in your `PATH`. The `venv` module must be part of the\nPython distribution (looking at you, Ubuntu).\n\nIf you would like to run tests for the WASM package, `node` 10 or newer must be\navailable in your `PATH`.\n\n### Rust\n\nTo build the Rust library, just run `cargo build`.\n\nYou can create a release build with `make build`.\n\n### WebAssembly\n\nYou can build a debug WASM release with\n\n```sh\nmake debug-wasm\n```\n\nYou can build a production WASM release with\n\n```sh\nmake build-wasm\n```\n\nThe built WASM package will be in `js/`. This package is directly importable\nfrom `node`, but needs to be browserified in order to be used in the browser.\n\n### Python\n\nTo perform a dev install of the Python package, run:\n\n```sh\nmake develop-py\n```\n\nThis will automatically create a virtual environment in `venv/`, install\nthe necessary packages, and then install `jsonlogic_rs` into that environment.\n\n**Note:** from our CI experiences, this may not work for Python 3.8 on Windows.\nIf you are running this on a Windows machine and can confirm whether or not\nthis works, let us know!\n\nTo build a production source distribution:\n\n```sh\nmake build-py-sdist\n```\n\nTo build a wheel (specific to your current system architecture and python\nversion):\n\n```sh\nmake build-py-wheel\n```\n\nThe python distribution consists both of the C extension generated from the\nRust and a thin wrapper found in `py/jsonlogic_rs/`. `make develop-py` will\ncompile the C extension and place it in that directory, where it will be\nimportable by your local venv. When building wheels, the wrapper and the C\nextension are all packaged together into the resultant wheel, which will\nbe found in `dist/`. When building an sdist, the Rust extension is not compiled.\nThe Rust and Python source are distributed together in a `.tar.gz` file, again\nfound in `dist/`.\n\n[jsonlogic]: http://jsonlogic.com/\n",
    "bugtrack_url": null,
    "license": null,
    "summary": "JsonLogic implemented with a Rust backend",
    "version": "0.3.3",
    "project_urls": {
        "Homepage": "https://www.github.com/bestowinc/json-logic-rs"
    },
    "split_keywords": [
        "json",
        " jsonlogic",
        " s-expressions",
        " rust"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "9111f1c0f13e6027b4379d049928ce2682ac9f1dde11751c41981b91bc4d1de4",
                "md5": "5dc29891cc1398b63a560fc42cef4b44",
                "sha256": "70145029a2bfbadbdda16bfc2d4235d9361826f91c38b18dc2f13f267e368e99"
            },
            "downloads": -1,
            "filename": "jsonlogic_rs-0.3.3-cp310-cp310-macosx_10_9_universal2.whl",
            "has_sig": false,
            "md5_digest": "5dc29891cc1398b63a560fc42cef4b44",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": null,
            "size": 629032,
            "upload_time": "2024-04-16T04:33:35",
            "upload_time_iso_8601": "2024-04-16T04:33:35.386982Z",
            "url": "https://files.pythonhosted.org/packages/91/11/f1c0f13e6027b4379d049928ce2682ac9f1dde11751c41981b91bc4d1de4/jsonlogic_rs-0.3.3-cp310-cp310-macosx_10_9_universal2.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "b4d71b662a9f9133f8c6b73e4ff3338af51de95b6a73026550dcd7490a822690",
                "md5": "04ae2d8a93c3ea386c0b1db9315fd7df",
                "sha256": "be7ce6a08b09bc461a01d0b522de15371eae22a3b45c53fede132ba240bfe360"
            },
            "downloads": -1,
            "filename": "jsonlogic_rs-0.3.3-cp310-cp310-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "04ae2d8a93c3ea386c0b1db9315fd7df",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": null,
            "size": 321679,
            "upload_time": "2024-04-16T04:33:36",
            "upload_time_iso_8601": "2024-04-16T04:33:36.567711Z",
            "url": "https://files.pythonhosted.org/packages/b4/d7/1b662a9f9133f8c6b73e4ff3338af51de95b6a73026550dcd7490a822690/jsonlogic_rs-0.3.3-cp310-cp310-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "61c9bda26a5d3cbc48d8e0187c87d246fed38a56def869133ef32339fd429ae9",
                "md5": "92f705bd71a89b4ceb8fc9a48cc453e2",
                "sha256": "7526f765c619e7bd554cdd1ec32918bca939d56984e2d628cd97aa3cae13af79"
            },
            "downloads": -1,
            "filename": "jsonlogic_rs-0.3.3-cp310-cp310-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "92f705bd71a89b4ceb8fc9a48cc453e2",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": null,
            "size": 313436,
            "upload_time": "2024-04-16T04:33:37",
            "upload_time_iso_8601": "2024-04-16T04:33:37.716556Z",
            "url": "https://files.pythonhosted.org/packages/61/c9/bda26a5d3cbc48d8e0187c87d246fed38a56def869133ef32339fd429ae9/jsonlogic_rs-0.3.3-cp310-cp310-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "803659d7df126cb549ba64ce543731cbb0cef10ced2887e17df0e023ecb2a6da",
                "md5": "ba65e1c66474a72d1f8d864c49a72394",
                "sha256": "1ab36ea985a460bd4e917e8fd6ee04bd7d7d13deb5281f3f651792e506a8b895"
            },
            "downloads": -1,
            "filename": "jsonlogic_rs-0.3.3-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "ba65e1c66474a72d1f8d864c49a72394",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": null,
            "size": 341150,
            "upload_time": "2024-04-16T04:33:39",
            "upload_time_iso_8601": "2024-04-16T04:33:39.418873Z",
            "url": "https://files.pythonhosted.org/packages/80/36/59d7df126cb549ba64ce543731cbb0cef10ced2887e17df0e023ecb2a6da/jsonlogic_rs-0.3.3-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "c346a75e3b0f400903c8845c19678c9c61b94317dad4641d175db86909ae1c79",
                "md5": "85f29f76a191c1f1553063ec3577b863",
                "sha256": "9e13eeeb6643dfa4528a7ba1e60780dccc1789d56dace6e4380b705a0602afd6"
            },
            "downloads": -1,
            "filename": "jsonlogic_rs-0.3.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "85f29f76a191c1f1553063ec3577b863",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": null,
            "size": 339225,
            "upload_time": "2024-04-16T04:33:41",
            "upload_time_iso_8601": "2024-04-16T04:33:41.144421Z",
            "url": "https://files.pythonhosted.org/packages/c3/46/a75e3b0f400903c8845c19678c9c61b94317dad4641d175db86909ae1c79/jsonlogic_rs-0.3.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "69e82b5151048f6ac768ba9f3fcf9c91776a650fbebcd16cdf28146d3292f5f3",
                "md5": "d2b3a79a57f1e683b92fabcd132feaf5",
                "sha256": "9da14ba61e862ebbaba6ed513e0ed8bcf2545b08a4bc3f71e1d8d2a91c68f796"
            },
            "downloads": -1,
            "filename": "jsonlogic_rs-0.3.3-cp310-cp310-musllinux_1_1_aarch64.whl",
            "has_sig": false,
            "md5_digest": "d2b3a79a57f1e683b92fabcd132feaf5",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": null,
            "size": 374552,
            "upload_time": "2024-04-16T04:33:42",
            "upload_time_iso_8601": "2024-04-16T04:33:42.617959Z",
            "url": "https://files.pythonhosted.org/packages/69/e8/2b5151048f6ac768ba9f3fcf9c91776a650fbebcd16cdf28146d3292f5f3/jsonlogic_rs-0.3.3-cp310-cp310-musllinux_1_1_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "abd47d845385bb1ec1a68f2dd5e74cbf3760cee0ef7aaa5fe12b3de962d6e551",
                "md5": "b3d0a124d62f8a96ac6c971892ad3260",
                "sha256": "7ca031aa9d9419e76c9630160820a9e1137ff6242f6f9b703c5475ad99c14f91"
            },
            "downloads": -1,
            "filename": "jsonlogic_rs-0.3.3-cp310-cp310-musllinux_1_1_x86_64.whl",
            "has_sig": false,
            "md5_digest": "b3d0a124d62f8a96ac6c971892ad3260",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": null,
            "size": 371735,
            "upload_time": "2024-04-16T04:33:43",
            "upload_time_iso_8601": "2024-04-16T04:33:43.897927Z",
            "url": "https://files.pythonhosted.org/packages/ab/d4/7d845385bb1ec1a68f2dd5e74cbf3760cee0ef7aaa5fe12b3de962d6e551/jsonlogic_rs-0.3.3-cp310-cp310-musllinux_1_1_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "f02c2cb57774db31128d964488a43e95d4fc9acac9981b881ad1301de7bea108",
                "md5": "756734142eb654c4ea5d82766d2c20d5",
                "sha256": "a3142c0b248df3eba480437745c5be8abafcdcb98c38ef04173c2c4bc14cc47d"
            },
            "downloads": -1,
            "filename": "jsonlogic_rs-0.3.3-cp311-cp311-macosx_10_9_universal2.whl",
            "has_sig": false,
            "md5_digest": "756734142eb654c4ea5d82766d2c20d5",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": null,
            "size": 629034,
            "upload_time": "2024-04-16T04:33:45",
            "upload_time_iso_8601": "2024-04-16T04:33:45.087490Z",
            "url": "https://files.pythonhosted.org/packages/f0/2c/2cb57774db31128d964488a43e95d4fc9acac9981b881ad1301de7bea108/jsonlogic_rs-0.3.3-cp311-cp311-macosx_10_9_universal2.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "72ad1392f80b961ee49fcd7955ea37de4c7be1faa08822cda6cf8b007930fb72",
                "md5": "7613a90fd8a66b75ea52067baa4b65b7",
                "sha256": "b0675bfa6b52d997f6280635c1f7f9668c640aa3682b74d0c27b765930ffacb4"
            },
            "downloads": -1,
            "filename": "jsonlogic_rs-0.3.3-cp311-cp311-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "7613a90fd8a66b75ea52067baa4b65b7",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": null,
            "size": 321679,
            "upload_time": "2024-04-16T04:33:47",
            "upload_time_iso_8601": "2024-04-16T04:33:47.002311Z",
            "url": "https://files.pythonhosted.org/packages/72/ad/1392f80b961ee49fcd7955ea37de4c7be1faa08822cda6cf8b007930fb72/jsonlogic_rs-0.3.3-cp311-cp311-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "8fefc3614f4c852c0678f2f5e0374b21b7ebd556012bb1984fb1961e0a832e65",
                "md5": "59c20fb342847a3ec48965f870ccc08c",
                "sha256": "8d01ed36b31b7a8b33bfabf2fd918a6dff15f50cea43f9eb42a21ab51411400e"
            },
            "downloads": -1,
            "filename": "jsonlogic_rs-0.3.3-cp311-cp311-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "59c20fb342847a3ec48965f870ccc08c",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": null,
            "size": 313433,
            "upload_time": "2024-04-16T04:33:48",
            "upload_time_iso_8601": "2024-04-16T04:33:48.807463Z",
            "url": "https://files.pythonhosted.org/packages/8f/ef/c3614f4c852c0678f2f5e0374b21b7ebd556012bb1984fb1961e0a832e65/jsonlogic_rs-0.3.3-cp311-cp311-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "abaddb69101dd5e0c2ed1821c1d017067639401f1a895f2916f530c0780aa726",
                "md5": "6f8020d6149fb8d30727781581123745",
                "sha256": "8662581aea125a2d41a93ccfb5ce374aeb8a403986f45b8c14939a2e0aeef300"
            },
            "downloads": -1,
            "filename": "jsonlogic_rs-0.3.3-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "6f8020d6149fb8d30727781581123745",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": null,
            "size": 341151,
            "upload_time": "2024-04-16T04:33:50",
            "upload_time_iso_8601": "2024-04-16T04:33:50.072564Z",
            "url": "https://files.pythonhosted.org/packages/ab/ad/db69101dd5e0c2ed1821c1d017067639401f1a895f2916f530c0780aa726/jsonlogic_rs-0.3.3-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "9090a3ff9781dc817053cbdb968b7942c90c3f97d81cb32fe346cca8143ddb32",
                "md5": "d449d720e6a8ce27b89e6030f1acf20e",
                "sha256": "ba4f31ae9f46df0ffe7a6a53435bd14c6e65b4f559f427243e04092d0bfed00a"
            },
            "downloads": -1,
            "filename": "jsonlogic_rs-0.3.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "d449d720e6a8ce27b89e6030f1acf20e",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": null,
            "size": 339223,
            "upload_time": "2024-04-16T04:33:51",
            "upload_time_iso_8601": "2024-04-16T04:33:51.780193Z",
            "url": "https://files.pythonhosted.org/packages/90/90/a3ff9781dc817053cbdb968b7942c90c3f97d81cb32fe346cca8143ddb32/jsonlogic_rs-0.3.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "bb68d7426e3783964cd8a867b5195ddb5c68eb6c4a316cbaaa164bc877af6ca1",
                "md5": "92a48ae95ea4770bd1b1ae3932df00e1",
                "sha256": "9d759c24b2919f911931f643a25daade6ed5c20898e524255e42d0c6b41a49bf"
            },
            "downloads": -1,
            "filename": "jsonlogic_rs-0.3.3-cp311-cp311-musllinux_1_1_aarch64.whl",
            "has_sig": false,
            "md5_digest": "92a48ae95ea4770bd1b1ae3932df00e1",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": null,
            "size": 374554,
            "upload_time": "2024-04-16T04:33:53",
            "upload_time_iso_8601": "2024-04-16T04:33:53.434194Z",
            "url": "https://files.pythonhosted.org/packages/bb/68/d7426e3783964cd8a867b5195ddb5c68eb6c4a316cbaaa164bc877af6ca1/jsonlogic_rs-0.3.3-cp311-cp311-musllinux_1_1_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "68d511ff6b4b9770e7d03d1c04692b3fbd4f522e78407bcb96af0eca8d7e15ce",
                "md5": "d986b63acd900727c39cbfcb485f5879",
                "sha256": "2c45467756a475ac4116b073678207e74909a9848abb40737d1c6f3be1fc7135"
            },
            "downloads": -1,
            "filename": "jsonlogic_rs-0.3.3-cp311-cp311-musllinux_1_1_x86_64.whl",
            "has_sig": false,
            "md5_digest": "d986b63acd900727c39cbfcb485f5879",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": null,
            "size": 371735,
            "upload_time": "2024-04-16T04:33:55",
            "upload_time_iso_8601": "2024-04-16T04:33:55.341788Z",
            "url": "https://files.pythonhosted.org/packages/68/d5/11ff6b4b9770e7d03d1c04692b3fbd4f522e78407bcb96af0eca8d7e15ce/jsonlogic_rs-0.3.3-cp311-cp311-musllinux_1_1_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "2a3fd86c8832edd9744e58558033274e207e689d236cbcfced39eed1124874e0",
                "md5": "5bb647d0fb38290ee48ffc844cde0884",
                "sha256": "a9cf7a8f9d0720b87736602d481945d12ded71a91c00d7631bb368a9630b83d9"
            },
            "downloads": -1,
            "filename": "jsonlogic_rs-0.3.3-cp312-cp312-macosx_10_9_universal2.whl",
            "has_sig": false,
            "md5_digest": "5bb647d0fb38290ee48ffc844cde0884",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": null,
            "size": 629033,
            "upload_time": "2024-04-16T04:33:57",
            "upload_time_iso_8601": "2024-04-16T04:33:57.110694Z",
            "url": "https://files.pythonhosted.org/packages/2a/3f/d86c8832edd9744e58558033274e207e689d236cbcfced39eed1124874e0/jsonlogic_rs-0.3.3-cp312-cp312-macosx_10_9_universal2.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "02901f03bf0e8ea1d8dd28553ac42507cd53b0716dd0d001cc3a52a2332cfa0c",
                "md5": "a0891efe1e753c2ff3ae84957f866021",
                "sha256": "f8f2a14f8610b142f0188b10418180d31199a5f5805182dd5657d362fc92a28c"
            },
            "downloads": -1,
            "filename": "jsonlogic_rs-0.3.3-cp312-cp312-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "a0891efe1e753c2ff3ae84957f866021",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": null,
            "size": 321680,
            "upload_time": "2024-04-16T04:33:58",
            "upload_time_iso_8601": "2024-04-16T04:33:58.411229Z",
            "url": "https://files.pythonhosted.org/packages/02/90/1f03bf0e8ea1d8dd28553ac42507cd53b0716dd0d001cc3a52a2332cfa0c/jsonlogic_rs-0.3.3-cp312-cp312-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "a7c123c7f06e79d4f42fe1f4b55b9cb876a4bd23dbbd51de3c10c2586c6ba417",
                "md5": "5c993c7b6c1fe1122d973189f3d826c9",
                "sha256": "6d36a825cbf5ed402c5a5b8cbef85f888bd54b6a496d439866b14011780fb392"
            },
            "downloads": -1,
            "filename": "jsonlogic_rs-0.3.3-cp312-cp312-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "5c993c7b6c1fe1122d973189f3d826c9",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": null,
            "size": 313436,
            "upload_time": "2024-04-16T04:33:59",
            "upload_time_iso_8601": "2024-04-16T04:33:59.528261Z",
            "url": "https://files.pythonhosted.org/packages/a7/c1/23c7f06e79d4f42fe1f4b55b9cb876a4bd23dbbd51de3c10c2586c6ba417/jsonlogic_rs-0.3.3-cp312-cp312-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "be717c68a57da05e4128d7270e57d7c417a2e5522f0accbfca5612043d7cdbb0",
                "md5": "deec2a6a80e344c2f22beed8c284eae4",
                "sha256": "f8f681fc1c245e44d84187ee43e98af93e0146426b77c5da55db556c1ee65000"
            },
            "downloads": -1,
            "filename": "jsonlogic_rs-0.3.3-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "deec2a6a80e344c2f22beed8c284eae4",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": null,
            "size": 341152,
            "upload_time": "2024-04-16T04:34:00",
            "upload_time_iso_8601": "2024-04-16T04:34:00.733060Z",
            "url": "https://files.pythonhosted.org/packages/be/71/7c68a57da05e4128d7270e57d7c417a2e5522f0accbfca5612043d7cdbb0/jsonlogic_rs-0.3.3-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "e433a86819058f557b15256be7185e0a97c7ef0f2e97a4a6522063160a4b9fba",
                "md5": "720ab6084db8465535083ed4aa244e99",
                "sha256": "387d03937ed3165e6d98d2086902c0ccd112f9dfea181b07f7d34a0f91421022"
            },
            "downloads": -1,
            "filename": "jsonlogic_rs-0.3.3-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "720ab6084db8465535083ed4aa244e99",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": null,
            "size": 339224,
            "upload_time": "2024-04-16T04:34:01",
            "upload_time_iso_8601": "2024-04-16T04:34:01.965333Z",
            "url": "https://files.pythonhosted.org/packages/e4/33/a86819058f557b15256be7185e0a97c7ef0f2e97a4a6522063160a4b9fba/jsonlogic_rs-0.3.3-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "cbd4e92637a94758a3727f96f900a77375709439439833f029fb57e1c310c875",
                "md5": "ef9534cf59775ecd5d6ee67793d9935c",
                "sha256": "a44e1d3b14474ab49be6e1635dfef776ee2e6722b3efa9fe4f51d2d6bc415c11"
            },
            "downloads": -1,
            "filename": "jsonlogic_rs-0.3.3-cp312-cp312-musllinux_1_1_aarch64.whl",
            "has_sig": false,
            "md5_digest": "ef9534cf59775ecd5d6ee67793d9935c",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": null,
            "size": 374554,
            "upload_time": "2024-04-16T04:34:04",
            "upload_time_iso_8601": "2024-04-16T04:34:04.570789Z",
            "url": "https://files.pythonhosted.org/packages/cb/d4/e92637a94758a3727f96f900a77375709439439833f029fb57e1c310c875/jsonlogic_rs-0.3.3-cp312-cp312-musllinux_1_1_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "8c936335c3fd36841669dcd47523c131675e2338224d6dad4a5657cd0f4a4292",
                "md5": "5b788fa1482491acb52f46726d8f0f30",
                "sha256": "b8661f69c21636151108305ffbb9503ff62c9d6ea4882d5d96fbe207136e3fdb"
            },
            "downloads": -1,
            "filename": "jsonlogic_rs-0.3.3-cp312-cp312-musllinux_1_1_x86_64.whl",
            "has_sig": false,
            "md5_digest": "5b788fa1482491acb52f46726d8f0f30",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": null,
            "size": 371739,
            "upload_time": "2024-04-16T04:34:05",
            "upload_time_iso_8601": "2024-04-16T04:34:05.766833Z",
            "url": "https://files.pythonhosted.org/packages/8c/93/6335c3fd36841669dcd47523c131675e2338224d6dad4a5657cd0f4a4292/jsonlogic_rs-0.3.3-cp312-cp312-musllinux_1_1_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "1266778c27f96017e55b7627dea06f3e5a61360fb9b28cbffaff710792137f90",
                "md5": "1f86468414fb454ed741c7df96c2ef83",
                "sha256": "572fb167dfaffdf612f21eddee67c850bed7a8c017a9dc335973f64da2b14490"
            },
            "downloads": -1,
            "filename": "jsonlogic_rs-0.3.3-cp37-cp37m-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "1f86468414fb454ed741c7df96c2ef83",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": null,
            "size": 302728,
            "upload_time": "2024-04-16T04:34:07",
            "upload_time_iso_8601": "2024-04-16T04:34:07.530578Z",
            "url": "https://files.pythonhosted.org/packages/12/66/778c27f96017e55b7627dea06f3e5a61360fb9b28cbffaff710792137f90/jsonlogic_rs-0.3.3-cp37-cp37m-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "c43cb4c87f6ca5c7be8a7435297780ba320c25a1bc3618fec7cd1a9154e12980",
                "md5": "07e5e50b005c4d381206416fd99d4ebf",
                "sha256": "86677505c4f1f6a6bf288c5c030ca92ab0361ad82da538462003be44e2dfb346"
            },
            "downloads": -1,
            "filename": "jsonlogic_rs-0.3.3-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "07e5e50b005c4d381206416fd99d4ebf",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": null,
            "size": 341243,
            "upload_time": "2024-04-16T04:34:08",
            "upload_time_iso_8601": "2024-04-16T04:34:08.729983Z",
            "url": "https://files.pythonhosted.org/packages/c4/3c/b4c87f6ca5c7be8a7435297780ba320c25a1bc3618fec7cd1a9154e12980/jsonlogic_rs-0.3.3-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "b26d0b117b7d266c879b12b42ada7e5763b8a4f2af972804e99afa83fbec2f58",
                "md5": "50a894d450905435fce30169539af9b5",
                "sha256": "d13edd9552503bd8a05ac6a06b790c7d89a499c420a3b23c8650d050089e7f9a"
            },
            "downloads": -1,
            "filename": "jsonlogic_rs-0.3.3-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "50a894d450905435fce30169539af9b5",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": null,
            "size": 339167,
            "upload_time": "2024-04-16T04:34:10",
            "upload_time_iso_8601": "2024-04-16T04:34:10.101843Z",
            "url": "https://files.pythonhosted.org/packages/b2/6d/0b117b7d266c879b12b42ada7e5763b8a4f2af972804e99afa83fbec2f58/jsonlogic_rs-0.3.3-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "704c9fd78d0958d1ccfeb24e2616cf7478bcdb0e90fa0cca96b7647bb1a9c6e6",
                "md5": "e646992ac484aad40c0be7f04a10757a",
                "sha256": "5d3e84eaba0728272828cc9c638447c3acd1b111302a06d6a6f6d866548c84a1"
            },
            "downloads": -1,
            "filename": "jsonlogic_rs-0.3.3-cp37-cp37m-musllinux_1_1_aarch64.whl",
            "has_sig": false,
            "md5_digest": "e646992ac484aad40c0be7f04a10757a",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": null,
            "size": 374811,
            "upload_time": "2024-04-16T04:34:11",
            "upload_time_iso_8601": "2024-04-16T04:34:11.741389Z",
            "url": "https://files.pythonhosted.org/packages/70/4c/9fd78d0958d1ccfeb24e2616cf7478bcdb0e90fa0cca96b7647bb1a9c6e6/jsonlogic_rs-0.3.3-cp37-cp37m-musllinux_1_1_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "b0f62fcb53e8d9b40d81a99a369d0a49d42a107151064297f12d2d80bc20015f",
                "md5": "3276a755ff43f7f459bb57f796d79194",
                "sha256": "1f9a24d3c833a2f5396c7bf87fcc89f73d67c43abaa799eef1e2c7ac65c1907b"
            },
            "downloads": -1,
            "filename": "jsonlogic_rs-0.3.3-cp37-cp37m-musllinux_1_1_x86_64.whl",
            "has_sig": false,
            "md5_digest": "3276a755ff43f7f459bb57f796d79194",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": null,
            "size": 371636,
            "upload_time": "2024-04-16T04:34:13",
            "upload_time_iso_8601": "2024-04-16T04:34:13.110264Z",
            "url": "https://files.pythonhosted.org/packages/b0/f6/2fcb53e8d9b40d81a99a369d0a49d42a107151064297f12d2d80bc20015f/jsonlogic_rs-0.3.3-cp37-cp37m-musllinux_1_1_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "baeb8e8e9ec6f2fe071522bd28c454e78f6923f729b2deea5609361e451a73a2",
                "md5": "4093d79c53dc0aad4f02f05806460efb",
                "sha256": "75b16ebb8fe8642457fc9c5ed51046892085fb10a10551e8a9f8508e3e1f8d4e"
            },
            "downloads": -1,
            "filename": "jsonlogic_rs-0.3.3-cp38-cp38-macosx_10_9_universal2.whl",
            "has_sig": false,
            "md5_digest": "4093d79c53dc0aad4f02f05806460efb",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": null,
            "size": 629022,
            "upload_time": "2024-04-16T04:34:14",
            "upload_time_iso_8601": "2024-04-16T04:34:14.281779Z",
            "url": "https://files.pythonhosted.org/packages/ba/eb/8e8e9ec6f2fe071522bd28c454e78f6923f729b2deea5609361e451a73a2/jsonlogic_rs-0.3.3-cp38-cp38-macosx_10_9_universal2.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "8b5b87bb2882caf9a89ddb4e5532e472298cfd03515218fd808b70c7f6b5861d",
                "md5": "bc6777fb9aca1d3f7b214e6d95ed02e2",
                "sha256": "7db0a0e93614df3319a07f14b4bb5415d3fb0ba4a6336c5caf87098c495ec1a5"
            },
            "downloads": -1,
            "filename": "jsonlogic_rs-0.3.3-cp38-cp38-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "bc6777fb9aca1d3f7b214e6d95ed02e2",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": null,
            "size": 321676,
            "upload_time": "2024-04-16T04:34:15",
            "upload_time_iso_8601": "2024-04-16T04:34:15.693547Z",
            "url": "https://files.pythonhosted.org/packages/8b/5b/87bb2882caf9a89ddb4e5532e472298cfd03515218fd808b70c7f6b5861d/jsonlogic_rs-0.3.3-cp38-cp38-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "915d7c09a5a181df919e99bb80c194212235bf5ddbbe6f8a9cebce4c06097ab8",
                "md5": "216730f01644b7b8bfd28f15ef0898dc",
                "sha256": "33e910f1915cdc01d26d46cba7019e8a3e3885a599081a29e351dde0247be436"
            },
            "downloads": -1,
            "filename": "jsonlogic_rs-0.3.3-cp38-cp38-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "216730f01644b7b8bfd28f15ef0898dc",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": null,
            "size": 313429,
            "upload_time": "2024-04-16T04:34:17",
            "upload_time_iso_8601": "2024-04-16T04:34:17.884686Z",
            "url": "https://files.pythonhosted.org/packages/91/5d/7c09a5a181df919e99bb80c194212235bf5ddbbe6f8a9cebce4c06097ab8/jsonlogic_rs-0.3.3-cp38-cp38-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "253b527c025caf8aa654e000159cd1b956ad21b2cce1da94c1c8d9f41f53cd02",
                "md5": "f081e8894edd9ac9cf8c54b87bdbccea",
                "sha256": "a03e49337b284c67afb8267d57c1b89d26136604a87a215cdd8f44592bf464cc"
            },
            "downloads": -1,
            "filename": "jsonlogic_rs-0.3.3-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "f081e8894edd9ac9cf8c54b87bdbccea",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": null,
            "size": 341156,
            "upload_time": "2024-04-16T04:34:20",
            "upload_time_iso_8601": "2024-04-16T04:34:20.057989Z",
            "url": "https://files.pythonhosted.org/packages/25/3b/527c025caf8aa654e000159cd1b956ad21b2cce1da94c1c8d9f41f53cd02/jsonlogic_rs-0.3.3-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "2077178989963bb1adc34614ebcabee6e04b4245b9cc51ee341b9d82a02625f7",
                "md5": "d2dc72f28f128adc87f44cf13b71209d",
                "sha256": "333887ed7a427a279548659a233bc07cb9904e5bfbb31064853bf263c4b27fdc"
            },
            "downloads": -1,
            "filename": "jsonlogic_rs-0.3.3-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "d2dc72f28f128adc87f44cf13b71209d",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": null,
            "size": 339238,
            "upload_time": "2024-04-16T04:34:21",
            "upload_time_iso_8601": "2024-04-16T04:34:21.357106Z",
            "url": "https://files.pythonhosted.org/packages/20/77/178989963bb1adc34614ebcabee6e04b4245b9cc51ee341b9d82a02625f7/jsonlogic_rs-0.3.3-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "fda04ad6d1ca44474c8b2ede3507ef3ec002e879a08e8d0163e350937ab71212",
                "md5": "5902eceab3921cbc44bbe89f2d197abb",
                "sha256": "1aba533b7da58a0aa94d74c2edfd3a16efaf1b84bcf72a15f30c60d87c23f4eb"
            },
            "downloads": -1,
            "filename": "jsonlogic_rs-0.3.3-cp38-cp38-musllinux_1_1_aarch64.whl",
            "has_sig": false,
            "md5_digest": "5902eceab3921cbc44bbe89f2d197abb",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": null,
            "size": 374567,
            "upload_time": "2024-04-16T04:34:22",
            "upload_time_iso_8601": "2024-04-16T04:34:22.573652Z",
            "url": "https://files.pythonhosted.org/packages/fd/a0/4ad6d1ca44474c8b2ede3507ef3ec002e879a08e8d0163e350937ab71212/jsonlogic_rs-0.3.3-cp38-cp38-musllinux_1_1_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "1542c38539c8eec4d052ddd13dee2f21b197abc302fb54fbf23c606b2261e519",
                "md5": "24aee23cd9ef16007f8fcfd7dacd748d",
                "sha256": "70e01154d2f398d1fb3e1fd9dbe5cc547c88d60c808d4ecca04ab98d4a2df233"
            },
            "downloads": -1,
            "filename": "jsonlogic_rs-0.3.3-cp38-cp38-musllinux_1_1_x86_64.whl",
            "has_sig": false,
            "md5_digest": "24aee23cd9ef16007f8fcfd7dacd748d",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": null,
            "size": 371724,
            "upload_time": "2024-04-16T04:34:23",
            "upload_time_iso_8601": "2024-04-16T04:34:23.782576Z",
            "url": "https://files.pythonhosted.org/packages/15/42/c38539c8eec4d052ddd13dee2f21b197abc302fb54fbf23c606b2261e519/jsonlogic_rs-0.3.3-cp38-cp38-musllinux_1_1_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "97d94fc95fa14259ccfa47bd432250848331cfdd5ea2e1eaa3ce3258a61f6c27",
                "md5": "d89b89d5c77b4646513f1b43a299e4ff",
                "sha256": "29eced0d65bd872013f2bd6903117563f480167fc83f416e2c698e91e2f89728"
            },
            "downloads": -1,
            "filename": "jsonlogic_rs-0.3.3-cp39-cp39-macosx_10_9_universal2.whl",
            "has_sig": false,
            "md5_digest": "d89b89d5c77b4646513f1b43a299e4ff",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": null,
            "size": 629022,
            "upload_time": "2024-04-16T04:34:25",
            "upload_time_iso_8601": "2024-04-16T04:34:25.185885Z",
            "url": "https://files.pythonhosted.org/packages/97/d9/4fc95fa14259ccfa47bd432250848331cfdd5ea2e1eaa3ce3258a61f6c27/jsonlogic_rs-0.3.3-cp39-cp39-macosx_10_9_universal2.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "f84e385f370fbc5439539e3713ab5d54f4fd797b3c30dba7eece90c66ba7f6f9",
                "md5": "cf2efe3d1221a9abd6116fd382bf5f3b",
                "sha256": "e41dfdd175f000710adac6206897c5b9ef3b73e6b2cb06d47320253b30ac0017"
            },
            "downloads": -1,
            "filename": "jsonlogic_rs-0.3.3-cp39-cp39-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "cf2efe3d1221a9abd6116fd382bf5f3b",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": null,
            "size": 321672,
            "upload_time": "2024-04-16T04:34:26",
            "upload_time_iso_8601": "2024-04-16T04:34:26.334126Z",
            "url": "https://files.pythonhosted.org/packages/f8/4e/385f370fbc5439539e3713ab5d54f4fd797b3c30dba7eece90c66ba7f6f9/jsonlogic_rs-0.3.3-cp39-cp39-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "8adad5a36c377e03671437435c6da90b6ed963d162a46f415b64471789d7aa98",
                "md5": "8235d14aa6a5c30b09acb7f9c29b0e4f",
                "sha256": "1883857c319ccf6cc64534edcb6aa13d3902af753a2cb3942cc600b4cadc3a4d"
            },
            "downloads": -1,
            "filename": "jsonlogic_rs-0.3.3-cp39-cp39-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "8235d14aa6a5c30b09acb7f9c29b0e4f",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": null,
            "size": 313426,
            "upload_time": "2024-04-16T04:34:27",
            "upload_time_iso_8601": "2024-04-16T04:34:27.707751Z",
            "url": "https://files.pythonhosted.org/packages/8a/da/d5a36c377e03671437435c6da90b6ed963d162a46f415b64471789d7aa98/jsonlogic_rs-0.3.3-cp39-cp39-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "0d23f508a25bad56fae350f6ce49d08e5bf31650ad2f972a0b00900c56139529",
                "md5": "1192c1692dfb21c0aac7a2227cfbea86",
                "sha256": "b39fab3e24aa68a3e55eca701d7f40c9839f7497b10475e94c0a02c5698f1438"
            },
            "downloads": -1,
            "filename": "jsonlogic_rs-0.3.3-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "1192c1692dfb21c0aac7a2227cfbea86",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": null,
            "size": 341149,
            "upload_time": "2024-04-16T04:34:29",
            "upload_time_iso_8601": "2024-04-16T04:34:29.416854Z",
            "url": "https://files.pythonhosted.org/packages/0d/23/f508a25bad56fae350f6ce49d08e5bf31650ad2f972a0b00900c56139529/jsonlogic_rs-0.3.3-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "fb64826ee9f18ee434936e2b9f9a6b14755ea0b32a3cf8642e7da2aef9db412b",
                "md5": "47e0db06cd095d6b0fb7ba379a3aab15",
                "sha256": "2e5ed0ad07560c2fc4c69cc0bc9f667ec300d58becea9f857fee52d66eef193b"
            },
            "downloads": -1,
            "filename": "jsonlogic_rs-0.3.3-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "47e0db06cd095d6b0fb7ba379a3aab15",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": null,
            "size": 339221,
            "upload_time": "2024-04-16T04:34:30",
            "upload_time_iso_8601": "2024-04-16T04:34:30.657975Z",
            "url": "https://files.pythonhosted.org/packages/fb/64/826ee9f18ee434936e2b9f9a6b14755ea0b32a3cf8642e7da2aef9db412b/jsonlogic_rs-0.3.3-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "eecb25d609e0595c2bd937fd12b90699996a716a2d9583657a651a7692a876da",
                "md5": "11b26f8657b1f4d9944268b1e39e8c79",
                "sha256": "1cdad0cb10ffabca32b58a19b2756f1a64ba3623434027272694e497263cb8f3"
            },
            "downloads": -1,
            "filename": "jsonlogic_rs-0.3.3-cp39-cp39-musllinux_1_1_aarch64.whl",
            "has_sig": false,
            "md5_digest": "11b26f8657b1f4d9944268b1e39e8c79",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": null,
            "size": 374550,
            "upload_time": "2024-04-16T04:34:31",
            "upload_time_iso_8601": "2024-04-16T04:34:31.822066Z",
            "url": "https://files.pythonhosted.org/packages/ee/cb/25d609e0595c2bd937fd12b90699996a716a2d9583657a651a7692a876da/jsonlogic_rs-0.3.3-cp39-cp39-musllinux_1_1_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "9870fbf2c707b89f9b8cff766d8cb0becb824eb4f6f30a181076002f679de73b",
                "md5": "3f129887007faa79a9f046476822bdc4",
                "sha256": "bf840961d69f81220b0ccdc1ac24b20e56702ebcff5f14940000fffdb078d68d"
            },
            "downloads": -1,
            "filename": "jsonlogic_rs-0.3.3-cp39-cp39-musllinux_1_1_x86_64.whl",
            "has_sig": false,
            "md5_digest": "3f129887007faa79a9f046476822bdc4",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": null,
            "size": 371732,
            "upload_time": "2024-04-16T04:34:32",
            "upload_time_iso_8601": "2024-04-16T04:34:32.988216Z",
            "url": "https://files.pythonhosted.org/packages/98/70/fbf2c707b89f9b8cff766d8cb0becb824eb4f6f30a181076002f679de73b/jsonlogic_rs-0.3.3-cp39-cp39-musllinux_1_1_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "f48f4907679d09dc866efd312aa60d47e2e447df7a6f01e8204d607d36e306e0",
                "md5": "ad0ca6854b208af739ad370cbcd943af",
                "sha256": "1d1f4337419357055a906954b5366007d575f8315f48bc5863305c56d91cdb65"
            },
            "downloads": -1,
            "filename": "jsonlogic_rs-0.3.3.tar.gz",
            "has_sig": false,
            "md5_digest": "ad0ca6854b208af739ad370cbcd943af",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": null,
            "size": 35407,
            "upload_time": "2024-04-16T04:33:02",
            "upload_time_iso_8601": "2024-04-16T04:33:02.340096Z",
            "url": "https://files.pythonhosted.org/packages/f4/8f/4907679d09dc866efd312aa60d47e2e447df7a6f01e8204d607d36e306e0/jsonlogic_rs-0.3.3.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2024-04-16 04:33:02",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "bestowinc",
    "github_project": "json-logic-rs",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": true,
    "lcname": "jsonlogic-rs"
}
        
Elapsed time: 0.23401s