[package] name = "farmhash" version = "1.1.5" authors = ["Seif Lotfy "] # A short blurb about the package. This is not rendered in any format when # uploaded to crates.io (aka this is not markdown) description = "Farmhash is a successor to Cityhash (also from Google). Farmhash, like Cityhash before it, use ideas from Austin Appleby's MurmurHash." # These URLs point to more information about the repository homepage = "http://seif.codes" repository = "https://github.com/seiflotfy/rust-farmhash" # This points to a file in the repository (relative to this Cargo.toml). The # contents of this file are stored and indexed in the registry. readme = "./README.md" # This is a small list of keywords used to categorize and search for this # package. keywords = ["farmhash", "hashing"] # This is a string description of the license for this package. Currently # crates.io will validate the license provided against a whitelist of known # license identifiers from http://spdx.org/licenses/. Multiple licenses can # be separated with a `/` license = "MIT" [dev-dependencies] fnv = "1.0.0"