-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
98 lines (89 loc) · 2.22 KB
/
Cargo.toml
File metadata and controls
98 lines (89 loc) · 2.22 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
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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
[package]
edition = "2021"
name = "orderbook-quoter-server-pkgs"
publish = false
version = "0.1.0"
[profile.release]
codegen-units = 1
lto = true
debug = true
[workspace]
members = [
"quoter-grpc-server",
"exchange",
"depth-driver",
"orderbook",
"orderbook-slabs",
"ring-buffer",
"testing/depth-generator",
"testing/exchange-stubs",
"objs/internal-objects",
"objs/market-objects",
"objs/errors",
"objs/config", "orderbook-sync",
]
exclude = [
"market-maker",
"exchange-server"
]
[workspace.dependencies]
crossbeam-channel = "0.5.8"
tracing = "0.1.37"
rustc-hash = "1.1.0"
async-trait = "0.1.68"
futures = "0.3.28"
ordered-float = "3.7.0"
bounded-vec-deque = "0.1.1"
thin-vec = "0.2.12"
tokio = { version = "1.28.1", features = ["full"] }
fixed-vec-deque = "0.1.11"
test-log = "0.2.11"
env_logger = "*"
tracing-test = "0.2.4"
tracing-subscriber = "0.3.17"
libmath = "0.2.1"
static_assertions = "1.1.0"
itertools = "0.10.5"
rand = "0.8.5"
io-context = "0.2.0"
envtime = "0.0.4"
const_env = "0.1.2"
lazy_static = "1.4.0"
dhat = "0.3.2"
tonic = "0.9.2"
prost = "0.11.9"
futures-util = "0.3.28"
serde_json = "1.0.97"
tokio-context = "0.1.3"
tungstenite = "0.19.0"
pin-project-lite = "0.2.16"
reqwest = { version = "0.11", features = ["json"] }
tokio-tungstenite = "0.19.0"
exchange = { path = "exchange" }
quoter-grpc-server = { path = "quoter-grpc-server" }
market-objects = { path = "objs/market-objects"}
internal-objects = { path = "objs/internal-objects"}
quoter-errors = { path = "objs/errors"}
config = { path = "objs/config"}
ring-buffer = { path = "ring-buffer"}
testing-traits= { path = "testing/testing-traits" }
depth-generator = { path = "testing/depth-generator"}
exchange-stubs = { path = "testing/exchange-stubs" }
[dependencies]
tokio = { version = "1.0", features = ["rt-multi-thread", "macros"] }
prost = "0.11"
fixed = "1.29.0"
bitflags = "2.9.1"
clippy = "0.0.302"
[build-dependencies]
prost = "0.11"
tonic-build = { version = "0.9.2", features = ["prost"] }
serde = "1.0.166"
serde_yaml = "0.9.22"
config = { path = "objs/config"}
[[bin]]
name = "orderbook-quoter-server"
path = "bin/orderbook-quoter-server/src/main.rs"
[[bin]]
name = "market-maker"
path = "bin/market-maker/src/main.rs"