From 8a5239dfcb84ebced28bef9c112862609010312c Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 21 Jun 2021 14:05:49 +0000 Subject: [PATCH] Update gfx-hal requirement from 0.5 to 0.9 Updates the requirements on [gfx-hal](https://github.com/gfx-rs/gfx) to permit the latest version. - [Release notes](https://github.com/gfx-rs/gfx/releases) - [Changelog](https://github.com/gfx-rs/gfx/blob/master/CHANGELOG.md) - [Commits](https://github.com/gfx-rs/gfx/commits) --- updated-dependencies: - dependency-name: gfx-hal dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- core/Cargo.toml | 2 +- descriptor/Cargo.toml | 2 +- memory/Cargo.toml | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/core/Cargo.toml b/core/Cargo.toml index 61fd4544..296ca30c 100644 --- a/core/Cargo.toml +++ b/core/Cargo.toml @@ -26,7 +26,7 @@ vulkan = ["gfx-backend-vulkan"] no-slow-safety-checks = [] [dependencies] -gfx-hal = "0.5" +gfx-hal = "0.9" gfx-backend-empty = { version = "0.5", optional = true } gfx-backend-gl = { version = "0.5", features = ["glutin"], default_features = false, optional = true } lazy_static = "1.4.0" diff --git a/descriptor/Cargo.toml b/descriptor/Cargo.toml index 3771d0d4..ec3b1bc8 100644 --- a/descriptor/Cargo.toml +++ b/descriptor/Cargo.toml @@ -11,7 +11,7 @@ categories = ["rendering"] description = "Rendy's descriptor allocator" [dependencies] -gfx-hal = "0.5" +gfx-hal = "0.9" log = "0.4.11" relevant = { version = "0.4.2", features = ["log"] } smallvec = "1.5.1" diff --git a/memory/Cargo.toml b/memory/Cargo.toml index 22d32b54..c9007e45 100644 --- a/memory/Cargo.toml +++ b/memory/Cargo.toml @@ -14,7 +14,7 @@ description = "Rendy's memory manager" serde-1 = ["serde", "gfx-hal/serde"] [dependencies] -gfx-hal = "0.5" +gfx-hal = "0.9" log = "0.4.11" hibitset = { version = "0.6.3", default-features = false } relevant = { version = "0.4.2", features = ["log"] }