Cargo.toml 566 B

123456789101112131415161718192021222324252627
  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.63.0" # MSRV
  12. version = "0.3.0"
  13. [workspace.metadata]
  14. authors = ["CDK Developers"]
  15. edition = "2021"
  16. description = "Cashu Development Kit"
  17. readme = "README.md"
  18. repository = "https://github.com/cashubtc/cdk"
  19. license-file = "LICENSE"
  20. keywords = ["bitcoin", "e-cash", "cashu"]
  21. [profile.ci]
  22. inherits = "dev"
  23. incremental = false
  24. lto = "off"