-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathCargo.toml
40 lines (37 loc) · 924 Bytes
/
Cargo.toml
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
[workspace]
resolver = "2"
members = [
"skills/cube",
"skills/worldspace-ui",
"skills/ik",
"skills/manipulation-flatscreen",
"skills/openxr-6dof",
"skills/xr-ik-mirror",
"skills/entity-inspector",
"skills/blendshapes",
]
# These settings will apply to all members of the workspace that opt in to them
[workspace.package]
version = "0.0.0"
license = "MIT-0 OR OR Apache-2.0"
repository = "https://github.com/NexusSocial/skilltree"
edition = "2021"
rust-version = "1.73.0"
[workspace.dependencies]
bevy = "0.12.0"
bevy_mod_picking = "0.17.0"
color-eyre = "0.6"
eyre = "0.6"
tracing = "0.1"
bevy_egui = "0.23"
egui-wgpu = "0.23"
egui = "0.23"
bevy-inspector-egui = "0.21.0"
wgpu = "0.17"
bevy_flycam = "0.12"
bevy_oxr = "0.1"
openxr = { git = "https://github.com/Ralith/openxrs", rev = "361b27e" }
bevy_mod_inverse_kinematics = "0.5"
# Enable a small amount of optimization in debug mode
[profile.dev]
opt-level = 1