-
Notifications
You must be signed in to change notification settings - Fork 1.1k
Expand file tree
/
Copy pathCargo.toml
More file actions
37 lines (31 loc) · 852 Bytes
/
Cargo.toml
File metadata and controls
37 lines (31 loc) · 852 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
33
34
35
36
37
[package]
name = "graph-chain-ethereum"
version.workspace = true
edition.workspace = true
[dependencies]
async-trait = { workspace = true }
envconfig = { workspace = true }
jsonrpc-core = "18.0.0"
graph = { path = "../../graph" }
serde = { workspace = true }
prost = { workspace = true }
prost-types = { workspace = true }
anyhow = "1.0"
serde_json = { workspace = true }
tiny-keccak = "1.5.0"
hex = "0.4.3"
semver = { workspace = true }
thiserror = { workspace = true }
futures = { workspace = true }
tokio = { workspace = true }
tokio-stream = { workspace = true }
tower = { workspace = true }
itertools = "0.14.0"
graph-runtime-wasm = { path = "../../runtime/wasm" }
graph-runtime-derive = { path = "../../runtime/derive" }
[dev-dependencies]
base64 = "0"
[build-dependencies]
tonic-prost-build = { workspace = true }
[lints]
workspace = true