SSE transport has been removed from the MCP specification in favor of streamable HTTP. This removes all SSE-specific transport code: - Remove `transport-sse-client` and `transport-sse-server` features - Remove `SseClientTransport` and `SseServer` types - Remove SSE-specific examples (`counter_sse`, `counter_sse_directly`) - Migrate auth examples from SSE to streamable HTTP - Update tests to remove SSE transport usage - Update documentation BREAKING CHANGE: The following have been removed: - `transport-sse-client` feature - `transport-sse-client-reqwest` feature - `transport-sse-server` feature - `SseClientTransport` type - `SseServer` type - `sse_client` and `sse_server` modules Users should migrate to streamable HTTP transport which provides equivalent functionality. See `StreamableHttpClientTransport` and `StreamableHttpService` for the replacement APIs. Ref: https://github.com/modelcontextprotocol/rust-sdk/pull/561#issuecomment-3576551699
34 lines
839 B
TOML
34 lines
839 B
TOML
[package]
|
|
name = "rig-integration"
|
|
edition = { workspace = true }
|
|
version = { workspace = true }
|
|
authors = { workspace = true }
|
|
license = { workspace = true }
|
|
repository = { workspace = true }
|
|
description = { workspace = true }
|
|
keywords = { workspace = true }
|
|
homepage = { workspace = true }
|
|
categories = { workspace = true }
|
|
readme = { workspace = true }
|
|
publish = false
|
|
|
|
[dependencies]
|
|
rig-core = "0.15.1"
|
|
tokio = { version = "1", features = ["full"] }
|
|
rmcp = { workspace = true, features = [
|
|
"client",
|
|
"transport-child-process",
|
|
"transport-streamable-http-client-reqwest"
|
|
] }
|
|
anyhow = "1.0"
|
|
serde_json = "1"
|
|
serde = { version = "1", features = ["derive"] }
|
|
toml = "0.9"
|
|
futures = "0.3"
|
|
tracing = "0.1"
|
|
tracing-subscriber = { version = "0.3", features = [
|
|
"env-filter",
|
|
"std",
|
|
"fmt",
|
|
] }
|
|
tracing-appender = "0.2"
|