From 6586edf2874ea0f18b0ef154a6216c090c38590a Mon Sep 17 00:00:00 2001 From: Adrien Date: Sun, 29 Dec 2024 16:22:20 +0100 Subject: [PATCH] =?UTF-8?q?=E2=AC=86=EF=B8=8F=20=20Bump=20dioxus=20version?= =?UTF-8?q?=20(main=20->=200.6.1)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Cargo.toml | 7 +++---- src/ui/components/wallpaper.rs | 2 +- 2 files changed, 4 insertions(+), 5 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index a8f6ffb..4920c93 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -43,8 +43,7 @@ tracing-forest = "0.1.6" turf = "0.9.3" # Dioxus -# dioxus-free-icons = { version = "0.8", features = ["ionicons", "font-awesome-solid"] } -dioxus-free-icons = { git = "https://github.com/ASR-ASU/dioxus-free-icons.git", branch = "asr/dioxus-0.6", features = ["ionicons", "font-awesome-solid"] } +dioxus-free-icons = { version = "0.9", features = ["ionicons", "font-awesome-solid"] } modx = "0.1.2" # Matrix rich text editor @@ -56,7 +55,7 @@ tracing-subscriber = { version = "0.3.18", features = ["env-filter"] } tracing-web = "0.1.3" # Dioxus -dioxus = { git = "https://github.com/DioxusLabs/dioxus.git", branch = "main", features = ["web"] } +dioxus = { version = "0.6.1", features = ["web"] } web-sys = "0.3.69" # Matrix @@ -70,7 +69,7 @@ time = "0.3.36" tracing-subscriber = { version = "0.3.18", features = ["env-filter", "time"] } # Dioxus -dioxus = { git = "https://github.com/DioxusLabs/dioxus.git", branch = "main", features = ["desktop"] } +dioxus = { version = "0.6.1", features = ["desktop"] } # Matrix matrix-sdk = { git = "https://github.com/matrix-org/matrix-rust-sdk.git", default-features = false, features = ["rustls-tls"] } diff --git a/src/ui/components/wallpaper.rs b/src/ui/components/wallpaper.rs index c2d16dc..58daef8 100644 --- a/src/ui/components/wallpaper.rs +++ b/src/ui/components/wallpaper.rs @@ -9,7 +9,7 @@ turf::style_sheet!("src/ui/components/wallpaper.scss"); pub fn Wallpaper(display_version: Option) -> Element { let background_image = format!( "url({})", - manganis::mg!(file("public/images/wallpaper-pattern.svg")) + manganis::asset!("public/images/wallpaper-pattern.svg") ); let version = display_version.map(|flag| if flag { Some(GIT_VERSION) } else { None });