Cargo.toml 545 B

123456789101112131415161718192021222324252627
  1. [workspace]
  2. members = [
  3. "crates/*",
  4. ]
  5. resolver = "2"
  6. [workspace.package]
  7. license = "MIT"
  8. homepage = "https://github.com/cashubtc/cdk"
  9. repository = "https://github.com/cashubtc/cdk.git"
  10. [workspace.metadata]
  11. authors = ["CDK Developers"]
  12. edition = "2021"
  13. description = "Cashu Development Kit"
  14. readme = "README.md"
  15. repository = "https://github.com/cashubtc/cdk"
  16. license-file = "LICENSE"
  17. keywords = ["bitcoin", "e-cash", "cashu"]
  18. [profile.ci]
  19. inherits = "dev"
  20. incremental = false
  21. lto = "off"
  22. [workspace.metadata.crane]
  23. name = "cdk-workspace"