changed bevy_openxr dependency to no longer use a local git repo

This commit is contained in:
Schmarni
2023-10-27 23:09:15 +02:00
parent 88c6b601e5
commit 2c3a42644b

View File

@@ -11,7 +11,8 @@ crate-type = ["cdylib"]
[dependencies]
bevy = { git = "https://github.com/bevyengine/bevy.git" }
# bevy = "0.11.3"
bevy_openxr = { git = "file:///home/schmarni/Code/adeptus_bevy_oxr", default-features = false}
# default-features is false because it for some reason complains when trying to statically link openxr
bevy_openxr = { git = "https://github.com/Schmarni-Dev/bevy_openxr", default-features = false}
bevy_rapier3d = { git = "https://github.com/Schmarni-Dev/bevy_rapier" }
color-eyre = "0.6.2"