Cargo Features
[dependencies]
winter-crypto = { version = "0.13.1", default-features = false, features = ["std", "concurrent"] }
- default = std
-
The
stdfeature is set by default wheneverwinter-cryptois added withoutsomewhere in the dependency tree.default-features = false - std default concurrent?
-
Enables std of blake3, winter-math, sha3 ^0.10, and winter-utils
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. - concurrent = std
-
Enables concurrent of winter-utils
Affects
merkle::concurrent…