# 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.81" name = "bip32" version = "0.6.0-pre.0" authors = ["Tony Arcieri "] build = false autobins = false autoexamples = false autotests = false autobenches = false description = """ BIP32 hierarchical key derivation implemented in a generic, no_std-friendly manner. Supports deriving keys using the pure Rust k256 crate or the C library-backed secp256k1 crate """ 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/bip32" [package.metadata.docs.rs] all-features = true rustdoc-args = [ "--cfg", "docsrs", ] [lib] name = "bip32" path = "src/lib.rs" [[test]] name = "bip32_vectors" path = "tests/bip32_vectors.rs" [[test]] name = "bip39_vectors" path = "tests/bip39_vectors.rs" [dependencies.bs58] version = "0.5" features = ["check"] default-features = false [dependencies.hmac] version = "=0.13.0-pre.4" default-features = false [dependencies.k256] version = "=0.14.0-pre.2" features = [ "ecdsa", "sha256", ] optional = true default-features = false [dependencies.once_cell] version = "1" optional = true [dependencies.pbkdf2] version = "=0.13.0-pre.1" features = ["hmac"] optional = true default-features = false [dependencies.rand_core] version = "0.6" default-features = false [dependencies.ripemd] version = "=0.2.0-pre.4" default-features = false [dependencies.secp256k1-ffi] version = "0.29" optional = true package = "secp256k1" [dependencies.sha2] version = "=0.11.0-pre.4" default-features = false [dependencies.subtle] version = "2" default-features = false [dependencies.zeroize] version = "1" default-features = false [dev-dependencies.hex-literal] version = "0.4" [dev-dependencies.rand_core] version = "0.6" features = ["std"] [features] alloc = ["zeroize/alloc"] bip39 = [ "mnemonic", "pbkdf2", "std", ] default = [ "bip39", "secp256k1", "std", ] mnemonic = [ "alloc", "once_cell", ] secp256k1 = ["k256"] std = ["alloc"]