You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

23 lines
621 B

  1. [package]
  2. name = "pihash"
  3. version = "0.2.5"
  4. authors = ["Drew Short <warrick@sothr.com>"]
  5. description = "A simple library for generating perceptual hashes for images and comparing images based on their perceptual hashes."
  6. repository = "https://github.com/warricksothr/Perceptual-Image-Hashing/"
  7. readme = "README.md"
  8. keywords = ["phash", "perceptual", "image", "comparison"]
  9. license-file = "LICENSE"
  10. exclude = ["test_images/*"]
  11. [lib]
  12. crate-type = ["dylib", "rlib"]
  13. [dependencies]
  14. docopt = "0.6.78"
  15. rustc-serialize = "0.3.16"
  16. image = "0.6.0"
  17. complex = "0.8.0"
  18. dft = "0.4.1"
  19. sha1 = "0.1.1"
  20. libc = "0.2.4"
  21. flate2 = "0.2.11"