From 9a1f6f591b2b0457ef29d8800cd55376b0cf813d Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 10 Nov 2025 07:06:38 +0000 Subject: [PATCH] build(deps): bump libloading from 0.8.9 to 0.9.0 Bumps [libloading](https://github.com/nagisa/rust_libloading) from 0.8.9 to 0.9.0. - [Commits](https://github.com/nagisa/rust_libloading/compare/0.8.9...0.9.0) --- updated-dependencies: - dependency-name: libloading dependency-version: 0.9.0 dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- Cargo.lock | 14 ++++++++++++-- examples/Cargo.toml | 2 +- 2 files changed, 13 insertions(+), 3 deletions(-) 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 }