Cargo.toml 809 B

1234567891011121314151617181920212223
  1. [package]
  2. name = "cdk-strike"
  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 Strike api"
  11. [dependencies]
  12. async-trait = "0.1"
  13. anyhow = "1"
  14. axum = "0.6.20"
  15. bitcoin = { version = "0.30", default-features = false } # lightning-invoice uses v0.30
  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. tracing = { version = "0.1", default-features = false, features = ["attributes", "log"] }
  20. thiserror = "1"
  21. uuid = { version = "1", features = ["v4"] }
  22. strike-rs = "0.3.0"