enable fast compiles

This commit is contained in:
Joe Ardent 2025-05-24 16:16:22 -07:00
parent 9edc499a53
commit 5f7bdc588a
2 changed files with 21 additions and 1 deletions

10
Cargo.lock generated
View file

@ -639,6 +639,7 @@ version = "0.16.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "2a5cd3b24a5adb7c7378da7b3eea47639877643d11b6b087fc8a8094f2528615"
dependencies = [
"bevy_dylib",
"bevy_internal",
]
@ -857,6 +858,15 @@ dependencies = [
"sysinfo",
]
[[package]]
name = "bevy_dylib"
version = "0.16.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "843c7ce266dfc46e49d01fbf9aa1829d33b70a1859b9ed6a526ac03070c52e97"
dependencies = [
"bevy_internal",
]
[[package]]
name = "bevy_ecs"
version = "0.16.0"

View file

@ -5,7 +5,17 @@ edition = "2024"
[dependencies]
anise = "0.5.4"
bevy = "0.16.0"
hifitime = "4.0.2"
log = { version = "0.4.27", features = ["std"] }
nyx-space = "2.1.0"
[dependencies.bevy]
version = "*"
features = ["dynamic_linking"]
[profile.dev]
opt-level = 1
# Enable a large amount of optimization in the dev profile for dependencies.
[profile.dev.package."*"]
opt-level = 3