Cargo Features
[dependencies]
uhash-core = { version = "0.5.1", default-features = false, features = ["std"] }
- default = std
-
The
stdfeature is set by default wheneveruhash-coreis added withoutsomewhere in the dependency tree.default-features = false - 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
cpufeaturescrate for that.) Also enables thestdfeature of theconstant_time_eqdependency, which toggles a runtime feature check on 64-bit ARM targets.
uhash-core has 2 features without comments.