forked from igor110055/order_book_combining
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
44 lines (38 loc) · 1 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
# Copyright (c) GuestMeNot
# SPDX-License-Identifier: Contact for license information.
[package]
name = "order_book_aggregator"
version = "0.1.0"
edition = "2021"
build = "build.rs"
[[bin]]
name = "orderbook-aggregator-server"
path = "src/orderbook_aggregator_server.rs"
[[example]]
name = "orderbook-aggregator-client"
path = "examples/orderbook_aggregator_client.rs"
[dependencies]
actix = "0.13.0"
actix-rt = "2.7.0"
anyhow = "1.0.58"
async-trait = "0.1.56"
dashmap = "5.3.4"
futures = "0.3.21"
futures-util = "0.3.21"
lazy_static = "1.4.0"
prost = "0.10.4"
rand = "0.8.5"
serde = { version = "1.0", features = ["derive"]}
serde_json = "1.0"
slog = "2.7.0"
slog-term = "2.9.0"
slog-async = "2.7.0"
thiserror = "1.0.31"
tokio = { version = "1.20.0", features = ["macros", "rt-multi-thread", "full"] }
tokio-stream = "0.1.9"
tonic = "0.7.2"
url = "2.2.2"
tokio-tungstenite = { version="0.17.1", features=["native-tls"]}
tungstenite = { version="0.17.2", features=["native-tls"]}
[build-dependencies]
tonic-build = "0.7.2"