-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathCargo.toml
36 lines (32 loc) · 892 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
[package]
authors = ["raycar5 <raycar5@users.noreply.github.com>"]
edition = "2018"
name = "orderbook-challenge"
version = "0.1.0"
[profile.release]
debug = true
[dependencies]
arrayvec = "0.5"
async-stream = "0.3"
backoff = {git = "https://github.com/ihrwein/backoff.git", rev = "df003285a113e", features = ["tokio"]}
binary-heap-plus = "0.4"
fast-float = "0.2"
futures-util = "0.3"
num_enum = "0.5"
parse-display = "0.4"
prost = "0.7"
serde = "1.0"
simd-json = "0.3"
tokio = {version = "1.0", features = ["macros", "rt-multi-thread", "time"]}
tokio-stream = "0.1"
tokio-tungstenite = {version = "0.13", features = ["tls"]}
tonic = "0.4"
tungstenite = {version = "0.12", features = ["tls"]}
url = "2.2"
variant_count = "1.0"
[dev-dependencies]
better-macro = "1.0.4"
quickcheck = "1.0"
quickcheck_macros = "1.0"
[build-dependencies]
tonic-build = {version = "0.4", features = ["prost"]}