-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCargo.toml
46 lines (42 loc) · 1.29 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
[package]
name = "defillama-answerer"
version = "0.12.0"
edition = "2021"
[profile.release]
debug = false
strip = true
[dependencies]
anyhow = "1.0.75"
async-trait = "0.1.73"
backoff = { version = "0.4.0", features = ["tokio"] }
carrot-commons = "0.2.3"
confy = { version = "0.5.1", features = [
"yaml_conf",
], default-features = false }
diesel = { version = "2.1.3", features = ["postgres", "r2d2", "serde_json"] }
diesel_migrations = { version = "2.1.0", features = ["postgres"] }
ethers = { version = "2.0.10", features = ["rustls"] }
governor = "0.6.0"
mibs = "0.13.3"
reqwest = { version = "0.11.22", features = ["serde_json", "stream"] }
rust_decimal = "1.32.0"
serde = { version = "1.0.188", features = ["derive"] }
serde_json = "1.0.107"
tokio = { version = "1.32.0", features = ["macros", "rt-multi-thread"] }
tracing = "0.1.37"
tracing-futures = { version = "0.2.5" }
tracing-subscriber = { version = "0.3.17", features = [
"fmt",
"env-filter",
"json",
] }
utoipa = "3.5.0"
utoipa-swagger-ui = "3.1.5"
warp = "0.3.6"
[build-dependencies]
anyhow = "1.0.75"
ethers = { version = "2.0.10", features = ["abigen"] }
[dev-dependencies]
diesel = { version = "2.1.3", features = ["postgres", "r2d2", "serde_json"] }
diesel_migrations = { version = "2.1.0", features = ["postgres"] }
wiremock = "0.5.19"