Cargo.toml 1.0 KB

123456789101112131415161718192021222324252627282930313233343536373839
  1. [package]
  2. name = "as-rust"
  3. version = "3.5.0"
  4. edition = "2021"
  5. # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
  6. [dependencies]
  7. strategy = {path="./strategy"}
  8. standard = { path="./standard" }
  9. exchanges = { path="./exchanges" }
  10. global = { path="./global" }
  11. tokio = { version = "1.31.0", features = ["full"] }
  12. chrono = "0.4.26"
  13. tracing = "0.1"
  14. tracing-subscriber = { version = "0.3.17", features = ["env-filter"] }
  15. tracing-appender-timezone = { git = "https://github.com/skyfffire/tracing-appender-timezone.git" }
  16. serde = { version = "1.0.188", features = ["derive"] }
  17. actix-rt = "2.5.0"
  18. actix-web = "=4.9.0"
  19. ctrlc = "3.2.5"
  20. serde_json = "1.0.105"
  21. rust_decimal = { version = "1.32.0", features = ["maths"] }
  22. rust_decimal_macros = "1.32.0"
  23. actix-cors = "0.6"
  24. backtrace = "0.3" # 堆栈跟踪
  25. [workspace]
  26. members=[
  27. "exchanges",
  28. "standard",
  29. "strategy",
  30. "global",
  31. "derive"
  32. ]
  33. [target.'cfg(any(target_os = "linux"))'.dependencies.openssl]
  34. version = "*"
  35. features = ["vendored"]