Cargo.toml 1.0 KB

12345678910111213141516171819202122232425262728293031
  1. [package]
  2. name = "cdk-strike"
  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.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.32.2", default-features = false }
  16. cdk = { path = "../cdk", version = "0.7.1", default-features = false, features = [
  17. "mint",
  18. ] }
  19. futures = { version = "0.3.28", default-features = false }
  20. tokio = { version = "1", default-features = false }
  21. tokio-util = { version = "0.7.11", default-features = false }
  22. tracing = { version = "0.1", default-features = false, features = [
  23. "attributes",
  24. "log",
  25. ] }
  26. thiserror = "1"
  27. uuid = { version = "=1.12.1", features = ["v4"] }
  28. strike-rs = "0.4.0"
  29. # strike-rs = { path = "../../../../strike-rs" }
  30. # strike-rs = { git = "https://github.com/thesimplekid/strike-rs.git", rev = "577ad9591" }