Cargo.toml 387 B

123456789101112131415
  1. [package]
  2. name = "murmur3"
  3. version = "0.5.2"
  4. authors = ["Stu Small <stuart.alan.small@gmail.com>"]
  5. description = "A rust implementation of Murmur3 hash"
  6. repository = "https://github.com/stusmall/murmur3"
  7. keywords = ["hash", "murmur3", "murmur"]
  8. license = "MIT/Apache-2.0"
  9. edition = "2021"
  10. [dependencies]
  11. [dev-dependencies]
  12. murmur3-sys = { path = "./murmur3-sys" }
  13. quickcheck = "1.0.3"