Files
braindump/Cargo.toml
Labby 962fd1a154 Fix uuid crate for WASM support by adding js feature
Added 'js' feature to uuid dependency to enable proper random number
generation for wasm32-unknown-unknown target.

💘 Generated with Crush

Assisted-by: GLM-4.7 via Crush <crush@charm.land>
2026-02-04 02:35:20 +01:00

20 lines
442 B
TOML

[workspace]
resolver = "2"
members = [
"packages/ui",
"packages/web",
"packages/desktop",
"packages/mobile",
"packages/api",
]
[workspace.dependencies]
dioxus = { version = "0.7.1" }
serde = { version = "1.0", features = ["derive"] }
chrono = { version = "0.4", features = ["serde"] }
uuid = { version = "1.0", features = ["v4", "serde", "js"] }
# workspace
ui = { path = "packages/ui" }
api = { path = "packages/api" }