-
Notifications
You must be signed in to change notification settings - Fork 30
/
Cargo.toml
105 lines (102 loc) · 2.53 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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
[workspace.package]
edition = "2021"
authors = ["Francesco Ceccon", "The Apibara contributors"]
repository = "https://github.com/apibara/dna"
license = "Apache-2.0"
[workspace]
resolver = "2"
members = [
"observability",
"etcd",
"etcd-dbg",
"protocol",
"common",
"benchmark",
# Chains
"beaconchain",
"evm",
"starknet",
]
[profile.maxperf]
inherits = "release"
codegen-units = 1
lto = "fat"
incremental = false
[workspace.dependencies]
alloy-primitives = "0.8"
alloy-eips = "0.3.6"
alloy-rpc-client = "0.3.6"
alloy-provider = "0.3.6"
alloy-rpc-types = "0.3.6"
alloy-transport = "0.3.6"
alloy-transport-http = "0.3.6"
bytes = { version = "1.7.1", features = ["serde"] }
byte-unit = "5.1.4"
clap = { version = "4.5.13", features = [
"derive",
"env",
"cargo",
"unicode",
"color",
"unstable-styles",
] }
ctrlc = { version = "3.4.5", features = ["termination"] }
dirs = "5.0.1"
error-stack = "0.5.0"
etcd-client = { version = "0.14.0", features = ["tls", "tls-roots"] }
fastrace = "0.7"
fastrace-opentelemetry = "0.7"
foyer = { version = "0.12.1", features = ["tracing"] }
futures = "0.3.30"
hex = { version = "0.4.3", features = ["serde"] }
memmap2 = "0.9.4"
mimalloc = "0.1.43"
opentelemetry = { version = "0.25", features = ["trace", "metrics"] }
opentelemetry_sdk = { version = "0.25", features = [
"trace",
"metrics",
"rt-tokio",
] }
opentelemetry-otlp = { version = "0.25", features = [
"trace",
"metrics",
"grpc-tonic",
] }
pin-project = "1.1.5"
prost = "0.13.1"
prost-types = "0.13.1"
rand = "0.8.5"
reqwest = { version = "0.12.5", default-features = false, features = [
"json",
"rustls-tls",
] }
rkyv = { version = "0.8.8", features = ["unaligned"] }
roaring = "0.10.6"
serde = { version = "1.0.205", features = ["derive"] }
serde_json = "1.0.122"
serde_with = "3.9.0"
tempfile = "3.13.0"
tempdir = "0.3.7"
testcontainers = "0.22.0"
time = { version = "0.3.36", features = ["formatting", "local-offset"] }
tokio = { version = "1.38", features = ["full"] }
tokio-stream = { version = "0.1.15", features = ["sync", "net"] }
tokio-util = "0.7.11"
tonic = { version = "0.12.1", features = ["tls", "tls-roots", "prost"] }
tonic-build = "0.12.2"
tonic-health = "0.12.2"
tonic-reflection = "0.12.2"
tracing = { version = "0.1.40", features = [
"max_level_trace",
"release_max_level_debug",
"valuable",
] }
tracing-opentelemetry = "0.26"
tracing-subscriber = { version = "0.3.18", features = [
"std",
"env-filter",
"json",
] }
valuable = "0.1"
url = "2.5"
zstd = "0.13.2"