diff options
author | 2022-03-09 18:59:40 +0700 | |
---|---|---|
committer | 2022-03-09 19:14:55 +0700 | |
commit | 0cddb3c1b55017cda29d32924514e917a389f11b (patch) | |
tree | 4702af4335a726b237de05dbf83dd62848c9f0cb /graphics/Cargo.toml | |
parent | c52fd089f102be4e2ac07952106e2b6924e72e68 (diff) | |
download | iced-0cddb3c1b55017cda29d32924514e917a389f11b.tar.gz iced-0cddb3c1b55017cda29d32924514e917a389f11b.tar.bz2 iced-0cddb3c1b55017cda29d32924514e917a389f11b.zip |
Implement `pure` version of `Canvas` widget
Diffstat (limited to 'graphics/Cargo.toml')
-rw-r--r-- | graphics/Cargo.toml | 6 |
1 files changed, 6 insertions, 0 deletions
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 |