Cargo.toml 953 B

123456789101112131415161718192021222324252627282930313233343536373839
  1. [workspace]
  2. members = [
  3. "crates/cdk",
  4. "crates/cdk-redb",
  5. "crates/cdk-rexie",
  6. ]
  7. resolver = "2"
  8. [workspace.package]
  9. license = "MIT"
  10. homepage = "https://github.com/cashubtc/cdk"
  11. repository = "https://github.com/cashubtc/cdk.git"
  12. rust-version = "1.70.0" # MSRV
  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. [workspace.dependencies]
  22. tokio = { version = "1.32", default-features = false }
  23. cdk = { path = "./crates/cdk", default-features = false }
  24. thiserror = "1.0.50"
  25. async-trait = "0.1.74"
  26. tracing = { version = "0.1", default-features = false }
  27. serde = { version = "1.0.160", default-features = false, features = ["derive"]}
  28. serde_json = "1.0.96"
  29. [profile]
  30. [profile.ci]
  31. inherits = "dev"
  32. incremental = false
  33. debug = "line-tables-only"
  34. lto = "off"