Cargo.toml 619 B

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