From 8d41a33b569bdfab5afd2dfd4d84d12e02b4abaa Mon Sep 17 00:00:00 2001 From: David Koloski Date: Tue, 11 Apr 2023 10:53:04 -0400 Subject: [PATCH] Bump libloading to 0.8 --- Changelog.md | 1 + ash-rewrite/Cargo.toml | 2 +- ash/Cargo.toml | 2 +- 3 files changed, 3 insertions(+), 2 deletions(-) diff --git a/Changelog.md b/Changelog.md index 2a9fe580f..69df75a8d 100644 --- a/Changelog.md +++ b/Changelog.md @@ -38,6 +38,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - Replaced `const fn name()` with associated `NAME` constants (#715) - Generic builders now automatically set `objecttype` to `::ObjectType` (#724) - `get_calibrated_timestamps()` now returns a single value for `max_deviation` (#738) +- Bumped `libloading` from `0.7` to `0.8` (#739) - extensions/khr: Take the remaining `p_next`-containing structs as `&mut` to allow chains (#744) - `AccelerationStructure::get_acceleration_structure_build_sizes()` - `ExternalMemoryFd::get_memory_fd_properties()` 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 fa424e8bd..130854fa0 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"]