Cargo.toml 637 B

1234567891011121314151617181920212223242526
  1. [package]
  2. name = "kuatia-money"
  3. description = "Monetary Cent type for the Kuatia ledger with a compile-time swappable integer backing."
  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. # Swap the integer backing from the default i64 to i128. The choice is
  17. # workspace-global (cargo feature unification) and changes no source.
  18. i128 = []
  19. [dependencies]
  20. serde.workspace = true
  21. [dev-dependencies]
  22. serde_json.workspace = true