-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
59 lines (57 loc) · 1.67 KB
/
Cargo.toml
File metadata and controls
59 lines (57 loc) · 1.67 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 = [
"crates/bin/aggregator",
"crates/bin/escrow_manager",
"crates/core",
"crates/eip712_message",
"crates/graph",
"crates/integration_tests",
"crates/receipt",
]
[workspace.package]
version = "0.1.0"
edition = "2021"
rust-version = "1.91"
license = "Apache-2.0"
repository = "https://github.com/graphprotocol/graph-tally"
[workspace.dependencies]
anyhow = { version = "1.0.98" }
anymap3 = "1.0.1"
async-trait = "0.1.88"
axum = { version = "0.8.3", features = [
"http1",
"json",
"matched-path",
"original-uri",
"query",
"tokio",
], default-features = false }
clap = { version = "4.5.37", features = ["derive", "env"] }
criterion = { version = "0.5.1", features = ["async_std"] }
futures-util = "0.3.31"
hyper = { version = "1.6.0", features = ["full"] }
insta = { version = "1.42.2", features = ["json"] }
jsonrpsee = { version = "0.25.1", features = ["macros", "server", "client"] }
jsonrpsee-core = "0.25.1"
lazy_static = "1.5.0"
log = "0.4.27"
prometheus = "0.14.0"
prost = "0.14.1"
rand = "0.9.1"
rayon = "1.10.0"
rdkafka = { version = "0.37.0", features = ["tokio", "sasl"] }
serde = { version = "1.0.219", features = ["derive"] }
serde_json = { version = "1.0.140", features = ["raw_value"] }
strum = { version = "0.27.1", features = ["derive"] }
rstest = "0.25.0"
thegraph-core = "0.15.1"
thiserror = "2.0.12"
tokio = { version = "1.44.2", features = ["macros", "signal"] }
tonic = { version = "0.14.1", features = ["transport", "zstd"] }
tonic-build = "0.14.1"
tonic-prost = "0.14.1"
tonic-prost-build = "0.14.1"
tower = { version = "0.5.3", features = ["util", "steer"] }
tower-http = { version = "0.6.8" }
tracing-subscriber = "0.3.19"