diff_logger 0.1.0

Pretty diff logger for JSON values in rust
Documentation
name: build
on:
  pull_request:
    types: [opened, reopened, synchronize, ready_for_review]
  push:
    branches:
      - main

jobs:
  build:
    runs-on: ubuntu-latest
    steps:
      - uses: actions/checkout@v3

      - uses: dtolnay/rust-toolchain@v1
        with:
          toolchain: stable
          components: clippy

      - name: Build
        run: |
          cargo build

      - name: Tests
        run: cargo test

      - name: Example
        run: |      
          cargo run --example demo