deps: bump dependencies of topola-egui

This commit is contained in:
Ellen Emilia Anna Zscheile 2025-02-10 00:20:02 +01:00
parent 3bd1935f41
commit 65c8dee0f2
2 changed files with 5 additions and 4 deletions

View File

@ -16,8 +16,8 @@ xdg-portal = ["rfd/async-std", "rfd/xdg-portal"]
[dependencies] [dependencies]
derive-getters.workspace = true derive-getters.workspace = true
egui = "0.30" egui = "0.31"
fluent-templates = "0.12" fluent-templates = "0.13"
geo.workspace = true geo.workspace = true
icu_experimental = "0.2" icu_experimental = "0.2"
icu_locale_core = "2.0.0-beta1" icu_locale_core = "2.0.0-beta1"
@ -38,7 +38,7 @@ version = "0.9"
features = ["macros", "serde"] features = ["macros", "serde"]
[dependencies.eframe] [dependencies.eframe]
version = "0.30" version = "0.31"
default-features = false default-features = false
features = ["accesskit", "default_fonts", "glow", "persistence", "wayland", "x11"] features = ["accesskit", "default_fonts", "glow", "persistence", "wayland", "x11"]
@ -47,7 +47,7 @@ version = "0.15"
default-features = false default-features = false
[target.'cfg(not(target_arch = "wasm32"))'.dependencies] [target.'cfg(not(target_arch = "wasm32"))'.dependencies]
futures-lite = "2.5" futures-lite = "2.6"
env_logger = "0.11" env_logger = "0.11"
[target.'cfg(target_arch = "wasm32")'.dependencies] [target.'cfg(target_arch = "wasm32")'.dependencies]

View File

@ -74,6 +74,7 @@ impl<'a> Painter<'a> {
self.transform * rect, self.transform * rect,
egui::Rounding::ZERO, egui::Rounding::ZERO,
egui::Stroke::new(1.0, color), egui::Stroke::new(1.0, color),
egui::StrokeKind::Inside,
)); ));
} }