Create markdown widget helpers in iced_widget

This commit is contained in:
Héctor Ramón Jiménez 2024-07-18 14:34:00 +02:00
parent aa62fa2ce9
commit 47b7a36f36
No known key found for this signature in database
GPG key ID: 7CC46565708259A7
7 changed files with 277 additions and 220 deletions

View file

@ -22,8 +22,10 @@ lazy = ["ouroboros"]
image = ["iced_renderer/image"]
svg = ["iced_renderer/svg"]
canvas = ["iced_renderer/geometry"]
qr_code = ["canvas", "qrcode"]
qr_code = ["canvas", "dep:qrcode"]
wgpu = ["iced_renderer/wgpu"]
markdown = ["dep:pulldown-cmark"]
highlighter = ["dep:iced_highlighter"]
advanced = []
[dependencies]
@ -41,3 +43,9 @@ ouroboros.optional = true
qrcode.workspace = true
qrcode.optional = true
pulldown-cmark.workspace = true
pulldown-cmark.optional = true
iced_highlighter.workspace = true
iced_highlighter.optional = true