-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
24 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
# JSON Search | ||
|
||
Library for searching a JSON structure for certain paths. | ||
|
||
> **Warning** | ||
> This library is work in progress and should not be used in production yet. | ||
## Usage | ||
|
||
Because this library is still work in progress, it's not available on crates.io yet. But if you want to play around with | ||
this unstable version, you can add this as a git dependency like so: | ||
|
||
```toml | ||
json_path = { git = "https://github.com/jumpdrive-dev/Json-Search", rev = "<commit to use>" } | ||
``` | ||
|
||
## Features | ||
|
||
This is a list of current and future features that this library supports: | ||
|
||
- [x] Resolving paths for a [Serde JSON](https://github.com/serde-rs/json) based on a search path. | ||
- [x] Support for additional resolution modes like optional and wildcard resolution. | ||
- [ ] Ability to perform operations on a per-path basis. | ||
- [ ] Ability to perform bulk operation based on a json search. |