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.

33 lines
783 B

  1. [package]
  2. name = "pihash"
  3. version = "0.5.0"
  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 = "MIT"
  10. exclude = ["test_images/*"]
  11. [lib]
  12. crate-type = ["dylib", "rlib"]
  13. [features]
  14. default = []
  15. # Feature to allow bench testing on nightly
  16. # But still allow the code to build on beta/stable
  17. bench = []
  18. [dependencies]
  19. libc = "0.2.62"
  20. rustc-serialize = "0.3.24"
  21. dft = "0.5.5"
  22. image = "0.22.1"
  23. num = "0.2.0"
  24. docopt = "1.1.0"
  25. serde = "1.0.99"
  26. serde_derive = "1.0.99"
  27. flate2 = "1.0.11"
  28. sha1 = "0.6.0"