-
Notifications
You must be signed in to change notification settings - Fork 25
/
Copy pathCargo.toml
41 lines (38 loc) · 869 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
33
34
35
36
37
38
39
40
41
[package]
name = "pax"
version = "0.38.3"
authors = ["Zack Brown <[email protected]>", "Warfa Jibril <[email protected]>", "Samuel Selleck <[email protected]>"]
edition = "2021"
[workspace]
members = [
"pax-chassis-common",
"pax-chassis-ios",
"pax-chassis-macos",
"pax-chassis-web",
"pax-cli",
"pax-compiler",
"pax-compiler",
"pax-designtime",
"pax-engine",
"pax-kit",
"pax-lang",
"pax-language-server",
"pax-macro",
"pax-manifest",
"pax-message",
"pax-runtime",
"pax-runtime-api",
"pax-std",
"pax-pixels",
]
exclude = [
"pax-designer", # cannot build workspace without designtime when this is present in workspace (because it hard-codes designtime=on)
"pax-compiler/files",
"examples",
"tests",
"pax-generation",
]
[profile.release]
lto = true
opt-level = "z"
codegen-units = 1