Files
freedak f7a720204a Update: 将子项目从 submodule 转为完整内容
- 移除 GovAI, nomifun-tauri, 算力盒子 的 submodule 引用
- 添加所有子项目的完整源代码
- 保留原始 .git 为 .git.bak 备份
2026-07-04 19:20:46 +08:00

25 lines
700 B
TOML

[package]
name = "nomifun-web"
version.workspace = true
edition.workspace = true
license.workspace = true
[[bin]]
name = "nomifun-web"
path = "src/main.rs"
[dependencies]
# The unified backend, consumed in-process as a library (no spawned binary).
# P2 will expose nomifun_app's boot entry (init_environment / data layer /
# AppServices) so this host can mount the real /api router. For now this host
# serves the built SPA (ui/dist) and a health endpoint.
nomifun-app.workspace = true
nomifun-runtime.workspace = true
tokio.workspace = true
axum.workspace = true
tower-http = { workspace = true, features = ["fs", "trace"] }
tracing.workspace = true
anyhow.workspace = true
clap.workspace = true