Cargo.toml 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  1. [package]
  2. name = "cdk-common"
  3. version = "0.6.0"
  4. edition = "2021"
  5. description = "CDK common types and traits"
  6. rust-version = "1.63.0" # MSRV
  7. [features]
  8. swagger = ["dep:utoipa", "cashu/swagger"]
  9. bench = []
  10. [dependencies]
  11. async-trait = "0.1"
  12. bitcoin = { version = "0.32.2", features = [
  13. "base64",
  14. "serde",
  15. "rand",
  16. "rand-std",
  17. ] }
  18. cashu = { path = "../cashu", version = "0.6.0" }
  19. cbor-diag = "0.1.12"
  20. ciborium = { version = "0.2.2", default-features = false, features = ["std"] }
  21. once_cell = "1.20.2"
  22. serde = { version = "1", features = ["derive"] }
  23. lightning-invoice = { version = "0.32.0", features = ["serde", "std"] }
  24. thiserror = "2"
  25. tracing = "0.1"
  26. url = "2.3"
  27. uuid = { version = "1", features = ["v4", "serde"] }
  28. utoipa = { version = "4", optional = true }
  29. futures = "0.3.31"
  30. anyhow = "1.0"
  31. reqwest = { version = "0.12", default-features = false, features = [
  32. "json",
  33. "rustls-tls",
  34. "rustls-tls-native-roots",
  35. "socks",
  36. "zstd",
  37. "brotli",
  38. "gzip",
  39. "deflate",
  40. ] }
  41. serde_json = "1"
  42. serde_with = "3"
  43. [target.'cfg(target_arch = "wasm32")'.dependencies]
  44. instant = { version = "0.1", features = ["wasm-bindgen", "inaccurate"] }
  45. [dev-dependencies]
  46. rand = "0.8.5"
  47. bip39 = "2.0"