Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/luni-4/json-structural-diff
https://github.com/luni-4/json-structural-diff
Last synced: about 2 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/luni-4/json-structural-diff
- Owner: Luni-4
- License: mit
- Created: 2020-12-07T17:29:25.000Z (about 4 years ago)
- Default Branch: master
- Last Pushed: 2024-03-22T17:07:31.000Z (10 months ago)
- Last Synced: 2024-11-30T13:12:26.151Z (about 2 months ago)
- Language: Rust
- Size: 4.88 KB
- Stars: 8
- Watchers: 3
- Forks: 4
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# A Rust JSON structural diff
[![LICENSE](https://img.shields.io/badge/license-MIT-blue.svg)](LICENSE)
[![Actions Status](https://github.com/Luni-4/json-structural-diff/workflows/json-structural-diff/badge.svg)](https://github.com/Luni-4/json-structural-diff/actions)
[![Coverage Status](https://coveralls.io/repos/github/Luni-4/json-structural-diff/badge.svg?branch=master)](https://coveralls.io/github/Luni-4/json-structural-diff?branch=master)A pure-Rust JSON structural diff based on [this](https://github.com/andreyvit/json-diff)
implementation.This project has been developed with the aim of testing parallelism.
## Building library
```bash
cargo build
```To build with the `colorize` feature:
```bash
cargo build --all-features
```If you want to build the lib in release mode, add the `--release` option
to the commands above.## License
Released under the [MIT License](LICENSE).