Cargo.toml 650 B

123456789101112131415161718192021222324252627
  1. [package]
  2. name = "as-rust"
  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. 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. serde = { version = "1.0.188", features = ["derive"] }
  16. actix-rt = "2.5.0"
  17. actix-web = "4.0.0-beta.12"
  18. [workspace]
  19. members=[
  20. "exchanges",
  21. "standard",
  22. "strategy",
  23. "global"
  24. ]