-
Notifications
You must be signed in to change notification settings - Fork 64
/
Copy pathCargo.toml
69 lines (64 loc) · 1.96 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
[package]
name = "dingir-exchange"
version = "0.1.0"
authors = [ "lispczz <mycinbrin@gmail.com>" ]
edition = "2018"
[dependencies]
actix-rt = "2.1.0"
actix-web = "4.0.0-beta.4"
anyhow = "1.0.38"
arrayref = "0.3.6"
babyjubjub-rs = { git = "https://github.com/lispc/babyjubjub-rs", features = [ "aarch64" ], default-features = false }
bytes = "1.0.1"
chrono = { version = "0.4.19", features = [ "serde" ] }
config_rs = { package = "config", version = "0.10.1" }
crossbeam-channel = "0.5.0"
dotenv = "0.15.0"
ff = { package = "ff_ce", version = "0.11", features = [ "derive" ] }
futures = "0.3.13"
futures-channel = "0.3.13"
futures-core = { version = "0.3.13", default-features = false }
futures-util = { version = "0.3.13", default-features = false }
hex = "0.4.3"
humantime-serde = "1.0.1"
hyper = "0.14.4"
itertools = "0.10.0"
lazy_static = "1.4.0"
log = "0.4.14"
nix = "0.20.0"
num-bigint = { version = "0.2.2", features = [ "rand" ] }
num_enum = "0.5.1"
poseidon-rs = { version = "0.0.8" }
prost = "0.7.0"
prost-types = "0.7.0"
qstring = "0.7.2"
rand = "0.8.3"
rdkafka = { version = "0.25.0", features = [ "cmake-build" ] }
rust_decimal = { version = "1.10.3", features = [ "postgres", "bytes", "byteorder" ] }
rust_decimal_macros = "1.10.3"
serde = { version = "1.0.124", features = [ "derive" ] }
serde_json = "1.0.64"
sqlx = { version = "0.5.1", features = [ "runtime-tokio-rustls", "postgres", "chrono", "decimal", "json", "migrate" ] }
thiserror = "1.0.24"
thread-id = "3.3.0"
tokio = { version = "1.6.0", features = [ "full" ] }
tonic = "0.4.0"
tracing = "0.1"
tracing-appender = "0.1"
tracing-subscriber = "0.2"
ttl_cache = "0.5.1"
[build-dependencies]
prost = "0.7.0"
tonic-build = "0.4.0"
[[bin]]
name = "restapi"
path = "src/bin/restapi.rs"
[[bin]]
name = "matchengine"
path = "src/bin/matchengine.rs"
[features]
windows_build = [ "rdkafka/dynamic_linking" ]
emit_state_diff = [ ]
default = [ "emit_state_diff" ]
#default = ["windows_build"]
#default = ["windows_build", "emit_state_diff"]