Revert "Bump libloading from 0.7.4 to 0.8.0 (#3666)" (#3709)

This reverts commit 7f179ff1fa.
This commit is contained in:
Teodor Tanasoaia 2023-04-20 16:47:01 +02:00 committed by GitHub
parent 0b53b477c5
commit 25cb9f61e9
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 10 additions and 20 deletions

24
Cargo.lock generated
View File

@ -79,7 +79,7 @@ version = "0.37.2+1.3.238"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "28bf19c1f0a470be5fbf7522a308a05df06610252c5bcf5143e1b23f629a9a03" checksum = "28bf19c1f0a470be5fbf7522a308a05df06610252c5bcf5143e1b23f629a9a03"
dependencies = [ dependencies = [
"libloading 0.7.4", "libloading",
] ]
[[package]] [[package]]
@ -504,7 +504,7 @@ version = "0.6.0"
source = "git+https://github.com/gfx-rs/d3d12-rs?rev=b940b1d71#b940b1d71ab7083ae80eec697872672dc1f2bd32" source = "git+https://github.com/gfx-rs/d3d12-rs?rev=b940b1d71#b940b1d71ab7083ae80eec697872672dc1f2bd32"
dependencies = [ dependencies = [
"bitflags 1.3.2", "bitflags 1.3.2",
"libloading 0.7.4", "libloading",
"winapi", "winapi",
] ]
@ -689,7 +689,7 @@ version = "0.5.0"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ac1b7517328c04c2aa68422fc60a41b92208182142ed04a25879c26c8f878794" checksum = "ac1b7517328c04c2aa68422fc60a41b92208182142ed04a25879c26c8f878794"
dependencies = [ dependencies = [
"libloading 0.7.4", "libloading",
] ]
[[package]] [[package]]
@ -1112,7 +1112,7 @@ dependencies = [
"glutin_gles2_sys", "glutin_gles2_sys",
"glutin_glx_sys", "glutin_glx_sys",
"glutin_wgl_sys", "glutin_wgl_sys",
"libloading 0.7.4", "libloading",
"log", "log",
"objc", "objc",
"once_cell", "once_cell",
@ -1234,7 +1234,7 @@ dependencies = [
"bitflags 1.3.2", "bitflags 1.3.2",
"com-rs", "com-rs",
"libc", "libc",
"libloading 0.7.4", "libloading",
"thiserror", "thiserror",
"widestring", "widestring",
"winapi", "winapi",
@ -1391,7 +1391,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "8c2352bd1d0bceb871cb9d40f24360c8133c11d7486b68b5381c1dd1a32015e3" checksum = "8c2352bd1d0bceb871cb9d40f24360c8133c11d7486b68b5381c1dd1a32015e3"
dependencies = [ dependencies = [
"libc", "libc",
"libloading 0.7.4", "libloading",
"pkg-config", "pkg-config",
] ]
@ -1429,16 +1429,6 @@ dependencies = [
"winapi", "winapi",
] ]
[[package]]
name = "libloading"
version = "0.8.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d580318f95776505201b28cf98eb1fa5e4be3b689633ba6a3e6cd880ff22d8cb"
dependencies = [
"cfg-if",
"windows-sys 0.48.0",
]
[[package]] [[package]]
name = "linux-raw-sys" name = "linux-raw-sys"
version = "0.1.4" version = "0.1.4"
@ -3168,7 +3158,7 @@ dependencies = [
"js-sys", "js-sys",
"khronos-egl", "khronos-egl",
"libc", "libc",
"libloading 0.8.0", "libloading",
"log", "log",
"metal", "metal",
"naga", "naga",

View File

@ -61,7 +61,7 @@ futures-intrusive = "0.4"
rustc-hash = "1.1.0" rustc-hash = "1.1.0"
glam = "0.21.3" glam = "0.21.3"
image = { version = "0.24", default-features = false, features = ["png"] } image = { version = "0.24", default-features = false, features = ["png"] }
libloading = "0.8" libloading = "0.7"
libc = "0.2" libc = "0.2"
log = "0.4" log = "0.4"
nanorand = { version = "0.7", default-features = false } 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"] } smallvec = { version = "1", optional = true, features = ["union"] }
khronos-egl = { version = "4.1", features = ["dynamic"], optional = true } khronos-egl = { version = "4.1", features = ["dynamic"], optional = true }
libloading = { version = "0.8", optional = true } libloading = { version = "0.7", optional = true }
renderdoc-sys = { version = "1.0.0", optional = true } renderdoc-sys = { version = "1.0.0", optional = true }
[target.'cfg(target_os = "emscripten")'.dependencies] [target.'cfg(target_os = "emscripten")'.dependencies]
khronos-egl = { version = "4.1", features = ["static", "no-pkg-config"] } 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 #Note: it's unused by emscripten, but we keep it to have single code base in egl.rs
libloading = { version = "0.8", optional = true } libloading = { version = "0.7", optional = true }
[target.'cfg(windows)'.dependencies] [target.'cfg(windows)'.dependencies]
# backend: Dx12 # backend: Dx12