engine/gavania-core/Cargo.toml

31 lines
798 B
TOML
Raw Normal View History

2024-08-23 11:22:09 +00:00
[package]
name = "gavania-core"
version = "0.1.0"
authors = ["hodasemi <superschneider@t-online.de>"]
build = "src/osbuild.rs"
edition = "2021"
[dependencies]
rusqlite = { workspace = true }
paste = { workspace = true }
cgmath = { workspace = true }
reqwest = { workspace = true }
http = { workspace = true }
anyhow = { workspace = true }
destructure_traitobject = { workspace = true }
serde = { workspace = true }
assetpath = { workspace = true }
iterchunks = { workspace = true }
engine = { path = "../engine" }
promise = { path = "../promise" }
lua-wrapper = { path = "../lua-wrapper" }
controllable_thread = { path = "../controllable_thread" }
map = { path = "../map" }
2024-08-23 15:17:53 +00:00
rpg_components = { path = "../rpg_components" }
2024-08-25 07:11:52 +00:00
entity_manager = { path = "../entity_manager" }
2024-08-23 11:22:09 +00:00
[features]
wayland = []