# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO # # When uploading crates to the registry Cargo will automatically # "normalize" Cargo.toml files for maximal compatibility # with all versions of Cargo and also rewrite `path` dependencies # to registry (e.g., crates.io) dependencies. # # If you are reading this file be aware that the original Cargo.toml # will likely look very different (and much more reasonable). # See Cargo.toml.orig for the original contents. [package] edition = "2021" rust-version = "1.57" name = "hkd32" version = "0.7.0" authors = ["Tony Arcieri "] description = """ HMAC-based Hierarchical Key Derivation: deterministically derive a hierarchy of symmetric keys from initial keying material through repeated applications of the Hash-based Message Authentication Code (HMAC) construction. Optionally supports storing root derivation passwords as a 24-word mnemonic phrase (i.e. BIP39). """ homepage = "https://github.com/iqlusioninc/crates/" readme = "README.md" keywords = [ "crypto", "bip32", "bip39", "derivation", "mnemonic", ] categories = [ "cryptography", "no-std", ] license = "Apache-2.0 OR MIT" repository = "https://github.com/iqlusioninc/crates/tree/main/hkd32" resolver = "2" [package.metadata.docs.rs] all-features = true rustdoc-args = [ "--cfg", "docsrs", ] [dependencies.hmac] version = "0.12" default-features = false [dependencies.once_cell] version = "1" optional = true [dependencies.pbkdf2] version = "0.11" optional = true default-features = false [dependencies.rand_core] version = "0.6" default-features = false [dependencies.sha2] version = "0.10" default-features = false [dependencies.subtle-encoding] version = "0.5" optional = true default-features = false [dependencies.zeroize] version = "1" features = ["zeroize_derive"] default-features = false [dev-dependencies.hex-literal] version = "0.3" [dev-dependencies.rand_core] version = "0.6" features = ["std"] [features] alloc = ["zeroize/alloc"] bech32 = [ "alloc", "subtle-encoding/bech32-preview", ] bip39 = [ "mnemonic", "pbkdf2", ] default = [ "alloc", "bech32", ] mnemonic = [ "alloc", "once_cell", ] std = []