forked from obmarg/cynic
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
53 lines (48 loc) · 1.07 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
[workspace]
members = [
"cynic",
"cynic-cli",
"cynic-codegen",
"cynic-introspection",
"cynic-proc-macros",
"cynic-querygen",
"cynic-querygen-web",
"examples",
"schemas/github",
"tests/querygen-compile-run",
"tests/ui-tests",
"cynic-parser",
"cynic-parser/ast-generator"
]
exclude = ["cynic-parser/parser-generator"]
resolver = "2"
default-members = [
"cynic",
"cynic-cli",
"cynic-codegen",
"cynic-introspection",
"cynic-proc-macros",
"cynic-querygen",
"cynic-parser"
]
[workspace.package]
authors = ["Graeme Coupar <[email protected]>"]
edition = "2021"
homepage = "https://cynic-rs.dev"
repository = "https://github.com/obmarg/cynic"
license = "MPL-2.0"
version = "3.7.3"
rust-version = "1.72"
[workspace.dependencies]
cynic-parser = { path = "cynic-parser", version = "0.4.3" }
darling = "0.20"
rstest = "0.21"
syn = "2"
[profile.dev]
# Disabling debug info speeds up builds a bunch,
# and we don't rely on it for debugging that much.
debug = 0
[profile.release]
lto = true
opt-level = 'z'
codegen-units = 1