diff --git a/Cargo.lock b/Cargo.lock index f383651df84f..208d1a16ef6f 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -318,7 +318,7 @@ version = "0.5.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "330c60081dcc4c72131f8eb70510f1ac07223e5d4163db481a04a0befcffa412" dependencies = [ - "libloading", + "libloading 0.8.9", ] [[package]] @@ -976,7 +976,7 @@ dependencies = [ "gtk4", "im-rc", "image", - "libloading", + "libloading 0.9.0", "reqwest", "serde", "tokio", @@ -1374,6 +1374,16 @@ dependencies = [ "windows-link", ] +[[package]] +name = "libloading" +version = "0.9.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "754ca22de805bb5744484a5b151a9e1a8e837d5dc232c2d7d8c2e3492edc8b60" +dependencies = [ + "cfg-if", + "windows-link", +] + [[package]] name = "linux-raw-sys" version = "0.11.0" diff --git a/examples/Cargo.toml b/examples/Cargo.toml index 59c75d2fe82e..4da0d143cdc4 100644 --- a/examples/Cargo.toml +++ b/examples/Cargo.toml @@ -11,7 +11,7 @@ femtovg = { version = "0.19", optional = true, default-features = false } glium = { version = "0.36", optional = true, default-features = false } glow = { version = "0.16.0", optional = true } epoxy = { version = "0.1.0", optional = true } -libloading = { version = "0.8.9", optional = true } +libloading = { version = "0.9.0", optional = true } im-rc = { version = "15", optional = true } async-channel = { version = "2.3", optional = true } tokio = { version = "1", features = ["full"], optional = true }