From 6d8c93eca2576f553e041cef8c8ec8f0506d30cb Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 10 Nov 2025 04:08:09 +0000 Subject: [PATCH] build(deps): update libloading requirement from 0.8 to 0.9 Updates the requirements on [libloading](https://github.com/nagisa/rust_libloading) to permit the latest version. - [Commits](https://github.com/nagisa/rust_libloading/compare/0.8.0...0.9.0) --- updated-dependencies: - dependency-name: libloading dependency-version: 0.9.0 dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- ash-rewrite/Cargo.toml | 2 +- ash/Cargo.toml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/ash-rewrite/Cargo.toml b/ash-rewrite/Cargo.toml index 77cdc05e4..d6ea59cb2 100644 --- a/ash-rewrite/Cargo.toml +++ b/ash-rewrite/Cargo.toml @@ -21,7 +21,7 @@ edition = "2021" rust-version = "1.69.0" [dependencies] -libloading = { version = "0.8", optional = true } +libloading = { version = "0.9", optional = true } [features] default = ["loaded", "debug"] diff --git a/ash/Cargo.toml b/ash/Cargo.toml index 53c64c45a..9728ca8ff 100644 --- a/ash/Cargo.toml +++ b/ash/Cargo.toml @@ -22,7 +22,7 @@ edition = "2021" rust-version = "1.69.0" [dependencies] -libloading = { version = "0.8", optional = true } +libloading = { version = "0.9", optional = true } [dev-dependencies] trybuild = "1.0"