From e145de6da9970e97f5cd7c3eb528b0732992c0a1 Mon Sep 17 00:00:00 2001 From: NotAShelf Date: Thu, 5 Feb 2026 17:44:12 +0300 Subject: [PATCH] chore: add ammonia & dioxus-free-icons deps Signed-off-by: NotAShelf Change-Id: I078aadc21d02783033b45c65ef80741d6a6a6964 --- Cargo.lock | 10 ++++++++++ Cargo.toml | 3 +++ 2 files changed, 13 insertions(+) diff --git a/Cargo.lock b/Cargo.lock index 8dafe96..5dec356 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1631,6 +1631,15 @@ dependencies = [ "tracing", ] +[[package]] +name = "dioxus-free-icons" +version = "0.10.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "28d356e0f9edad0930bc1cc76744360c0ecca020cb943acaadf42cb774f28284" +dependencies = [ + "dioxus", +] + [[package]] name = "dioxus-history" version = "0.7.3" @@ -5044,6 +5053,7 @@ dependencies = [ "chrono", "clap", "dioxus", + "dioxus-free-icons", "futures", "gray_matter", "pulldown-cmark", diff --git a/Cargo.toml b/Cargo.toml index 2da1af0..c583714 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -116,6 +116,7 @@ image = { version = "0.25.9", default-features = false, features = [ # Markdown rendering pulldown-cmark = "0.13.0" +ammonia = "4.1.2" # Password hashing argon2 = { version = "0.5.3", features = ["std"] } @@ -123,6 +124,8 @@ argon2 = { version = "0.5.3", features = ["std"] } # Misc mime_guess = "2.0.5" regex = "1.12.3" +dioxus-free-icons = { version = "0.10.0", features = ["font-awesome-solid"] } +rfd = "0.17.2" # WASM runtime for plugins wasmtime = { version = "41.0.3", features = ["component-model"] }