Cargo.toml 2.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  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. axum = "0.7.5"
  24. bitcoin = { version = "0.30", default-features = false } # lightning-invoice uses v0.30
  25. bip39 = "2.0"
  26. cdk = { version = "0.2", path = "./crates/cdk", default-features = false }
  27. cdk-rexie = { version = "0.2", path = "./crates/cdk-rexie", default-features = false }
  28. cdk-sqlite = { version = "0.2", path = "./crates/cdk-sqlite", default-features = false }
  29. cdk-redb = { version = "0.2", path = "./crates/cdk-redb", default-features = false }
  30. cdk-cln = { version = "0.1", path = "./crates/cdk-cln", default-features = false }
  31. cdk-axum = { version = "0.1", path = "./crates/cdk-axum", default-features = false }
  32. cdk-fake-wallet = { version = "0.1", path = "./crates/cdk-fake-wallet", default-features = false }
  33. cdk-strike = { version = "0.1", path = "./crates/cdk-strike", default-features = false }
  34. tokio = { version = "1", default-features = false }
  35. thiserror = "1"
  36. tracing = { version = "0.1", default-features = false, features = ["attributes", "log"] }
  37. tracing-subscriber = { version = "0.3.18", features = ["env-filter"] }
  38. serde = { version = "1", default-features = false, features = ["derive"] }
  39. serde_json = "1"
  40. serde-wasm-bindgen = "0.6.5"
  41. futures = { version = "0.3.28", default-feature = false }
  42. web-sys = { version = "0.3.69", default-features = false, features = ["console"] }
  43. uuid = { version = "1", features = ["v4"] }
  44. lightning-invoice = { version = "0.31", features = ["serde"] }
  45. home = "0.5.9"
  46. [profile]
  47. [profile.ci]
  48. inherits = "dev"
  49. incremental = false
  50. debug = "line-tables-only"
  51. lto = "off"