2023-03-16 21:47:36 +00:00
|
|
|
[package]
|
|
|
|
name = "lyra-engine"
|
2023-09-08 04:30:22 +00:00
|
|
|
version = "0.0.1"
|
2023-03-16 21:47:36 +00:00
|
|
|
edition = "2021"
|
|
|
|
|
2023-09-12 18:25:33 +00:00
|
|
|
[workspace]
|
|
|
|
members = [
|
2024-11-01 15:17:36 +00:00
|
|
|
"crates/*",
|
|
|
|
|
|
|
|
"examples/2d",
|
2024-04-27 04:52:47 +00:00
|
|
|
"examples/fixed-timestep-rotating-model",
|
2024-05-08 22:25:12 +00:00
|
|
|
"examples/lua-scripting",
|
2024-11-01 15:17:36 +00:00
|
|
|
"examples/many-lights",
|
2024-06-28 20:15:21 +00:00
|
|
|
"examples/shadows",
|
2024-11-01 15:17:36 +00:00
|
|
|
"examples/simple_scene",
|
|
|
|
"examples/testbed",
|
2024-04-27 04:52:47 +00:00
|
|
|
]
|
2024-01-05 01:52:47 +00:00
|
|
|
|
|
|
|
[features]
|
|
|
|
scripting = ["dep:lyra-scripting"]
|
2024-01-07 04:06:00 +00:00
|
|
|
lua_scripting = ["scripting", "lyra-scripting/lua"]
|
2024-04-20 04:08:25 +00:00
|
|
|
tracy = ["lyra-game/tracy"]
|
2023-03-16 21:47:36 +00:00
|
|
|
|
|
|
|
[dependencies]
|
2024-11-01 15:17:36 +00:00
|
|
|
lyra-game = { path = "crates/lyra-game" }
|
|
|
|
lyra-scripting = { path = "crates/lyra-scripting", optional = true }
|
2024-05-08 22:25:12 +00:00
|
|
|
|
2024-06-24 00:25:57 +00:00
|
|
|
#[profile.dev]
|
|
|
|
#opt-level = 1
|
2024-05-08 22:25:12 +00:00
|
|
|
|
|
|
|
[profile.release]
|
2024-11-01 15:17:36 +00:00
|
|
|
debug = true
|