engine/presentation/Cargo.toml
2025-03-27 12:30:14 +01:00

22 lines
494 B
TOML

[package]
name = "presentation"
version = "0.1.0"
authors = ["hodasemi <superschneider@t-online.de>"]
edition = "2024"
[dependencies]
vulkan-rs = { workspace = true }
ui = { workspace = true }
sdl3 = { workspace = true }
anyhow = { workspace = true }
openxr = { workspace = true, optional = true }
openvr = { workspace = true, optional = true }
ecs = { workspace = true }
[features]
OpenXR = ["openxr"]
OpenVR = ["openvr"]
BundleSDL = ["sdl3/build-from-source-static"]
sound = ["ui/audio"]