-
Notifications
You must be signed in to change notification settings - Fork 29
/
Copy pathCargo.toml
32 lines (27 loc) · 801 Bytes
/
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
[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.1"
authors = ["BorisZhguchev <[email protected]>"]
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"
[dev-dependencies]
serde = { version = "1.0", features = ["derive"] }
criterion = "0.5.1"
[[bench]]
name = "regex"
harness = false
[[bench]]
name = "equal"
harness = false