From 4ffa93f4a0f26aefad5665c0d494eac9b9ae53fb Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 22 Dec 2020 16:29:18 +0000 Subject: [PATCH] Update gfx-hal requirement from 0.5 to 0.6 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) 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..afe11f45 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.6" 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..d3dfd9c2 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.6" 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..114c8640 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.6" log = "0.4.11" hibitset = { version = "0.6.3", default-features = false } relevant = { version = "0.4.2", features = ["log"] }