diff --git a/Changelog.md b/Changelog.md index ae121795a..5b9178d5e 100644 --- a/Changelog.md +++ b/Changelog.md @@ -19,6 +19,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - Inlined struct setters (#602) - Bumped MSRV from 1.59 to 1.60 (#709) - Replaced `const fn name()` with associated `NAME` constants (#715) +- Bumped `libloading` from `0.7` to `0.8` (#739) ### Removed diff --git a/ash-rewrite/Cargo.toml b/ash-rewrite/Cargo.toml index f84365ce1..324ff65cc 100644 --- a/ash-rewrite/Cargo.toml +++ b/ash-rewrite/Cargo.toml @@ -19,7 +19,7 @@ edition = "2021" rust-version = "1.60.0" [dependencies] -libloading = { version = "0.7", optional = true } +libloading = { version = "0.8", optional = true } [features] default = ["loaded", "debug"] diff --git a/ash/Cargo.toml b/ash/Cargo.toml index 7fa31abba..93e38cea4 100644 --- a/ash/Cargo.toml +++ b/ash/Cargo.toml @@ -16,7 +16,7 @@ edition = "2021" rust-version = "1.60.0" [dependencies] -libloading = { version = "0.7", optional = true } +libloading = { version = "0.8", optional = true } [features] default = ["loaded", "debug"]