2023-09-28 12:10:45 +00:00
|
|
|
[workspace]
|
|
|
|
members = [
|
|
|
|
"crates/bevy_gltf_components",
|
|
|
|
"crates/bevy_gltf_blueprints",
|
2023-11-13 15:16:31 +00:00
|
|
|
"examples/bevy_gltf_components/basic/",
|
|
|
|
"examples/bevy_gltf_blueprints/basic/",
|
|
|
|
"examples/bevy_gltf_blueprints/basic_xpbd_physics/",
|
2023-11-14 12:24:59 +00:00
|
|
|
"examples/bevy_gltf_blueprints/animation/",
|
|
|
|
"examples/bevy_gltf_blueprints/multiple_levels/"
|
2023-09-28 12:10:45 +00:00
|
|
|
]
|
2023-11-13 13:36:42 +00:00
|
|
|
resolver = "2"
|
2023-09-28 12:10:45 +00:00
|
|
|
|
2023-11-13 15:16:31 +00:00
|
|
|
#### --------------------Dev/ debug-------------------------------
|
|
|
|
# Enable high optimizations for dependencies (incl. Bevy), but not for our code:
|
|
|
|
[profile.dev.package."*"]
|
|
|
|
opt-level = 3
|
|
|
|
|
|
|
|
[profile.dev.package.bevy]
|
|
|
|
features = ["dynamic"]
|
|
|
|
|
|
|
|
#### --------------------Production/ release-------------------------------
|
|
|
|
[profile.release]
|
|
|
|
strip = "debuginfo"
|
|
|
|
lto = "thin"
|