-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathCargo.toml
More file actions
49 lines (46 loc) · 1009 Bytes
/
Copy pathCargo.toml
File metadata and controls
49 lines (46 loc) · 1009 Bytes
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
[workspace]
members = [
"core/accounting",
"core/common",
"core/protocol",
"core/exec",
"core/oracle",
"core/risk",
"core/replay",
"core/math",
"core/engine",
"core/agents",
"core/opt",
"core/sweep",
"core/market",
"core/data",
"core/ingest",
"core/stochastic",
"core/ank",
"protocols/aave-v3",
"protocols/aave-v4",
"protocols/uniswap-v3",
"protocols/pendle",
"protocols/lido",
"protocols/hyperliquid",
"apps/api",
"examples",
]
resolver = "2"
[workspace.package]
edition = "2021"
license = "MIT"
authors = ["Anshul Rai <work@anshulrai.dev>"]
[workspace.dependencies]
anyhow = "1"
thiserror = "2"
csv = "1.3"
serde = { version = "1", features = ["derive"] }
serde_json = "1"
serde_yaml = "0.9"
rand = "0.9.2"
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["fmt", "env-filter"] }
clap = { version = "4", features = ["derive"] }
indexmap = { version = "2", features = ["serde"] }
ts-rs = { version = "11", features = ["indexmap-impl"] }