diff options
author | 2023-11-11 04:03:25 +0100 | |
---|---|---|
committer | 2023-11-11 04:03:25 +0100 | |
commit | 2aaaf2cd0cb56f9efc946159a0232270f8d37eeb (patch) | |
tree | d375c5fce3953403475a483fef747469eb65cb15 /Cargo.toml | |
parent | 751ea77c29f6eb3d00f45f0a04c833a1d03a425c (diff) | |
download | iced-2aaaf2cd0cb56f9efc946159a0232270f8d37eeb.tar.gz iced-2aaaf2cd0cb56f9efc946159a0232270f8d37eeb.tar.bz2 iced-2aaaf2cd0cb56f9efc946159a0232270f8d37eeb.zip |
Call `convert_text` on `svg` node before rendering
`tiny-skia` does not support text rendering, so we
convert the text nodes to path nodes prior to that.
Diffstat (limited to 'Cargo.toml')
-rw-r--r-- | Cargo.toml | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -140,14 +140,14 @@ ouroboros = "0.17" palette = "0.7" qrcode = { version = "0.12", default-features = false } raw-window-handle = "0.5" -resvg = "0.35" +resvg = "0.36" rustc-hash = "1.0" smol = "1.0" softbuffer = "0.2" syntect = "5.1" sysinfo = "0.28" thiserror = "1.0" -tiny-skia = "0.10" +tiny-skia = "0.11" tokio = "1.0" tracing = "0.1" twox-hash = { version = "1.0", default-features = false } |