diff options
author | 2020-01-21 00:52:53 +0100 | |
---|---|---|
committer | 2020-01-21 00:52:53 +0100 | |
commit | 1ef7d09ce86cb54de35678ba22517df830660247 (patch) | |
tree | 8007d956e526397837cd212a89b37190a07633ae /wgpu/Cargo.toml | |
parent | f9165a5e01837d1dae7f49b3c1f1120e1fd0355e (diff) | |
parent | bc611cf51cd35bb3a4b91500c8a13202db58ac38 (diff) | |
download | iced-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 'wgpu/Cargo.toml')
-rw-r--r-- | wgpu/Cargo.toml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/wgpu/Cargo.toml b/wgpu/Cargo.toml index 19d41bba..60b98b40 100644 --- a/wgpu/Cargo.toml +++ b/wgpu/Cargo.toml @@ -17,8 +17,8 @@ wgpu = "0.4" glyph_brush = "0.6" wgpu_glyph = { version = "0.7", git = "https://github.com/hecrj/wgpu_glyph", branch = "fix/font-load-panic" } raw-window-handle = "0.3" -image = "0.22" glam = "0.8" font-kit = "0.4" log = "0.4" resvg = { version = "0.8", features = ["raqote-backend"], optional = true } +image = { version = "0.22", optional = true } |