[package]
name = "async_jsonata_rust"
version = "0.1.0"
edition = "2021"
rust-version = "1.78"
description = "Async-first JSONata parser/runtime crate with stable Rust API facade"
readme = "README.md"
license = "MIT"
documentation = "https://docs.rs/async_jsonata_rust"
homepage = "https://docs.jsonata.org/"
repository = "https://github.com/lajasoft/async_jsonata_rs"
keywords = ["jsonata", "json", "query", "transform", "async"]
categories = ["parser-implementations", "asynchronous"]
[lib]
name = "async_jsonata_rust"
path = "src/lib.rs"
[dependencies]
serde = { version = "1.0", features = ["derive"] }
serde_json = { version = "1.0", features = ["preserve_order"] }
rand = "0.9"
futures = "0.3"
ryu = "1.0"
base64 = "0.22"
percent-encoding = "2.3"
[package.metadata.docs.rs]
all-features = true
rustdoc-args = ["--cfg", "docsrs"]