Cargo.toml 614 B

12345678910111213141516171819202122
  1. [package]
  2. name = "standard"
  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. exchanges = { path = "../exchanges" }
  9. tokio = { version = "1.31.0", features = ["full"] }
  10. async-trait = "0.1.73"
  11. serde = { version = "1.0", features = ["derive"] }
  12. serde_json = "1.0.104"
  13. rust_decimal = "1.32.0"
  14. rust_decimal_macros = "1.32.0"
  15. chrono = "0.4.30"
  16. futures = "0.3"
  17. tracing = "0.1"
  18. tracing-subscriber = { version = "0.3.17", features = ["env-filter"] }
  19. toml = "0.5.11"
  20. futures-channel = "0.3.29"