Fixes include: * Allow `bdk_esplora` to use async with tls * Reorganize `bdk_esplora` crate to have separate files for async vs blocking * Use optional dependencies for `bdk_esplora` async
13 lines
374 B
TOML
13 lines
374 B
TOML
[package]
|
|
name = "bdk-esplora-wallet-example"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
publish = false
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[dependencies]
|
|
bdk = { path = "../../crates/bdk" }
|
|
bdk_esplora = { path = "../../crates/esplora", features = ["blocking"] }
|
|
bdk_file_store = { path = "../../crates/file_store" }
|