Bump libloading (#3711)

* bump libloading in Cargo.toml

* bump libloading in wgpu-hal/Cargo.toml
This commit is contained in:
Teodor Tanasoaia 2023-04-20 19:28:57 +02:00 committed by GitHub
parent 25cb9f61e9
commit 3432aabab1
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 4 additions and 3 deletions

View File

@ -61,7 +61,8 @@ futures-intrusive = "0.4"
rustc-hash = "1.1.0"
glam = "0.21.3"
image = { version = "0.24", default-features = false, features = ["png"] }
libloading = "0.7"
# libloading 0.8 switches from `winapi` to `windows-sys`; permit either
libloading = ">=0.7,<0.9"
libc = "0.2"
log = "0.4"
nanorand = { version = "0.7", default-features = false }

View File

@ -79,13 +79,13 @@ gpu-descriptor = { version = "0.2", optional = true }
smallvec = { version = "1", optional = true, features = ["union"] }
khronos-egl = { version = "4.1", features = ["dynamic"], optional = true }
libloading = { version = "0.7", optional = true }
libloading = { version = ">=0.7,<0.9", optional = true }
renderdoc-sys = { version = "1.0.0", optional = true }
[target.'cfg(target_os = "emscripten")'.dependencies]
khronos-egl = { version = "4.1", features = ["static", "no-pkg-config"] }
#Note: it's unused by emscripten, but we keep it to have single code base in egl.rs
libloading = { version = "0.7", optional = true }
libloading = { version = ">=0.7,<0.9", optional = true }
[target.'cfg(windows)'.dependencies]
# backend: Dx12