-
Notifications
You must be signed in to change notification settings - Fork 1.1k
Expand file tree
/
Copy pathCargo.toml
More file actions
37 lines (34 loc) · 1.05 KB
/
Cargo.toml
File metadata and controls
37 lines (34 loc) · 1.05 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
[package]
name = "graph-core"
version.workspace = true
edition.workspace = true
[dependencies]
async-trait = { workspace = true}
bytes = "1.0"
graph = { path = "../graph" }
graph-chain-ethereum = { path = "../chain/ethereum" }
graph-chain-near = { path = "../chain/near" }
graph-chain-substreams = { path = "../chain/substreams" }
graph-runtime-wasm = { path = "../runtime/wasm" }
serde_yaml = { workspace = true }
tokio = { workspace = true }
tokio-retry = { workspace = true }
# Switch to crates.io once tower 0.5 is released
tower = { git = "https://github.com/tower-rs/tower.git", features = ["full"] }
thiserror = { workspace = true }
anyhow = "1.0"
# Dependencies related to Amp subgraphs
alloy.workspace = true
arrow.workspace = true
chrono.workspace = true
futures.workspace = true
indoc.workspace = true
itertools.workspace = true
parking_lot.workspace = true
prometheus.workspace = true
slog.workspace = true
strum.workspace = true
tokio-util.workspace = true
[dev-dependencies]
tower-test = { git = "https://github.com/tower-rs/tower.git" }
wiremock = "0.6.5"