This repository has been archived by the owner on Feb 3, 2025. It is now read-only.
forked from jsnewby/rust_middleware
-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathCargo.toml
77 lines (71 loc) · 1.97 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
70
71
72
73
74
75
76
77
[package]
name = "aeternal"
version = "0.13.0"
authors = ["John Newby <@johnsnewby>", "Shubhendu Shekhar <@shekhar-shubhendu>", "Andrea Giacobino <@noandrea>" ]
description = "æternal: A caching and reporting layer for aeternity blockchain"
[lib]
name = "aeternal"
path = "src/lib.rs"
[[bin]]
name = "aeternal"
path = "src/main.rs"
[features]
client = [ ]
[profile.release]
debug = true
[dependencies]
assert-json-diff = "1.0.0"
backtrace = "0.3.37"
base58 = "0.1.0"
base58check = "0.0.1"
base64 = "0.10.1"
bigdecimal = { version = "0.1.0", features = ["serde",] }
blake2 = "0.8.1"
#blake2b = "0.7.0"
byteorder = "1.3.2"
chashmap = "2.2.2"
chrono = "0.4.9"
clap = "2.33.0"
curl = "0.4.24"
daemonize = "0.4.1"
diesel = { version = "1.4.2", features = ["postgres", "numeric", "serde_json", "r2d2", ] }
diesel_migrations = "1.4.0"
dotenv = "0.14.1"
env_logger = "0.6.2"
error-chain = "0.12.1"
flexi_logger = "0.14.3"
futures = "0.1"
hex = "0.4.0"
hyper-tls = {version = "0.1.2", optional = true}
itertools = "0.7.8"
lazy_static = "1.4.0"
log = "0.4.6"
log4rs = "0.8.3"
log4rs-email = { git = "https://github.com/johnsnewby/log4rs-email" }
mime = "0.3.3"
native-tls = {version = "0.2.2", optional = true}
openssl = {version = "0.10.15", optional = true}
percent-encoding = {version = "1.0.0", optional = true}
postgres = {version = "0.15.2", features = ["with-chrono", "with-serde_json"] }
r2d2 = "*"
r2d2-diesel = "*"
r2d2_postgres = "0.14.0"
rand = "0.7.2"
regex = "1.3.1"
reqwest = "0.9.20"
rocket = "0.4.2"
rocket_cors = "0.5.0"
rust-base58 = "*"
rust-crypto = "^0.2"
rust_decimal = { version = "0.11.1", features = ["postgres", "serde"] }
serde = "1.0"
serde_derive = "1.0"
serde_json = {version = "1.0.22", features=["arbitrary_precision"]}
serde-xml-rs = {git = "git://github.com/Metaswitch/serde-xml-rs.git" , branch = "master", optional = true}
sha2 = "*"
threadpool = "1.7.1"
ws = "0.9.0"
[dependencies.rocket_contrib]
version = "0.4.2"
default-features = false
features = ["diesel_postgres_pool", "json"]