Cargo.toml 656 B

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