From 79ff0ac2f503c0349cbfd948e2cce69476be3c85 Mon Sep 17 00:00:00 2001 From: Bruce Mitchener Date: Tue, 23 Jul 2024 13:26:56 +0700 Subject: [PATCH] naga: Remove feature `std` for `indexmap` This was added in https://github.com/gfx-rs/naga/pull/2062 This was needed before version 2, but not in version 2, so it should be safe to remove now as it is enabled by default. --- naga/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/naga/Cargo.toml b/naga/Cargo.toml index 2d54de8c65..cf9f14373c 100644 --- a/naga/Cargo.toml +++ b/naga/Cargo.toml @@ -67,7 +67,7 @@ termcolor = { version = "1.4.1" } # https://github.com/brendanzab/codespan/commit/e99c867339a877731437e7ee6a903a3d03b5439e codespan-reporting = { version = "0.11.0" } rustc-hash = "1.1.0" -indexmap = { version = "2", features = ["std"] } +indexmap = "2" log = "0.4" spirv = { version = "0.3", optional = true } thiserror = "1.0.63"