Cargo.toml 632 B

1234567891011121314151617181920212223242526
  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. tracing = "0.1"
  13. tracing-subscriber = { version = "0.3.17", features = ["env-filter"] }
  14. serde = { version = "1.0.188", features = ["derive"] }
  15. actix-rt = "2.5.0"
  16. actix-web = "4.0.0-beta.12"
  17. [workspace]
  18. members=[
  19. "exchanges",
  20. "standard",
  21. "strategy",
  22. "global"
  23. ]