async-debug 0.1.2

Debug structs and enums containing values that require an async call to render
Documentation
# See https://pre-commit.com for more information
# See https://pre-commit.com/hooks.html for more hooks
repos:
  - repo: local
    hooks:
    - id: readme-sync
      name: sync readme file
      language: system
      entry: sh -c "cargo sync-readme && cd crates/async-debug-derive && cargo sync-readme"
      files: ^src/lib.rs|crates/async-debug-derive/src/lib.rs$
      pass_filenames: false
  - repo: https://github.com/pre-commit/pre-commit-hooks
    rev: v3.2.0
    hooks:
    - id: trailing-whitespace
    - id: end-of-file-fixer
    - id: check-yaml
    - id: check-added-large-files
  - repo: https://github.com/doublify/pre-commit-rust
    rev: master
    hooks:
    - id: fmt
    - id: cargo-check
    - id: clippy