From 78c9d5bedfdee566c4cb4371e17b48901bab99ae Mon Sep 17 00:00:00 2001 From: aentity Date: Sat, 15 Jan 2022 00:06:36 -0800 Subject: Add application feature, which allows to build freestanding wgpu app --- Cargo.toml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'Cargo.toml') diff --git a/Cargo.toml b/Cargo.toml index cffa5409..9196d810 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -13,7 +13,9 @@ categories = ["gui"] resolver = "2" [features] -default = ["wgpu"] +default = ["wgpu", "application"] +# Enables the building the application modules +application = ["iced_winit/application"] # Enables the `Image` widget image = ["iced_wgpu/image", "image_rs"] # Enables the `Svg` widget -- cgit