36 lines
941 B
TOML
36 lines
941 B
TOML
[workspace.package]
|
|
version = "0.3.0"
|
|
edition = "2021"
|
|
description = "Community crate for XR in Bevy"
|
|
repository = "https://github.com/awtterpip/bevy_oxr"
|
|
license = "MIT/Apache-2.0"
|
|
|
|
[workspace]
|
|
resolver = "2"
|
|
members = ["crates/*", "crates/bevy_openxr/examples/android"]
|
|
|
|
[workspace.dependencies]
|
|
bevy = { version = "0.16.0", default-features = false, features = [
|
|
"bevy_render",
|
|
"bevy_core_pipeline",
|
|
"bevy_winit",
|
|
"bevy_pbr",
|
|
"bevy_window",
|
|
"x11",
|
|
] }
|
|
bevy_mod_xr = { path = "crates/bevy_xr", version = "0.3.0" }
|
|
bevy_mod_openxr = { path = "crates/bevy_openxr", version = "0.3.0" }
|
|
bevy_xr_utils = { path = "crates/bevy_xr_utils", version = "0.3.0" }
|
|
openxr = "0.19.0"
|
|
thiserror = "2.0.3"
|
|
wgpu = "24.0.1"
|
|
wgpu-hal = "24.0.2"
|
|
|
|
# Enable a small amount of optimization in the dev profile.
|
|
[profile.dev]
|
|
opt-level = 1
|
|
|
|
# Enable a large amount of optimization in the dev profile for dependencies.
|
|
[profile.dev.package."*"]
|
|
opt-level = 3
|