From 493024ebce7db463a41878c27cd0d00407ead971 Mon Sep 17 00:00:00 2001 From: Connor Fitzgerald Date: Wed, 25 Oct 2023 14:04:01 -0400 Subject: [PATCH] Bump metal version --- Cargo.lock | 5 +++-- Cargo.toml | 2 +- wgpu-hal/Cargo.toml | 2 +- 3 files changed, 5 insertions(+), 4 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 75e7dc556b..54835b5561 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1776,8 +1776,9 @@ dependencies = [ [[package]] name = "metal" -version = "0.26.0" -source = "git+https://github.com/gfx-rs/metal-rs/?rev=d24f1a4#d24f1a4ae92470bf87a0c65ecfe78c9299835505" +version = "0.27.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "c43f73953f8cbe511f021b58f18c3ce1c3d1ae13fe953293e13345bf83217f25" dependencies = [ "bitflags 2.4.1", "block", diff --git a/Cargo.toml b/Cargo.toml index 0114d2d2bc..114b4eb24c 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -115,7 +115,7 @@ winit = { version = "0.28.7", features = ["android-native-activity"] } # Metal dependencies block = "0.1" -metal = "0.25.0" +metal = "0.27.0" objc = "0.2.5" core-graphics-types = "0.1" diff --git a/wgpu-hal/Cargo.toml b/wgpu-hal/Cargo.toml index ec395c2b8b..0bb8ebed84 100644 --- a/wgpu-hal/Cargo.toml +++ b/wgpu-hal/Cargo.toml @@ -144,7 +144,7 @@ d3d12 = { version = "0.7", features = ["libloading"], optional = true } # backend: Metal block = { version = "0.1", optional = true } -metal = { git = "https://github.com/gfx-rs/metal-rs/", rev = "d24f1a4" } # More timer support via https://github.com/gfx-rs/metal-rs/pull/280 +metal = "0.27.0" objc = "0.2.5" core-graphics-types = "0.1"