32 lines
843 B
TOML
32 lines
843 B
TOML
|
[package]
|
||
|
name = "engine"
|
||
|
version = "0.1.0"
|
||
|
authors = ["hodasemi <michaelh.95@t-online.de>"]
|
||
|
edition = "2021"
|
||
|
|
||
|
[dependencies]
|
||
|
# needed
|
||
|
destructure_traitobject = { workspace = true }
|
||
|
itertools = { workspace = true }
|
||
|
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" }
|
||
|
lua-wrapper = { path = "../lua-wrapper" }
|
||
|
scene_update_macros = { path = "../scene_update_macros" }
|
||
|
asset = { path = "../asset" }
|
||
|
loading_screen = { path = "../loading-screen" }
|
||
|
context = { path = "../context", features = ["sound", "bundle_sdl2"] }
|
||
|
|
||
|
[features]
|
||
|
timings = []
|
||
|
|