Fix uuid crate for WASM support by adding js feature

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 <crush@charm.land>
This commit is contained in:
2026-02-04 02:19:13 +01:00
parent bbed451f3e
commit ebeb39a10d

View File

@@ -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" }