[package]
name = "fedimint-ln-client"
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.cargo-udeps.ignore]
normal = ["aquamarine"]
[package.metadata.docs.rs]
rustc-args = ["--cfg", "tokio_unstable"]
[features]
default = []
cli = ["dep:clap"]
[lib]
name = "fedimint_ln_client"
path = "src/lib.rs"
[dependencies]
anyhow = { workspace = true }
aquamarine = { workspace = true }
async-stream = { workspace = true }
async-trait = { workspace = true }
bitcoin = { workspace = true }
clap = { workspace = true, optional = true }
erased-serde = { workspace = true }
fedimint-api-client = { workspace = true }
fedimint-client = { workspace = true }
fedimint-core = { workspace = true }
fedimint-ln-common = { workspace = true }
fedimint-logging = { workspace = true }
futures = { workspace = true }
itertools = { workspace = true }
lightning-invoice = { workspace = true, features = ["serde"] }
lnurl-rs = { version = "0.8.0", features = ["async"], default-features = false }
rand = { workspace = true }
reqwest = { workspace = true }
serde = { workspace = true }
serde_json = { workspace = true }
strum = { workspace = true }
strum_macros = { workspace = true }
thiserror = { workspace = true }
tokio = { workspace = true }
tracing = { workspace = true }