fasthash 0.2.0

A suite of non-cryptographic hash functions for Rust.
[package]
name = "fasthash"
version = "0.2.0"
authors = ["Flier Lu <flier.lu@gmail.com>"]
description = "A suite of non-cryptographic hash functions for Rust."
homepage = "https://github.com/flier/rust-fasthash"
repository = "https://github.com/flier/rust-fasthash.git"
documentation = "https://flier.github.io/rust-fasthash/"
keywords = ["hashing"]
license = "Apache-2.0"
build = "build.rs"

[features]
default = ["sse42"]
doc = []
sse42 = ["fasthash-sys/sse42"]

[dependencies]
extprim = "1.1"
fasthash-sys = { version = "0.2.0", path = "../fasthash-sys" }

[dev-dependencies]
rand = "^0.3"
fnv = "1.0"