Cargo.toml 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  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. bip39 = "2.0"
  23. cdk = { path = "./crates/cdk", default-features = false }
  24. cdk-rexie = { path = "./crates/cdk-rexie", default-features = false }
  25. cdk-sqlite = { path = "./crates/cdk-sqlite", default-features = false }
  26. cdk-redb = { path = "./crates/cdk-redb", default-features = false }
  27. tokio = { version = "1.32", default-features = false }
  28. thiserror = "1"
  29. tracing = { version = "0.1", default-features = false, features = ["attributes"] }
  30. serde = { version = "1", default-features = false, features = ["derive"] }
  31. serde_json = "1"
  32. serde-wasm-bindgen = { version = "0.6.5", default-features = false }
  33. web-sys = { version = "0.3.68", default-features = false, features = ["console"] }
  34. uniffi = { version = "0.27.1", default-features = false }
  35. bitcoin = { version = "0.30", features = [
  36. "serde",
  37. "rand",
  38. "rand-std",
  39. ] } # lightning-invoice uses v0.30
  40. [profile]
  41. [profile.ci]
  42. inherits = "dev"
  43. incremental = false
  44. debug = "line-tables-only"
  45. lto = "off"