Cargo.toml 384 B

1234567891011121314
  1. [package]
  2. name = "kuatia-core"
  3. description = "Pure, sans-IO core logic for the Kuatia ledger: validation, hashing, posting selection."
  4. version = "0.1.0"
  5. edition = "2024"
  6. license.workspace = true
  7. [lints]
  8. workspace = true
  9. [dependencies]
  10. kuatia-types = { path = "../kuatia-types" }
  11. sha2 = { version = "0.10", default-features = false }
  12. serde = { version = "1", features = ["derive"] }