Some checks are pending
Documentation Lint & Validation / Markdown Linting (push) Waiting to run
Documentation Lint & Validation / Validate mdBook Configuration (push) Waiting to run
Documentation Lint & Validation / Content & Structure Validation (push) Waiting to run
Documentation Lint & Validation / Lint & Validation Summary (push) Blocked by required conditions
mdBook Build & Deploy / Build mdBook (push) Waiting to run
mdBook Build & Deploy / Documentation Quality Check (push) Blocked by required conditions
mdBook Build & Deploy / Deploy to GitHub Pages (push) Blocked by required conditions
mdBook Build & Deploy / Notification (push) Blocked by required conditions
Rust CI / Security Audit (push) Waiting to run
Rust CI / Check + Test + Lint (nightly) (push) Waiting to run
Rust CI / Check + Test + Lint (stable) (push) Waiting to run
61 lines
1.4 KiB
TOML
61 lines
1.4 KiB
TOML
[package]
|
|
name = "vapora-frontend"
|
|
version.workspace = true
|
|
edition.workspace = true
|
|
authors.workspace = true
|
|
license.workspace = true
|
|
repository.workspace = true
|
|
rust-version.workspace = true
|
|
|
|
[lib]
|
|
crate-type = ["cdylib", "rlib"]
|
|
|
|
[features]
|
|
csr = []
|
|
default = ["csr"]
|
|
|
|
[dependencies]
|
|
# Internal crates (disable backend features for WASM)
|
|
vapora-shared = { path = "../vapora-shared", default-features = false }
|
|
vapora-leptos-ui = { workspace = true }
|
|
|
|
# Leptos framework (CSR mode only - no SSR)
|
|
leptos = { workspace = true, features = ["csr"] }
|
|
leptos_meta = { workspace = true }
|
|
leptos_router = { workspace = true }
|
|
|
|
# Serialization
|
|
serde = { workspace = true }
|
|
serde_json = { workspace = true }
|
|
|
|
# Error handling
|
|
anyhow = { workspace = true }
|
|
thiserror = { workspace = true }
|
|
|
|
# WASM support
|
|
wasm-bindgen = { workspace = true }
|
|
wasm-bindgen-futures = { workspace = true }
|
|
serde-wasm-bindgen = { workspace = true }
|
|
console_error_panic_hook = { workspace = true }
|
|
console_log = { workspace = true }
|
|
js-sys = { workspace = true }
|
|
web-sys = { workspace = true }
|
|
|
|
# Gloo
|
|
gloo-timers = { workspace = true }
|
|
gloo-net = { workspace = true }
|
|
|
|
# HTTP client
|
|
reqwasm = { workspace = true }
|
|
|
|
# Utilities
|
|
uuid = { workspace = true }
|
|
chrono = { workspace = true }
|
|
|
|
# Logging
|
|
tracing = { workspace = true }
|
|
log = { workspace = true }
|
|
|
|
[dev-dependencies]
|
|
wasm-bindgen-test = { workspace = true }
|