Files
cdk/crates/cdk-lnbits/Cargo.toml
tsk ad4df779e3 feat(cdk-lnbits): add websocket reconnection with exponential backoff (#1237)
Implement automatic reconnection logic when LNbits websocket connection is lost, using exponential backoff strategy (1s to 30s max) with automatic resubscription
2025-10-28 21:33:46 -04:00

26 lines
679 B
TOML

[package]
name = "cdk-lnbits"
version.workspace = true
edition.workspace = true
authors = ["CDK Developers"]
license.workspace = true
homepage = "https://github.com/cashubtc/cdk"
repository = "https://github.com/cashubtc/cdk.git"
rust-version.workspace = true # MSRV
description = "CDK ln backend for lnbits"
readme = "README.md"
[dependencies]
async-trait.workspace = true
anyhow.workspace = true
bitcoin.workspace = true
cdk-common = { workspace = true, features = ["mint"] }
futures.workspace = true
tokio.workspace = true
tokio-util.workspace = true
tracing.workspace = true
thiserror.workspace = true
lnbits-rs = "0.9.1"
serde_json.workspace = true
rustls.workspace = true