forked from John-alonso-debug/safe-client-gateway
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
55 lines (38 loc) · 1.32 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 = "safe-client-gateway"
version = "2.0.1"
authors = ["jpalvarezl <[email protected]>", "rmeissner <[email protected]>", "fmrsabino <[email protected]>"]
edition = "2018"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
dotenv = "0.15.0"
dotenv_codegen = "0.15.0"
regex = "1"
lazy_static = "1.4.0"
rocket = { git = "https://github.com/SergioBenitez/Rocket", rev = "4f3511786cb8b6540124b867591c7c5a6933409e" }
rocket_codegen = { git = "https://github.com/SergioBenitez/Rocket", rev = "4f3511786cb8b6540124b867591c7c5a6933409e" }
reqwest = { version = "0.11.3", features = ["json"] }
r2d2 = "0.8.9"
redis = { version = "0.20", features = ["r2d2"] }
ethcontract-common = "0.11.1"
ethereum-types = { version = "0.9.2", features = ["serialize"] }
ethabi = "12.0.0"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
serde_repr = "0.1"
itertools = "0.9.0"
derivative = "2.1.1"
chrono = { version = "0.4", features = ["serde"] }
thiserror = "1.0.20"
mockall = "0.9.1"
semver = "0.11.0"
# Logging
log = "0.4"
env_logger = "0.7.1"
[dependencies.rocket_contrib]
git = "https://github.com/SergioBenitez/Rocket"
rev = "4f3511786cb8b6540124b867591c7c5a6933409e"
default-features = false
features = ["json"]
[dev-dependencies]
cargo-watch = "7.3.0"