[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"] }