From 0cddb3c1b55017cda29d32924514e917a389f11b Mon Sep 17 00:00:00 2001 From: Héctor Ramón Jiménez Date: Wed, 9 Mar 2022 18:59:40 +0700 Subject: Implement `pure` version of `Canvas` widget --- graphics/Cargo.toml | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'graphics/Cargo.toml') diff --git a/graphics/Cargo.toml b/graphics/Cargo.toml index 8ccc7849..a84acbd6 100644 --- a/graphics/Cargo.toml +++ b/graphics/Cargo.toml @@ -17,6 +17,7 @@ font-source = ["font-kit"] font-fallback = [] font-icons = [] opengl = [] +pure = ["iced_pure"] [dependencies] glam = "0.10" @@ -35,6 +36,11 @@ path = "../native" version = "0.3" path = "../style" +[dependencies.iced_pure] +version = "0.1" +path = "../pure" +optional = true + [dependencies.lyon] version = "0.17" optional = true -- cgit