Cargo.toml 3.2 KB

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