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

28 lines
960 B
TOML

[package]
name = "nomifun-public"
version.workspace = true
edition.workspace = true
license.workspace = true
repository.workspace = true
[dependencies]
# The single capability source of truth + the Remote surface + dispatch.
nomifun-gateway.workspace = true
# Instance API token validation + SYSTEM_USER_ID.
nomifun-auth.workspace = true
# rmcp's official axum-mountable Streamable-HTTP MCP server transport. NOTE:
# version is pinned to the lockfile-resolved 1.7 (nomifun-app declares "1.5" but
# the workspace unifies to 1.7); the streamable-http-server transport feature is
# OFF in nomifun-app and enabled only here.
rmcp = { version = "1.7", features = ["server", "transport-streamable-http-server", "schemars"] }
axum.workspace = true
tokio.workspace = true
futures.workspace = true
serde.workspace = true
serde_json.workspace = true
tracing.workspace = true
[dev-dependencies]
reqwest.workspace = true
tower = { version = "0.5", features = ["util"] }