bdk_wallet 2.4.0

A modern, lightweight, descriptor-based wallet library
Documentation
# 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 = "2.4.0"
authors = ["Bitcoin Dev Kit Developers"]
build = false
autolib = 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_wallet"
readme = "README.md"
keywords = [
    "bitcoin",
    "wallet",
    "descriptor",
    "psbt",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/bitcoindevkit/bdk_wallet"

[package.metadata.docs.rs]
all-features = true
rustdoc-args = [
    "--cfg",
    "docsrs",
]

[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",
]
test-utils = [
    "std",
    "anyhow",
    "tempfile",
]

[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 = "add_foreign_utxo"
path = "tests/add_foreign_utxo.rs"

[[test]]
name = "build_fee_bump"
path = "tests/build_fee_bump.rs"

[[test]]
name = "common"
path = "tests/common.rs"

[[test]]
name = "persisted_wallet"
path = "tests/persisted_wallet.rs"

[[test]]
name = "psbt"
path = "tests/psbt.rs"

[[test]]
name = "wallet"
path = "tests/wallet.rs"

[[test]]
name = "wallet_event"
path = "tests/wallet_event.rs"

[dependencies.anyhow]
version = "1.0.98"
optional = true

[dependencies.bdk_chain]
version = "0.23.1"
features = [
    "miniscript",
    "serde",
]
default-features = false

[dependencies.bdk_file_store]
version = "0.21.1"
optional = true

[dependencies.bip39]
version = "2.0"
optional = true

[dependencies.bitcoin]
version = "0.32.7"
features = [
    "serde",
    "base64",
]
default-features = false

[dependencies.miniscript]
version = "12.3.1"
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"

[dependencies.tempfile]
version = "3.20.0"
optional = true

[dev-dependencies.anyhow]
version = "1"

[dev-dependencies.assert_matches]
version = "1.5.0"

[dev-dependencies.bdk_chain]
version = "0.23.1"
features = ["rusqlite"]

[dev-dependencies.rand]
version = "^0.8"

[dev-dependencies.tempfile]
version = "3"

[lints.clippy]
print_stderr = "deny"
print_stdout = "deny"