/ Cargo.toml
Cargo.toml
 1  [package]
 2  name = "ethos-trade-bot"
 3  version = "0.1.0"
 4  edition = "2021"
 5  
 6  [dependencies]
 7  ethos-defi-sdk = { path = "../ethos-defi-sdk" }
 8  chrono = "0.4.39"
 9  tokio = { version = "1.42.0", features = [
10      "full",
11      "fs",
12      "net",
13      "time",
14      "io-util",
15      "tracing",
16  ] }
17  #ethos_trade_bot_logger = { path = "../ethos-trade-bot-logger" }
18  serde_json = "1.0.133"
19  serde = { version = "1.0.217", features = ["derive"] }
20  ethos-algorithm-of-god-lib = { path = "../ethos-algorithm-of-god-lib" }
21  ethos_sleddb = {path = "../ethos_sleddb"}
22  rand = "0.9.0"
23  openssl = { version = "0.10.71", features = ["vendored"] }
24  clap = { version = "4.5.32", features = ["derive"] }
25  console-subscriber = "0.4.1"
26  actix = "0.13.5"
27  sled = "0.34.7"
28  once_cell = "1.21.3"
29  sysinfo = "0.36.1"
30  dashmap = "6.1.0"
31  color-print = "0.3.7"
32  
33  
34  [profile.release]
35  strip = true
36  lto = true
37  codegen-units = 1
38  panic = "abort"