-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
77 lines (67 loc) · 1.69 KB
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
[workspace]
members = ["trader", "backtest", "optimization"]
resolver = "2"
[workspace.package]
name = "glow"
authors = ["Vitor Dhers"]
version = "0.0.2"
edition = "2021"
license = "GPL"
[workspace.dependencies]
async-trait = "0.1.68"
chrono = "0.4.31"
crossterm = "0.28.1"
dotenv = "0.15.0"
enum_dispatch = "0.3.13"
env_logger = "0.10.0"
futures-util = "0.3.28"
log = "0.4.17"
phf = { version = "0.11.2", features = ["macros"] }
polars = { version = "0.33.2", features = [
"lazy",
"dtype-datetime",
"diagonal_concat",
"temporal",
"rolling_window",
"rows",
"cse",
"repeat_by",
"ewma",
"sign",
"dynamic_group_by",
"round_series",
"abs",
"cum_agg",
"is_in",
] }
polars-lazy = { version = "0.33.2", features = ["rolling_window"] }
reqwest = { version = "0.11.16", features = ["json", "gzip"] }
serde = { version = "1.0.160", features = ["derive"] }
serde_json = "1.0.96"
strum = "0.25.0"
strum_macros = "0.25.2"
tokio = { version = "1.27.0", features = ['full'] }
tokio-stream = { version = "0.1.14", features = ['sync'] }
tokio-tungstenite = { version = "0.20", features = ["native-tls"] }
url = "2.3.1"
hmac = "0.12.1"
sha2 = "0.10.7"
serde_urlencoded = "0.7.1"
itertools = "0.11.0"
regex = "1.4"
dialoguer = "0.11.0"
[workspace.dependencies.cli]
path = "cli"
[workspace.dependencies.common]
path = "shared/common"
[workspace.dependencies.exchanges]
path = "shared/exchanges"
[workspace.dependencies.glow_error]
path = "shared/error"
[workspace.dependencies.core]
path = "shared/core"
[workspace.dependencies.strategy]
path = "strategy"
[profile.release]
opt-level = 3 # Optimization level 3 (max optimization)
debug = false # Disable debugging information