forked from graphprotocol/graph-node
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
36 lines (33 loc) · 951 Bytes
/
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
[package]
name = "graph-core"
version = "0.25.2"
edition = "2021"
[dependencies]
async-trait = "0.1.50"
atomic_refcell = "0.1.8"
async-stream = "0.3"
bytes = "1.0"
futures01 = { package="futures", version="0.1.31" }
futures = { version="0.3.4", features=["compat"] }
graph = { path = "../graph" }
# This dependency is temporary. The multiblockchain refactoring is not
# finished as long as this dependency exists
graph-chain-ethereum = { path = "../chain/ethereum" }
graph-chain-near = { path = "../chain/near" }
graph-chain-tendermint = { path = "../chain/tendermint" }
lazy_static = "1.2.0"
lru_time_cache = "0.11"
semver = "1.0.7"
serde = "1.0"
serde_json = "1.0"
serde_yaml = "0.8"
fail = "0.5"
graph-runtime-wasm = { path = "../runtime/wasm" }
[dev-dependencies]
graph-mock = { path = "../mock" }
walkdir = "2.3.2"
test-store = { path = "../store/test-store" }
hex = "0.4.3"
graphql-parser = "0.4.0"
pretty_assertions = "1.2.0"
anyhow = "1.0"