Cargo.toml 727 B

1234567891011121314151617181920212223242526272829
  1. [package]
  2. name = "kuatia-storage"
  3. description = "Storage abstraction and conformance suite for the Kuatia ledger."
  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. async-trait.workspace = true
  21. tokio = { workspace = true, features = ["sync", "rt", "macros"] }
  22. serde.workspace = true
  23. paste.workspace = true
  24. [dev-dependencies]
  25. tokio = { workspace = true, features = ["full"] }