1[package] 2name = "fxhash" 3version = "0.2.1" 4description = "A fast, non-secure, hashing algorithm derived from an internal hasher used in FireFox and Rustc." 5documentation = "https://docs.rs/fxhash" 6repository = "https://github.com/cbreeden/fxhash" 7readme = "README.md" 8keywords = [ "hash" ] 9categories = [ "algorithms" ] 10license = "Apache-2.0/MIT" 11authors = ["cbreeden <github@u.breeden.cc>"] 12 13[lib] 14name = "fxhash" 15path = "lib.rs" 16 17[[bench]] 18name = "fxhash" 19path = "bench.rs" 20 21[dependencies] 22byteorder = "1.0.0" 23 24[dev-dependencies] 25seahash = "3.0.5" 26fnv = "1.0.5"