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
somewhere in the dependency tree.default-features = false - std
- alloc default bech32 mnemonic?
- 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