2023-03-02 16:23:06 +11:00
|
|
|
[package]
|
|
|
|
name = "bdk_esplora"
|
2023-07-04 12:28:06 -05:00
|
|
|
version = "0.3.0"
|
2023-03-02 16:23:06 +11:00
|
|
|
edition = "2021"
|
|
|
|
homepage = "https://bitcoindevkit.org"
|
2023-03-02 19:15:36 +01:00
|
|
|
repository = "https://github.com/bitcoindevkit/bdk"
|
2023-03-02 16:23:06 +11:00
|
|
|
documentation = "https://docs.rs/bdk_esplora"
|
|
|
|
description = "Fetch data from esplora in the form that accepts"
|
|
|
|
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]
|
2023-07-04 12:28:06 -05:00
|
|
|
bdk_chain = { path = "../chain", version = "0.5.0", default-features = false, features = ["serde", "miniscript"] }
|
2023-06-24 18:06:23 +02:00
|
|
|
esplora-client = { version = "0.6.0", default-features = false }
|
2023-03-09 10:59:18 +13:00
|
|
|
async-trait = { version = "0.1.66", optional = true }
|
|
|
|
futures = { version = "0.3.26", optional = true }
|
2023-03-03 12:07:04 +01:00
|
|
|
|
2023-03-15 11:44:52 -05:00
|
|
|
# use these dependencies if you need to enable their /no-std features
|
2023-06-24 18:06:23 +02:00
|
|
|
bitcoin = { version = "0.30.0", optional = true, default-features = false }
|
|
|
|
miniscript = { version = "10.0.0", optional = true, default-features = false }
|
2023-03-15 11:44:52 -05:00
|
|
|
|
2023-03-03 12:07:04 +01:00
|
|
|
[features]
|
2023-03-15 11:44:52 -05:00
|
|
|
default = ["std", "async-https", "blocking"]
|
|
|
|
std = ["bdk_chain/std"]
|
2023-03-09 10:59:18 +13:00
|
|
|
async = ["async-trait", "futures", "esplora-client/async"]
|
|
|
|
async-https = ["async", "esplora-client/async-https"]
|
2023-03-03 12:07:04 +01:00
|
|
|
blocking = ["esplora-client/blocking"]
|