-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathCargo.toml
More file actions
38 lines (34 loc) · 1.25 KB
/
Cargo.toml
File metadata and controls
38 lines (34 loc) · 1.25 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
[workspace]
members = [
"bluejay-core",
"bluejay-parser",
"bluejay-printer",
"bluejay-schema-comparator",
"bluejay-operation-normalizer",
"bluejay-typegen",
"bluejay-typegen-codegen",
"bluejay-typegen-macro",
"bluejay-validator",
"bluejay-visibility",
]
resolver = "2"
[workspace.package]
version = "0.3.1"
[workspace.lints.clippy]
wildcard_imports = "deny"
[workspace.dependencies]
bluejay-core = { path = "./bluejay-core", version = "=0.3.1" }
bluejay-parser = { path = "./bluejay-parser", version = "=0.3.1" }
bluejay-printer = { path = "./bluejay-printer", version = "=0.3.1" }
bluejay-schema-comparator = { path = "./bluejay-schema-comparator", version = "=0.3.1" }
bluejay-typegen = { path = "./bluejay-typegen", version = "=0.3.1" }
bluejay-typegen-codegen = { path = "./bluejay-typegen-codegen", version = "=0.3.1" }
bluejay-typegen-macro = { path = "./bluejay-typegen-macro", version = "=0.3.1" }
bluejay-validator = { path = "./bluejay-validator", version = "=0.3.1" }
bluejay-operation-normalizer = { path = "./bluejay-operation-normalizer", version = "=0.3.1" }
bluejay-visibility = { path = "./bluejay-visibility", version = "=0.3.1" }
[profile.shopify-function]
inherits = "release"
lto = true
opt-level = 's'
strip = true