Cargo.toml 572 B

123456789101112131415161718192021222324
  1. [package]
  2. name = "kuatia-types"
  3. description = "Domain types for the Kuatia ledger: postings, accounts, transfers, books."
  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. # Pass through to kuatia-money: swap the Cent backing to i128.
  17. i128 = ["kuatia-money/i128"]
  18. [dependencies]
  19. kuatia-money.workspace = true
  20. serde.workspace = true
  21. bitflags.workspace = true