Cargo.toml 543 B

1234567891011121314151617181920212223242526
  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. rust-version = "1.63.0" # MSRV
  11. version = "0.3.0"
  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. [profile.ci]
  21. inherits = "dev"
  22. incremental = false
  23. lto = "off"