[package] name = "ccl-fxhash" version = "3.0.0" description = "A fast, non-secure, hashing algorithm derived from an internal hasher used in FireFox and Rustc. This is a fork designed for use with ccl. Rights go to the original creator." documentation = "https://docs.rs/ccl-fxhash" repository = "https://gitlab.nebulanet.cc/xacrimon/ccl-fxhash" readme = "README.md" keywords = [ "hash" ] categories = [ "algorithms" ] license = "Apache-2.0/MIT" authors = ["cbreeden ", "acrimon "] [lib] name = "fxhash" path = "lib.rs" [dependencies] byteorder = { version = "1.0.0", default-features = false } hashmap_core = { version = "0.1.5", optional = true } cfg-if = "0.1" [dev-dependencies] seahash = "3.0.5" fnv = "1.0.5" [features] default = ["std"] std = ["byteorder/std"] hashmap-core = ["hashmap_core"]