Cargo.toml 492 B

123456789101112131415161718192021
  1. [package]
  2. name = "kuatia"
  3. version = "0.1.0"
  4. edition = "2024"
  5. license.workspace = true
  6. [lints]
  7. workspace = true
  8. [dependencies]
  9. kuatia-types = { path = "../kuatia-types" }
  10. kuatia-core = { path = "../kuatia-core" }
  11. kuatia-storage = { path = "../kuatia-storage" }
  12. legend = "0.1"
  13. tokio = { version = "1", features = ["sync", "rt", "macros"] }
  14. serde = { version = "1", features = ["derive"] }
  15. async-trait = "0.1"
  16. tracing = "0.1"
  17. [dev-dependencies]
  18. tokio = { version = "1", features = ["full"] }