[package]
edition = "2018"
name = "t1ha"
version = "0.1.0"
authors = ["Flier Lu <flier.lu@gmail.com>"]
build = "build.rs"
exclude = ["/.travis.yml", "/appveyor.yml"]
description = "An implementation of the T1AH (Fast Positive Hash) hash function."
homepage = "https://github.com/flier/rust-t1ha"
documentation = "http://doc.rust-lang.org/t1ha"
readme = "README.md"
keywords = ["hash", "t1ha"]
categories = ["algorithms", "no-std"]
license = "Zlib"
repository = "https://github.com/flier/rust-t1ha"
[package.metadata.docs.rs]
all-features = true
default-target = "x86_64-unknown-linux-gnu"
rustc-args = ["-C target-feature=aes,avx,avx2"]
[lib]
bench = false
[[bench]]
name = "t1ha"
harness = false
[[bench]]
name = "hash"
harness = false
[dependencies.cfg-if]
version = "0.1"
[dependencies.lazy_static]
version = "1.3"
optional = true
[dependencies.num-traits]
version = "0.2"
default-features = false
[dev-dependencies.ahash]
version = "0.1"
[dev-dependencies.criterion]
version = "0.2"
[dev-dependencies.farmhash]
version = "1.1"
[dev-dependencies.fnv]
version = "1.0"
[dev-dependencies.fxhash]
version = "0.2"
[dev-dependencies.lazy_static]
version = "1.3"
[dev-dependencies.metrohash]
version = "1.0"
[dev-dependencies.murmur3]
version = "0.4"
[dev-dependencies.rustc-hash]
version = "1.0"
[dev-dependencies.seahash]
version = "3.0"
[dev-dependencies.twox-hash]
version = "1.1"
[dev-dependencies.xxhash2]
version = "0.1"
[build-dependencies.rustc_version]
version = "0.2"
[features]
default = ["std", "runtime_select"]
runtime_select = ["lazy_static"]
std = []
unaligned_access = []
[badges.appveyor]
project_name = "flier/rust-t1ha"
repository = "flier/rust-t1ha"
[badges.travis-ci]
repository = "flier/rust-t1ha"