summaryrefslogtreecommitdiffstats
path: root/Cargo.toml
diff options
context:
space:
mode:
authorLibravatar Héctor Ramón <hector0193@gmail.com>2020-01-21 00:52:53 +0100
committerLibravatar GitHub <noreply@github.com>2020-01-21 00:52:53 +0100
commit1ef7d09ce86cb54de35678ba22517df830660247 (patch)
tree8007d956e526397837cd212a89b37190a07633ae /Cargo.toml
parentf9165a5e01837d1dae7f49b3c1f1120e1fd0355e (diff)
parentbc611cf51cd35bb3a4b91500c8a13202db58ac38 (diff)
downloadiced-1ef7d09ce86cb54de35678ba22517df830660247.tar.gz
iced-1ef7d09ce86cb54de35678ba22517df830660247.tar.bz2
iced-1ef7d09ce86cb54de35678ba22517df830660247.zip
Merge pull request #166 from hecrj/optional-image-support
Make `image` support optional in `iced_wgpu`
Diffstat (limited to 'Cargo.toml')
-rw-r--r--Cargo.toml6
1 files changed, 4 insertions, 2 deletions
diff --git a/Cargo.toml b/Cargo.toml
index 28a97af9..7bfce09a 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -12,10 +12,12 @@ keywords = ["gui", "ui", "graphics", "interface", "widgets"]
categories = ["gui"]
[features]
+# Enables the Image widget
+image = ["iced_wgpu/image"]
+# Enables the Svg widget
+svg = ["iced_wgpu/svg"]
# Enables a debug view in native platforms (press F12)
debug = ["iced_winit/debug"]
-# Enables support for SVG rendering
-svg = ["iced_wgpu/svg"]
[badges]
maintenance = { status = "actively-developed" }