File: Cargo.toml.orig

package info (click to toggle)
rust-serde-json-path 0.7.2-1
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 680 kB
  • sloc: makefile: 2
file content (41 lines) | stat: -rw-r--r-- 1,096 bytes parent folder | download
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
39
40
41
[package]
name = "serde_json_path"
version = "0.7.2"
edition = "2021"
license = "MIT"
authors = ["Trevor Hilton <trevor.hilton@gmail.com>"]
description = "Query serde_json Values using JSONPath"
documentation = "https://docs.rs/serde_json_path"
repository = "https://github.com/hiltontj/serde_json_path"
readme = "README.md"
keywords = ["json", "jsonpath", "json_path", "serde", "serde_json"]

[features]
default = ["functions", "regex"]
regex = ["dep:regex"]
trace = ["dep:tracing", "serde_json_path_core/trace"]
functions = ["serde_json_path_core/functions"]

[dependencies]
# local crates:
serde_json_path_core = { path = "../serde_json_path_core", version = "0.2.2" }
serde_json_path_macros = { path = "../serde_json_path_macros", version = "0.1.6" }

# crates.io crates:
inventory.workspace = true
nom.workspace = true
serde.workspace = true
serde_json.workspace = true
thiserror.workspace = true

[dependencies.regex]
workspace = true
optional = true

[dependencies.tracing]
workspace = true
optional = true

[dev-dependencies]
test-log.workspace = true
tracing-subscriber.workspace = true