Cargo.toml 705 B

12345678910111213141516171819202122232425262728
  1. [package]
  2. name = "indicator_set"
  3. version = "0.1.0"
  4. edition = "2021"
  5. # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
  6. [dependencies]
  7. global = { path="./global" }
  8. tokio = { version = "1.31.0", features = ["full"] }
  9. chrono = "0.4.26"
  10. serde = { version = "1.0.188", features = ["derive"] }
  11. serde_json = "1.0.105"
  12. rust_decimal = { version = "1.32.0", features = ["maths"] }
  13. rust_decimal_macros = "1.32.0"
  14. tracing = "0.1"
  15. tracing-subscriber = { version = "0.3.17", features = ["env-filter"] }
  16. tracing-appender-timezone = { git = "https://github.com/skyfffire/tracing-appender-timezone.git" }
  17. ctrlc = "3.2.5"
  18. actix-rt = "2.5.0"
  19. actix-web = "4.0.0-beta.12"