Cargo.toml 771 B

1234567891011121314151617181920212223242526272829303132333435
  1. [workspace]
  2. members = [
  3. "crates/cdk",
  4. "crates/cdk-redb",
  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.70.0" # MSRV
  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. [workspace.dependencies]
  21. tokio = { version = "1.32", default-features = false }
  22. cdk = { path = "./crates/cdk", default-features = false }
  23. thiserror = "1.0.50"
  24. async-trait = "0.1.74"
  25. [profile]
  26. [profile.ci]
  27. inherits = "dev"
  28. incremental = false
  29. debug = "line-tables-only"
  30. lto = "off"