forked from Switcheo/zap-api
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
37 lines (34 loc) · 1003 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
37
[package]
name = "zap-api"
version = "0.1.0"
authors = ["Ivan Poon <ravenxce@gmail.com>"]
edition = "2018"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
actix="0.10.0"
actix-cors = "0.5.4"
actix-web = "3"
bigdecimal = { version = "^0.1.2", features = ["serde"] }
chrono = { version = "^0.4.19", features = ["serde"] }
futures = "0.3"
ring = "^0.16.19"
diesel = { version = "^1.4.5", features = ["postgres", "r2d2", "chrono", "numeric", "uuid"] }
diesel_migrations = "1.4.0"
dotenv = "^0.15.0"
env_logger = "^0.8.2"
hex = "^0.4.2"
log = "0.4"
num-bigint = "^0.2.6"
trees = "^0.4.1"
redis = { version = "0.21.2", features = ["r2d2"] }
reqwest = { version = "^0.10.9", features = ["blocking", "json"] }
bech32 = "0.7.2"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
serde_yaml = "0.8.17"
uuid = { version = "^0.6.5", features = ["serde"] }
[[bin]]
name = "zap-api"
test = false
bench = false
path = "src/main.rs"