-
Notifications
You must be signed in to change notification settings - Fork 1.1k
Expand file tree
/
Copy pathCargo.toml
More file actions
92 lines (73 loc) · 1.94 KB
/
Cargo.toml
File metadata and controls
92 lines (73 loc) · 1.94 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
[package]
name = "gnd"
version.workspace = true
edition.workspace = true
[[bin]]
name = "gnd"
path = "src/main.rs"
[[test]]
name = "cli_commands"
path = "tests/cli_commands.rs"
[[test]]
name = "codegen_verification"
path = "tests/codegen_verification.rs"
[[test]]
name = "gnd_test"
path = "tests/gnd_test.rs"
[dependencies]
# Core graph dependencies
graph = { path = "../graph" }
graph-chain-ethereum = { path = "../chain/ethereum" }
graph-core = { path = "../core" }
graph-node = { path = "../node" }
graph-graphql = { path = "../graphql" }
graph-store-postgres = { path = "../store/postgres" }
# Test command dependencies
hex = "0.4"
async-trait = { workspace = true }
tower = { workspace = true }
# Direct dependencies from current dev.rs
anyhow = { workspace = true }
clap = { workspace = true }
clap_complete = { workspace = true }
env_logger = { workspace = true }
git-testament = { workspace = true }
lazy_static = { workspace = true }
serde = { workspace = true }
tokio = { workspace = true }
tokio-util = { workspace = true }
# File watching
notify = "8.2.0"
globset = "0.4.18"
# Config and auth
url = { workspace = true }
serde_json = { workspace = true }
pq-sys = { version = "0.7.5", features = ["bundled"] }
# HTTP client for Graph Node API
reqwest = { workspace = true }
thiserror = { workspace = true }
# Console output
similar = "2"
indicatif = { workspace = true }
console = { workspace = true }
# Code generation
graphql-tools = { workspace = true }
regex = { workspace = true }
serde_yaml = { workspace = true }
Inflector = { workspace = true }
# Migrations
semver = { workspace = true }
# Build command
sha1 = "0.10"
wasmparser = { workspace = true }
# Interactive prompts
inquire = "0.9"
# Temp directories for init
tempfile = "3"
# Browser opening for publish command
open = "5"
[target.'cfg(unix)'.dependencies]
pgtemp = { git = "https://github.com/graphprotocol/pgtemp", branch = "initdb-args" }
[dev-dependencies]
tempfile = "3"
walkdir = "2"