Cargo.toml 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. [workspace]
  2. members = [
  3. "bindings/cdk-js",
  4. "bindings/uniffi-bindgen",
  5. "crates/cdk",
  6. "crates/cdk-redb",
  7. "crates/cdk-rexie",
  8. ]
  9. resolver = "2"
  10. [workspace.package]
  11. license = "MIT"
  12. homepage = "https://github.com/cashubtc/cdk"
  13. repository = "https://github.com/cashubtc/cdk.git"
  14. rust-version = "1.70.0" # MSRV
  15. [workspace.metadata]
  16. authors = ["CDK Developers"]
  17. edition = "2021"
  18. description = "Cashu Development Kit"
  19. readme = "README.md"
  20. repository = "https://github.com/cashubtc/cdk"
  21. license-file = "LICENSE"
  22. keywords = ["bitcoin", "e-cash", "cashu"]
  23. [workspace.dependencies]
  24. async-trait = "0.1.74"
  25. cdk = { path = "./crates/cdk", default-features = false }
  26. cdk-rexie = { path = "./crates/cdk-rexie", default-features = false }
  27. tokio = { version = "1.32", default-features = false }
  28. thiserror = "1"
  29. tracing = { version = "0.1", default-features = false }
  30. serde = { version = "1", default-features = false, features = ["derive"] }
  31. serde_json = "1"
  32. uniffi = { version = "0.27.1", default-features = false }
  33. [profile]
  34. [profile.ci]
  35. inherits = "dev"
  36. incremental = false
  37. debug = "line-tables-only"
  38. lto = "off"