Cargo.toml 906 B

123456789101112131415161718192021222324252627
  1. [package]
  2. name = "micro_rank"
  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. standard = { path="./standard" }
  8. exchanges = { path="./exchanges" }
  9. global = { path="./global" }
  10. tokio = { version = "1.31.0", features = ["full"] }
  11. chrono = "0.4.26"
  12. tracing = "0.1"
  13. tracing-subscriber = { version = "0.3.17", features = ["env-filter"] }
  14. tracing-appender-timezone = { git = "https://github.com/skyfffire/tracing-appender-timezone.git" }
  15. serde = { version = "1.0.188", features = ["derive"] }
  16. actix-rt = "2.5.0"
  17. actix-web = "4.0.0-beta.12"
  18. ctrlc = "3.2.5"
  19. serde_json = "1.0.105"
  20. rust_decimal = { version = "1.32.0", features = ["maths"] }
  21. rust_decimal_macros = "1.32.0"
  22. futures-util = { version = "0.3.28", default-features = false, features = ["sink", "std"] }
  23. futures-channel = "0.3.28"
  24. lazy_static = "1.4.0"