Cargo.toml 877 B

1234567891011121314151617181920212223242526
  1. [package]
  2. name = "strategy"
  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. serde = "1.0.183"
  8. serde_derive = "1.0"
  9. serde_json = "1.0.104"
  10. tokio = { version = "1.31.0", features = ["full"] }
  11. rust_decimal = { version = "1.32.0", features = ["maths"]}
  12. rust_decimal_macros = "1.32.0"
  13. rand = "0.8.4"
  14. chrono = "0.4.26"
  15. tracing = "0.1"
  16. tracing-subscriber = "0.3.17"
  17. standard = { path = "../standard" }
  18. global = { path = "../global" }
  19. exchanges = { path = "../exchanges" }
  20. reqwest = { version = "0.11.14", features = ["json"] }
  21. futures-util = { version = "0.3.28", default-features = false, features = ["sink", "std"] }
  22. futures-channel = "0.3.28"
  23. tokio-tungstenite= { git = "https://github.com/HonestHouLiang/tokio-tungstenite.git",rev = "208fc9b09bcc2e2c8cb52e1cde5087446464fc91" }