Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/hiltontj/serde_json_path
Query serde_json Values with JSONPath
https://github.com/hiltontj/serde_json_path
json json-path jsonpath rust serde serde-json
Last synced: 5 days ago
JSON representation
Query serde_json Values with JSONPath
- Host: GitHub
- URL: https://github.com/hiltontj/serde_json_path
- Owner: hiltontj
- License: mit
- Created: 2023-02-12T20:23:07.000Z (almost 2 years ago)
- Default Branch: main
- Last Pushed: 2025-01-13T22:52:17.000Z (24 days ago)
- Last Synced: 2025-01-25T12:04:30.965Z (12 days ago)
- Topics: json, json-path, jsonpath, rust, serde, serde-json
- Language: Rust
- Homepage: https://serdejsonpath.live/
- Size: 422 KB
- Stars: 55
- Watchers: 3
- Forks: 6
- Open Issues: 8
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE-MIT
Awesome Lists containing this project
README
# 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