Cargo Features

[dependencies]
hkd32 = { version = "0.7.0", default-features = false, features = ["std", "alloc", "bech32", "bip39", "mnemonic"] }
default = alloc, bech32

These default features are set whenever hkd32 is added without default-features = false somewhere in the dependency tree.

std
alloc default bech32 mnemonic?

Enables alloc of zeroize

bech32 default = alloc

Enables bech32-preview of subtle-encoding

bip39 = mnemonic, pbkdf2
mnemonic bip39? = alloc, once_cell

Affects hkd32::mnemonic

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.

once_cell mnemonic?

Enables once_cell

optional dependencies

pbkdf2 bip39?

Enables pbkdf2 ^0.11

subtle-encoding bech32