-
Notifications
You must be signed in to change notification settings - Fork 23
/
Copy pathCargo.toml
36 lines (31 loc) · 840 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]
name = "orderly"
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"
chrono = "0.4.19"
clap = { version = "3.1.12", features = ["derive"] }
env_logger = "0.9.0"
futures = "0.3.21"
indicatif = "0.16.2"
log = "0.4.16"
prost = "0.10.3"
rust_decimal = "1.23"
rust_decimal_macros = "1.23"
serde = { version = "1.0.137", features = ["derive"] }
serde_json = "1.0.81"
tokio = { version = "1.18.1", features = ["macros", "rt-multi-thread"] }
tokio-tungstenite = { version = "0.17.1", features = ["native-tls"] }
tonic = "0.7.2"
tungstenite = "0.17.2"
url = "2.2.2"
[[bin]]
name = "orderly-server"
path = "src/main.rs"
[[bin]]
name = "orderly-client"
path = "src/client.rs"
[build-dependencies]
tonic-build = "0.7.2"