[[bench]]
harness = false
name = "performance"
path = "benches/performance.rs"
[[bin]]
name = "xqpath"
path = "src/cli.rs"
[dependencies.serde]
features = ["derive"]
version = "1.0"
[dependencies.serde_json]
version = "1.0"
[dependencies.serde_yaml]
version = "0.9"
[dependencies.winnow]
version = "0.5"
[dev-dependencies.criterion]
features = ["html_reports"]
version = "0.5"
[[example]]
name = "advanced_functions_demo"
path = "examples/advanced_functions_demo.rs"
[[example]]
name = "api_integration"
path = "examples/api_integration.rs"
[[example]]
name = "builtin_functions_demo"
path = "examples/builtin_functions_demo.rs"
[[example]]
name = "conditional_expressions_demo"
path = "examples/conditional_expressions_demo.rs"
[[example]]
name = "error_handling_demo"
path = "examples/error_handling_demo.rs"
[[example]]
name = "expression_demo"
path = "examples/expression_demo.rs"
[[example]]
name = "performance_demo"
path = "examples/performance_demo.rs"
[features]
default = []
update = []
[lib]
name = "xqpath"
path = "src/lib.rs"
[package]
authors = ["Thne"]
autobenches = false
autobins = false
autoexamples = false
autolib = false
autotests = false
build = false
categories = ["command-line-utilities", "parsing"]
description = "A minimal jq-like path extractor and updater for structured data in Rust"
edition = "2021"
keywords = ["json", "yaml", "path", "query", "jq"]
license = "Apache-2.0"
name = "xqpath"
readme = "README.md"
repository = "https://github.com/ThneS/xqpath"
version = "1.2.2"
[[test]]
name = "advanced_functions"
path = "tests/advanced_functions.rs"
[[test]]
name = "builtin_functions"
path = "tests/builtin_functions.rs"
[[test]]
name = "conditional_expressions"
path = "tests/conditional_expressions.rs"
[[test]]
name = "error_handling"
path = "tests/error_handling.rs"
[[test]]
name = "integration"
path = "tests/integration.rs"