From 2543744445f206768f780325086438a5f1e15512 Mon Sep 17 00:00:00 2001 From: Erich Gubler Date: Mon, 5 Dec 2022 16:33:24 -0500 Subject: [PATCH] fix: oops, remove `gles` feature from `wgpu-hal`'s `default`s Totally my bad; this should not have landed. I was using it while chasing down files to change in #3044. :< --- wgpu-hal/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wgpu-hal/Cargo.toml b/wgpu-hal/Cargo.toml index aa8bbcada9..9fee2782c3 100644 --- a/wgpu-hal/Cargo.toml +++ b/wgpu-hal/Cargo.toml @@ -27,7 +27,7 @@ rustdoc-args = ["--cfg", "docsrs"] [lib] [features] -default = ["gles"] +default = [] metal = ["naga/msl-out", "block", "foreign-types"] vulkan = ["naga/spv-out", "ash", "gpu-alloc", "gpu-descriptor", "libloading", "smallvec"] gles = ["naga/glsl-out", "glow", "egl", "libloading"]