-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
48 lines (42 loc) · 913 Bytes
/
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
[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 = [
"orderbook-quoter-server",
"quoter-grpc-server",
"exchange-stream",
"exchange",
"depth-driver",
"testing/depth-generator",
"testing/exchange-stubs",
"internal-objects",
"market-objects",
"orderbook",
"config",
]
exclude = [
"market-maker",
"exchange-server"
]
[dependencies]
tokio = { version = "1.0", features = ["rt-multi-thread", "macros"] }
prost = "0.11"
[build-dependencies]
prost = "0.11"
tonic-build = { version = "0.9.2", features = ["prost"] }
serde = "1.0.166"
serde_yaml = "0.9.22"
config = { path = "config"}
[[bin]]
name = "orderbook-quoter-server"
path = "orderbook-quoter-server/src/main.rs"
[[bin]]
name = "market-maker"
path = "market-maker/src/main.rs"