Cargo.toml 931 B

12345678910111213141516171819202122232425
  1. [package]
  2. name = "cdk-lnbits"
  3. version = "0.4.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.4.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.2.0"
  23. # lnbits-rs = { path = "../../../../lnbits-rs" }
  24. lnbits-rs = { git = "https://github.com/thesimplekid/lnbits-rs.git", rev = "9fff4d" }