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