Files
wasmeld/crates/wasmeld-console/Cargo.toml
T
Maofeng f6ad94e948 feat(console): embed the management UI in release binaries
- build locked Web dependencies automatically for release profiles
- keep debug Cargo builds independent from the Vite development server
- embed generated Host, Page, manifest, and service worker assets
- serve exact control-plane assets with MIME and cache headers
- reject non-canonical and unknown paths without an SPA fallback
- cover embedded document boundaries and path validation
2026-07-30 09:22:55 +08:00

30 lines
732 B
TOML

[package]
name = "wasmeld-console"
version = "0.1.0"
edition.workspace = true
rust-version = "1.95"
license.workspace = true
[dependencies]
axum.workspace = true
base64.workspace = true
include_dir.workspace = true
mime_guess.workspace = true
serde.workspace = true
serde_json.workspace = true
semver.workspace = true
thiserror.workspace = true
toasty.workspace = true
toasty-driver-turso.workspace = true
tokio.workspace = true
toml.workspace = true
tower-http.workspace = true
tracing.workspace = true
tracing-subscriber.workspace = true
wasmeld-package = { path = "../wasmeld-package" }
wasmeld-runtime = { path = "../wasmeld-runtime" }
[dev-dependencies]
tempfile = "3.23.0"
tower = { version = "0.5.2", features = ["util"] }