-
Notifications
You must be signed in to change notification settings - Fork 193
Expand file tree
/
Copy pathCargo.toml
More file actions
59 lines (56 loc) · 2.23 KB
/
Cargo.toml
File metadata and controls
59 lines (56 loc) · 2.23 KB
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
[workspace]
resolver = "2"
members = ["bens-logic", "bens-proto", "bens-server"]
[workspace.dependencies]
bens-proto = { path = "./bens-proto" }
bens-logic = { path = "./bens-logic" }
actix-prost = { version = "0.3.1"}
actix-prost-build = { version = "0.3.1" }
actix-prost-macros = { version = "0.3.1" }
actix-web = { version = "4" }
alloy = { version = "0.5.4", default-features = false }
alloy-ccip-read = { version = "0.3.0" }
anyhow = { version = "1" }
async-trait = { version = "0.1" }
bigdecimal = { version = "0.4" }
blockscout-display-bytes = { version = "1.0" }
blockscout-service-launcher = { git = "https://github.com/blockscout/blockscout-rs", branch = "ll/bens/read-replica" }
cached = { version = "0.54.0", default-features = false }
chrono = "0.4"
config = { version = "0.14" }
env-collector = { git = "https://github.com/blockscout/blockscout-rs", version = "0.3.0" }
futures = { version = "0.3" }
hex = { version = "0.4" }
idna = { version = "1.0.2" }
itertools = { version = "0.14.0" }
lazy_static = { version = "1.4" }
nonempty = { version = "0.10.0", default-features = false }
pretty_assertions = { version = "1.4.0" }
prometheus = { version = "0.13.4" }
prost = { version = "0.14" }
prost-build = { version = "0.14" }
tonic-prost-build = { version = "0.14" }
tonic-prost = "0.14"
reqwest = { version = "0.12" }
reqwest-middleware = { version = "0.4" }
reqwest-retry = { version = "0.7" }
sea-query = { version = "0.32" }
serde = { version = "1" }
serde_json = { version = "1", default-features = false }
serde_with = { version = "3.11" }
# Pin to the same sqlx minor as sea-orm / blockscout-service-launcher to avoid duplicate sqlx.
sqlx = { version = "0.8.6", default-features = false }
tera = { version = "1.19" }
thiserror = { version = "2" }
tokio = { version = "1.23", default-features = false }
tokio-cron-scheduler = { version = "0.13" }
tonic = { version = "0.14" }
tonic-build = { version = "0.14" }
tracing = { version = "0.1" }
tracing-subscriber = { version = "0.3", default-features = false }
url = { version = "2.4" }
wiremock = { version = "0.6" }
blockscout-endpoint-swagger = { git = "https://github.com/blockscout/blockscout-rs", rev = "4a755c5" }
derive-new = { version = "0.7.0" }
ens-normalize-rs = "0.1.1"
rstest = { version = "0.26" }