2023-03-01 11:20:00 +01:00
|
|
|
[package]
|
|
|
|
name = "bdk_electrum"
|
2024-05-02 14:38:56 +02:00
|
|
|
version = "0.12.0"
|
2023-03-01 11:20:00 +01:00
|
|
|
edition = "2021"
|
|
|
|
homepage = "https://bitcoindevkit.org"
|
2023-03-02 19:15:36 +01:00
|
|
|
repository = "https://github.com/bitcoindevkit/bdk"
|
2023-03-01 11:20:00 +01:00
|
|
|
documentation = "https://docs.rs/bdk_electrum"
|
2023-03-02 16:23:06 +11:00
|
|
|
description = "Fetch data from electrum in the form BDK accepts"
|
2023-03-01 11:20:00 +01:00
|
|
|
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]
|
2024-05-02 14:38:56 +02:00
|
|
|
bdk_chain = { path = "../chain", version = "0.13.0", default-features = false }
|
2023-10-16 19:51:53 +11:00
|
|
|
electrum-client = { version = "0.19" }
|
2023-06-24 18:06:23 +02:00
|
|
|
#rustls = { version = "=0.21.1", optional = true, features = ["dangerous_configuration"] }
|
2024-02-02 18:33:18 +08:00
|
|
|
|
|
|
|
[dev-dependencies]
|
2023-10-16 19:51:53 +11:00
|
|
|
bdk_testenv = { path = "../testenv", default-features = false }
|
|
|
|
electrsd = { version= "0.27.1", features = ["bitcoind_25_0", "esplora_a33e97e1", "legacy"] }
|
2024-05-02 14:38:56 +02:00
|
|
|
anyhow = "1"
|