2024-08-23 11:22:09 +00:00
|
|
|
[package]
|
|
|
|
name = "presentation"
|
|
|
|
version = "0.1.0"
|
|
|
|
authors = ["hodasemi <superschneider@t-online.de>"]
|
2025-02-26 07:39:19 +00:00
|
|
|
edition = "2024"
|
2024-08-23 11:22:09 +00:00
|
|
|
|
|
|
|
[dependencies]
|
|
|
|
vulkan-rs = { workspace = true }
|
|
|
|
ui = { workspace = true }
|
2025-03-27 11:30:14 +00:00
|
|
|
sdl3 = { workspace = true }
|
2024-08-23 11:22:09 +00:00
|
|
|
anyhow = { workspace = true }
|
|
|
|
|
|
|
|
openxr = { workspace = true, optional = true }
|
|
|
|
openvr = { workspace = true, optional = true }
|
|
|
|
|
2025-03-04 17:34:44 +00:00
|
|
|
ecs = { workspace = true }
|
2025-02-26 13:51:44 +00:00
|
|
|
|
2024-08-23 11:22:09 +00:00
|
|
|
[features]
|
|
|
|
OpenXR = ["openxr"]
|
|
|
|
OpenVR = ["openvr"]
|
2025-03-27 11:30:14 +00:00
|
|
|
BundleSDL = ["sdl3/build-from-source-static"]
|
2024-08-23 11:22:09 +00:00
|
|
|
sound = ["ui/audio"]
|