[package]
name = "fedimint-testing"
version = { workspace = true }
authors = ["The Fedimint Developers"]
edition = "2021"
description = "fedimint-testing provides a library of shared objects and utilities for testing fedimint components"
license = "MIT"
readme = "../README.md"
repository = "https://github.com/fedimint/fedimint"
[package.metadata.docs.rs]
rustc-args = ["--cfg", "tokio_unstable"]
[lib]
name = "fedimint_testing"
path = "src/lib.rs"
[dependencies]
anyhow = { workspace = true }
async-stream = "0.3.5"
async-trait = { workspace = true }
bitcoin = { workspace = true }
bitcoincore-rpc = "0.17.0"
clap = { version = "4.5.8", features = ["derive", "std", "help", "usage", "error-context", "suggestions"], default-features = false }
fedimint-core = { workspace = true }
fedimint-api-client = { workspace = true }
fedimint-client = { version = "=0.4.3", path = "../fedimint-client" }
fedimint-server = { version = "=0.4.3", path = "../fedimint-server" }
fedimint-bitcoind = { version = "=0.4.3", path = "../fedimint-bitcoind" }
fedimint-logging = { workspace = true }
fedimint-rocksdb = { version = "=0.4.3", path = "../fedimint-rocksdb" }
fedimint-ln-common = { version = "=0.4.3", path = "../modules/fedimint-ln-common" }
fs-lock = "0.1.3"
ln-gateway = { version = "=0.4.3", package = "fedimint-ln-gateway", path = "../gateway/ln-gateway" }
futures = { workspace = true }
lightning-invoice = { workspace = true }
tempfile = "3.10.1"
secp256k1-zkp = { version = "0.9.2", features = ["global-context", "bitcoin_hashes"] }
serde = { workspace = true }
tracing = { workspace = true }
rand = { workspace = true }
tokio-rustls = { workspace = true }
tokio = { version = "1.38.0", features = ["full", "tracing"] }
tokio-stream = "0.1.15"
tonic_lnd = { workspace = true }
url = { workspace = true }
fedimint-portalloc = { version = "=0.4.3", path = "../utils/portalloc" }