Original repository: 250b4f1dcc/bdk_chain
Co-authored-by: Steve Myers <steve@notmandatory.org>
Co-authored-by: 志宇 <hello@evanlinjin.me>
Co-authored-by: LLFourn <lloyd.fourn@gmail.com>
Co-authored-by: rajarshimaitra <rajarshi149@gmail.com>
Co-authored-by: LagginTimes <wzc110@gmail.com>
Co-authored-by: Steve Myers <steve@notmandatory.org>
Co-authored-by: Vladimir Fomene <vladimirfomene@gmail.com>
28 lines
866 B
TOML
28 lines
866 B
TOML
[package]
|
|
name = "bdk_chain"
|
|
version = "0.3.1"
|
|
edition = "2021"
|
|
homepage = "https://bitcoindevkit.org"
|
|
repository = "https://github.com/LLFourn/bdk_core_staging"
|
|
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.29" }
|
|
serde_crate = { package = "serde", version = "1", optional = true, features = ["derive"] }
|
|
# Use hashbrown as a feature flag to have HashSet and HashMap from it.
|
|
hashbrown = { version = "0.13.2", optional = true }
|
|
miniscript = { version = "9.0.0", optional = true }
|
|
|
|
[dev-dependencies]
|
|
rand = "0.8"
|
|
|
|
[features]
|
|
default = ["std", "miniscript"]
|
|
std = []
|
|
serde = ["serde_crate", "bitcoin/serde"]
|