engine/engine/Cargo.toml

28 lines
688 B
TOML
Raw Normal View History

2024-08-23 11:22:09 +00:00
[package]
name = "engine"
version = "0.1.0"
authors = ["hodasemi <michaelh.95@t-online.de>"]
2025-02-26 07:39:19 +00:00
edition = "2024"
2024-08-23 11:22:09 +00:00
[dependencies]
# needed
serde = { workspace = true }
ron = { workspace = true }
paste = { workspace = true }
rayon = { workspace = true }
# chrono = { workspace = true }
anyhow = { workspace = true }
indexmap = { workspace = true }
utilities = { workspace = true }
assetpath = { workspace = true }
shaderc = { workspace = true }
config_handler = { path = "../ConfigHandler" }
asset = { path = "../asset" }
loading_screen = { path = "../loading-screen" }
2025-02-26 07:39:19 +00:00
context = { path = "../context", features = ["bundle_sdl2", "sound"] }
2025-02-26 11:22:32 +00:00
ecs = { path = "../ecs" }
2024-08-23 11:22:09 +00:00
[features]
timings = []