fix: downgrade iced_fonts to 0.1 for iced 0.13 compatibility

iced_fonts 0.3 pulls in iced_widget 0.14 / iced_renderer 0.14 which
breaks release builds when used alongside iced 0.13. Pin to 0.1.x
which targets iced 0.12/0.13 and drop the unused iced_aw dependency.

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
funman300
2026-04-18 23:12:52 -07:00
parent d4f0515a82
commit c4587b0729
3 changed files with 46 additions and 319 deletions
+1 -2
View File
@@ -44,5 +44,4 @@ reqwest = { version = "0.12", features = ["blocking", "json"] }
# GUI for the setup wizard
iced = { version = "0.13", features = ["tokio"] }
iced_aw = { version = "0.13", default-features = false }
iced_fonts = { version = "0.3", features = ["bootstrap"] }
iced_fonts = { version = "0.1", features = ["bootstrap"] }