forked from apollographql/router
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
73 lines (69 loc) · 2.63 KB
/
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
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
[workspace]
resolver = "2"
default-members = ["apollo-router", "apollo-federation"]
members = [
"apollo-router",
"apollo-router-benchmarks",
"apollo-router-scaffold",
"apollo-federation",
"apollo-federation/cli",
"examples/add-timestamp-header/rhai",
"examples/async-auth/rust",
"examples/cache-control/rhai",
"examples/context/rust",
"examples/cookies-to-headers/rhai",
"examples/data-response-mutate/rhai",
"examples/error-response-mutate/rhai",
"examples/forbid-anonymous-operations/rhai",
"examples/forbid-anonymous-operations/rust",
"examples/hello-world/rust",
"examples/jwt-claims/rhai",
"examples/logging/rhai",
"examples/op-name-to-header/rhai",
"examples/status-code-propagation/rust",
"examples/subgraph-request-log/rhai",
"examples/supergraph-sdl/rust",
"examples/surrogate-cache-key/rhai",
"examples/coprocessor-subgraph/rust",
"examples/throw-error/rhai",
"fuzz",
# Note that xtask is not in the workspace member because it relies on dependencies that are incompatible with the router. Notably hyperx but there are others.
]
# 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
# If building a dhat feature, you must use this profile
# e.g. heap allocation tracing: cargo build --profile release-dhat --features dhat-heap
# e.g. heap and ad-hoc allocation tracing: cargo build --profile release-dhat --features dhat-heap,dhat-ad-hoc
[profile.release-dhat]
inherits = "release"
debug = 1
# Dependencies used in more than one place are specified here in order to keep versions in sync:
# https://doc.rust-lang.org/cargo/reference/workspaces.html#the-dependencies-table
[workspace.dependencies]
apollo-compiler = "=1.0.0-beta.16"
apollo-parser = "0.7.6"
apollo-smith = { version = "0.5.0", features = ["parser-impl"] }
async-trait = "0.1.77"
http = "0.2.11"
insta = { version = "1.38.0", features = ["json", "redactions", "yaml"] }
once_cell = "1.19.0"
reqwest = { version = "0.11.24", default-features = false, features = [
"rustls-tls",
"rustls-native-certs",
"gzip",
"json",
"stream",
] }
schemars = { version = "0.8.16", features = ["url"] }
serde = { version = "1.0.197", features = ["derive", "rc"] }
serde_json = { version = "1.0.114", features = [
"preserve_order",
"float_roundtrip",
] }
serde_json_bytes = { version = "0.2.2", features = ["preserve_order"] }
tokio = { version = "1.36.0", features = ["full"] }
tower = { version = "0.4.13", features = ["full"] }