-
Notifications
You must be signed in to change notification settings - Fork 31
/
Copy pathCargo.toml
61 lines (49 loc) · 1.67 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
[workspace]
members = [
"rafx",
"rafx-base",
"rafx-api",
"rafx-framework",
"rafx-shader-processor",
"rafx-renderer",
"rafx-visibility",
"rafx-assets",
"rafx-plugins",
"demo",
"demo-schema",
"demo-editor",
"demo-web"
]
exclude = [
]
resolver = "2"
# Optimize external crates by default, even in debug
[profile.dev.package."*"]
opt-level = 2
# Don't optimize hydrate packages in dev
[profile.dev.package.hydrate-loader]
opt-level = 0
[profile.dev.package.hydrate-base]
opt-level = 0
# Set the settings for build scripts and proc-macros.
[profile.dev.build-override]
opt-level = 2
# faster macOS builds
[profile.dev]
split-debuginfo = "unpacked"
[patch.crates-io]
#raw-gl-context = { git = "https://github.com/aclysma/raw-gl-context.git", branch = "rafx" }
#basis-universal = { path = "../basis-universal-rs/basis-universal" }
#basis-universal-sys = { path = "../basis-universal-rs/basis-universal-sys" }
#spirv_cross = { path = "../spirv_cross/spirv_cross" }
#spirv_cross = { git = "https://github.com/aclysma/spirv_cross.git", branch = "rafx-support" }
#spirv_cross = { path = "../aclysma_spirv_cross/spirv_cross", package = "aclysma_spirv_cross" }
#hydrate-base = { path = "../hydrate/hydrate-base" }
#hydrate-schema = { path = "../hydrate/hydrate-schema" }
#hydrate-data = { path = "../hydrate/hydrate-data" }
#hydrate-model = { path = "../hydrate/hydrate-model" }
#hydrate-pipeline = { path = "../hydrate/hydrate-pipeline" }
#hydrate-editor = { path = "../hydrate/hydrate-editor" }
#hydrate-loader = { path = "../hydrate/hydrate-loader" }
#hydrate-codegen = { path = "../hydrate/hydrate-codegen" }
#hydrate = { path = "../hydrate/hydrate" }