-
Notifications
You must be signed in to change notification settings - Fork 32
Expand file tree
/
Copy pathCargo.toml
More file actions
36 lines (31 loc) · 1.04 KB
/
Cargo.toml
File metadata and controls
36 lines (31 loc) · 1.04 KB
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
[package]
name = "jsonpath-rust"
description = "The library provides the basic functionality to find the set of the data according to the filtering query."
version = "1.0.4"
authors = ["BorisZhguchev <zhguchev@gmail.com>"]
edition = "2021"
license = "MIT"
homepage = "https://github.com/besok/jsonpath-rust"
repository = "https://github.com/besok/jsonpath-rust"
readme = "README.md"
keywords = ["json", "json-path", "jsonpath", "jsonpath-rust", "xpath"]
categories = ["development-tools", "parsing", "text-processing"]
[dependencies]
serde_json = "1.0"
regex = "1"
pest = "2.7.15"
pest_derive = "2.7.15"
thiserror = "2.0.9"
jsonpath-rust-impl = {path = "jsonpath-rust-impl", optional = true, version = "0.1.0"}
jsonpath-ast = {path = "jsonpath-ast", version = "0.1.0", features = ["compiled-path"]}
[dev-dependencies]
serde = { version = "1.0", features = ["derive"] }
criterion = "0.5.1"
[features]
compiled-path = ["jsonpath-ast/compiled-path", "dep:jsonpath-rust-impl"]
[[bench]]
name = "regex"
harness = false
[[bench]]
name = "equal"
harness = false