Cargo.toml 1.3 KB

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