| 1234567891011121314151617181920212223242526 |
- [package]
- name = "strategy"
- version = "0.1.0"
- edition = "2021"
- # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
- [dependencies]
- serde = "1.0.183"
- serde_derive = "1.0"
- serde_json = "1.0.104"
- tokio = { version = "1.31.0", features = ["full"] }
- rust_decimal = { version = "1.32.0", features = ["maths"]}
- rust_decimal_macros = "1.32.0"
- rand = "0.8.4"
- chrono = "0.4.26"
- tracing = "0.1"
- tracing-subscriber = "0.3.17"
- standard = { path = "../standard" }
- global = { path = "../global" }
- exchanges = { path = "../exchanges" }
- reqwest = { version = "0.11.14", features = ["json"] }
- futures-util = { version = "0.3.28", default-features = false, features = ["sink", "std"] }
- futures-channel = "0.3.28"
- tokio-tungstenite= { git = "https://github.com/skyfffire/tokio-tungstenite-proxy.git" }
|