This commit is contained in:
JMARyA 2024-02-13 09:53:20 +01:00
parent 6db5f79743
commit 6f19a9bbad
Signed by: jmarya
GPG key ID: 901B2ADDF27C2263
2 changed files with 134 additions and 1 deletions

View file

@ -1,5 +1,5 @@
# JSONFilter
`jsonfilter` is a Rust crate designed to facilitate filtering and comparing JSON values based on specified criteria. It provides functions for comparing JSON values, applying filters to JSON objects, and determining if a filter matches a given JSON object. Think of MongoDBs `find()` function but as a filter function.
`jsonfilter` is a Rust crate designed to facilitate filtering and comparing JSON values based on specified criteria. It provides functions for comparing JSON values, applying filters to JSON objects, and determining if a filter matches a given JSON object. Think of MongoDBs `find()` function but as a filter function. For a full syntax guide, see the [Filter Documentation](./docs/filter.md)
## Usage
To use `jsonfilter`, add it to your `Cargo.toml` and add the following to your Rust code: