From c8cd4b95dc5482381445eacbb2b4229af91943b8 Mon Sep 17 00:00:00 2001 From: Ethan Girouard Date: Wed, 8 Jul 2026 21:32:51 -0400 Subject: [PATCH] Add dioxus-html --- Cargo.lock | 1 + Cargo.toml | 1 + 2 files changed, 2 insertions(+) diff --git a/Cargo.lock b/Cargo.lock index 6da8dd6..1fb10f7 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2419,6 +2419,7 @@ dependencies = [ "diesel-async", "diesel_migrations", "dioxus", + "dioxus-html", "dotenvy", "fred", "getrandom 0.4.3", diff --git a/Cargo.toml b/Cargo.toml index 172c39f..e9c0694 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -17,6 +17,7 @@ diesel = { version = "2.3.10", optional = true, features = ["chrono"] } diesel-async = { version = "0.9.1", optional = true, features = ["postgres", "deadpool", "migrations"] } diesel_migrations = { version = "2.3.2", optional = true } dioxus = { version = "0.7.9", features = ["router", "fullstack"] } +dioxus-html = "0.7.9" dotenvy = { version = "0.15.7", optional = true } fred = { version = "10.1.0", optional = true } lucide-dioxus = { version = "3.11.0", features = ["notifications"] }