-
Notifications
You must be signed in to change notification settings - Fork 60
Expand file tree
/
Copy pathCargo.toml
More file actions
46 lines (40 loc) · 1.72 KB
/
Copy pathCargo.toml
File metadata and controls
46 lines (40 loc) · 1.72 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
[workspace.package]
version = "0.6.0"
edition = "2024"
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 = "0.19"
bevy_ecs = { version = "0.19", default-features = false }
bevy_math = { version = "0.19", default-features = false }
bevy_render = { version = "0.19", default-features = false }
bevy_core_pipeline = { version = "0.19", default-features = false }
bevy_window = { version = "0.19", default-features = false }
bevy_winit = { version = "0.19", default-features = false }
bevy_pbr = { version = "0.19", default-features = false }
bevy_app = { version = "0.19", default-features = false }
bevy_reflect = { version = "0.19", default-features = false }
bevy_log = { version = "0.19", default-features = false }
bevy_gizmos = { version = "0.19", default-features = false }
bevy_camera = { version = "0.19", default-features = false }
bevy_color = { version = "0.19", default-features = false }
bevy_transform = { version = "0.19", default-features = false }
bevy_derive = { version = "0.19", default-features = false }
bevy_platform = { version = "0.19", default-features = false }
bevy_mod_xr = { path = "crates/bevy_xr", version = "0.5.0" }
bevy_mod_openxr = { path = "crates/bevy_openxr", version = "0.5.0" }
bevy_xr_utils = { path = "crates/bevy_xr_utils", version = "0.5.0" }
openxr = "0.21.1"
thiserror = "2.0.3"
wgpu = "29"
wgpu-hal = "29"
# 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