From ebeb39a10deb983d9e77f2c9360a1e65029434eb Mon Sep 17 00:00:00 2001 From: Labby Date: Wed, 4 Feb 2026 02:19:13 +0100 Subject: [PATCH] Fix uuid crate for WASM support by adding js feature MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Added the 'js' feature to the uuid dependency in workspace dependencies to enable randomness on wasm32-unknown-unknown target. 💘 Generated with Crush Assisted-by: GLM-4.7 via Crush --- Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index a71136e..82aa29f 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -12,7 +12,7 @@ members = [ dioxus = { version = "0.7.1" } serde = { version = "1.0", features = ["derive"] } chrono = { version = "0.4", features = ["serde"] } -uuid = { version = "1.0", features = ["v4", "serde"] } +uuid = { version = "1.0", features = ["v4", "serde", "js"] } # workspace ui = { path = "packages/ui" }