bdk_core 0.6.3

Collection of core structures for Bitcoin Dev Kit.
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_core"
version = "0.6.3"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Collection of core structures for Bitcoin Dev Kit."
homepage = "https://bitcoindevkit.org"
documentation = "https://docs.rs/bdk_core"
readme = "README.md"
license = "MIT OR Apache-2.0"
repository = "https://github.com/bitcoindevkit/bdk"

[features]
default = ["std"]
serde = [
    "dep:serde",
    "bitcoin/serde",
    "hashbrown?/serde",
]
std = ["bitcoin/std"]

[lib]
name = "bdk_core"
path = "src/lib.rs"

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

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

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

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

[dependencies.bitcoin]
version = "0.32"
default-features = false

[dependencies.hashbrown]
version = "0.14.5"
features = [
    "ahash",
    "inline-more",
]
optional = true
default-features = false

[dependencies.serde]
version = "1"
features = [
    "derive",
    "rc",
]
optional = true

[dev-dependencies]