From e8c3fb101c9b16a55cdae7839a4181c274be557d Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 8 Dec 2025 10:09:59 +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 8c6cf51c7268..b20aa7c19efc 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -327,7 +327,7 @@ version = "0.5.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "330c60081dcc4c72131f8eb70510f1ac07223e5d4163db481a04a0befcffa412" dependencies = [ - "libloading", + "libloading 0.8.9", ] [[package]] @@ -990,7 +990,7 @@ dependencies = [ "gtk4", "im-rc", "image", - "libloading", + "libloading 0.9.0", "reqwest", "serde", "tokio", @@ -1382,6 +1382,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 = "libm" version = "0.2.15" diff --git a/examples/Cargo.toml b/examples/Cargo.toml index a3244834e9cb..5c4e58594531 100644 --- a/examples/Cargo.toml +++ b/examples/Cargo.toml @@ -11,7 +11,7 @@ femtovg = { version = "0.18", 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 }