[package]
edition = "2021"
name = "jsonpath-rust"
version = "1.0.5"
authors = ["BorisZhguchev <zhguchev@gmail.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "The library provides the basic functionality to find the set of the data according to the filtering query."
homepage = "https://github.com/besok/jsonpath-rust"
readme = "README.md"
keywords = [
"json",
"json-path",
"jsonpath",
"jsonpath-rust",
"xpath",
]
categories = [
"development-tools",
"parsing",
"text-processing",
]
license = "MIT"
repository = "https://github.com/besok/jsonpath-rust"
[lib]
name = "jsonpath_rust"
path = "src/lib.rs"
[[bench]]
name = "equal"
path = "benches/equal.rs"
harness = false
[[bench]]
name = "regex"
path = "benches/regex.rs"
harness = false
[dependencies.pest]
version = "2.7.15"
[dependencies.pest_derive]
version = "2.7.15"
[dependencies.regex]
version = "1"
[dependencies.serde_json]
version = "1.0"
[dependencies.thiserror]
version = "2.0.9"
[dev-dependencies.criterion]
version = "0.5.1"
[dev-dependencies.serde]
version = "1.0"
features = ["derive"]