Cargo.toml 1.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  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. [workspace.metadata]
  13. authors = ["CDK Developers"]
  14. edition = "2021"
  15. description = "Cashu Development Kit"
  16. readme = "README.md"
  17. repository = "https://github.com/cashubtc/cdk"
  18. license-file = "LICENSE"
  19. keywords = ["bitcoin", "e-cash", "cashu"]
  20. [workspace.dependencies]
  21. async-trait = "0.1.74"
  22. anyhow = "1"
  23. bitcoin = { version = "0.30", default-features = false } # lightning-invoice uses v0.30
  24. bip39 = "2.0"
  25. cdk = { version = "0.2", path = "./crates/cdk", default-features = false }
  26. cdk-rexie = { version = "0.2", path = "./crates/cdk-rexie", default-features = false }
  27. cdk-sqlite = { version = "0.2", path = "./crates/cdk-sqlite", default-features = false }
  28. cdk-redb = { version = "0.2", path = "./crates/cdk-redb", default-features = false }
  29. cdk-cln = { version = "0.1", path = "./crates/cdk-cln", default-features = false }
  30. cdk-axum = { version = "0.1", path = "./crates/cdk-axum", default-features = false }
  31. cdk-fake-wallet = { version = "0.1", path = "./crates/cdk-fake-wallet", default-features = false }
  32. tokio = { version = "1", default-features = false }
  33. thiserror = "1"
  34. tracing = { version = "0.1", default-features = false, features = ["attributes", "log"] }
  35. tracing-subscriber = { version = "0.3.18", features = ["env-filter"] }
  36. serde = { version = "1", default-features = false, features = ["derive"] }
  37. serde_json = "1"
  38. serde-wasm-bindgen = "0.6.5"
  39. futures = { version = "0.3.28", default-feature = false }
  40. web-sys = { version = "0.3.69", default-features = false, features = ["console"] }
  41. uuid = { version = "1", features = ["v4"] }
  42. lightning-invoice = { version = "0.31", features = ["serde"] }
  43. home = "0.5.9"
  44. [profile]
  45. [profile.ci]
  46. inherits = "dev"
  47. incremental = false
  48. debug = "line-tables-only"
  49. lto = "off"