13 lines
366 B
TOML
13 lines
366 B
TOML
|
[package]
|
||
|
name = "example_esplora"
|
||
|
version = "0.1.0"
|
||
|
edition = "2021"
|
||
|
|
||
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
||
|
|
||
|
[dependencies]
|
||
|
bdk_chain = { path = "../../crates/chain", features = ["serde"] }
|
||
|
bdk_esplora = { path = "../../crates/esplora", features = ["blocking"] }
|
||
|
example_cli = { path = "../example_cli" }
|
||
|
|