Cargo.toml 637 B

12345678910111213141516171819202122232425262728293031
  1. [workspace]
  2. members = [
  3. "crates/cdk",
  4. ]
  5. resolver = "2"
  6. [workspace.package]
  7. license = "MIT"
  8. homepage = "https://github.com/cashu/cdk"
  9. repository = "https://github.com/cashu/cdk.git"
  10. rust-version = "1.70.0" # MSRV
  11. [workspace.metadata]
  12. authors = ["CDK Developers"]
  13. edition = "2021"
  14. description = "Cashu Development Kit"
  15. readme = "README.md"
  16. repository = "https://github.com/cashu/cdk"
  17. license-file = "LICENSE"
  18. keywords = ["bitcoin", "e-cash", "cashu"]
  19. [workspace.dependencies]
  20. tokio = { version = "1.32", default-features = false }
  21. [profile]
  22. [profile.ci]
  23. inherits = "dev"
  24. incremental = false
  25. debug = "line-tables-only"
  26. lto = "off"