Cargo.toml 2.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182
  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. cashu = { path = "./crates/cashu", version = "=0.7.1" }
  19. cdk = { path = "./crates/cdk", default-features = false, version = "=0.7.2" }
  20. cdk-common = { path = "./crates/cdk-common", default-features = false, version = "=0.7.1" }
  21. cdk-axum = { path = "./crates/cdk-axum", default-features = false, version = "=0.7.1" }
  22. cdk-cln = { path = "./crates/cdk-cln", version = "=0.7.1" }
  23. cdk-lnbits = { path = "./crates/cdk-lnbits", version = "=0.7.1" }
  24. cdk-lnd = { path = "./crates/cdk-lnd", version = "=0.7.1" }
  25. cdk-fake-wallet = { path = "./crates/cdk-fake-wallet", version = "=0.7.1" }
  26. cdk-mint-rpc = { path = "./crates/cdk-mint-rpc", version = "=0.7.1" }
  27. cdk-redb = { path = "./crates/cdk-redb", default-features = true, version = "=0.7.1" }
  28. cdk-sqlite = { path = "./crates/cdk-sqlite", default-features = true, version = "=0.7.1" }
  29. clap = { version = "4.5.31", features = ["derive"] }
  30. ciborium = { version = "0.2.2", default-features = false, features = ["std"] }
  31. cbor-diag = "0.1.12"
  32. futures = { version = "0.3.28", default-features = false, features = ["async-await"] }
  33. lightning-invoice = { version = "0.32.0", features = ["serde", "std"] }
  34. serde = { version = "1", features = ["derive"] }
  35. serde_json = "1"
  36. thiserror = { version = "1" }
  37. tokio = { version = "1", default-features = false }
  38. tokio-util = { version = "0.7.11", default-features = false }
  39. tower-http = { version = "0.6.1", features = ["compression-full", "decompression-full", "cors", "trace"] }
  40. tokio-tungstenite = { version = "0.26.0", default-features = false }
  41. tracing = { version = "0.1", default-features = false, features = ["attributes", "log"] }
  42. tracing-subscriber = { version = "0.3.18", features = ["env-filter"] }
  43. url = "2.3"
  44. uuid = { version = "=1.12.1", features = ["v4", "serde"] }
  45. utoipa = { version = "5.3.1", features = [
  46. "preserve_order",
  47. "preserve_path_order",
  48. ]}
  49. serde_with = "3"
  50. reqwest = { version = "0.12", default-features = false, features = [
  51. "json",
  52. "rustls-tls",
  53. "rustls-tls-native-roots",
  54. "socks",
  55. "zstd",
  56. "brotli",
  57. "gzip",
  58. "deflate",
  59. ]}
  60. once_cell = "1.20.2"
  61. instant = { version = "0.1", default-features = false }
  62. rand = "0.8.5"
  63. home = "0.5.5"
  64. [workspace.metadata]
  65. authors = ["CDK Developers"]
  66. description = "Cashu Development Kit"
  67. readme = "README.md"
  68. repository = "https://github.com/cashubtc/cdk"
  69. license-file = "LICENSE"
  70. keywords = ["bitcoin", "e-cash", "cashu"]
  71. [profile.ci]
  72. inherits = "dev"
  73. incremental = false
  74. lto = "off"
  75. [workspace.metadata.crane]
  76. name = "cdk-workspace"