zenyx-engine/engine/Cargo.toml

24 lines
547 B
TOML
Raw Normal View History

2024-12-01 16:02:06 -05:00
[package]
name = "zenyx"
version = "0.1.0"
edition = "2021"
[dependencies]
2024-12-01 20:50:11 -05:00
anyhow = "1.0.93"
2024-12-01 16:02:06 -05:00
chrono = "0.4.38"
colored = "2.1.0"
lazy_static = "1.5.0"
log = "0.4.22"
once_cell = "1.20.2"
2024-12-01 16:02:06 -05:00
parking_lot = "0.12.3"
rand = "0.8.5"
2024-12-01 16:02:06 -05:00
regex = "1.11.1"
2024-12-05 01:33:44 -06:00
rustyline = { version = "15.0.0", features = ["derive", "rustyline-derive"] }
2024-12-01 16:02:06 -05:00
thiserror = "2.0.3"
tokio = { version = "1.41.1", features = ["macros", "rt", "rt-multi-thread"] }
2024-12-01 20:50:11 -05:00
wgpu = "23.0.1"
winit = "0.30.5"
2024-12-05 01:33:44 -06:00
zephyr.workspace = true
plugin_api = { path = "../plugin_api" }
horizon-plugin-api = "0.1.13"