Cargo.toml 581 B

12345678910111213141516171819202122
  1. [package]
  2. name = "helix-container"
  3. version = "0.1.0"
  4. edition = "2024"
  5. [dependencies]
  6. helix-db = { path = "../helix-db" }
  7. helix-macros = { path = "../helix-macros" }
  8. inventory = "0.3.16"
  9. rand = "0.9.1"
  10. dirs = "5.0.1"
  11. chrono = { version = "0.4.41", features = ["serde"] }
  12. serde = { version = "1.0.219", features = ["derive"] }
  13. sonic-rs = "0.5.0"
  14. tokio = { version = "1.44.2", features = ["full"] }
  15. serde_json = "1.0.140"
  16. uuid = { version = "1.12.1", features = ["std", "v4", "v6", "fast-rng"] }
  17. heed3 = "0.22.0"
  18. async-trait = "0.1"
  19. tracing-subscriber = "0.3.19"
  20. tracing = "0.1.41"