Cargo Features

[dependencies]
bloomur = { version = "0.1.1", default-features = false, features = ["std", "alloc", "xxhash32", "xxhash3"] }
default = std

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

std default = smallvec
alloc = smallvec
xxhash32

Enables xxh32 of xxhash-rust

xxhash-rust:

XXH32 makes sense only on 32bit platforms
Enable xxh32 implementation

Affects xxh32::Xxh32, hasher::xxh32

xxhash3

Enables xxh3 of xxhash-rust

xxhash-rust:

Enable xxh3 implementation

Affects hasher::xxh3

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.

smallvec alloc? std
xxhash-rust xxhash3? xxhash32?