From feddf187c0f735caeccdbe1ed43e30ae4f39ee09 Mon Sep 17 00:00:00 2001 From: Erich Gubler Date: Mon, 5 Dec 2022 14:46:07 -0700 Subject: [PATCH] fix: oops, remove `gles` feature from `wgpu-hal`'s `default`s (#3264) --- 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 aa8bbcada..9fee2782c 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"]