-
Notifications
You must be signed in to change notification settings - Fork 2
/
Cargo.toml
39 lines (37 loc) · 1.12 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
[package]
name = "blockchain_gateway"
version = "0.1.0"
authors = ["Алексей Карасев <[email protected]>"]
[lib]
path = "src/lib.rs"
name = "blockchain_gateway_lib"
[dependencies]
base64 = "0.9"
chrono = "0.4"
clap = {version = "2", features = ["yaml"]}
config = "0.9"
env_logger = "0.5"
failure = "0.1"
futures = "0.1"
futures-cpupool = "0.1"
gelf = { git = "https://github.com/StoriqaTeam/gelf-rust", rev = "b05956244f020bb4a62b859bd1025b6c699b2628" }
http_router = "0.1"
hyper = "0.12"
hyper-tls = "0.3"
lapin-async = {version = "0.17", git = "https://github.com/StoriqaTeam/lapin", branch = "0.17.1" }
lapin-futures = {version = "0.17", git = "https://github.com/StoriqaTeam/lapin", branch = "0.17.1" }
log = { version = "0.4", features = ["std", "serde"] }
r2d2 = "0.8"
rand = "0.5"
regex = "1"
rlp = { version = "0.2.4", features = ["ethereum"] }
sentry = "0.12"
serde = "1"
serde_derive = "1"
serde_json = { version = "1", features = ["arbitrary_precision"] }
serde_qs = "0.4"
simplelog = "0.5.3"
tokio = "0.1"
tokio-core = "0.1"
uuid = { version = "0.6", features = ["use_std", "v4", "serde"] }
validator = "0.8"