Cargo.toml 794 B

1234567891011121314151617181920212223
  1. [package]
  2. name = "cdk-lnbits"
  3. version = "0.6.0"
  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.63.0" # MSRV
  10. description = "CDK ln backend for lnbits"
  11. [dependencies]
  12. async-trait = "0.1"
  13. anyhow = "1"
  14. axum = "0.6.20"
  15. bitcoin = { version = "0.32.2", default-features = false }
  16. cdk = { path = "../cdk", version = "0.6.0", default-features = false, features = ["mint"] }
  17. futures = { version = "0.3.28", default-features = false }
  18. tokio = { version = "1", default-features = false }
  19. tokio-util = { version = "0.7.11", default-features = false }
  20. tracing = { version = "0.1", default-features = false, features = ["attributes", "log"] }
  21. thiserror = "1"
  22. lnbits-rs = "0.3.0"