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 = [
|
2023-11-03 23:50:00 +00:00
|
|
|
"lyra-resource",
|
2023-12-26 19:12:53 +00:00
|
|
|
"lyra-ecs",
|
2024-01-05 01:52:47 +00:00
|
|
|
"lyra-reflect",
|
2024-01-05 04:25:29 +00:00
|
|
|
"lyra-scripting",
|
2024-04-27 04:52:47 +00:00
|
|
|
"lyra-game",
|
|
|
|
"lyra-math",
|
|
|
|
"lyra-scene",
|
|
|
|
|
2024-06-28 20:15:21 +00:00
|
|
|
"examples/testbed",
|
2024-04-27 04:52:47 +00:00
|
|
|
"examples/many-lights",
|
|
|
|
"examples/fixed-timestep-rotating-model",
|
2024-05-08 22:25:12 +00:00
|
|
|
"examples/lua-scripting",
|
2024-06-28 20:15:21 +00:00
|
|
|
"examples/simple_scene",
|
|
|
|
"examples/shadows",
|
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-01-05 04:25:29 +00:00
|
|
|
lyra-game = { path = "lyra-game" }
|
2024-01-13 16:51:16 +00:00
|
|
|
lyra-scripting = { path = "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-07-12 18:58:18 +00:00
|
|
|
debug = true
|