-
Notifications
You must be signed in to change notification settings - Fork 1
/
Cargo.toml
38 lines (32 loc) · 1.06 KB
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
[package]
name = "jsonpath-plus"
version = "0.1.9"
edition = "2021"
categories = ["parser-implementations", "api-bindings"]
keywords = ["jsonpath", "json", "query"]
description = """A JSONPath implementation in Rust, compliant with the Proposal A specification as well as including
several extensions such as parent and subpath selectors."""
license = "MIT/Apache-2.0"
readme = "README.md"
repository = "https://github.com/CraftSpider/jsonpath-plus"
[dependencies]
chumsky = { version = "0.8", default-features = false }
serde_json = "1.0"
either = "1.6"
[dev-dependencies]
serde = { version = "1.0", features = ["derive"] }
criterion = { version = "0.4", features = ["html_reports"] }
pprof = { version = "0.11", features = ["flamegraph", "criterion"] }
jsonpath_lib = "0.3"
[features]
# Whether the parsed paths should preserve token spans referencing where in the provided path they came from
spanned = []
[[bench]]
name = "benchmarks"
harness = false
[[bench]]
name = "compare"
harness = false
[package.metadata.docs.rs]
all-features = true
rustdoc-args = ["--cfg", "docsrs"]