mirror of
https://github.com/wez/wezterm.git
synced 2024-12-24 13:52:55 +03:00
deps: remove a duplicate version of libloading
This commit is contained in:
parent
6c890c3995
commit
c6ffe92853
12
Cargo.lock
generated
12
Cargo.lock
generated
@ -2949,16 +2949,6 @@ dependencies = [
|
|||||||
"pkg-config",
|
"pkg-config",
|
||||||
]
|
]
|
||||||
|
|
||||||
[[package]]
|
|
||||||
name = "libloading"
|
|
||||||
version = "0.6.7"
|
|
||||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
||||||
checksum = "351a32417a12d5f7e82c368a66781e307834dae04c6ce0cd4456d52989229883"
|
|
||||||
dependencies = [
|
|
||||||
"cfg-if",
|
|
||||||
"winapi",
|
|
||||||
]
|
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "libloading"
|
name = "libloading"
|
||||||
version = "0.7.4"
|
version = "0.7.4"
|
||||||
@ -7023,7 +7013,7 @@ dependencies = [
|
|||||||
"k9",
|
"k9",
|
||||||
"lazy_static",
|
"lazy_static",
|
||||||
"libc",
|
"libc",
|
||||||
"libloading 0.6.7",
|
"libloading 0.8.3",
|
||||||
"line_drawing",
|
"line_drawing",
|
||||||
"log",
|
"log",
|
||||||
"metrics",
|
"metrics",
|
||||||
|
@ -31,7 +31,7 @@ bitflags = "1.3"
|
|||||||
euclid = "0.22"
|
euclid = "0.22"
|
||||||
guillotiere = "0.6"
|
guillotiere = "0.6"
|
||||||
lazy_static = "1.4"
|
lazy_static = "1.4"
|
||||||
libloading = "0.6"
|
libloading = "0.8"
|
||||||
line_drawing = "0.8"
|
line_drawing = "0.8"
|
||||||
log = "0.4"
|
log = "0.4"
|
||||||
metrics = "0.22"
|
metrics = "0.22"
|
||||||
|
@ -440,7 +440,7 @@ impl GlState {
|
|||||||
std::env::set_var("LIBGL_ALWAYS_SOFTWARE", "true");
|
std::env::set_var("LIBGL_ALWAYS_SOFTWARE", "true");
|
||||||
}
|
}
|
||||||
for path in &paths {
|
for path in &paths {
|
||||||
match libloading::Library::new(path) {
|
match unsafe { libloading::Library::new(path) } {
|
||||||
Ok(lib) => match EglWrapper::load_egl(lib) {
|
Ok(lib) => match EglWrapper::load_egl(lib) {
|
||||||
Ok(egl) => match func(egl) {
|
Ok(egl) => match func(egl) {
|
||||||
Ok(result) => {
|
Ok(result) => {
|
||||||
|
Loading…
Reference in New Issue
Block a user