Cargo.toml 586 B

1234567891011121314151617181920
  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. exchange_data_formatter = { path = "../exchange_data_formatter" }
  10. tokio = { version = "1.31.0", features = ["full"] }
  11. async-trait = "0.1.73"
  12. serde_json = "1.0.105"
  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"] }