Cargo Features

[dependencies]
yasmf-hash = { version = "0.1.1", default-features = false, features = ["std"] }
default = std

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

std default

Enables std of blake3, hex, snafu ^0.6.10, and varu64 ^0.6.2

blake3:

This crate uses libstd for std::io trait implementations, and also for runtime CPU feature detection. This feature is enabled by default. If you use --no-default-features, the only way to use the SIMD implementations in this
crate is to enable the corresponding instruction sets statically for the entire build, with e.g. RUSTFLAGS="-C target-cpu=native".

Affects util::hex_serde