jsonpath-rs
jsonpath-rs copied to clipboard
JSONPath for Rust
like this, is support? ```json [ {}, {} ] ```
I'm writing a converter from json to prometheus metrics format. I have a config that look like: ```yaml path: $.buffer_pools.* name: buffer_pool # | labels: # | - name: type...
@cburgmer's JSONPath comparison project is currently discussing some [issues](https://github.com/cburgmer/json-path-comparison/issues?q=is%3Aissue+is%3Aopen+label%3A%22Proposal+A%22) relating to a proposed implementation of JSONPath known as "Proposal A". May I encourage you to get involved if you are...
The following queries provide results that do not match those of other implementations of JSONPath (compare https://cburgmer.github.io/json-path-comparison/): - [ ] `$[-1:]` Input: ``` ["first", "second", "third"] ``` Expected output: ```...
``` 9 | use jsonpath::errors::Error; | ^^^^^^ error[E0603]: module `errors` is private ```
Great library! Was wondering if you have any plans to add regex filters `=~` soon. (I've started working in Rust recently and am keen to help if you can point...
Thanks for this crate. What is the best way to implement update/remove once an element is found without retraversing the json?