Cargo.toml 3.3 KB

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