From 2c3a42644b58db1ccd3821a6d96d05570c889f8c Mon Sep 17 00:00:00 2001 From: Schmarni Date: Fri, 27 Oct 2023 23:09:15 +0200 Subject: [PATCH] changed bevy_openxr dependency to no longer use a local git repo --- examples/demo/Cargo.toml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/examples/demo/Cargo.toml b/examples/demo/Cargo.toml index c3df960..73dd8b3 100644 --- a/examples/demo/Cargo.toml +++ b/examples/demo/Cargo.toml @@ -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"