dublette 0.1.7

Deduplicate images and videos using perceptual hashing
Documentation
amends "package://github.com/jdx/hk/releases/download/v1.1.1/hk@1.1.1#/Config.pkl"

local linters  = new Mapping<String, Step> {
  ["dprint"]  {
    fix = "dprint fmt"
    stage = "*"
  }
  ["clippy"] {
    check = "cargo clippy -- -D warnings"
  }
  ["fmt"] {
    check = "cargo fmt -- --check"
  }
}

hooks {
  ["pre-commit"] {
    fix = true
    stash = "git"
    steps = linters

  }
}