engine/engine/Cargo.toml
2025-02-28 10:22:25 +01:00

27 lines
688 B
TOML

[package]
name = "engine"
version = "0.1.0"
authors = ["hodasemi <michaelh.95@t-online.de>"]
edition = "2024"
[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" }
context = { path = "../context", features = ["bundle_sdl2", "sound"] }
ecs = { path = "../ecs" }
[features]
timings = []