14 lines
444 B
TOML
14 lines
444 B
TOML
[package]
|
|
name = "wallet_esplora_async"
|
|
version = "0.2.0"
|
|
edition = "2021"
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[dependencies]
|
|
bdk_wallet = { path = "../../crates/wallet" }
|
|
bdk_esplora = { path = "../../crates/esplora", features = ["async-https"] }
|
|
bdk_sqlite = { path = "../../crates/sqlite" }
|
|
tokio = { version = "1", features = ["rt", "rt-multi-thread", "macros"] }
|
|
anyhow = "1"
|