| 12345678910111213141516171819202122 |
- [package]
- name = "standard"
- version = "0.1.0"
- edition = "2021"
- # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
- [dependencies]
- global = { path = "../global" }
- exchanges = { path = "../exchanges" }
- tokio = { version = "1.31.0", features = ["full"] }
- async-trait = "0.1.73"
- serde = { version = "1.0", features = ["derive"] }
- serde_json = "1.0.104"
- rust_decimal = { version = "1.32.0", features = ["maths"] }
- rust_decimal_macros = "1.32.0"
- chrono = "0.4.30"
- futures = "0.3"
- tracing = "0.1"
- tracing-subscriber = { version = "0.3.17", features = ["env-filter"] }
- toml = "0.5.11"
- futures-channel = "0.3.29"
|