Cargo.toml 928 B

12345678910111213141516171819202122232425262728293031323334353637383940
  1. [package]
  2. name = "cdk-common"
  3. version = "0.6.0"
  4. edition = "2021"
  5. description = "CDK shared types and crypto utilities"
  6. license.workspace = true
  7. homepage.workspace = true
  8. repository.workspace = true
  9. [features]
  10. swagger = ["dep:utoipa"]
  11. bench = []
  12. [dependencies]
  13. async-trait = "0.1"
  14. bitcoin = { version = "0.32.2", features = [
  15. "base64",
  16. "serde",
  17. "rand",
  18. "rand-std",
  19. ] }
  20. cbor-diag = "0.1.12"
  21. ciborium = { version = "0.2.2", default-features = false, features = ["std"] }
  22. once_cell = "1.20.2"
  23. serde = { version = "1.0.216", features = ["derive"] }
  24. serde_json = "1.0.134"
  25. serde_with = "3"
  26. lightning-invoice = { version = "0.32.0", features = ["serde", "std"] }
  27. thiserror = "2.0.9"
  28. tracing = "0.1.41"
  29. url = "2.3"
  30. uuid = { version = "1", features = ["v4", "serde"] }
  31. utoipa = { version = "4", optional = true }
  32. futures = "0.3.31"
  33. anyhow = "1.0.95"
  34. reqwest = "0.12.11"
  35. [dev-dependencies]
  36. rand = "0.8.5"
  37. bip39 = "2.0"