fedimint-ln-gateway 0.6.1

fedimint-ln-gateway sends/receives Lightning Network payments on behalf of Fedimint clients
Documentation
[package]
name = "fedimint-ln-gateway"
version = { workspace = true }
authors = { workspace = true }
edition = { workspace = true }
description = "fedimint-ln-gateway sends/receives Lightning Network payments on behalf of Fedimint clients"
license = { workspace = true }
readme = { workspace = true }
repository = { workspace = true }

[features]
tor = ["fedimint-client/tor", "fedimint-api-client/tor"]

[[bin]]
name = "gatewayd"
path = "src/bin/gatewayd.rs"

[lib]
name = "ln_gateway"
path = "src/lib.rs"

[[test]]
name = "gatewayd-tests"
path = "tests/tests.rs"

[dependencies]
anyhow = { workspace = true }
aquamarine = { workspace = true }
async-stream = { workspace = true }
async-trait = { workspace = true }
axum = { version = "0.7.9", features = ["json"] }
bcrypt = { workspace = true }
bitcoin = { workspace = true }
clap = { workspace = true }
erased-serde = { workspace = true }
esplora-client = { workspace = true }
fedimint-api-client = { path = "../../fedimint-api-client", version = "=0.6.1" }
fedimint-bip39 = { version = "=0.6.1", path = "../../fedimint-bip39" }
fedimint-client = { path = "../../fedimint-client", version = "=0.6.1" }
fedimint-core = { workspace = true }
fedimint-eventlog = { workspace = true }
fedimint-lightning = { path = "../fedimint-lightning", version = "=0.6.1" }
fedimint-ln-client = { workspace = true }
fedimint-ln-common = { workspace = true }
fedimint-lnv2-client = { workspace = true }
fedimint-lnv2-common = { workspace = true }
fedimint-logging = { workspace = true }
fedimint-mint-client = { workspace = true }
fedimint-rocksdb = { workspace = true }
fedimint-wallet-client = { workspace = true }
futures = { workspace = true }
futures-util = { workspace = true }
hex = { workspace = true }
lightning-invoice = { workspace = true }
lockable = "0.1.1"
prost = "0.13.4"
rand = { workspace = true }
reqwest = { workspace = true }
serde = { workspace = true }
serde_json = { workspace = true }
serde_millis = "0.1.1"
strum = { workspace = true }
strum_macros = { workspace = true }
thiserror = { workspace = true }
tokio = { workspace = true }
tokio-stream = { workspace = true }
tonic = { version = "0.12.3", features = ["transport", "tls"] }
tonic_lnd = { workspace = true }
tower-http = { version = "0.6.2", features = ["cors", "auth"] }
tpe = { workspace = true }
tracing = { workspace = true, features = ["log"] }
url = { workspace = true, features = ["serde"] }

[build-dependencies]
fedimint-build = { workspace = true }

[target.'cfg(not(target_env = "msvc"))'.dependencies]
tikv-jemallocator = { workspace = true }