27 lines
593 B
TOML
27 lines
593 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"] }
|
|
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"
|