Cargo.toml 670 B

12345678910111213141516171819202122232425
  1. [package]
  2. name = "cdk-lnbits"
  3. version.workspace = true
  4. edition.workspace = true
  5. authors = ["CDK Developers"]
  6. license.workspace = true
  7. homepage = "https://github.com/cashubtc/cdk"
  8. repository = "https://github.com/cashubtc/cdk.git"
  9. rust-version.workspace = true # MSRV
  10. description = "CDK ln backend for lnbits"
  11. readme = "README.md"
  12. [dependencies]
  13. async-trait.workspace = true
  14. anyhow.workspace = true
  15. axum.workspace = true
  16. bitcoin.workspace = true
  17. cdk = { workspace = true, features = ["mint"] }
  18. futures.workspace = true
  19. tokio.workspace = true
  20. tokio-util.workspace = true
  21. tracing.workspace = true
  22. thiserror.workspace = true
  23. lnbits-rs = "0.4.0"
  24. serde_json.workspace = true