compare-dir 0.6.4

A high-performance directory comparison tool and library
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
# yaml-language-server: $schema=https://taskfile.dev/schema.json

version: '3'

tasks:
  default:
    deps: [check]
  check:
    - task: test
    - task: lint
    - task: fmt
  test: cargo test
  lint: cargo clippy -- -D warnings
  fmt: cargo fmt
  fix:
    - cargo clippy --fix -- -D warnings
    - task: fmt