-
Notifications
You must be signed in to change notification settings - Fork 1.1k
Expand file tree
/
Copy pathCargo.toml
More file actions
32 lines (29 loc) · 896 Bytes
/
Cargo.toml
File metadata and controls
32 lines (29 loc) · 896 Bytes
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
[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"
async-trait = { workspace = true }
graph = { path = "../graph" }
graph-chain-ethereum = { path = "../chain/ethereum" }
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 = { workspace = true }
slog-async = { workspace = true }
slog-term = { workspace = true }
tokio = { version = "1.51.0", features = ["rt", "macros", "process"] }
tokio-util.workspace = true
[dev-dependencies]
anyhow = "1.0.102"
tokio-stream = "0.1"
[lints]
workspace = true