Cargo Features

[dependencies]
uhash-core = { version = "0.5.1", default-features = false, features = ["std"] }
default = std

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

std default

Enables std of blake3 and sha2 ^0.10

blake3:

Enables std::io traits, including impl Write for Hasher, impl Read and Seek for OutputReader, and the Hasher::update_reader method. This feature is enabled by default. (Previously this also controlled runtime CPU feature detection on x86, but now we use the no-std-compatible cpufeatures crate for that.) Also enables the std feature of the constant_time_eq dependency, which toggles a runtime feature check on 64-bit ARM targets.

uhash-core has 2 features without comments.