-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
28 lines (25 loc) · 846 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
[package]
name = "market-data-aggregator"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
async-stream = "0.3.3"
bytes = "1.1.0"
chrono = { version = "0.4.19", features = ["serde"] }
futures = "0.3.21"
futures-channel = "0.3.21"
futures-util = "0.3"
prost = "0.10.4"
prost-derive = "0.10.1"
rust_decimal = "1.24.0"
rustea = "0.1.6"
serde = { version = "1.0.137", features = ["derive"] }
serde_json = "1.0.81"
structopt = "0.3.26"
tokio = { version = "1.18.2", default-features = false, features = ["io-std", "io-util", "macros", "rt-multi-thread"] }
tokio-tungstenite = { version = "0.17.1", features = ["rustls-tls-native-roots"] }
tonic = { version = "0.7.2", features = ["codegen"] }
url = "2.2.2"
[build-dependencies]
tonic-build = "0.7.2"