Cargo.toml 581 B

123456789101112131415161718192021222324
  1. [package]
  2. name = "kuatia-core"
  3. description = "Pure, sans-IO core logic for the Kuatia ledger: validation, hashing, posting selection."
  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-types: swap the Cent backing to i128.
  17. i128 = ["kuatia-types/i128"]
  18. [dependencies]
  19. kuatia-types.workspace = true
  20. sha2.workspace = true
  21. serde.workspace = true