forked from graphprotocol/graph-node
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
30 lines (27 loc) · 819 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
[workspace]
members = [
"core",
"chain/ethereum",
"graphql",
"mock",
"node",
"runtime/wasm",
"runtime/derive",
"runtime/test",
"server/http",
"server/json-rpc",
"server/index-node",
"server/metrics",
"store/postgres",
"store/test-store",
"graph",
"tests",
]
[patch.crates-io]
# Include protection against stack overflow when parsing from this PR: https://github.com/graphql-rust/graphql-parser/commit/45167b53e9533c331298683577ba8df7e43480ac
graphql-parser = {git="https://github.com/graphql-rust/graphql-parser", rev="45167b53e9533c331298683577ba8df7e43480ac"}
# Incremental compilation on Rust 1.55 causes an ICE on build. As soon as graph node builds again, these can be removed.
[profile.dev]
incremental = false
[profile.test]
incremental = false