Cargo.toml 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637
  1. [package]
  2. name = "kuatia"
  3. description = "Append-only, auditable, multi-asset UTXO-style ledger: async resource and saga commit pipeline."
  4. version.workspace = true
  5. edition.workspace = true
  6. rust-version.workspace = true
  7. license.workspace = true
  8. repository.workspace = true
  9. authors.workspace = true
  10. keywords.workspace = true
  11. categories.workspace = true
  12. [lints]
  13. workspace = true
  14. [features]
  15. default = []
  16. # Bubble the i128 Cent backing up to the outermost crate. Enabling
  17. # `kuatia/i128` swaps the integer width across the whole dependency chain.
  18. i128 = ["kuatia-types/i128", "kuatia-core/i128", "kuatia-storage/i128"]
  19. [dependencies]
  20. kuatia-types.workspace = true
  21. kuatia-core.workspace = true
  22. kuatia-storage.workspace = true
  23. legend.workspace = true
  24. tokio = { workspace = true, features = ["sync", "rt", "macros"] }
  25. serde.workspace = true
  26. serde_json.workspace = true
  27. async-trait.workspace = true
  28. tracing.workspace = true
  29. [dev-dependencies]
  30. tokio = { workspace = true, features = ["full"] }
  31. # For the runnable examples — connect to a real SQLite-backed ledger.
  32. kuatia-storage-sql.workspace = true
  33. sqlx = { workspace = true, features = ["sqlite"] }