move profiles to root workspace Cargo.toml so they aren't ignored

This commit is contained in:
SeanOMik 2024-05-08 18:25:12 -04:00
parent a4e80d4fec
commit daa6fc3d4b
Signed by: SeanOMik
GPG Key ID: FEC9E2FC15235964
4 changed files with 10 additions and 33 deletions

View File

@ -16,7 +16,8 @@ members = [
"examples/many-lights",
"examples/fixed-timestep-rotating-model",
"examples/lua-scripting"
"examples/lua-scripting",
"examples/simple_scene"
]
[features]
@ -27,3 +28,9 @@ tracy = ["lyra-game/tracy"]
[dependencies]
lyra-game = { path = "lyra-game" }
lyra-scripting = { path = "lyra-scripting", optional = true }
[profile.dev]
opt-level = 1
[profile.release]
debug = true

View File

@ -9,14 +9,4 @@ anyhow = "1.0.75"
async-std = "1.12.0"
tracing = "0.1.37"
rand = "0.8.5"
fps_counter = "3.0.0"
[target.x86_64-unknown-linux-gnu]
linker = "/usr/bin/clang"
rustflags = ["-Clink-arg=-fuse-ld=lld", "-Clink-arg=-Wl,--no-rosegment"]
[profile.dev]
opt-level = 1
[profile.release]
debug = true
fps_counter = "3.0.0"

View File

@ -10,13 +10,3 @@ async-std = "1.12.0"
tracing = "0.1.37"
rand = "0.8.5"
fps_counter = "3.0.0"
[target.x86_64-unknown-linux-gnu]
linker = "/usr/bin/clang"
rustflags = ["-Clink-arg=-fuse-ld=lld", "-Clink-arg=-Wl,--no-rosegment"]
[profile.dev]
opt-level = 1
[profile.release]
debug = true

View File

@ -9,14 +9,4 @@ anyhow = "1.0.75"
async-std = "1.12.0"
tracing = "0.1.37"
rand = "0.8.5"
fps_counter = "3.0.0"
[target.x86_64-unknown-linux-gnu]
linker = "/usr/bin/clang"
rustflags = ["-Clink-arg=-fuse-ld=lld", "-Clink-arg=-Wl,--no-rosegment"]
[profile.dev]
opt-level = 1
[profile.release]
debug = true
fps_counter = "3.0.0"