Files
nutriapp/frontend/Cargo.toml
T
joel 0238518822
Build & Deploy NutriApp / build-and-deploy (push) Failing after 7m12s
Frontend WASM compilado + fixes PartialEq + uuid js feature
2026-06-27 02:40:53 +01:00

27 lines
599 B
TOML

[package]
name = "nutriapp-frontend"
version = "0.1.0"
edition = "2024"
[dependencies]
# --- Dioxus ---
dioxus = { version = "0.6", features = ["web"] }
# --- Shared ---
shared = { path = "../shared" }
serde = { workspace = true }
serde_json = { workspace = true }
uuid = { workspace = true, features = ["v4", "js"] }
chrono = { workspace = true }
# --- HTTP calls al backend ---
reqwest = { version = "0.12", features = ["json"] }
# --- WASM bindings ---
wasm-bindgen = "0.2"
web-sys = { version = "0.3", features = ["console"] }
console_error_panic_hook = "0.1"
# --- Logging ---
log = "0.4"