changed dependancies to allow windows compilation

This commit is contained in:
2026-01-02 22:02:44 +00:00
parent 73750629a3
commit 2783bb6b2d
2 changed files with 3 additions and 14 deletions

10
Cargo.lock generated
View File

@@ -320,7 +320,6 @@ version = "0.17.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "76d3ee8652fe0577fd8a99054e147740850140d530be8e044a9be4e23a3e8a24"
dependencies = [
"bevy_dylib",
"bevy_internal",
]
@@ -605,15 +604,6 @@ dependencies = [
"sysinfo",
]
[[package]]
name = "bevy_dylib"
version = "0.17.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d50a92aea6e896b6939ea51db6ced3a7e2dfd591016286e3eed9cb60d9e4f149"
dependencies = [
"bevy_internal",
]
[[package]]
name = "bevy_ecs"
version = "0.17.3"

View File

@@ -4,11 +4,10 @@ version = "0.1.0"
edition = "2024"
[dependencies]
bevy = { version = "0.17.3", features = ["default", "dynamic_linking"] }
bevy = { version = "0.17.3", features = ["default", "bevy_gltf"] }
[profile.release]
opt-level = 3
strip = "none"
opt-level = "z"
strip = true
lto = true
codegen-units = 1
panic = "abort"