-
Notifications
You must be signed in to change notification settings - Fork 1.1k
Expand file tree
/
Copy pathCargo.toml
More file actions
30 lines (28 loc) · 1.06 KB
/
Cargo.toml
File metadata and controls
30 lines (28 loc) · 1.06 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
[package]
name = "graph-tests"
version.workspace = true
edition.workspace = true
[dependencies]
anyhow = "1.0"
assert-json-diff = "2.0.2"
async-stream = "0.3.6"
graph = { path = "../graph" }
graph-chain-ethereum = { path = "../chain/ethereum" }
graph-chain-substreams= {path = "../chain/substreams"}
graph-node = { path = "../node" }
graph-core = { path = "../core" }
graph-graphql = { path = "../graphql" }
graph-store-postgres = { path = "../store/postgres" }
graph-server-index-node = { path = "../server/index-node" }
graph-runtime-wasm = { path = "../runtime/wasm" }
serde = { workspace = true }
serde_yaml = { workspace = true }
slog = { version = "2.7.0", features = ["release_max_level_trace", "max_level_trace"] }
tokio = { version = "1.45.1", features = ["rt", "macros", "process"] }
# Once graph upgrades to web3 0.19, we don't need this anymore. The version
# here needs to be kept in sync with the web3 version that the graph crate
# uses until then
secp256k1 = { version = "0.30", features = ["recovery"] }
[dev-dependencies]
anyhow = "1.0.98"
tokio-stream = "0.1"