-
Notifications
You must be signed in to change notification settings - Fork 1.1k
Expand file tree
/
Copy pathCargo.toml
More file actions
50 lines (45 loc) · 1.41 KB
/
Cargo.toml
File metadata and controls
50 lines (45 loc) · 1.41 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
38
39
40
41
42
43
44
45
46
47
48
49
50
[package]
name = "graph-node"
version.workspace = true
edition.workspace = true
default-run = "graph-node"
[[bin]]
name = "graph-node"
path = "src/main.rs"
[[bin]]
name = "graphman"
path = "src/bin/manager.rs"
[dependencies]
anyhow = { workspace = true }
env_logger = { workspace = true }
clap.workspace = true
git-testament = { workspace = true }
itertools = { workspace = true }
lazy_static = { workspace = true }
url = { workspace = true }
graph = { path = "../graph" }
graph-core = { path = "../core" }
graph-chain-ethereum = { path = "../chain/ethereum" }
graph-chain-near = { path = "../chain/near" }
graph-graphql = { path = "../graphql" }
graph-server-http = { path = "../server/http" }
graph-server-index-node = { path = "../server/index-node" }
graph-server-json-rpc = { path = "../server/json-rpc" }
graph-server-metrics = { path = "../server/metrics" }
graph-store-postgres = { path = "../store/postgres" }
graphman-server = { workspace = true }
graphman = { workspace = true }
serde = { workspace = true }
shellexpand = "3.1.2"
termcolor = "1.4.1"
tokio = { workspace = true }
diesel = { workspace = true }
diesel-async = { workspace = true }
prometheus = { version = "0.14.0", features = ["push"] }
json-structural-diff = { version = "0.2", features = ["colorize"] }
indicatif = { workspace = true }
console = { workspace = true }
# Dependencies related to Amp subgraphs
tokio-util.workspace = true
[lints]
workspace = true