[package]
edition = "2024"
name = "jsonette-core"
version = "0.3.0"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "JSON parse, format, query, and diagnostics engine — core library for the jsonette tool"
homepage = "https://github.com/dev-ette/jsonette"
readme = "README.md"
keywords = [
"json",
"jsonpath",
"parser",
"format",
"query",
]
categories = [
"parser-implementations",
"encoding",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/dev-ette/jsonette"
resolver = "2"
[lib]
name = "jsonette"
crate-type = [
"staticlib",
"cdylib",
"rlib",
]
path = "src/lib.rs"
[[bin]]
name = "uniffi-bindgen"
path = "src/bin/uniffi-bindgen.rs"
[[test]]
name = "api_tests"
path = "tests/api_tests.rs"
[[test]]
name = "bindgen_tests"
path = "tests/bindgen_tests.rs"
[[test]]
name = "prop_tests"
path = "tests/prop_tests.rs"
[dependencies.serde]
version = "1.0"
features = ["derive"]
[dependencies.serde_json]
version = "1"
features = ["preserve_order"]
[dependencies.serde_json_path]
version = "0.7"
[dependencies.uniffi]
version = "0.32.0"
features = ["cli"]
[dev-dependencies.proptest]
version = "1.11"