forked from apollographql/router
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
32 lines (31 loc) · 944 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
[workspace]
default-members = ["apollo-router"]
members = [
"apollo-router",
"apollo-router-benchmarks",
"apollo-router-scaffold",
"examples/add-timestamp-header",
"examples/async-auth",
"examples/cookies-to-headers",
"examples/embedded",
"examples/context",
"examples/forbid-anonymous-operations",
"examples/hello-world",
"examples/status-code-propagation",
"examples/op-name-to-header",
"examples/rhai-logging",
"examples/rhai-data-response-mutate",
"examples/rhai-error-response-mutate",
"examples/rhai-subgraph-request-log",
"examples/rhai-surrogate-cache-key",
"examples/supergraph_sdl",
"examples/jwt-auth",
"fuzz",
"xtask",
]
# this makes build scripts and proc macros faster to compile
[profile.dev.build-override]
# If you un-comment the next line with 1.60.0, compile fails on circle-ci linux
# debug = false
strip = "debuginfo"
incremental = false