Cargo.toml 929 B

1234567891011121314151617181920212223242526272829303132333435363738
  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. tracing = { version = "0.1", default-features = false }
  26. serde = { version = "1.0.160", default-features = false, features = ["derive"]}
  27. serde_json = "1.0.96"
  28. [profile]
  29. [profile.ci]
  30. inherits = "dev"
  31. incremental = false
  32. debug = "line-tables-only"
  33. lto = "off"