Cargo.toml 3.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596
  1. [workspace]
  2. members = [
  3. "crates/*",
  4. ]
  5. resolver = "2"
  6. [workspace.package]
  7. edition = "2021"
  8. rust-version = "1.75.0"
  9. license = "MIT"
  10. homepage = "https://github.com/cashubtc/cdk"
  11. repository = "https://github.com/cashubtc/cdk.git"
  12. [workspace.dependencies]
  13. anyhow = "1"
  14. async-trait = "0.1"
  15. axum = { version = "0.8.1", features = ["ws"] }
  16. bitcoin = { version = "0.32.2", features = ["base64", "serde", "rand", "rand-std"] }
  17. bip39 = { version = "2.0", features = ["rand"] }
  18. jsonwebtoken = "9.2.0"
  19. cashu = { path = "./crates/cashu", version = "=0.7.1" }
  20. cdk = { path = "./crates/cdk", default-features = false, version = "=0.7.2" }
  21. cdk-common = { path = "./crates/cdk-common", default-features = false, version = "=0.7.1" }
  22. cdk-axum = { path = "./crates/cdk-axum", default-features = false, version = "=0.7.1" }
  23. cdk-cln = { path = "./crates/cdk-cln", version = "=0.7.1" }
  24. cdk-lnbits = { path = "./crates/cdk-lnbits", version = "=0.7.1" }
  25. cdk-lnd = { path = "./crates/cdk-lnd", version = "=0.7.1" }
  26. cdk-fake-wallet = { path = "./crates/cdk-fake-wallet", version = "=0.7.1" }
  27. cdk-payment-processor = { path = "./crates/cdk-payment-processor", default-features = true, version = "=0.7.1" }
  28. cdk-mint-rpc = { path = "./crates/cdk-mint-rpc", version = "=0.7.1" }
  29. cdk-redb = { path = "./crates/cdk-redb", default-features = true, version = "=0.7.1" }
  30. cdk-sqlite = { path = "./crates/cdk-sqlite", default-features = true, version = "=0.7.1" }
  31. clap = { version = "4.5.31", features = ["derive"] }
  32. ciborium = { version = "0.2.2", default-features = false, features = ["std"] }
  33. cbor-diag = "0.1.12"
  34. futures = { version = "0.3.28", default-features = false, features = ["async-await"] }
  35. lightning-invoice = { version = "0.32.0", features = ["serde", "std"] }
  36. serde = { version = "1", features = ["derive"] }
  37. serde_json = "1"
  38. thiserror = { version = "1" }
  39. tokio = { version = "1", default-features = false, features = ["rt", "macros", "test-util"] }
  40. tokio-util = { version = "0.7.11", default-features = false }
  41. tower-http = { version = "0.6.1", features = ["compression-full", "decompression-full", "cors", "trace"] }
  42. tokio-tungstenite = { version = "0.26.0", default-features = false }
  43. tokio-stream = "0.1.15"
  44. tracing = { version = "0.1", default-features = false, features = ["attributes", "log"] }
  45. tracing-subscriber = { version = "0.3.18", features = ["env-filter"] }
  46. url = "2.3"
  47. uuid = { version = "=1.12.1", features = ["v4", "serde"] }
  48. utoipa = { version = "5.3.1", features = [
  49. "preserve_order",
  50. "preserve_path_order",
  51. ]}
  52. serde_with = "3"
  53. reqwest = { version = "0.12", default-features = false, features = [
  54. "json",
  55. "rustls-tls",
  56. "rustls-tls-native-roots",
  57. "socks",
  58. "zstd",
  59. "brotli",
  60. "gzip",
  61. "deflate",
  62. ]}
  63. once_cell = "1.20.2"
  64. instant = { version = "0.1", default-features = false }
  65. rand = "0.8.5"
  66. regex = "1"
  67. home = "0.5.5"
  68. tonic = { version = "0.12.3", features = [
  69. "channel",
  70. "tls",
  71. "tls-webpki-roots",
  72. ] }
  73. prost = "0.13.1"
  74. tonic-build = "0.12"
  75. strum = "0.27.1"
  76. strum_macros = "0.27.1"
  77. [workspace.metadata]
  78. authors = ["CDK Developers"]
  79. description = "Cashu Development Kit"
  80. readme = "README.md"
  81. repository = "https://github.com/cashubtc/cdk"
  82. license-file = "LICENSE"
  83. keywords = ["bitcoin", "e-cash", "cashu"]
  84. [profile.ci]
  85. inherits = "dev"
  86. incremental = false
  87. lto = "off"
  88. [workspace.metadata.crane]
  89. name = "cdk-workspace"