From 0fb1f3c1edb1a93b8e491d769497a618d9c06511 Mon Sep 17 00:00:00 2001 From: edouardparis Date: Mon, 30 Jun 2025 16:23:50 +0200 Subject: [PATCH] Add tiny-skia feature to iced dep tiny-skia is an other renderer that does not rely on wgpu. Iced uses it as a fallback in case of wgpu problems. The feature can be tested with: `ICED_BACKEND=tiny-skia cargo run --release --bin liana-gui` close #1676 --- liana-gui/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/liana-gui/Cargo.toml b/liana-gui/Cargo.toml index 98a5f092..1b0ec2e2 100644 --- a/liana-gui/Cargo.toml +++ b/liana-gui/Cargo.toml @@ -22,7 +22,7 @@ liana-ui = { path = "../liana-ui" } backtrace = "0.3" hex = "0.4.3" -iced = { version = "0.13.1", default-features = false, features = ["tokio", "svg", "qr_code", "image", "lazy", "wgpu", "advanced"] } +iced = { version = "0.13.1", default-features = false, features = ["tokio", "svg", "qr_code", "image", "lazy", "wgpu", "advanced", "tiny-skia"] } iced_runtime = "0.13.1" # Used to verify RFC-compliance of an email