Cargo.toml 605 B

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