diff options
author | 2020-11-20 23:33:51 +0100 | |
---|---|---|
committer | 2020-11-20 23:33:51 +0100 | |
commit | ea1a7248d257c7c9e4a1f3989e68b58a6bc0c4ff (patch) | |
tree | f13dd72d053592f1ea9e8213ade0a26704937a1b /Cargo.toml | |
parent | 209056e1cd0fd74f508e11de2233123cc951640b (diff) | |
parent | f259d44186a795067a189f2597ae357a375d832b (diff) | |
download | iced-ea1a7248d257c7c9e4a1f3989e68b58a6bc0c4ff.tar.gz iced-ea1a7248d257c7c9e4a1f3989e68b58a6bc0c4ff.tar.bz2 iced-ea1a7248d257c7c9e4a1f3989e68b58a6bc0c4ff.zip |
Merge pull request #622 from hecrj/feature/qr_code-widget
`QRCode` widget
Diffstat (limited to 'Cargo.toml')
-rw-r--r-- | Cargo.toml | 9 |
1 files changed, 7 insertions, 2 deletions
@@ -21,13 +21,17 @@ image = ["iced_wgpu/image"] svg = ["iced_wgpu/svg"] # Enables the `Canvas` widget canvas = ["iced_wgpu/canvas"] -# Enables using system fonts. +# Enables the `QRCode` widget +qr_code = ["iced_wgpu/qr_code"] +# Enables using system fonts default_system_font = ["iced_wgpu/default_system_font"] # Enables the `iced_glow` renderer. Overrides `iced_wgpu` glow = ["iced_glow", "iced_glutin"] # Enables the `Canvas` widget for `iced_glow` glow_canvas = ["iced_glow/canvas"] -# Enables using system fonts for `iced_glow`. +# Enables the `QRCode` widget for `iced_glow` +glow_qr_code = ["iced_glow/qr_code"] +# Enables using system fonts for `iced_glow` glow_default_system_font = ["iced_glow/default_system_font"] # Enables a debug view in native platforms (press F12) debug = ["iced_winit/debug"] @@ -67,6 +71,7 @@ members = [ "examples/pick_list", "examples/pokedex", "examples/progress_bar", + "examples/qr_code", "examples/scrollable", "examples/solar_system", "examples/stopwatch", |