# 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.63" name = "bdk_wallet" version = "1.0.0-beta.5" authors = ["Bitcoin Dev Kit Developers"] build = false autobins = false autoexamples = false autotests = false autobenches = false description = "A modern, lightweight, descriptor-based wallet library" homepage = "https://bitcoindevkit.org" documentation = "https://docs.rs/bdk" readme = "README.md" keywords = [ "bitcoin", "wallet", "descriptor", "psbt", ] license = "MIT OR Apache-2.0" repository = "https://github.com/bitcoindevkit/bdk" [package.metadata.docs.rs] all-features = true rustdoc-args = [ "--cfg", "docsrs", ] [lib] name = "bdk_wallet" path = "src/lib.rs" [[example]] name = "miniscriptc" path = "examples/compiler.rs" required-features = ["compiler"] [[example]] name = "mnemonic_to_descriptors" path = "examples/mnemonic_to_descriptors.rs" required-features = ["all-keys"] [[example]] name = "policy" path = "examples/policy.rs" [[test]] name = "common" path = "tests/common.rs" [[test]] name = "psbt" path = "tests/psbt.rs" [[test]] name = "wallet" path = "tests/wallet.rs" [dependencies.bdk_chain] version = "0.20.0" features = [ "miniscript", "serde", ] default-features = false [dependencies.bdk_file_store] version = "0.17.0" optional = true [dependencies.bip39] version = "2.0" optional = true [dependencies.bitcoin] version = "0.32.0" features = [ "serde", "base64", ] default-features = false [dependencies.miniscript] version = "12.0.0" features = ["serde"] default-features = false [dependencies.rand_core] version = "0.6.0" [dependencies.serde] version = "^1.0" features = ["derive"] [dependencies.serde_json] version = "^1.0" [dev-dependencies.anyhow] version = "1" [dev-dependencies.assert_matches] version = "1.5.0" [dev-dependencies.lazy_static] version = "1.4" [dev-dependencies.rand] version = "^0.8" [dev-dependencies.tempfile] version = "3" [features] all-keys = ["keys-bip39"] compiler = ["miniscript/compiler"] default = ["std"] file_store = ["bdk_file_store"] keys-bip39 = ["bip39"] rusqlite = ["bdk_chain/rusqlite"] std = [ "bitcoin/std", "bitcoin/rand-std", "miniscript/std", "bdk_chain/std", ] [lints.clippy] print_stderr = "deny" print_stdout = "deny"