[package] name = "bdk_chain" version = "0.15.0" edition = "2021" rust-version = "1.63" homepage = "https://bitcoindevkit.org" repository = "https://github.com/bitcoindevkit/bdk" documentation = "https://docs.rs/bdk_chain" description = "Collection of core structures for Bitcoin Dev Kit." license = "MIT OR Apache-2.0" readme = "README.md" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] bitcoin = { version = "0.32.0", default-features = false } serde_crate = { package = "serde", version = "1", optional = true, features = ["derive", "rc"] } # Use hashbrown as a feature flag to have HashSet and HashMap from it. hashbrown = { version = "0.9.1", optional = true, features = ["serde"] } miniscript = { version = "12.0.0", optional = true, default-features = false } async-trait = { version = "0.1.80", optional = true } [dev-dependencies] rand = "0.8" proptest = "1.2.0" [features] default = ["std", "miniscript", "persist"] std = ["bitcoin/std", "miniscript?/std"] serde = ["serde_crate", "bitcoin/serde", "miniscript?/serde"] persist = ["miniscript"] async = ["async-trait"]