| 123456789101112131415161718192021222324252627282930313233 |
- [package]
- name = "as-rust"
- version = "3.4.0"
- edition = "2021"
- # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
- [dependencies]
- strategy = {path="./strategy"}
- standard = { path="./standard" }
- exchanges = { path="./exchanges" }
- global = { path="./global" }
- tokio = { version = "1.31.0", features = ["full"] }
- chrono = "0.4.26"
- tracing = "0.1"
- tracing-subscriber = { version = "0.3.17", features = ["env-filter"] }
- tracing-appender-timezone = { git = "https://github.com/skyfffire/tracing-appender-timezone.git" }
- serde = { version = "1.0.188", features = ["derive"] }
- actix-rt = "2.5.0"
- actix-web = "4.0.0-beta.12"
- ctrlc = "3.2.5"
- serde_json = "1.0.105"
- rust_decimal = { version = "1.32.0", features = ["maths"] }
- rust_decimal_macros = "1.32.0"
- [workspace]
- members=[
- "exchanges",
- "standard",
- "strategy",
- "global",
- "derive"
- ]
|