File: README.md

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 (30 lines) | stat: -rw-r--r-- 1,472 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
# serde_json_path

`serde_json_path` allows you to use JSONPath ([RFC 9535][rfc]) to query the [`serde_json::Value`][serde_json_value] type.

[![Build status](https://github.com/hiltontj/serde_json_path/actions/workflows/ci.yml/badge.svg?branch=main)](https://github.com/hiltontj/serde_json_path/actions/workflows/ci.yml)
[![Crates.io](https://img.shields.io/crates/v/serde_json_path)](https://crates.io/crates/serde_json_path)
[![Documentation](https://docs.rs/serde_json_path/badge.svg)][docs]
[![CTS Submodule Update and Test](https://github.com/hiltontj/serde_json_path/actions/workflows/cts.yml/badge.svg)](https://github.com/hiltontj/serde_json_path/actions/workflows/cts.yml)

## Learn More

* See the [Crate Documentation][docs] for usage and examples.
* See the JSONPath standard ([RFC 9535][rfc]) for more details about JSONPath query syntax and examples of its usage.
* Try it out in the [Sandbox](https://serdejsonpath.live)

## License

This project is licensed under the [MIT license][license].

### Contribution

Unless you explicitly state otherwise, any contribution intentionally submitted
for inclusion in `serde_json_path` by you, shall be licensed as MIT, without any
additional terms or conditions.

[rfc]: https://www.rfc-editor.org/rfc/rfc9535.html
[docs]: https://docs.rs/serde_json_path
[serde_json_value]: https://docs.rs/serde_json/latest/serde_json/enum.Value.html
[license]: https://github.com/hiltontj/serde_json_path/blob/main/LICENSE-MIT