-
Notifications
You must be signed in to change notification settings - Fork 64
/
Copy pathCargo.toml
55 lines (49 loc) · 1.35 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
45
46
47
48
49
50
51
52
53
54
55
[package]
name = "dingir-exchange"
version = "0.1.0"
authors = ["lispczz <mycinbrin@gmail.com>"]
edition = "2018"
[dependencies]
log = "0.4.11"
env_logger = "0.7.1"
config_rs = { package = "config", version = "0.10.1" }
serde = { version = "1.0.116", features = ["derive"] }
serde_json = "1.0.57"
prost = "0.6.1"
prost-types = "0.6.1"
bytes = "0.5.6"
futures-core = { version = "0.3.5", default-features = false }
futures-channel = "0.3.5"
futures-util = { version = "0.3.5", default-features = false }
tokio = { version = "0.2", features = ["full"] }
thread-id = "3.3.0"
futures = "0.3.5"
hyper = "0.13.7"
crossbeam-channel = "0.4.4"
rdkafka = "0.24.0"
nix = "0.18.0"
anyhow = "1.0.32"
sqlx = { version = "0.4.2", features = [ "runtime-tokio-rustls", "postgres", "chrono", "decimal", "json", "migrate" ] }
chrono = { version = "0.4.15", features = ["serde"] }
rust_decimal = { version = "1.8.1", features = ["postgres", "diesel", "bytes", "byteorder"] }
rust_decimal_macros = "1.8.1"
ttl_cache = "0.5.1"
itertools = "0.9.0"
dotenv = "0.15.0"
num_enum = "0.5.1"
tonic = "0.3.1"
actix-web = "3.3.2"
qstring = "0.7.2"
thiserror = "1.0.23"
rand = "0.8.2"
[build-dependencies]
prost = "0.6.1"
tonic-build = "0.3.1"
[[bin]]
name = "restapi"
path = "src/bin/restapi.rs"
[[bin]]
name = "matchengine"
path = "src/bin/matchengine.rs"
[features]
windows_build = ["rdkafka/dynamic_linking"]