[package]
name = "fedimint-ln-server"
version = { workspace = true }
authors = ["The Fedimint Developers"]
edition = "2021"
description = "fedimint-ln is a lightning payment service module."
license = "MIT"
readme = "../../README.md"
repository = "https://github.com/fedimint/fedimint"
[package.metadata.docs.rs]
rustc-args = ["--cfg", "tokio_unstable"]
[lib]
name = "fedimint_ln_server"
path = "src/lib.rs"
[dependencies]
anyhow = { workspace = true }
async-trait = { workspace = true }
bitcoin_hashes = { workspace = true }
erased-serde = { workspace = true }
fedimint-bitcoind = { version = "=0.4.3", path = "../../fedimint-bitcoind" }
fedimint-core = { workspace = true }
fedimint-ln-common = { version = "=0.4.3", path = "../fedimint-ln-common" }
fedimint-metrics = { version = "=0.4.3", path = "../../fedimint-metrics" }
fedimint-server = { version = "=0.4.3", path = "../../fedimint-server" }
futures = { workspace = true }
once_cell = { workspace = true }
rand = { workspace = true }
secp256k1 = { version = "0.27.0", default-features = false }
serde = { workspace = true }
strum = { workspace = true }
strum_macros = { workspace = true }
threshold_crypto = { workspace = true }
tokio = { version = "1.38", features = ["full"] }
tracing = { workspace = true }
[dev-dependencies]
assert_matches = { workspace = true }
test-log = { version = "0.2", features = [ "trace" ], default-features = false }