Cargo Features

[dependencies]
seedable_hash = { version = "0.2.1", default-features = false, features = ["sip13", "wyhash", "fnv", "gxhash", "rapidhash", "xxhash-rust"] }
default = wyhash

The wyhash feature is set by default whenever seedable_hash is added without default-features = false somewhere in the dependency tree.

sip13

if enabled, makes available BuildSip13 that uses Sip13 from compiler internals

Affects seedable_hash::BuildSip13, seedable_hash::BuildDefaultSeededHasher

Features from optional dependencies

In crates that don't use the dep: syntax, optional dependencies automatically become Cargo features. These features may have been created by mistake, and this functionality may be removed in the future.

wyhash default

Affects seedable_hash::BuildWyHash, seedable_hash::BuildDefaultSeededHasher

fnv implicit feature

Enables fnv

fnv:

Fowler–Noll–Vo hash function

Affects seedable_hash::BuildDefaultSeededHasher

gxhash implicit feature

Enables gxhash

gxhash:

GxHash non-cryptographic algorithm

Affects seedable_hash::BuildGxHash, seedable_hash::BuildDefaultSeededHasher

rapidhash implicit feature

Enables rapidhash

rapidhash:

A rust port of rapidhash: an extremely fast, high quality, platform-independent hashing algorithm

Affects seedable_hash::BuildRapidHash, seedable_hash::BuildDefaultSeededHasher

xxhash-rust implicit feature

Enables xxhash-rust

xxhash-rust:

Implementation of xxhash

Affects seedable_hash::BuildXxh3, seedable_hash::BuildDefaultSeededHasher