Cargo.toml 912 B

12345678910111213141516171819202122232425262728293031323334
  1. [package]
  2. name = "as-rust"
  3. version = "3.5.0"
  4. edition = "2021"
  5. # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
  6. [dependencies]
  7. strategy = {path="./strategy"}
  8. standard = { path="./standard" }
  9. exchanges = { path="./exchanges" }
  10. global = { path="./global" }
  11. tokio = { version = "1.31.0", features = ["full"] }
  12. chrono = "0.4.26"
  13. tracing = "0.1"
  14. tracing-subscriber = { version = "0.3.17", features = ["env-filter"] }
  15. tracing-appender-timezone = { git = "https://github.com/skyfffire/tracing-appender-timezone.git" }
  16. serde = { version = "1.0.188", features = ["derive"] }
  17. actix-rt = "2.5.0"
  18. actix-web = "4.0.0-beta.12"
  19. ctrlc = "3.2.5"
  20. serde_json = "1.0.105"
  21. rust_decimal = { version = "1.32.0", features = ["maths"] }
  22. rust_decimal_macros = "1.32.0"
  23. actix-cors = "0.6"
  24. [workspace]
  25. members=[
  26. "exchanges",
  27. "standard",
  28. "strategy",
  29. "global",
  30. "derive"
  31. ]