-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
40 lines (38 loc) · 1.01 KB
/
Copy pathCargo.toml
File metadata and controls
40 lines (38 loc) · 1.01 KB
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
[workspace]
resolver = "3"
members = [
"aggregator-core",
"exchange-connectors",
"orderbook-implementations",
"server-implementations",
"analysis-tools",
"cli-tools",
"benchmarks"
]
[workspace.package]
version = "0.1.0"
edition = "2021"
authors = ["0xOse 0xoepatrick@gmail.com"]
license = "MIT OR Apache-2.0"
repository = "https://github.com/patrick-ehimen/aggregate"
description = "A comprehensive cryptocurrency orderbook aggregation platform"
[workspace.dependencies]
tokio = { version = "1.0", features = ["full"] }
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
thiserror = "1.0"
url = "2.4"
reqwest = { version = "0.11", features = ["json", "stream"] }
uuid = { version = "1.0", features = ["v4","serde"] }
chrono = { version = "0.4", features = ["serde"] }
tokio-tungstenite = "0.20"
tungstenite = "0.27.0"
tracing = "0.1"
tracing-subscriber = "0.3"
anyhow = "1.0"
async-trait = "0.1.50"
tonic = "0.10"
prost = "0.12"
futures-util = "0.3"
once_cell = "1.19"
dashmap = "5.5"