Initial commit: NutriApp - Rust + Axum + Dioxus - CI/CD con Gitea Runner

This commit is contained in:
2026-06-24 08:35:09 +01:00
commit bede2018a6
35 changed files with 829 additions and 0 deletions
+26
View File
@@ -0,0 +1,26 @@
[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"] }
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"