27 lines
689 B
TOML
27 lines
689 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 = "../config_handler" }
|
|
asset = { path = "../asset" }
|
|
loading_screen = { path = "../loading-screen" }
|
|
context = { path = "../context", features = ["bundle_sdl2", "sound"] }
|
|
ecs = { path = "../ecs" }
|
|
|
|
[features]
|
|
timings = []
|