# 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" name = "bip85_extended" version = "1.2.0-alpha.1" authors = [ "Rita Kitic ", "Jules Azad EMERY ", ] build = false autobins = false autoexamples = false autotests = false autobenches = false description = "BIP-85 - deterministic entropy from bip32 keychains" readme = "README.md" keywords = [ "bitcoin", "bip", "bip85", ] license = "MIT" repository = "https://github.com/ethicnology/rust-bip85" [lib] name = "bip85_extended" path = "src/lib.rs" [[example]] name = "drng" path = "examples/drng.rs" [[example]] name = "mnemonic" path = "examples/mnemonic.rs" required-features = ["japanese"] [[example]] name = "simple" path = "examples/simple.rs" [[test]] name = "bip85_tests" path = "tests/bip85_tests.rs" [[test]] name = "drng_test" path = "tests/drng_test.rs" [[test]] name = "pwd_base64_test" path = "tests/pwd_base64_test.rs" [[test]] name = "pwd_base85_test" path = "tests/pwd_base85_test.rs" [dependencies.base64] version = "0.22.1" [dependencies.base85] version = "2.0.0" [dependencies.bip39] version = "2.1.0" optional = true [dependencies.bitcoin] version = "0.32.4" [dependencies.sha3] version = "0.10.8" [features] all-languages = [ "mnemonic", "chinese-simplified", "chinese-traditional", "czech", "french", "italian", "japanese", "korean", "spanish", ] chinese-simplified = [ "mnemonic", "bip39/chinese-simplified", ] chinese-traditional = [ "mnemonic", "bip39/chinese-traditional", ] czech = [ "mnemonic", "bip39/czech", ] default = ["mnemonic"] french = [ "mnemonic", "bip39/french", ] italian = [ "mnemonic", "bip39/italian", ] japanese = [ "mnemonic", "bip39/japanese", ] korean = [ "mnemonic", "bip39/korean", ] mnemonic = ["bip39"] spanish = [ "mnemonic", "bip39/spanish", ]