Cargo.toml 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738
  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. ciborium.workspace = true
  28. async-trait.workspace = true
  29. tracing.workspace = true
  30. [dev-dependencies]
  31. tokio = { workspace = true, features = ["full"] }
  32. # For the runnable examples — connect to a real SQLite-backed ledger.
  33. kuatia-storage-sql.workspace = true
  34. sqlx = { workspace = true, features = ["sqlite"] }