Cargo.toml 796 B

12345678910111213141516171819202122232425262728293031
  1. [package]
  2. name = "cdk-types"
  3. version = "0.6.0"
  4. edition = "2021"
  5. description = "Shared types for the CDK ecosystem"
  6. license.workspace = true
  7. homepage.workspace = true
  8. repository.workspace = true
  9. [features]
  10. swagger = ["dep:utoipa"]
  11. [dependencies]
  12. async-trait = "0.1.83"
  13. bitcoin = { version = "0.32.2", features = [
  14. "base64",
  15. "serde",
  16. "rand",
  17. "rand-std",
  18. ] }
  19. ciborium = { version = "0.2.2", default-features = false, features = ["std"] }
  20. lightning-invoice = { version = "0.32.0", features = ["serde", "std"] }
  21. once_cell = "1.20.2"
  22. serde = { version = "1.0.216", features = ["derive"] }
  23. serde_json = "1.0.134"
  24. serde_with = "3.11.0"
  25. thiserror = "2.0.9"
  26. tracing = "0.1.41"
  27. url = "2.5.4"
  28. utoipa = { version = "4", optional = true }
  29. uuid = { version = "1", features = ["v4", "serde"] }