From 7086b79adc94a3a9d3acc29d44a3678655e4cb66 Mon Sep 17 00:00:00 2001 From: Elabajaba Date: Thu, 24 Oct 2024 18:20:19 -0400 Subject: [PATCH] Only use image's PNG feature instead of its default features. --- ash-examples/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ash-examples/Cargo.toml b/ash-examples/Cargo.toml index a93eaa145..521093a09 100644 --- a/ash-examples/Cargo.toml +++ b/ash-examples/Cargo.toml @@ -6,7 +6,7 @@ edition = "2021" publish = false [dependencies] -image = "0.25" +image = { version = "0.25", default-features = false, features = ["png"] } winit = { version = "0.29", features = ["rwh_06"] } # The examples require the validation layers, which means the SDK or # equivalent development packages should be present, so we can link