chore: Update Rust OpenXR to 0.19.0
Some checks failed
/ cargo-fmtcheck (push) Has been cancelled
/ cargo-clippy (push) Has been cancelled
/ cargo-test (push) Has been cancelled
/ appimage (push) Has been cancelled

This commit is contained in:
Jonathan Steffan 2024-10-02 20:31:13 +00:00 committed by GabMus
parent 56d500a9f9
commit a34faa9cd7
3 changed files with 8 additions and 7 deletions

10
Cargo.lock generated
View file

@ -1452,8 +1452,9 @@ dependencies = [
[[package]]
name = "openxr"
version = "0.18.0"
source = "git+https://github.com/galister/openxrs?rev=af4a55d#af4a55df60125491c80c61464c824219c6019b76"
version = "0.19.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "2a2d6934d2508f94fd4cbda6c2a326f111f60ce59fd9136df6d478564397dd40"
dependencies = [
"libc",
"libloading 0.8.5",
@ -1463,8 +1464,9 @@ dependencies = [
[[package]]
name = "openxr-sys"
version = "0.10.0"
source = "git+https://github.com/galister/openxrs?rev=af4a55d#af4a55df60125491c80c61464c824219c6019b76"
version = "0.11.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f10e7e38c47f2175fc39363713b656db899fa0b4a14341029702cbdfa6f44d05"
dependencies = [
"libc",
]

View file

@ -24,9 +24,7 @@ tracker = "0.2.2"
uuid = { version = "1.10.0", features = ["v4", "fast-rng"] }
vte4 = { version = "0.8.0", features = ["v0_72"] }
xdg = "2.5.2"
openxr = { git = "https://github.com/galister/openxrs", rev = "af4a55d", features = [
"linked",
] }
openxr = { version = "0.19.0", features = ["linked"] }
ash = "0.38.0"
sha2 = "0.10.8"
tokio = { version = "1.39.3", features = ["process"] }

View file

@ -21,6 +21,7 @@ pub fn is_openxr_ready() -> bool {
application_version: 0,
engine_name: CMD_NAME,
engine_version: 0,
api_version: xr::Version::new(1, 0, 0),
},
&enabled_extensions,
&layers,