bitcoin-harness 0.1.0

A simple lib to start a bitcoind container, generate blocks and fund addresses
Documentation
[package]
name = "bitcoin-harness"
version = "0.1.0"
authors = ["CoBloX Team <team@coblox.tech>"]
edition = "2018"
description = "A simple lib to start a bitcoind container, generate blocks and fund addresses"
license = "MIT"

[dependencies]
base64 = "0.12.3"
bitcoin = { version = "0.23", features = ["use-serde"] }
bitcoincore-rpc-json = "0.11.0"
futures = "0.3.5"
hex = "0.4.2"
reqwest = { version = "0.10", default-features = false, features = ["json", "native-tls"] }
serde = "1.0"
serde_json = "1.0"
testcontainers = "0.11"
thiserror = "1.0"
tokio = { version = "0.2", default-features = false, features = ["blocking", "macros", "rt-core", "time"] }
tracing = "0.1"
url = "2"

[features]
default = []
test-docker = []