Cargo.toml 2.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061
  1. [workspace]
  2. members = [
  3. "bindings/cdk-js",
  4. "crates/*",
  5. ]
  6. resolver = "2"
  7. [workspace.package]
  8. license = "MIT"
  9. homepage = "https://github.com/cashubtc/cdk"
  10. repository = "https://github.com/cashubtc/cdk.git"
  11. rust-version = "1.70.0" # MSRV
  12. version = "0.3.0"
  13. [workspace.metadata]
  14. authors = ["CDK Developers"]
  15. edition = "2021"
  16. description = "Cashu Development Kit"
  17. readme = "README.md"
  18. repository = "https://github.com/cashubtc/cdk"
  19. license-file = "LICENSE"
  20. keywords = ["bitcoin", "e-cash", "cashu"]
  21. [workspace.dependencies]
  22. async-trait = "0.1.74"
  23. anyhow = "1"
  24. axum = "0.7.5"
  25. bitcoin = { version = "0.30", default-features = false } # lightning-invoice uses v0.30
  26. bip39 = "2.0"
  27. clap = { version = "4.4.8", features = ["derive", "env", "default"] }
  28. cdk = { version = "0.3", path = "./crates/cdk", default-features = false }
  29. cdk-rexie = { version = "0.3", path = "./crates/cdk-rexie", default-features = false }
  30. cdk-sqlite = { version = "0.3", path = "./crates/cdk-sqlite", default-features = false }
  31. cdk-redb = { version = "0.3", path = "./crates/cdk-redb", default-features = false }
  32. cdk-cln = { version = "0.3", path = "./crates/cdk-cln", default-features = false }
  33. cdk-axum = { version = "0.3", path = "./crates/cdk-axum", default-features = false }
  34. cdk-fake-wallet = { version = "0.3", path = "./crates/cdk-fake-wallet", default-features = false }
  35. cdk-strike = { version = "0.3", path = "./crates/cdk-strike", default-features = false }
  36. tokio = { version = "1", default-features = false }
  37. thiserror = "1"
  38. tracing = { version = "0.1", default-features = false, features = ["attributes", "log"] }
  39. tracing-subscriber = { version = "0.3.18", features = ["env-filter"] }
  40. serde = { version = "1", default-features = false, features = ["derive"] }
  41. serde_json = "1"
  42. serde-wasm-bindgen = "0.6.5"
  43. futures = { version = "0.3.28", default-feature = false }
  44. web-sys = { version = "0.3.69", default-features = false, features = ["console"] }
  45. uuid = { version = "1", features = ["v4"] }
  46. lightning-invoice = { version = "0.31", features = ["serde"] }
  47. tower-http = { version = "0.5.2", features = ["cors"] }
  48. home = "0.5.9"
  49. rand = "0.8.5"
  50. url = "2.3"
  51. [profile]
  52. [profile.ci]
  53. inherits = "dev"
  54. incremental = false
  55. debug = "line-tables-only"
  56. lto = "off"